4cad42
%global with_check 0
4cad42
4cad42
# https://bugzilla.redhat.com/show_bug.cgi?id=1904567
4cad42
%global _lto_cflags %%{nil}
4cad42
4cad42
%global _find_debuginfo_dwz_opts %{nil}
4cad42
%global _dwz_low_mem_die_limit 0
4cad42
4cad42
%if 0%{?rhel} > 7 && ! 0%{?fedora}
4cad42
%define gobuild(o:) \
4cad42
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 %{?**};
4cad42
%else
4cad42
%if ! 0%{?gobuild:1}
4cad42
%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 %{?**};
4cad42
%endif
4cad42
%endif
4cad42
4cad42
%global import_path github.com/containers/podman
4cad42
%global branch v3.3.1-rhel
4cad42
%global commit0 910b09c2551b168efec4ac05adfa4d5b95782b54
4cad42
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
4cad42
%global cataver 0.1.5
4cad42
%global dnsnamever 1.3.0
4cad42
%global gvproxyrepo gvisor-tap-vsock
4cad42
%global gvproxyver 0.1.0
4cad42
%global commit_mcni afab2d8047bc0bd963d570686770eeb0c2e5a396
4cad42
%global shortcommit_mcni %(c=%{commit_mcni}; echo ${c:0:7})
4cad42
4cad42
4cad42
Name: podman
4cad42
Version: 3.3.1
4cad42
Release: 8%{?dist}
4cad42
Summary: Manage Pods, Containers and Container Images
4cad42
License: ASL 2.0 and GPLv3+
4cad42
URL: https://%{name}.io/
4cad42
%if 0%{?branch:1}
4cad42
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
4cad42
%else
4cad42
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
4cad42
%endif
4cad42
Source1: https://github.com/openSUSE/catatonit/archive/v%{cataver}.tar.gz
4cad42
Source2: https://github.com/containers/dnsname/archive/v%{dnsnamever}.tar.gz
4cad42
Source3: https://github.com/containers/%{name}-machine-cni/archive/%{commit_mcni}/%{name}-machine-cni-%{shortcommit_mcni}.tar.gz
4cad42
Source4: https://github.com/containers/%{gvproxyrepo}/archive/v%{gvproxyver}.tar.gz
4cad42
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
4cad42
ExclusiveArch: %{go_arches}
4cad42
Provides: %{name}-manpages = %{version}-%{release}
4cad42
Obsoletes: %{name}-manpages < %{version}-%{release}
4cad42
BuildRequires: golang >= 1.16.6
4cad42
BuildRequires: glib2-devel
4cad42
BuildRequires: glibc-devel
4cad42
BuildRequires: glibc-static
4cad42
BuildRequires: git-core
4cad42
BuildRequires: go-md2man
4cad42
BuildRequires: gpgme-devel
4cad42
BuildRequires: libassuan-devel
4cad42
BuildRequires: libgpg-error-devel
4cad42
BuildRequires: libseccomp-devel
4cad42
BuildRequires: libselinux-devel
4cad42
BuildRequires: ostree-devel
4cad42
BuildRequires: pkgconfig
4cad42
BuildRequires: make
4cad42
BuildRequires: systemd
4cad42
BuildRequires: systemd-devel
4cad42
# for catatonit
4cad42
BuildRequires: autoconf
4cad42
BuildRequires: automake
4cad42
BuildRequires: file
4cad42
BuildRequires: gcc
4cad42
BuildRequires: libtool
4cad42
Requires: containers-common >= 2:1-2
4cad42
Requires: containernetworking-plugins >= 0.9.1-1
4cad42
Requires: iptables
4cad42
Requires: nftables
4cad42
Obsoletes: oci-systemd-hook < 1
4cad42
Requires: libseccomp >= 2.4.1
4cad42
Requires: conmon >= 2.0.25
4cad42
Requires: (container-selinux if selinux-policy)
4cad42
Requires: slirp4netns >= 0.4.0-1
4cad42
Requires: runc >= 1.0.0-57
4cad42
Requires: fuse-overlayfs
4cad42
Requires: %{name}-catatonit >= %{version}-%{release}
4cad42
Requires: oci-runtime
4cad42
4cad42
%description
4cad42
%{name} (Pod Manager) is a fully featured container engine that is a simple
4cad42
daemonless tool.  %{name} provides a Docker-CLI comparable command line that
4cad42
eases the transition from other container engines and allows the management of
4cad42
pods, containers and images.  Simply put: alias docker=%{name}.
4cad42
Most %{name} commands can be run as a regular user, without requiring
4cad42
additional privileges.
4cad42
4cad42
%{name} uses Buildah(1) internally to create container images.
4cad42
Both tools share image (not container) storage, hence each can use or
4cad42
manipulate images (but not containers) created by the other.
4cad42
4cad42
%{summary}
4cad42
%{name} Simple management tool for pods, containers and images
4cad42
4cad42
%package docker
4cad42
Summary: Emulate Docker CLI using %{name}
4cad42
BuildArch: noarch
4cad42
Requires: %{name} = %{version}-%{release}
4cad42
Provides: docker = %{version}-%{release}
4cad42
4cad42
%description docker
4cad42
This package installs a script named docker that emulates the Docker CLI by
4cad42
executes %{name} commands, it also creates links between all Docker CLI man
4cad42
pages and %{name}.
4cad42
4cad42
%package remote
4cad42
Summary: A remote CLI for Podman: A Simple management tool for pods, containers and images
4cad42
4cad42
%description remote
4cad42
%{name}-remote provides a local client interacting with a Podman backend
4cad42
node through a RESTful API tunneled through a ssh connection. In this context,
4cad42
a %{name} node is a Linux system with Podman installed on it and the API
4cad42
service activated.
4cad42
4cad42
Credentials for this session can be passed in using flags, environment
4cad42
variables, or in containers.conf.
4cad42
4cad42
%package catatonit
4cad42
Summary: A signal-forwarding process manager for containers
4cad42
Requires: %{name} = %{version}-%{release}
4cad42
4cad42
%description catatonit
4cad42
Catatonit is a /sbin/init program for use within containers. It
4cad42
forwards (almost) all signals to the spawned child, tears down
4cad42
the container when the spawned child exits, and otherwise
4cad42
cleans up other exited processes (zombies).
4cad42
4cad42
This is a reimplementation of other container init programs (such as
4cad42
"tini" or "dumb-init"), but uses modern Linux facilities (such as
4cad42
signalfd(2)) and has no additional features.
4cad42
4cad42
%package plugins
4cad42
Summary: Plugins for %{name}
4cad42
Requires: dnsmasq
4cad42
Recommends: %{name}-gvproxy = %{version}-%{release}
4cad42
4cad42
%description plugins
4cad42
This plugin sets up the use of dnsmasq on a given CNI network so
4cad42
that Pods can resolve each other by name.  When configured,
4cad42
the pod and its IP address are added to a network specific hosts file
4cad42
that dnsmasq will read in.  Similarly, when a pod
4cad42
is removed from the network, it will remove the entry from the hosts
4cad42
file.  Each CNI network will have its own dnsmasq instance.
4cad42
4cad42
%package tests
4cad42
Summary: Tests for %{name}
4cad42
Requires: %{name} = %{version}-%{release}
4cad42
#Requires: bats  (which RHEL8 doesn't have. If it ever does, un-comment this)
4cad42
Requires: nmap-ncat
4cad42
Requires: httpd-tools
4cad42
Requires: jq
4cad42
Requires: socat
4cad42
Requires: skopeo
4cad42
Requires: openssl
4cad42
Requires: buildah
4cad42
4cad42
%description tests
4cad42
%{summary}
4cad42
4cad42
This package contains system tests for %{name}
4cad42
4cad42
%package gvproxy
4cad42
Summary: Go replacement for libslirp and VPNKit
4cad42
4cad42
%description gvproxy
4cad42
A replacement for libslirp and VPNKit, written in pure Go.
4cad42
It is based on the network stack of gVisor. Compared to libslirp,
4cad42
gvisor-tap-vsock brings a configurable DNS server and
4cad42
dynamic port forwarding.
4cad42
4cad42
%prep
4cad42
%if 0%{?branch:1}
4cad42
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
4cad42
%else
4cad42
%autosetup -Sgit -n %{name}-%{commit0}
4cad42
%endif
4cad42
tar fx %{SOURCE1}
4cad42
tar fx %{SOURCE2}
4cad42
tar fx %{SOURCE3}
4cad42
tar fx %{SOURCE4}
4cad42
4cad42
mv pkg/hooks/README.md pkg/hooks/README-hooks.md
4cad42
4cad42
# this is shipped by skopeo: containers-common subpackage
4cad42
rm -rf docs/source/markdown/containers-mounts.conf.5.md
4cad42
4cad42
%build
4cad42
export GO111MODULE=off
4cad42
export GOPATH=$(pwd):$(pwd)/_build
4cad42
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
4cad42
4cad42
mkdir _build
4cad42
pushd _build
4cad42
mkdir -p src/github.com/containers
4cad42
ln -s ../../../../ src/github.com/containers/podman
4cad42
popd
4cad42
ln -s vendor src
4cad42
4cad42
rm -rf vendor/github.com/containers/storage/drivers/register/register_btrfs.go
4cad42
4cad42
export BUILDTAGS="systemd selinux seccomp btrfs_noversion exclude_graphdriver_devicemapper $(hack/libdm_tag.sh)"
4cad42
# build date. FIXME: Makefile uses '/v2/libpod', that doesn't work here?
4cad42
LDFLAGS="-X %{import_path}/libpod/define.buildInfo=$(date +%s)"
4cad42
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
4cad42
4cad42
# build %%{name}-remote
4cad42
export BUILDTAGS="remote $BUILDTAGS"
4cad42
%gobuild -o bin/%{name}-remote %{import_path}/cmd/%{name}
4cad42
4cad42
%{__make} docs
4cad42
4cad42
# build catatonit
4cad42
unset LDFLAGS
4cad42
pushd catatonit-%{cataver}
4cad42
autoreconf -fi
4cad42
%configure
4cad42
%{__make} %{?_smp_mflags}
4cad42
# Make sure we *always* build a static binary for catatonit. Otherwise we'll break containers
4cad42
# that don't have the necessary shared libs.
4cad42
file catatonit | grep 'statically linked'
4cad42
if [ $? != 0 ]; then
4cad42
   echo "ERROR: catatonit binary must be statically linked!"
