18056a
%global with_debug 1
18056a
%global with_check 0
18056a
5cdd16
%bcond_without varlink
5cdd16
%global gogenerate go generate
5cdd16
18056a
%if 0%{?with_debug}
18056a
%global _find_debuginfo_dwz_opts %{nil}
18056a
%global _dwz_low_mem_die_limit 0
18056a
%else
18056a
%global debug_package   %{nil}
18056a
%endif
18056a
5cdd16
%if 0%{?rhel} > 7 && ! 0%{?fedora}
18056a
%define gobuild(o:) \
e55a94
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -linkmode=external -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
8f4e48
%else
e55a94
%if ! 0%{?gobuild:1}
e55a94
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -linkmode=external -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v %{?**};
e55a94
%endif
5cdd16
%endif
18056a
e55a94
%global import_path github.com/containers/podman
e55a94
%global branch v2.2.1-rhel
e55a94
%global commit0 82e4e6605390ac761b9a57fb8361e9612089ad1c
8f4e48
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
8f4e48
%global cataver 0.1.5
e55a94
%global dnsnamever 1.1.1
18056a
18056a
Name: podman
e55a94
Version: 2.2.1
e55a94
Release: 7%{?dist}
18056a
Summary: Manage Pods, Containers and Container Images
8f4e48
License: ASL 2.0 and GPLv3+
5cdd16
URL: https://%{name}.io/
e55a94
%if 0%{?branch:1}
e55a94
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
e55a94
%else
e55a94
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
e55a94
%endif
8f4e48
Source1: https://github.com/openSUSE/catatonit/archive/v%{cataver}.tar.gz
e55a94
Source2: https://github.com/containers/dnsname/archive/v%{dnsnamever}.tar.gz
8f4e48
# Build fails with: No matching package to install: 'golang >= 1.12.12-4' on i686
8f4e48
ExcludeArch: i686
3733b2
Provides: %{name}-manpages = %{version}-%{release}
3733b2
Obsoletes: %{name}-manpages < %{version}-%{release}
5cdd16
BuildRequires: golang >= 1.12.12-4
18056a
BuildRequires: glib2-devel
18056a
BuildRequires: glibc-devel
18056a
BuildRequires: glibc-static
18056a
BuildRequires: git
18056a
BuildRequires: go-md2man
18056a
BuildRequires: gpgme-devel
18056a
BuildRequires: libassuan-devel
18056a
BuildRequires: libgpg-error-devel
18056a
BuildRequires: libseccomp-devel
18056a
BuildRequires: libselinux-devel
18056a
BuildRequires: ostree-devel
18056a
BuildRequires: pkgconfig
5cdd16
BuildRequires: make
5cdd16
BuildRequires: systemd
5cdd16
BuildRequires: systemd-devel
8f4e48
# for catatonit
8f4e48
BuildRequires: autoconf
8f4e48
BuildRequires: automake
8f4e48
BuildRequires: file
8f4e48
BuildRequires: gcc
8f4e48
BuildRequires: libtool
18056a
Requires: containers-common >= 0.1.29-3
47bfd4
Requires: containernetworking-plugins >= 0.8.1-1
18056a
Requires: iptables
18056a
Requires: nftables
1a3415
Obsoletes: oci-systemd-hook < 1
5cdd16
Requires: libseccomp >= 2.4.1
5cdd16
Requires: conmon
e55a94
Requires: (container-selinux if selinux-policy)
5cdd16
Requires: slirp4netns >= 0.4.0-1
5cdd16
Requires: runc >= 1.0.0-57
5cdd16
Requires: fuse-overlayfs
e55a94
%if %{with varlink}
5cdd16
Requires: libvarlink
e55a94
%endif
8f4e48
Requires: %{name}-catatonit >= %{version}-%{release}
e55a94
Requires: oci-runtime
18056a
18056a
%description
1a3415
%{name} (Pod Manager) is a fully featured container engine that is a simple
1a3415
daemonless tool.  %{name} provides a Docker-CLI comparable command line that
1a3415
eases the transition from other container engines and allows the management of
1a3415
pods, containers and images.  Simply put: alias docker=%{name}.
1a3415
Most %{name} commands can be run as a regular user, without requiring
1a3415
additional privileges.
5cdd16
1a3415
%{name} uses Buildah(1) internally to create container images.
1a3415
Both tools share image (not container) storage, hence each can use or
1a3415
manipulate images (but not containers) created by the other.
5cdd16
18056a
%{summary}
e55a94
%{name} Simple management tool for pods, containers and images
18056a
18056a
%package docker
5cdd16
Summary: Emulate Docker CLI using %{name}
18056a
BuildArch: noarch
18056a
Requires: %{name} = %{version}-%{release}
8f4e48
Provides: docker = %{version}-%{release}
18056a
18056a
%description docker
18056a
This package installs a script named docker that emulates the Docker CLI by
5cdd16
executes %{name} commands, it also creates links between all Docker CLI man
18056a
pages and %{name}.
18056a
e55a94
%if %{with varlink}
47bfd4
%package remote
47bfd4
Summary: (Experimental) Remote client for managing %{name} containers
47bfd4
47bfd4
%description remote
47bfd4
Remote client for managing %{name} containers.
47bfd4
47bfd4
This experimental remote client is under heavy development. Please do not
47bfd4
run %{name}-remote in production.
47bfd4
47bfd4
%{name}-remote uses the varlink connection to connect to a %{name} client to
47bfd4
manage pods, containers and container images. %{name}-remote supports ssh
47bfd4
connections as well.
e55a94
%endif
47bfd4
8f4e48
%package catatonit
8f4e48
Summary: A signal-forwarding process manager for containers
8f4e48
Requires: %{name} = %{version}-%{release}
8f4e48
8f4e48
%description catatonit
8f4e48
Catatonit is a /sbin/init program for use within containers. It
8f4e48
forwards (almost) all signals to the spawned child, tears down
8f4e48
the container when the spawned child exits, and otherwise
8f4e48
cleans up other exited processes (zombies).
8f4e48
8f4e48
This is a reimplementation of other container init programs (such as
8f4e48
"tini" or "dumb-init"), but uses modern Linux facilities (such as
8f4e48
signalfd(2)) and has no additional features.
8f4e48
e55a94
%package plugins
e55a94
Summary: Plugins for %{name}
e55a94
Requires: dnsmasq
e55a94
e55a94
%description plugins
e55a94
This plugin sets up the use of dnsmasq on a given CNI network so
e55a94
that Pods can resolve each other by name.  When configured,
e55a94
the pod and its IP address are added to a network specific hosts file
e55a94
that dnsmasq will read in.  Similarly, when a pod
e55a94
is removed from the network, it will remove the entry from the hosts
e55a94
file.  Each CNI network will have its own dnsmasq instance.
e55a94
5cdd16
%package tests
5cdd16
Summary: Tests for %{name}
5cdd16
Requires: %{name} = %{version}-%{release}
5cdd16
#Requires: bats  (which RHEL8 doesn't have. If it ever does, un-comment this)
8f4e48
Requires: nmap-ncat
e55a94
Requires: httpd-tools
5cdd16
Requires: jq
5cdd16
5cdd16
%description tests
5cdd16
%{summary}
5cdd16
5cdd16
This package contains system tests for %{name}
18056a
5cdd16
%prep
e55a94
%if 0%{?branch:1}
e55a94
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
e55a94
%else
8f4e48
%autosetup -Sgit -n %{name}-%{commit0}
e55a94
%endif
8f4e48
tar fx %{SOURCE1}
e55a94
tar fx %{SOURCE2}
18056a
5cdd16
mv pkg/hooks/README.md pkg/hooks/README-hooks.md
47bfd4
1a3415
# this is shipped by skopeo: containers-common subpackage
1a3415
rm -rf docs/source/markdown/containers-mounts.conf.5.md
1a3415
18056a
%build
5cdd16
export GO111MODULE=off
5cdd16
export GOPATH=$(pwd):$(pwd)/_build
8f4e48
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
5cdd16
e55a94
mkdir _build
e55a94
pushd _build
e55a94
mkdir -p src/github.com/containers
e55a94
ln -s ../../../../ src/github.com/containers/podman
18056a
popd
18056a
ln -s vendor src
18056a
5cdd16
rm -rf vendor/github.com/containers/storage/drivers/register/register_btrfs.go
e55a94
%if %{with varlink}
1a3415
%gogenerate ./pkg/varlink/...
e55a94
%endif
47bfd4
5cdd16
# build %%{name}
e55a94
export BUILDTAGS="systemd selinux seccomp btrfs_noversion exclude_graphdriver_devicemapper $(hack/libdm_tag.sh)"
e55a94
%if %{with varlink}
e55a94
export BUILDTAGS+=" varlink"
e55a94
%endif
8f4e48
# build date. FIXME: Makefile uses '/v2/libpod', that doesn't work here?
8f4e48
LDFLAGS="-X %{import_path}/libpod/define.buildInfo=$(date +%s)"
18056a
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
5cdd16
5cdd16
# build %%{name}-remote
8f4e48
export BUILDTAGS="remote $BUILDTAGS"
47bfd4
%gobuild -o bin/%{name}-remote %{import_path}/cmd/%{name}
18056a
5cdd16
%{__make} docs
8f4e48
8f4e48
# build catatonit
8f4e48
unset LDFLAGS
8f4e48
pushd catatonit-%{cataver}
8f4e48
autoreconf -fi
8f4e48
%configure
8f4e48
%{__make} %{?_smp_mflags}
8f4e48
# Make sure we *always* build a static binary for catatonit. Otherwise we'll break containers
8f4e48
# that don't have the necessary shared libs.
8f4e48
file catatonit | grep 'statically linked'
8f4e48
if [ $? != 0 ]; then
8f4e48
   echo "ERROR: catatonit binary must be statically linked!"
