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