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