8f4e48
   exit 1
8f4e48
fi
8f4e48
popd
18056a
e55a94
# build dnsname plugin
e55a94
unset LDFLAGS
e55a94
pushd dnsname-%{dnsnamever}
e55a94
mkdir _build
e55a94
pushd _build
e55a94
mkdir -p src/github.com/containers
e55a94
ln -s ../../../../ src/github.com/containers/dnsname
e55a94
popd
e55a94
ln -s vendor src
e55a94
export GOPATH=$(pwd)/_build:$(pwd)
e55a94
%gobuild -o bin/dnsname github.com/containers/dnsname/plugins/meta/dnsname
e55a94
popd
e55a94
18056a
%install
5cdd16
install -dp %{buildroot}%{_unitdir}
8f4e48
install -dp %{buildroot}%{_userunitdir}
8f4e48
install -dp %{buildroot}%{_tmpfilesdir}
8f4e48
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} \
e55a94
        ETCDIR=%{buildroot}%{_sysconfdir} \
e55a94
%if %{with varlink}
e55a94
        BUILDTAGS="varlink" \
e55a94
%endif
8f4e48
        install.bin-nobuild \
8f4e48
        install.remote-nobuild \
8f4e48
        install.man-nobuild \
18056a
        install.cni \
18056a
        install.systemd \