4cad42
   exit 1
4cad42
fi
4cad42
popd
4cad42
4cad42
# build dnsname plugin
4cad42
unset LDFLAGS
4cad42
pushd dnsname-%{dnsnamever}
4cad42
mkdir _build
4cad42
pushd _build
4cad42
mkdir -p src/github.com/containers
4cad42
ln -s ../../../../ src/github.com/containers/dnsname
4cad42
popd
4cad42
ln -s vendor src
4cad42
export GOPATH=$(pwd)/_build:$(pwd)
4cad42
%gobuild -o bin/dnsname github.com/containers/dnsname/plugins/meta/dnsname
4cad42
popd
4cad42
4cad42
pushd %{name}-machine-cni-%{commit_mcni}
4cad42
unset LDFLAGS
4cad42
mkdir _build
4cad42
pushd _build
4cad42
mkdir -p src/github.com/containers
4cad42
ln -s ../../../../ src/github.com/containers/%{name}-machine-cni
4cad42
popd
4cad42
ln -s vendor src
4cad42
export GOPATH=$(pwd)/_build:$(pwd)
4cad42
%gobuild -o bin/%{name}-machine github.com/containers/%{name}-machine-cni/plugins/meta/%{name}-machine
4cad42
popd
4cad42
4cad42
pushd %{gvproxyrepo}-%{gvproxyver}
4cad42
unset LDFLAGS
4cad42
mkdir _build
4cad42
pushd _build
4cad42
mkdir -p src/github.com/containers
4cad42
ln -s ../../../../ src/github.com/containers/%{gvproxyrepo}
4cad42
popd
4cad42
ln -s vendor src
4cad42
export GOPATH=$(pwd)/_build:$(pwd)
4cad42
%gobuild -o bin/gvproxy github.com/containers/%{gvproxyrepo}/cmd/gvproxy
4cad42
popd
4cad42
4cad42
%install
4cad42
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} \
4cad42
        ETCDIR=%{buildroot}%{_sysconfdir} \