1a3415
        install.completions \
1a3415
        install.docker
18056a
8f4e48
# install test scripts, but not the internal helpers.t meta-test
5cdd16
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
5cdd16
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
5cdd16
cp -pav test/system %{buildroot}/%{_datadir}/%{name}/test/
8f4e48
rm -f               %{buildroot}/%{_datadir}/%{name}/test/system/*.t
18056a
3733b2
# do not include docker and podman-remote man pages in main package
3733b2
for file in `find %{buildroot}%{_mandir}/man[15] -type f | sed "s,%{buildroot},," | grep -v -e remote -e docker`; do
3733b2
    echo "$file*" >> podman.file-list
3733b2
done
3733b2
8f4e48
# install catatonit
8f4e48
install -dp %{buildroot}%{_libexecdir}/catatonit
8f4e48
install -p catatonit-%{cataver}/catatonit %{buildroot}%{_libexecdir}/catatonit
8f4e48
install -dp %{buildroot}%{_libexecdir}/podman
8f4e48
install -dp %{buildroot}%{_datadir}/licenses/podman-catatonit
8f4e48
install -p catatonit-%{cataver}/COPYING %{buildroot}%{_datadir}/licenses/podman-catatonit/COPYING
8f4e48
ln -s %{_libexecdir}/catatonit/catatonit %{buildroot}%{_libexecdir}/podman/catatonit
8f4e48
e55a94
# install dnsname plugin
e55a94
pushd dnsname-%{dnsnamever}
e55a94
%{__make} PREFIX=%{_prefix} DESTDIR=%{buildroot} install
e55a94
popd
e55a94
18056a
%check
18056a
%if 0%{?with_check}
5cdd16
# Since we aren't packaging up the vendor directory we need to link
5cdd16
# back to it somehow. Hack it up so that we can add the vendor
5cdd16
# directory from BUILD dir as a gopath to be searched when executing
5cdd16
# tests from the BUILDROOT dir.
18056a
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
5cdd16
18056a
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
18056a
5cdd16
%if ! 0%{?gotest:1}
5cdd16
%global gotest go test
5cdd16
%endif
5cdd16
18056a
%gotest %{import_path}/cmd/%{name}
18056a
%gotest %{import_path}/libkpod
18056a
%gotest %{import_path}/libpod
18056a
%gotest %{import_path}/pkg/registrar
18056a
%endif
18056a
47bfd4
%triggerpostun -- %{name} < 1.1
47bfd4
%{_bindir}/%{name} system renumber
47bfd4
exit 0
47bfd4
18056a
#define license tag if not already defined
18056a
%{!?_licensedir:%global license %doc}
18056a
3733b2
%files -f podman.file-list
18056a
%license LICENSE
1a3415
%doc README.md CONTRIBUTING.md pkg/hooks/README-hooks.md install.md transfer.md
18056a
%{_bindir}/%{name}
e55a94
%{_datadir}/bash-completion/completions/%{name}
5cdd16
# By "owning" the site-functions dir, we don't need to Require zsh
1a3415
%dir %{_datadir}/zsh/site-functions
1a3415
%{_datadir}/zsh/site-functions/_%{name}
e55a94
%dir %{_datadir}/fish/vendor_completions.d
e55a94
%{_datadir}/fish/vendor_completions.d/%{name}.fish
18056a
%config(noreplace) %{_sysconfdir}/cni/net.d/87-%{name}-bridge.conflist
1a3415
%{_unitdir}/%{name}.service
1a3415
%{_unitdir}/%{name}.socket
e55a94
%{_unitdir}/%{name}-auto-update.service
e55a94
%{_unitdir}/%{name}-auto-update.timer
1a3415
%{_userunitdir}/%{name}.service
1a3415
%{_userunitdir}/%{name}.socket
e55a94
%{_userunitdir}/%{name}-auto-update.service
e55a94
%{_userunitdir}/%{name}-auto-update.timer
e55a94
%if %{with varlink}
8f4e48
%{_unitdir}/io.%{name}.service
8f4e48
%{_unitdir}/io.%{name}.socket
8f4e48
%{_userunitdir}/io.%{name}.service
8f4e48
%{_userunitdir}/io.%{name}.socket
8f4e48
%{_tmpfilesdir}/%{name}.conf
e55a94
%endif
18056a
18056a
%files docker
18056a
%{_bindir}/docker
5cdd16
%{_mandir}/man1/docker*.1*
1a3415
%{_usr}/lib/tmpfiles.d/%{name}-docker.conf
47bfd4
47bfd4
%files remote
e55a94
%license LICENSE
47bfd4
%{_bindir}/%{name}-remote
e55a94
%{_mandir}/man1/%{name}-remote*.*
e55a94
%{_datadir}/bash-completion/completions/%{name}-remote
e55a94
%dir %{_datadir}/fish
e55a94
%dir %{_datadir}/fish/vendor_completions.d
e55a94
%{_datadir}/fish/vendor_completions.d/%{name}-remote.fish
e55a94
%dir %{_datadir}/zsh
e55a94
%dir %{_datadir}/zsh/site-functions
e55a94
%{_datadir}/zsh/site-functions/_%{name}-remote
8f4e48
8f4e48
%files catatonit
8f4e48
%license COPYING
8f4e48
%doc README.md
8f4e48
%dir %{_libexecdir}/catatonit
8f4e48
%{_libexecdir}/catatonit/catatonit
8f4e48
%dir %{_libexecdir}/podman
8f4e48
%{_libexecdir}/podman/catatonit
18056a
e55a94
%files plugins
e55a94
%license dnsname-%{dnsnamever}/LICENSE
e55a94
%doc dnsname-%{dnsnamever}/{README.md,README_PODMAN.md}
e55a94
%{_libexecdir}/cni/dnsname
e55a94
5cdd16
%files tests
5cdd16
%license LICENSE
5cdd16
%{_datadir}/%{name}/test
5cdd16
18056a
%changelog
e55a94
* Mon Feb 08 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2.2.1-7
e55a94
- Resolves: #1925928 - Fix varlink GetVersion()
e55a94
- Upstream PR: https://github.com/containers/podman/pull/9274
e55a94
e55a94
* Thu Feb 04 2021 Jindrich Novy <jnovy@redhat.com> - 2.2.1-6
e55a94
- update to the latest content of https://github.com/containers/podman/tree/v2.2.1-rhel
e55a94
  (https://github.com/containers/podman/commit/1741f15)
e55a94
- Related: #1888571
e55a94
e55a94
* Wed Feb 03 2021 Jindrich Novy <jnovy@redhat.com> - 2.2.1-5
e55a94
- update to the latest content of https://github.com/containers/podman/tree/v2.2.1-rhel
e55a94
  (https://github.com/containers/podman/commit/b5bc6a7)
e55a94
- Related: #1877188
e55a94
e55a94
* Tue Feb 02 2021 Jindrich Novy <jnovy@redhat.com> - 2.2.1-4
e55a94
- add Requires: oci-runtime
e55a94
- Related: #1888571
e55a94
e55a94
* Wed Jan 06 2021 Jindrich Novy <jnovy@redhat.com> - 2.2.1-3
e55a94
- update to the latest content of https://github.com/containers/podman/tree/v2.2.1-rhel
e55a94
  (https://github.com/containers/podman/commit/14c35f6)
e55a94
- Related: #1888571
e55a94
e55a94
* Thu Dec 10 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.1-2
e55a94
- update to https://github.com/containers/dnsname/releases/tag/v1.1.1
e55a94
e55a94
* Tue Dec 08 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.1-1
e55a94
- update to the latest content of https://github.com/containers/podman/tree/v2.2.1-rhel
e55a94
  (https://github.com/containers/podman/commit/a0d478e)
e55a94
- Related: #1888571
e55a94
e55a94
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.0-2
e55a94
- attempt to fix gatng tests
e55a94
- Related: #1888571
e55a94
e55a94
* Wed Dec 02 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.0-1
e55a94
- update to https://github.com/containers/podman/releases/tag/v2.2.0
e55a94
- Related: #1888571
e55a94
e55a94
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-3
e55a94
- attempt to fix linker error with golang-1.15
e55a94
- add Requires: httpd-tools to tests, needed to work around
e55a94
  missing htpasswd in docker registry image, thanks to Ed Santiago
e55a94
- Related: #1888571
e55a94
e55a94
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-2
e55a94
- update to the latest content of https://github.com/containers/podman/tree/v2.1.1-rhel
e55a94
  (https://github.com/containers/podman/commit/450615a)
e55a94
- Resolves: #1873204
e55a94
- Resolves: #1884668
e55a94
e55a94
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-1
e55a94
- update podman to 2.1.1-rhel
e55a94
- Resolves: #1743687
e55a94
- Resolves: #1811570
e55a94
- Resolves: #1869322
e55a94
- Resolves: #1678546
e55a94
- Resolves: #1853455
e55a94
- Resolves: #1874271
e55a94
8f4e48
* Wed Sep 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-5
8f4e48
- fix "[FJ8.3 Bug]: [REG] "--group-add" option of "podman create" doesn't work with "--user" option"
8f4e48
- Resolves: #1877177
8f4e48
- fix "`podman images --all` fails on images with digest"
8f4e48
- Resolves: #1879622
8f4e48
8f4e48
* Fri Sep 11 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-4
8f4e48
- consume content directly from the dedicated upstream branch
8f4e48
- Related: #1877187
8f4e48
8f4e48
* Thu Sep 10 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-3
8f4e48
- fix "[FJ8.3 Bug]: [REG] "--oom-score-adj" flag is ignored in "podman run" and "podman create""
8f4e48
- Resolves: #1877187
8f4e48
8f4e48
* Thu Aug 27 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-2
8f4e48
- fix gating test errors - thanks for patches to Ed Santiago
8f4e48
- Related: #1872263
8f4e48
8f4e48
* Thu Aug 27 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-1
8f4e48
- update to https://github.com/containers/podman/releases/tag/v2.0.5
8f4e48
- Resolves: #1872263
8f4e48
8f4e48
* Thu Aug 20 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.4-3
8f4e48
- fix "podman run namespace in man page ambiguous"
8f4e48
- Resolves: #1860126
8f4e48
8f4e48
* Tue Aug 11 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.4-2
8f4e48
- propagate proper CFLAGS to CGO_CFLAGS to assure code hardening and optimization
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Sat Aug 01 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.4-1
8f4e48
- update to https://github.com/containers/podman/releases/tag/v2.0.4
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Fri Jul 31 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.3-2
8f4e48
- fix "Podman build from url failed to get correct temp directory for store files"
8f4e48
- Resolves: #1858862
8f4e48
8f4e48
* Thu Jul 23 2020 Lokesh Mandvekar <lsm5@redhat.com> - 2.0.3-1
8f4e48
- update to https://github.com/containers/podman/releases/tag/v2.0.3
8f4e48
- Resolves: #1785242 - podman-docker Provides: docker 
8f4e48
- Resolves: #1804195
8f4e48
8f4e48
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.2-3
8f4e48
- fix "CVE-2020-14040 podman: golang.org/x/text: possibility to trigger an infinite loop in encoding/unicode could lead to crash [rhel-8]"
8f4e48
- Resolves: #1854718
8f4e48
8f4e48
* Wed Jul 15 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.2-2
8f4e48
- always pull in catatonit with podman and vice versa
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Wed Jul 08 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.2-1
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.2
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Thu Jul 02 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.1-3
8f4e48
- include catatonit
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Wed Jul 01 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.1-2
8f4e48
- fix "Podman does not use --tmpdir when pulling an image"
8f4e48
- Resolves: #1769918
8f4e48
8f4e48
* Fri Jun 26 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.1-1
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.1
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Mon Jun 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-1
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.0
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Thu Jun 18 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.9.rc7
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.0-rc7
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Tue Jun 16 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.8.rc6
8f4e48
- attempt to fix test user for gating tests (Ed Santiago)
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Tue Jun 16 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.7.rc6
8f4e48
- fix "Socket-activated Varlink (io.podman.socket) fails after first call"
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Tue Jun 16 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.6.rc6
8f4e48
- fix build: add relevant socket/service/conf files and re-enable varlink
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Mon Jun 15 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.5.rc6
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.0-rc6
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Wed Jun 10 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.4.rc5
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.0-rc5
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Thu Jun 04 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.3.rc4
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.0-rc4
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Thu Jun 04 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.2.rc3
8f4e48
- podman-tests requires nmap-ncat now
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Tue Jun 02 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.0-0.1.rc3
8f4e48
- update to https://github.com/containers/libpod/releases/tag/v2.0.0-rc3
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Mon Jun 01 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.3-3
1a3415
- fix "Signature verification incorrectly uses mirror’s references"
8f4e48
- Related: #1821193
8f4e48
8f4e48
* Wed May 27 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.3-2
8f4e48
- exclude i686 arch due to "No matching package to install: 'golang >= 1.12.12-4'" on i686
8f4e48
- Related: #1821193
1a3415
1a3415
* Mon May 25 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.3-1
1a3415
- update to https://github.com/containers/libpod/releases/tag/v1.9.3
8f4e48
- Related: #1821193
1a3415
1a3415
* Wed May 20 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.2-3
1a3415
- fix "Podman support for FIPS Mode requires a bind mount inside the container"
1a3415
- version the oci-systemd-hook obsolete
8f4e48
- Related: #1821193
1a3415
1a3415
* Tue May 19 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.2-2
1a3415
- obsolete oci-systemd-hook package
8f4e48
- Related: #1821193
1a3415
1a3415
* Thu May 14 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.2-1
1a3415
- update to https://github.com/containers/libpod/releases/tag/v1.9.2
8f4e48
- Related: #1821193
1a3415
8f4e48
* Tue May 12 2020 Jindrich Novy <jnovy@redhat.com> - 1.9.1-1
8f4e48
- synchronize containter-tools 8.3.0 with 8.2.1
8f4e48
- Related: #1821193
7a57c0
1a3415
* Wed Apr 01 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-11
d96d33
- fix "CVE-2020-10696 buildah: crafted input tar file may lead to local file overwriting during image build process"
1a3415
- Resolves: #1819812
d96d33
3733b2
* Thu Mar 19 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-10
3733b2
- use the full PR 5348 to fix "no route to host from inside container"
3733b2
- Resolves: #1806901
3733b2
3733b2
* Fri Mar 06 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-9
3733b2
- update fix for "podman (1.6.4) rhel 8.1 no route to host from inside container"
3733b2
- Resolves: #1806901
3733b2
3733b2
* Fri Mar 06 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-8
3733b2
- fix "[FJ8.2 Bug]: [REG]The "--group-add" option of "podman create" doesn't function."
3733b2
- Resolves: #1808707
3733b2
3733b2
* Thu Feb 27 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-7
f66184
- fix "podman (1.6.4) rhel 8.1 no route to host from inside container"
3733b2
- Resolves: #1806901
f66184
3733b2
* Fri Feb 21 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-6
3733b2
- fix CVE-2020-1726
3733b2
- Resolves: #1801571
3733b2
3733b2
* Wed Feb 19 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-5
f66184
- fix "Podman support for FIPS Mode requires a bind mount inside the container"
3733b2
- Resolves: #1804195
3733b2
3733b2
* Mon Feb 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-4
3733b2
- fix CVE-2020-1702
3733b2
- Resolves: #1801924
3733b2
3733b2
* Wed Jan 08 2020 Jindrich Novy <jnovy@redhat.com>
3733b2
- merge podman-manpages with podman package and put man pages for
3733b2
  podman-remote to its dedicated subpackage
3733b2
Resolves: #1788539
f66184
5cdd16
* Fri Jan 03 2020 Jindrich Novy <jnovy@redhat.com> - 1.6.4-2
3733b2
- apply fix for #1757845
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Wed Dec 11 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.4-1
5cdd16
- update to 1.6.4
3733b2
- Related: RHELPLAN-25139
5cdd16
3733b2
* Sat Dec 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.3-6
5cdd16
- remove BR: device-mapper-devel, minor spec file changes
3733b2
- Related: RHELPLAN-25139
5cdd16
3733b2
* Tue Dec 03 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.3-5
5cdd16
- Ensure volumes reacquire locks on state refresh (thanks Matt Heon)
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Fri Nov 29 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.3-4
5cdd16
- use the file events logger backend if systemd isn't available
5cdd16
  (thanks to Giuseppe Scrivano)
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Thu Nov 21 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.3-3
5cdd16
- require slirp4netns >= 0.4.0-1
3733b2
- Resolves: #1766774
5cdd16
5cdd16
* Tue Nov 19 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.3-2
5cdd16
- apply fix to not to fail gating tests:
5cdd16
  don't parse the config for cgroup-manager default
5cdd16
- don't hang while on podman run --rm - bug 1767663
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Mon Nov 18 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.3-1
5cdd16
- update to podman 1.6.3
5cdd16
- addresses CVE-2019-18466
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Fri Nov 08 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.2-6
5cdd16
- fix %%gobuild macro to not to ignore BUILDTAGS
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Tue Nov 05 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.2-5
5cdd16
- use btrfs_noversion to really disable BTRFS support
5cdd16
- amend/reuse BUILDTAGS
5cdd16
- still keep device-mapper-devel BR otherwise build fails
5cdd16
  despite dm support being disabled (build scripting invokes
5cdd16
  pkg-config for devmapper which is shipped by the dm-devel
5cdd16
  package)
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Mon Nov 04 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.2-4
5cdd16
- disable BTRFS support
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Mon Nov 04 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.2-3
5cdd16
- split podman and conmon packages
5cdd16
- drop BR: device-mapper-devel and update BRs in general
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Fri Nov 01 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.2-2
5cdd16
- drop oci-systemd-hook requirement
5cdd16
- drop upstreamed CVE-2019-10214 patch
3733b2
- Related: RHELPLAN-25139
5cdd16
5cdd16
* Tue Oct 29 2019 Jindrich Novy <jnovy@redhat.com> - 1.6.2-1
5cdd16
- update to podman 1.6.2
5cdd16
5cdd16
* Wed Oct 16 2019 Jindrich Novy <jnovy@redhat.com> - 1.4.2-6
5cdd16
- fix build with --nocheck (#1721394)
5cdd16
- escape commented out macros
fb1fea
47bfd4
* Thu Sep 12 2019 Jindrich Novy <jnovy@redhat.com> - 1.4.2-5
47bfd4
- Fix CVE-2019-10214 (#1734649).
47bfd4
47bfd4
* Tue Sep 03 2019 Jindrich Novy <jnovy@redhat.com> - 1.4.2-4
47bfd4
- update to latest conmon (Resolves: #1743685)
47bfd4
47bfd4
* Wed Aug 28 2019 Jindrich Novy <jnovy@redhat.com> - 1.4.2-3
47bfd4
- update to v1.4.2-stable1
47bfd4
- Resolves: #1741157
47bfd4
47bfd4
* Wed Jun 19 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.2-2
47bfd4
- Resolves: #1669197, #1705763, #1737077, #1671622, #1723879, #1730281,
47bfd4
- Resolves: #1731117
47bfd4
- built libpod v1.4.2-stable1
fff05c
47bfd4
* Wed Jun 19 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.2-1
47bfd4
- Resolves: #1721638
47bfd4
- bump to v1.4.2
c1b3a8
47bfd4
* Mon Jun 17 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-4
47bfd4
- Resolves: #1720654 - update dep on libvarlink
47bfd4
- Resolves: #1721247 - enable fips mode
47bfd4
47bfd4
* Mon Jun 17 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-3
47bfd4
- Resolves: #1720654 - podman requires podman-manpages
47bfd4
- update dep on cni plugins >= 0.8.1-1
47bfd4
47bfd4
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-2
47bfd4
- Resolves: #1720654 - podman-manpages obsoletes podman < 1.4.1-2
47bfd4
47bfd4
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-1
47bfd4
- Resolves: #1720654 - bump to v1.4.1
47bfd4
- bump conmon to v0.3.0
47bfd4
47bfd4
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.0-1
47bfd4
- Resolves: #1720654 - bump to v1.4.0
47bfd4
47bfd4
* Fri Jun 07 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-2
47bfd4
- Resolves: #1683217 - tests subpackage requires slirp4netns
47bfd4
47bfd4
* Fri May 31 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-1
47bfd4
- Resolves: #1707220 - bump to v1.3.2
47bfd4
- built conmon v0.2.0
47bfd4
47bfd4
* Wed Apr  3 2019 Eduardo Santiago <santiago@redhat.com> - 1.2.0-1.git3bd528e5
47bfd4
- package system tests, zsh completion. Update CI tests to use new -tests pkg
47bfd4
47bfd4
* Thu Feb 28 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.1.0-1.git006206a
47bfd4
- bump to v1.1.0
47bfd4
47bfd4
* Fri Feb 22 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.0.1-1.git2c74edd
47bfd4
- bump to v1.0.1
c1b3a8
18056a
* Mon Feb 11 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.0.0-2.git921f98f
18056a
- rebase
18056a
18056a
* Tue Jan 15 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.0.0-1.git82e8011
18056a
- rebase to v1, yay!
18056a
- rebase conmon to 9b1f0a08285a7f74b21cc9b6bfd98a48905a7ba2
18056a
- Resolves:#1623282
18056a
- python interface removed, moved to https://github.com/containers/python-podman/
18056a
18056a
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.12.1.2-4.git9551f6b
18056a
- re-enable debuginfo
18056a
18056a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.12.1.2-3.git9551f6b
18056a
- python libraries added
18056a
- resolves: #1657180
18056a
18056a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.12.1.2-2.git9551f6b
18056a
- rebase
18056a
18056a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.11.1.1-3.git594495d
18056a
- go tools not in scl anymore
18056a
18056a
* Mon Nov 19 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.11.1.1-2.git594495d
18056a
- fedora-like buildrequires go toolset
18056a
18056a
* Sat Nov 17 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1.1-1.git594495d
18056a
- Resolves: #1636230 - build with FIPS enabled golang toolchain
18056a
- bump to v0.11.1.1
18056a
- built commit 594495d
18056a
18056a
* Fri Nov 16 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.11.1-3.gita4adfe5
18056a
- podman-docker provides docker
18056a
- Resolves: #1650355
18056a
18056a
* Thu Nov 15 2018 Lumír Balhar <lbalhar@redhat.com> - 0.11.1-2.gita4adfe5
18056a
- Require platform-python-setuptools instead of python3-setuptools
18056a
- Resolves: rhbz#1650144
18056a
18056a
* Tue Nov 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-1.gita4adfe5
18056a
- bump to v0.11.1
18056a
- built libpod commit a4adfe5
18056a
- built conmon from cri-o commit 464dba6
18056a
18056a
* Fri Oct 19 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.3-5.gitdb08685
18056a
- Resolves: #1625384 - keep BR: device-mapper-devel but don't build with it
18056a
- not having device-mapper-devel seems to have brew not recognize %%{_unitdir}
18056a
18056a
* Thu Oct 18 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.3-4.gitdb08685
18056a
- Resolves: #1625384 - correctly add buildtags to remove devmapper
18056a
18056a
* Thu Oct 18 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.3-3.gitdb08685
18056a
- Resolves: #1625384 - build without device-mapper-devel (no podman support) and lvm2
18056a
18056a
* Wed Oct 17 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.3-2.gitdb08685
18056a
- Resolves: #1625384 - depend on lvm2
18056a
18056a
* Wed Oct 17 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.3-1.gitdb08685
18056a
- Resolves: #1640298 - update vendored buildah to allow building when there are
18056a
running containers
18056a
- bump to v0.10.1.3
18056a
- built podman commit db08685
18056a
18056a
* Wed Oct 17 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.2-1.git2b4f8d1
18056a
- Resolves: #1625378
18056a
- bump to v0.10.1.2
18056a
- built podman commit 2b4f8d1
18056a
18056a
* Tue Oct 16 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1.1-1.git4bea3e9
18056a
- bump to v0.10.1.1
18056a
- built podman commit 4bea3e9
18056a
18056a
* Thu Oct 11 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.1-1.gite4a1553
18056a
- bump podman to v0.10.1
18056a
- built podman commit e4a1553
18056a
- built conmon from cri-o commit a30f93c
18056a
18056a
* Tue Oct 09 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.9.3.1-4.git1cd906d
18056a
- rebased cri-o to 1.11.6
18056a
18056a
* Wed Sep 26 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.9.3.1-3.git1cd906d
18056a
- rebase
18056a
18056a
* Tue Sep 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.9.2-2.git37a2afe
18056a
- rebase to podman 0.9.2
18056a
- rebase to cri-o 0.11.4
18056a
18056a
* Tue Sep 11 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.9.1.1-2.git123de30
18056a
- rebase
18056a
18056a
* Mon Aug 27 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.4-1.git9f9b8cf
18056a
- bump to v0.8.4
18056a
- built commit 9f9b8cf
18056a
- upstream username changed from projectatomic to containers
18056a
- use containernetworking-plugins >= 0.7.3-5
18056a
18056a
* Mon Aug 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.2.1-2.git7a526bb
18056a
- Resolves: #1615607 - rebuild with gobuild tag 'no_openssl'
18056a
18056a
* Sun Aug 12 2018 Dan Walsh <dwalsh@redhat.com> - 0.8.2.1-1.git7a526bb
18056a
- Upstream 0.8.2.1 release
18056a
- Add support for podman-docker
18056a
Resolves: rhbz#1615104
18056a
18056a
* Fri Aug 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.2-1.dev.git8b2d38e
18056a
- Resolves: #1614710 - podman search name includes registry
18056a
- bump to v0.8.2-dev
18056a
- built libpod commit 8b2d38e
18056a
- built conmon from cri-o commit acc0ee7
18056a
18056a
* Wed Aug 8 2018 Dan Walsh <dwalsh@redhat.com> - 0.8.1-2.git6b4ab2a
18056a
- Add recommends for slirp4netns and container-selinux
18056a
18056a
* Tue Aug 07 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-2.git6b4ab2a
18056a
- bump to v0.8.1
18056a
- use %%go{build,generate} instead of go build and go generate
18056a
- update go deps to use scl-ized builds
18056a
- No need for Makefile patch for python installs
18056a
18056a
* Sat Aug 4 2018 Dan Walsh <dwalsh@redhat.com> - 0.8.1-1.git6b4ab2a
18056a
- Bump to v0.8.1
18056a
18056a
* Wed Aug 1 2018 Dan Walsh <dwalsh@redhat.com> - 0.7.4-2.git079121
18056a
- podman should not require atomic-registries
18056a
18056a
* Tue Jul 24 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.4-1.dev.git9a18681
18056a
- bump to v0.7.4-dev
18056a
- built commit 9a18681
18056a
18056a
* Sat Jul 21 2018 Dan Walsh <dwalsh@redhat.com> - 0.7.3-2.git079121
18056a
- Turn on ostree support
18056a
- Upstream 0.7.3
18056a
18056a
* Sat Jul 14 2018 Dan Walsh <dwalsh@redhat.com> - 0.7.2-2.git4ca4c5f
18056a
- Upstream 0.7.2 release
18056a
18056a
* Wed Jul 11 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.1-3.git84cfdb2
18056a
- rebuilt
18056a
18056a
* Wed Jul 11 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.1-2.git84cfdb2
18056a
- rebase to 84cfdb2
18056a
18056a
* Sun Jul 08 2018 Dan Walsh <dwalsh@redhat.com> - 0.7.1-1.git802d4f2
18056a
- Upstream 0.7.1 release
18056a
18056a
* Mon Jun 25 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.6.4-2.gitd5beb2f
18056a
- disable devel and unittest subpackages
18056a
- include conditionals for rhel-8.0
18056a
18056a
* Fri Jun 22 2018 Dan Walsh <dwalsh@redhat.com> - 0.6.4-1.gitd5beb2f
18056a
- do not compress debuginfo with dwz to support delve debugger
18056a
18056a
* Mon Jun 04 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.6.1-3.git3e0ff12
18056a
- do not compress debuginfo with dwz to support delve debugger
18056a
18056a
* Mon Jun 04 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.6.1-2.git3e0ff12
18056a
- bash completion shouldn't have shebang
18056a
18056a
* Mon Jun 04 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.6.1-1.git3e0ff12
18056a
- Resolves: #1584429 - drop capabilities when running a container as non-root
18056a
- bump to v0.6.1
18056a
- built podman commit 3e0ff12
18056a
- built conmon from cri-o commit 1c0c3b0
18056a
- drop containernetworking-plugins subpackage, it's now split out into a standalone
18056a
package
18056a
18056a
* Fri Apr 27 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.4.1-4.gitb51d327
18056a
- Resolves: #1572538 - build host-device and portmap plugins
18056a
18056a
* Thu Apr 12 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.4.1-3.gitb51d327
18056a
- correct dep on containernetworking-plugins
18056a
18056a
* Thu Apr 12 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.4.1-2.gitb51d327
18056a
- add containernetworking-plugins v0.7.0 as a subpackage (podman dep)
18056a
- release tag for the containernetworking-plugins is actually gotten from
18056a
podman release tag.
18056a
18056a
* Wed Apr 11 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.4.1-1.gitb51d327
18056a
- bump to v0.4.1
18056a
- built commit b51d327
18056a
18056a
* Wed Mar 14 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.3.3-1.dev.gitbc358eb
18056a
- built podman commit bc358eb
18056a
- built conmon from cri-o commit 712f3b8
18056a
18056a
* Fri Mar 09 2018 baude <bbaude@redhat.com> - 0.3.2-1.gitf79a39a
18056a
- Release 0.3.2-1
18056a
18056a
* Sun Mar 04 2018 baude <bbaude@redhat.com> - 0.3.1-2.git98b95ff
18056a
- Correct RPM version
18056a
18056a
* Fri Mar 02 2018 baude <bbaude@redhat.com> - 0.3.1-1-gitc187538
18056a
- Release 0.3.1-1
18056a
18056a
* Sun Feb 25 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.2.2-2.git525e3b1
18056a
- Build on ARMv7 too (Fedora supports containers on that arch too)
18056a
18056a
* Fri Feb 23 2018 baude <bbaude@redhat.com> - 0.2.2-1.git525e3b1
18056a
- Release 0.2.2
18056a
18056a
* Fri Feb 16 2018 baude <bbaude@redhat.com> - 0.2.1-1.git3d0100b
18056a
- Release 0.2.1
18056a
18056a
* Wed Feb 14 2018 baude <bbaude@redhat.com> - 0.2-3.git3d0100b
18056a
- Add dep for atomic-registries
18056a
18056a
* Tue Feb 13 2018 baude <bbaude@redhat.com> - 0.2-2.git3d0100b
18056a
- Add more 64bit arches
18056a
- Add containernetworking-cni dependancy
18056a
- Add iptables dependancy
18056a
18056a
* Mon Feb 12 2018 baude <bbaude@redhat.com> - 0-2.1.git3d0100
18056a
- Release 0.2
18056a
18056a
* Tue Feb 06 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.3.git367213a
18056a
- Resolves: #1541554 - first official build
18056a
- built commit 367213a
18056a
18056a
* Fri Feb 02 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.2.git0387f69
18056a
- built commit 0387f69
18056a
18056a
* Wed Jan 10 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0-0.1.gitc1b2278
18056a
- First package for Fedora