4cad42
        install.bin-nobuild \
4cad42
        install.remote-nobuild \
4cad42
        install.man-nobuild \
4cad42
        install.systemd \
4cad42
        install.completions \
4cad42
        install.docker
4cad42
4cad42
# install test scripts, but not the internal helpers.t meta-test
4cad42
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
4cad42
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
4cad42
cp -pav test/system %{buildroot}/%{_datadir}/%{name}/test/
4cad42
rm -f               %{buildroot}/%{_datadir}/%{name}/test/system/*.t
4cad42
4cad42
# do not include docker and podman-remote man pages in main package
4cad42
for file in `find %{buildroot}%{_mandir}/man[15] -type f | sed "s,%{buildroot},," | grep -v -e remote -e docker`; do
4cad42
    echo "$file*" >> podman.file-list
4cad42
done
4cad42
4cad42
# install catatonit
4cad42
install -dp %{buildroot}%{_libexecdir}/catatonit
4cad42
install -p catatonit-%{cataver}/catatonit %{buildroot}%{_libexecdir}/catatonit
4cad42
install -dp %{buildroot}%{_libexecdir}/podman
4cad42
install -dp %{buildroot}%{_datadir}/licenses/podman-catatonit
4cad42
install -p catatonit-%{cataver}/COPYING %{buildroot}%{_datadir}/licenses/podman-catatonit/COPYING
4cad42
ln -s %{_libexecdir}/catatonit/catatonit %{buildroot}%{_libexecdir}/podman/catatonit
4cad42
4cad42
# install dnsname plugin
4cad42
pushd dnsname-%{dnsnamever}
4cad42
%{__make} PREFIX=%{_prefix} DESTDIR=%{buildroot} install
4cad42
popd
4cad42
4cad42
# install machine-cni plugin
4cad42
pushd %{name}-machine-cni-%{commit_mcni}
4cad42
%{__make} PREFIX=%{_prefix} DESTDIR=%{buildroot} install
4cad42
popd
4cad42
4cad42
# install gvproxy
4cad42
pushd %{gvproxyrepo}-%{gvproxyver}
4cad42
install -dp %{buildroot}%{_libexecdir}/%{name}
4cad42
install -p -m0755 bin/gvproxy %{buildroot}%{_libexecdir}/%{name}
4cad42
popd
4cad42
4cad42
%check
4cad42
%if 0%{?with_check}
4cad42
# Since we aren't packaging up the vendor directory we need to link
4cad42
# back to it somehow. Hack it up so that we can add the vendor
4cad42
# directory from BUILD dir as a gopath to be searched when executing
4cad42
# tests from the BUILDROOT dir.
4cad42
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
4cad42
4cad42
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
4cad42
4cad42
%if ! 0%{?gotest:1}
4cad42
%global gotest go test
4cad42
%endif
4cad42
4cad42
%gotest %{import_path}/cmd/%{name}
4cad42
%gotest %{import_path}/libkpod
4cad42
%gotest %{import_path}/libpod
4cad42
%gotest %{import_path}/pkg/registrar
4cad42
%endif
4cad42
4cad42
%triggerpostun -- %{name} < 1.1
4cad42
%{_bindir}/%{name} system renumber
4cad42
exit 0
4cad42
4cad42
#define license tag if not already defined
4cad42
%{!?_licensedir:%global license %doc}
4cad42
4cad42
%files -f podman.file-list
4cad42
%license LICENSE
4cad42
%doc README.md CONTRIBUTING.md pkg/hooks/README-hooks.md install.md transfer.md
4cad42
%{_bindir}/%{name}
4cad42
%{_datadir}/bash-completion/completions/%{name}
4cad42
# By "owning" the site-functions dir, we don't need to Require zsh
4cad42
%dir %{_datadir}/zsh/site-functions
4cad42
%{_datadir}/zsh/site-functions/_%{name}
4cad42
%dir %{_datadir}/fish/vendor_completions.d
4cad42
%{_datadir}/fish/vendor_completions.d/%{name}.fish
4cad42
%ghost %dir %{_sysconfdir}/cni/net.d
4cad42
%ghost %{_sysconfdir}/cni/net.d/87-%{name}-bridge.conflist
4cad42
%{_unitdir}/*.service
4cad42
%{_unitdir}/*.socket
4cad42
%{_unitdir}/*.timer
4cad42
%{_userunitdir}/*.service
4cad42
%{_userunitdir}/*.socket
4cad42
%{_userunitdir}/*.timer
4cad42
%{_usr}/lib/tmpfiles.d/%{name}.conf
4cad42
4cad42
%files docker
4cad42
%{_bindir}/docker
4cad42
%{_usr}/lib/tmpfiles.d/%{name}-docker.conf
4cad42
4cad42
%files remote
4cad42
%license LICENSE
4cad42
%{_bindir}/%{name}-remote
4cad42
%{_mandir}/man1/%{name}-remote*.*
4cad42
%{_datadir}/bash-completion/completions/%{name}-remote
4cad42
%dir %{_datadir}/fish
4cad42
%dir %{_datadir}/fish/vendor_completions.d
4cad42
%{_datadir}/fish/vendor_completions.d/%{name}-remote.fish
4cad42
%dir %{_datadir}/zsh
4cad42
%dir %{_datadir}/zsh/site-functions
4cad42
%{_datadir}/zsh/site-functions/_%{name}-remote
4cad42
4cad42
%files catatonit
4cad42
%license COPYING
4cad42
%doc README.md
4cad42
%dir %{_libexecdir}/catatonit
4cad42
%{_libexecdir}/catatonit/catatonit
4cad42
%dir %{_libexecdir}/podman
4cad42
%{_libexecdir}/podman/catatonit
4cad42
4cad42
%files plugins
4cad42
%license dnsname-%{dnsnamever}/LICENSE
4cad42
%doc dnsname-%{dnsnamever}/{README.md,README_PODMAN.md}
4cad42
%{_libexecdir}/cni/dnsname
4cad42
%{_libexecdir}/cni/%{name}-machine
4cad42
4cad42
%files tests
4cad42
%license LICENSE
4cad42
%{_datadir}/%{name}/test
4cad42
4cad42
%files gvproxy
4cad42
%license %{gvproxyrepo}-%{gvproxyver}/LICENSE
4cad42
%doc %{gvproxyrepo}-%{gvproxyver}/README.md
4cad42
%dir %{_libexecdir}/%{name}
4cad42
%{_libexecdir}/%{name}/gvproxy
4cad42
4cad42
%changelog
4cad42
* Tue Sep 21 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-8
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3.1-rhel
4cad42
  (https://github.com/containers/podman/commit/910b09c)
4cad42
- Related: #2002670
4cad42
4cad42
* Thu Sep 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-7
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3.1-rhel
4cad42
  (https://github.com/containers/podman/commit/8305248)
4cad42
- Related: #2002670
4cad42
4cad42
* Mon Aug 30 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 3.3.1-6
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3.1-rhel
4cad42
  (https://github.com/containers/podman/commit/405507a)
4cad42
- Related: #1970747
4cad42
- mark ghost dir correctly
4cad42
4cad42
* Mon Aug 30 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 3.3.1-5
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3.1-rhel
4cad42
  (https://github.com/containers/podman/commit/405507a)
4cad42
- Related: #1970747
4cad42
4cad42
* Mon Aug 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-4
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/7752c73)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Aug 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-3
4cad42
- podman-gvproxy -> gvproxy
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Aug 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/d09259a)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Aug 25 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/8809aed)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 3.3.0-1
4cad42
- built v3.3.0
4cad42
- bump containers-common >= 2:1-2
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Aug 18 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 3.3.0-0.21
4cad42
- build with correct CGO_CFLAGS
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Aug 18 2021 Lokesh Mandvekar <lsm5@redhat.com> - 3.3.0-0.20
4cad42
- update podman to v3.3.0-rc3
4cad42
- update dnsname to v1.3.0
4cad42
- add podman-machine-cni
4cad42
- add podman-gvproxy v0.1.0
4cad42
- podman-plugins Recommends: podman-gvproxy
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Aug 12 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.19
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/63269b6)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Aug 11 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.18
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/922699f)
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Aug 05 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.17
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/57422d2)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.16
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.3
4cad42
  (https://github.com/containers/podman/commit/b1d3875)
4cad42
- Related: #1970747
4cad42
4cad42
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.15
4cad42
- update to the latest content of https://github.com/containers/podman/tree/main
4cad42
  (https://github.com/containers/podman/commit/03afc91)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Jul 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.14
4cad42
- update to the latest content of https://github.com/containers/podman/tree/main
4cad42
  (https://github.com/containers/podman/commit/4429c7c)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Jul 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.13
4cad42
- update to the latest content of https://github.com/containers/podman/tree/main
4cad42
  (https://github.com/containers/podman/commit/f17b810)
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.12
4cad42
- update to the latest content of https://github.com/containers/podman/tree/main
4cad42
  (https://github.com/containers/podman/commit/2041731)
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.11
4cad42
- update to the latest content of https://github.com/containers/podman/tree/main
4cad42
  (https://github.com/containers/podman/commit/f9395dd)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.10
4cad42
- update to the latest content of https://github.com/containers/podman/tree/main
4cad42
  (https://github.com/containers/podman/commit/a5de831)
4cad42
- Related: #1970747
4cad42
4cad42
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.9
4cad42
- bump version to follow the 3.3.0 upgrade path
4cad42
- Related: #1970747
4cad42
4cad42
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.8
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.2.3-rhel
4cad42
  (https://github.com/containers/podman/commit/78f0bd7)
4cad42
- Related: #1970747
4cad42
4cad42
* Mon Jul 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.7
4cad42
- switch to v3.2.3-rhel branch
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Jul 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.6
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.2
4cad42
  (https://github.com/containers/podman/commit/2eea7fe)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Jul 14 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.5
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.2
4cad42
  (https://github.com/containers/podman/commit/4136f8b)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Jul 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.4
4cad42
- fix product version in gating.yaml
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.2
4cad42
  (https://github.com/containers/podman/commit/60d12f7)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Jul 07 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.3
4cad42
- put 87-podman-bridge.conflist to main podman package not podman-remote
4cad42
- Related: #1970747
4cad42
4cad42
* Mon Jul 05 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.2
4cad42
  (https://github.com/containers/podman/commit/6f0bf16)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Jul 02 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.2
4cad42
  (https://github.com/containers/podman/commit/ac740c6)
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.2-0.12
4cad42
- consume content from v3.2 upstream branch
4cad42
- Related: #1970747
4cad42
4cad42
* Tue Jun 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.11
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/c260cbd)
4cad42
- Related: #1970747
4cad42
4cad42
* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.10
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/0a0ade3)
4cad42
- Related: #1970747
4cad42
4cad42
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.9
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/d1f57a0)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.8
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/e159eb8)
4cad42
- Related: #1970747
4cad42
4cad42
* Tue Jun 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.7
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/be15e69)
4cad42
- Resolves: #1855983
4cad42
- Resolves: #1960948
4cad42
4cad42
* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.6
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/814a8b6)
4cad42
- Related: #1970747
4cad42
4cad42
* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.5
4cad42
- add new systemd unit files
4cad42
- Related: #1970747
4cad42
4cad42
* Tue Jun 15 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.4
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/e2f51ee)
4cad42
- Related: #1970747
4cad42
4cad42
* Thu Jun 10 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.3
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/d116beb)
4cad42
4cad42
* Wed Jun 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/da1bade)
4cad42
4cad42
* Tue Jun 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/df3b6da)
4cad42
4cad42
* Mon Jun 07 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.29
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/5a209b3)
4cad42
4cad42
* Fri Jun 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.28
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/f7233a2)
4cad42
4cad42
* Thu Jun 03 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.27
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/52dae69)
4cad42
4cad42
* Wed Jun 02 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.26
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/41c76d6)
4cad42
4cad42
* Tue Jun 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.25
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/8f5f0cf)
4cad42
4cad42
* Mon May 31 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.24
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/5923676)
4cad42
4cad42
* Thu May 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.23
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/d9eb126)
4cad42
4cad42
* Wed May 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.22
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/ac94be3)
4cad42
4cad42
* Wed May 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.21
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/c5b3cba)
4cad42
4cad42
* Tue May 25 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.20
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/a6f0ac2)
4cad42
4cad42
* Mon May 24 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.19
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/b060a77)
4cad42
4cad42
* Sat May 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.18
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/490915c)
4cad42
4cad42
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.17
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/e48aa8c)
4cad42
4cad42
* Thu May 20 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.16
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/8bc39f4)
4cad42
4cad42
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.15
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/4c75626)
4cad42
4cad42
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.14
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/959d6a0)
4cad42
4cad42
* Mon May 17 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.13
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/3bdbe3c)
4cad42
4cad42
* Thu May 13 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.12
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/4dc52f6)
4cad42
4cad42
* Wed May 12 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.11
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/59dd357)
4cad42
4cad42
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.10
4cad42
- require at least conmon >= 2.0.25 to assure rootless podman is able to start
4cad42
  containers
4cad42
4cad42
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.9
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/8dcd5b8)
4cad42
4cad42
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.8
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/57b6425)
4cad42
4cad42
* Mon May 10 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.7
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/54bed10)
4cad42
4cad42
* Fri May 07 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.6
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/034470e)
4cad42
4cad42
* Tue Apr 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.5
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/2b13c5d)
4cad42
4cad42
* Thu Apr 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.4
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/12881ab)
4cad42
4cad42
* Wed Mar 31 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.3
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/a373e2f)
4cad42
4cad42
* Tue Mar 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/5eb5950)
4cad42
4cad42
* Mon Mar 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.15
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/ccbe7e9)
4cad42
4cad42
* Fri Mar 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.14
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/9e23e0b)
4cad42
4cad42
* Thu Mar 25 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.13
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/e523d09)
4cad42
4cad42
* Wed Mar 24 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.12
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/860de13)
4cad42
4cad42
* Tue Mar 23 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.11
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/60c90c3)
4cad42
4cad42
* Mon Mar 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.10
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/ebc9871)
4cad42
4cad42
* Fri Mar 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.9
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/5d9b070)
4cad42
4cad42
* Thu Mar 18 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.8
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/6f6cc1c)
4cad42
4cad42
* Wed Mar 17 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.7
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/604459b)
4cad42
4cad42
* Tue Mar 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.6
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/e7dc592)
4cad42
4cad42
* Mon Mar 15 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.5
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/fc02d16)
4cad42
4cad42
* Fri Mar 12 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.4
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/81737b3)
4cad42
4cad42
* Thu Mar 11 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.3
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/e2d35e5)
4cad42
4cad42
* Wed Mar 10 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/09473d4)
4cad42
4cad42
* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/789d579)
4cad42
4cad42
* Mon Mar 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.3
4cad42
- remove docker man page as it was removed upstream
4cad42
4cad42
* Mon Mar 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/b7c00f2)
4cad42
4cad42
* Fri Mar 05 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/4e5cc6a)
4cad42
4cad42
* Thu Mar 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.1-3
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/a25ad39)
4cad42
4cad42
* Mon Feb 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.1-2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/9a2fc37)
4cad42
4cad42
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.1-1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/7e286bc)
4cad42
- Related: #1883490
4cad42
4cad42
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/797f1ea)
4cad42
4cad42
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/ddd8a17)
4cad42
4cad42
* Wed Feb 10 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.28rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/2b89fe7)
4cad42
4cad42
* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.27rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/a5ab59e)
4cad42
4cad42
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.26rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/288fb68)
4cad42
4cad42
* Thu Feb 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.25rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/82081e8)
4cad42
4cad42
* Wed Feb 03 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.24rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/978c005)
4cad42
4cad42
* Tue Feb 02 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.23rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/67d48c5)
4cad42
4cad42
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.22rc2
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/745fa4a)
4cad42
4cad42
* Wed Jan 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.21rc1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/4dbb58d)
4cad42
4cad42
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.20rc1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/dc2f4c6)
4cad42
4cad42
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.19rc1
4cad42
- update to the latest content of https://github.com/containers/podman/tree/v3.0
4cad42
  (https://github.com/containers/podman/commit/469c203)
4cad42
4cad42
* Mon Jan 18 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.18rc1
4cad42
- switch from master to release candidate (3.0.0-rc1)
4cad42
4cad42
* Fri Jan 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.17
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/78cda71)
4cad42
4cad42
* Thu Jan 07 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.16
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/355e387)
4cad42
4cad42
* Wed Jan 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.15
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/ffe2b1e)
4cad42
4cad42
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.14
4cad42
- re-disable LTO as it sill fails even with GCC 11
4cad42
- Related: #1904567
4cad42
4cad42
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.13
4cad42
- attempt to build with gcc11
4cad42
- Related: #1904567
4cad42
4cad42
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.12
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/23f25b8)
4cad42
4cad42
* Thu Dec 10 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.11
4cad42
- update to https://github.com/containers/dnsname/releases/tag/v1.1.1
4cad42
4cad42
* Wed Dec 09 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.10
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/dd295f2)
4cad42
4cad42
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.9
4cad42
- disable LTO to fix build
4cad42
4cad42
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.8
4cad42
- use dedicated macro to build only on supported arches
4cad42
4cad42
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.7
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/0c96731)
4cad42
4cad42
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.6
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/0c2a43b)
4cad42
4cad42
* Sat Dec 05 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.5
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/8e83799)
4cad42
4cad42
* Fri Dec 04 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.4
4cad42
- update to the latest content of https://github.com/containers/podman/tree/master
4cad42
  (https://github.com/containers/podman/commit/70284b1)
4cad42
4cad42
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.3
4cad42
- attempt to fix gating tests with patch from Matt Heon
4cad42
4cad42
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.1
4cad42
- update NVR to reflect the development version
4cad42
4cad42
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.0-2
4cad42
- switch to master branch
4cad42
- remove varlink support
4cad42
- simplify spec
4cad42
4cad42
* Tue Dec 01 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.0-1
4cad42
- update to https://github.com/containers/podman/releases/tag/v2.2.0
4cad42
4cad42
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-11
4cad42
- fix branch name setup
4cad42
4cad42
* Wed Nov 04 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-10
4cad42
- attempt to fix linker error with golang-1.15
4cad42
- add Requires: httpd-tools to tests, needed to work around
4cad42
  missing htpasswd in docker registry image, thanks to Ed Santiago
4cad42
4cad42
* Wed Nov 04 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-9
4cad42
- simplify spec
4cad42
- use shortcommit ID in all tarball names
4cad42
4cad42
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-8
4cad42
- use shortcommit ID in branch tarball name
4cad42
4cad42
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-7
4cad42
- add gating test files
4cad42
4cad42
* Wed Oct 21 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-6
4cad42
- fix the tarball reference for consumption directly from upstream branch
4cad42
4cad42
* Sat Oct 17 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-5
4cad42
- allow to build directly from upstream branch or release
4cad42
- make varlink disabled by default
4cad42
4cad42
* Thu Oct 15 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-4
4cad42
- add jnovy to gating test results recipients
4cad42
4cad42
* Thu Oct 15 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-3
4cad42
- update gating tests
4cad42
4cad42
* Wed Sep 30 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-2
4cad42
- fix the container-selinux boolean dependency
4cad42
4cad42
* Mon Sep 28 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-1
4cad42
- update to https://github.com/containers/podman/releases/tag/v2.1.1
4cad42
4cad42
* Wed Sep 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.0-1
4cad42
- update to https://github.com/containers/podman/releases/tag/v2.1.0
4cad42
4cad42
* Wed Sep 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-5
4cad42
- allow to be built on different than RHEL OSes
4cad42
4cad42
* Tue Sep 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-4
4cad42
- include dnsname plugin
4cad42
Resolves: #1877865
4cad42
4cad42
* Tue Sep 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-3
4cad42
- require container-selinux only when selinux-policy is installed
4cad42
Related: #1881218
4cad42
4cad42
* Mon Sep 21 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-2
4cad42
- use commit ID to refer to the upstream tarball
4cad42
4cad42
* Fri Sep 18 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-1
4cad42
- update to https://github.com/containers/podman/releases/tag/v2.0.6
4cad42
4cad42
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-5
4cad42
- update to podman-2.0.5 in rhel8 branch
4cad42