740ac3
%global with_check 0
740ac3
740ac3
%define gobuild(o:) \
576910
GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -linkmode=external -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
740ac3
740ac3
%global import_path github.com/containers/podman
4cbd03
#%%global branch main
4cbd03
%global commit0 3443f453e28169a88848f90a7ce3137fc4a4bebf
740ac3
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
c2e11d
%global cataver 0.1.7
576910
#%%global dnsnamever 1.3.0
576910
%global commit_dnsname 18822f9a4fb35d1349eb256f4cd2bfd372474d84
576910
%global shortcommit_dnsname %(c=%{commit_dnsname}; echo ${c:0:7})
740ac3
%global gvproxyrepo gvisor-tap-vsock
4cbd03
%global gvproxyver 0.5.0
4cbd03
%global commit_gvproxy aab0ac9367fc5142f5857c36ac2352bcb3c60ab7
740ac3
e24847
Epoch: 2
740ac3
Name: podman
4cbd03
Version: 4.4.0
4cbd03
Release: 1%{?dist}
740ac3
Summary: Manage Pods, Containers and Container Images
740ac3
License: ASL 2.0 and GPLv3+
740ac3
URL: https://%{name}.io/
740ac3
%if 0%{?branch:1}
740ac3
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
740ac3
%else
740ac3
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
740ac3
%endif
740ac3
Source1: https://github.com/openSUSE/catatonit/archive/v%{cataver}.tar.gz
576910
#Source2: https://github.com/containers/dnsname/archive/v%%{dnsnamever}.tar.gz
576910
Source2: https://github.com/containers/dnsname/archive/%{commit_dnsname}/dnsname-%{shortcommit_dnsname}.tar.gz
4cbd03
Source4: https://github.com/containers/gvisor-tap-vsock/archive/%{commit_gvproxy}/gvisor-tap-vsock-%{commit_gvproxy}.tar.gz
740ac3
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
740ac3
ExclusiveArch: %{go_arches}
c2e11d
Provides: %{name}-manpages = %{epoch}:%{version}-%{release}
c2e11d
Obsoletes: %{name}-manpages < %{epoch}:%{version}-%{release}
4cbd03
Provides: %{name}-catatonit = %{epoch}:%{version}-%{release}
4cbd03
Obsoletes: %{name}-catatonit < 2:4.4.0
f18332
BuildRequires: golang >= 1.17.5
740ac3
BuildRequires: glib2-devel
740ac3
BuildRequires: glibc-devel
740ac3
BuildRequires: glibc-static
740ac3
BuildRequires: git-core
576910
BuildRequires: /usr/bin/go-md2man
740ac3
BuildRequires: gpgme-devel
740ac3
BuildRequires: libassuan-devel
740ac3
BuildRequires: libgpg-error-devel
740ac3
BuildRequires: libseccomp-devel
740ac3
BuildRequires: libselinux-devel
740ac3
BuildRequires: ostree-devel
740ac3
BuildRequires: pkgconfig
740ac3
BuildRequires: make
740ac3
BuildRequires: systemd
740ac3
BuildRequires: systemd-devel
c2e11d
BuildRequires: shadow-utils-subid-devel
4cbd03
# these BRs are for catatonit
4cbd03
BuildRequires: autoconf
4cbd03
BuildRequires: automake
4cbd03
BuildRequires: file
4cbd03
BuildRequires: gcc
4cbd03
BuildRequires: libtool
576910
Requires: containers-common >= 2:1-27
f18332
Suggests: containernetworking-plugins >= 0.9.1-1
f18332
Requires: netavark
740ac3
Requires: iptables
740ac3
Requires: nftables
740ac3
Obsoletes: oci-systemd-hook < 1
f18332
Requires: libseccomp >= 2.5
740ac3
Requires: conmon >= 2.0.25
740ac3
Requires: (container-selinux if selinux-policy)
740ac3
Requires: slirp4netns >= 0.4.0-1
f18332
Recommends: crun
740ac3
Requires: fuse-overlayfs
740ac3
Requires: oci-runtime
740ac3
740ac3
%description
740ac3
%{name} (Pod Manager) is a fully featured container engine that is a simple
740ac3
daemonless tool.  %{name} provides a Docker-CLI comparable command line that
740ac3
eases the transition from other container engines and allows the management of
740ac3
pods, containers and images.  Simply put: alias docker=%{name}.
740ac3
Most %{name} commands can be run as a regular user, without requiring
740ac3
additional privileges.
740ac3
740ac3
%{name} uses Buildah(1) internally to create container images.
740ac3
Both tools share image (not container) storage, hence each can use or
740ac3
manipulate images (but not containers) created by the other.
740ac3
740ac3
%{summary}
740ac3
%{name} Simple management tool for pods, containers and images
740ac3
740ac3
%package docker
740ac3
Summary: Emulate Docker CLI using %{name}
740ac3
BuildArch: noarch
c2e11d
Requires: %{name} = %{epoch}:%{version}-%{release}
c2e11d
Provides: docker = %{epoch}:%{version}-%{release}
740ac3
740ac3
%description docker
740ac3
This package installs a script named docker that emulates the Docker CLI by
740ac3
executes %{name} commands, it also creates links between all Docker CLI man
740ac3
pages and %{name}.
740ac3
740ac3
%package remote
740ac3
Summary: A remote CLI for Podman: A Simple management tool for pods, containers and images
740ac3
740ac3
%description remote
740ac3
%{name}-remote provides a local client interacting with a Podman backend
740ac3
node through a RESTful API tunneled through a ssh connection. In this context,
740ac3
a %{name} node is a Linux system with Podman installed on it and the API
740ac3
service activated.
740ac3
740ac3
Credentials for this session can be passed in using flags, environment
740ac3
variables, or in containers.conf.
740ac3
740ac3
%package plugins
740ac3
Summary: Plugins for %{name}
740ac3
Requires: dnsmasq
c2e11d
Recommends: %{name}-gvproxy = %{epoch}:%{version}-%{release}
740ac3
740ac3
%description plugins
740ac3
This plugin sets up the use of dnsmasq on a given CNI network so
740ac3
that Pods can resolve each other by name.  When configured,
740ac3
the pod and its IP address are added to a network specific hosts file
740ac3
that dnsmasq will read in.  Similarly, when a pod
740ac3
is removed from the network, it will remove the entry from the hosts
740ac3
file.  Each CNI network will have its own dnsmasq instance.
740ac3
740ac3
%package tests
740ac3
Summary: Tests for %{name}
c2e11d
Requires: %{name} = %{epoch}:%{version}-%{release}
740ac3
#Requires: bats  (which RHEL8 doesn't have. If it ever does, un-comment this)
740ac3
Requires: nmap-ncat
740ac3
Requires: httpd-tools
740ac3
Requires: jq
740ac3
Requires: socat
740ac3
Requires: skopeo
740ac3
Requires: openssl
740ac3
Requires: buildah
c2e11d
Requires: gnupg
e24847
Requires: git-daemon
740ac3
740ac3
%description tests
740ac3
%{summary}
740ac3
740ac3
This package contains system tests for %{name}
740ac3
740ac3
%package gvproxy
740ac3
Summary: Go replacement for libslirp and VPNKit
740ac3
740ac3
%description gvproxy
740ac3
A replacement for libslirp and VPNKit, written in pure Go.
740ac3
It is based on the network stack of gVisor. Compared to libslirp,
740ac3
gvisor-tap-vsock brings a configurable DNS server and
740ac3
dynamic port forwarding.
740ac3
740ac3
%prep
740ac3
%if 0%{?branch:1}
740ac3
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
740ac3
%else
740ac3
%autosetup -Sgit -n %{name}-%{commit0}
740ac3
%endif
576910
sed -i 's;@@PODMAN@@\;$(BINDIR);@@PODMAN@@\;%{_bindir};' Makefile
f18332
sed -i 's,-Werror,,' pkg/rootless/rootless_linux.go
740ac3
tar fx %{SOURCE1}
576910
pushd catatonit-%{cataver}
576910
sed -i '$d' configure.ac
576910
popd
740ac3
tar fx %{SOURCE2}
740ac3
tar fx %{SOURCE4}
740ac3
740ac3
# this is shipped by skopeo: containers-common subpackage
740ac3
rm -rf docs/source/markdown/containers-mounts.conf.5.md
740ac3
740ac3
%build
576910
# build catatonit first because C code
576910
pushd catatonit-%{cataver}
576910
autoreconf -fi
576910
%configure
576910
CFLAGS="%{optflags} -fPIE -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
576910
%{__make} %{?_smp_mflags}
576910
# Make sure we *always* build a static binary for catatonit. Otherwise we'll break containers
576910
# that don't have the necessary shared libs.
576910
file catatonit | grep 'statically linked'
576910
if [ $? != 0 ]; then
576910
   echo "ERROR: catatonit binary must be statically linked!"
576910
   exit 1
576910
fi
576910
popd
576910
740ac3
export GO111MODULE=off
576910
export GOPATH=$(pwd)/_build:$(pwd)
576910
CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
576910
# These extra flags present in $CFLAGS have been skipped for now as they break the build
576910
CGO_CFLAGS=$(echo $CGO_CFLAGS | sed 's/-flto=auto//g')
576910
CGO_CFLAGS=$(echo $CGO_CFLAGS | sed 's/-Wp,D_GLIBCXX_ASSERTIONS//g')
576910
CGO_CFLAGS=$(echo $CGO_CFLAGS | sed 's/-specs=\/usr\/lib\/rpm\/redhat\/redhat-annobin-cc1//g')
576910
576910
%ifarch x86_64
576910
export CGO_CFLAGS+=" -m64 -mtune=generic -fcf-protection=full"
576910
%endif
740ac3
740ac3
mkdir _build
740ac3
pushd _build
740ac3
mkdir -p src/github.com/containers
740ac3
ln -s ../../../../ src/github.com/containers/podman
740ac3
popd
740ac3
ln -s vendor src
740ac3
740ac3
rm -rf vendor/github.com/containers/storage/drivers/register/register_btrfs.go
740ac3
576910
unset LDFLAGS
740ac3
# build date. FIXME: Makefile uses '/v2/libpod', that doesn't work here?
740ac3
LDFLAGS="-X %{import_path}/libpod/define.buildInfo=$(date +%s)"
576910
576910
# build rootlessport
576910
%gobuild -o bin/rootlessport %{import_path}/cmd/rootlessport
576910
576910
export BUILDTAGS="seccomp btrfs_noversion exclude_graphdriver_devicemapper exclude_graphdriver_btrfs $(hack/libdm_tag.sh) $(hack/selinux_tag.sh) $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)"
740ac3
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
740ac3
740ac3
# build %%{name}-remote
740ac3
export BUILDTAGS="remote $BUILDTAGS"
740ac3
%gobuild -o bin/%{name}-remote %{import_path}/cmd/%{name}
740ac3
4cbd03
# build quadlet
4cbd03
%gobuild -o bin/quadlet %{import_path}/cmd/quadlet
4cbd03
740ac3
%{__make} docs
740ac3
740ac3
# build dnsname plugin
740ac3
unset LDFLAGS
576910
pushd dnsname-%{commit_dnsname}
740ac3
mkdir _build
740ac3
pushd _build
740ac3
mkdir -p src/github.com/containers
740ac3
ln -s ../../../../ src/github.com/containers/dnsname
740ac3
popd
740ac3
ln -s vendor src
740ac3
export GOPATH=$(pwd)/_build:$(pwd)
740ac3
%gobuild -o bin/dnsname github.com/containers/dnsname/plugins/meta/dnsname
740ac3
popd
740ac3
4cbd03
pushd gvisor-tap-vsock-%{commit_gvproxy}
740ac3
mkdir _build
740ac3
pushd _build
740ac3
mkdir -p src/github.com/containers
4cbd03
ln -s ../../../../ src/github.com/containers/gvisor-tap-vsock
740ac3
popd
740ac3
ln -s vendor src
740ac3
export GOPATH=$(pwd)/_build:$(pwd)
4cbd03
%gobuild -o bin/gvproxy github.com/containers/gvisor-tap-vsock/cmd/gvproxy
740ac3
popd
740ac3
740ac3
%install
576910
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} ETCDIR=%{buildroot}%{_sysconfdir} \
576910
        install.bin \
576910
        install.remote \
576910
        install.man \
740ac3
        install.systemd \
740ac3
        install.completions \
740ac3
        install.docker
740ac3
740ac3
# install test scripts, but not the internal helpers.t meta-test
740ac3
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
740ac3
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
740ac3
cp -pav test/system %{buildroot}/%{_datadir}/%{name}/test/
740ac3
rm -f               %{buildroot}/%{_datadir}/%{name}/test/system/*.t
740ac3
740ac3
# do not include docker and podman-remote man pages in main package
740ac3
for file in `find %{buildroot}%{_mandir}/man[15] -type f | sed "s,%{buildroot},," | grep -v -e remote -e docker`; do
740ac3
    echo "$file*" >> podman.file-list
740ac3
done
740ac3
740ac3
# install catatonit
740ac3
install -dp %{buildroot}%{_libexecdir}/podman
4cbd03
install -dp %{buildroot}%{_datadir}/licenses/podman
4cbd03
install -p catatonit-%{cataver}/catatonit %{buildroot}%{_libexecdir}/podman/catatonit
4cbd03
install -p catatonit-%{cataver}/COPYING %{buildroot}%{_datadir}/licenses/podman/COPYING-catatonit
740ac3
740ac3
# install dnsname plugin
576910
pushd dnsname-%{commit_dnsname}
740ac3
%{__make} PREFIX=%{_prefix} DESTDIR=%{buildroot} install
740ac3
popd
740ac3
740ac3
# install gvproxy
4cbd03
pushd gvisor-tap-vsock-%{commit_gvproxy}
740ac3
install -dp %{buildroot}%{_libexecdir}/%{name}
740ac3
install -p -m0755 bin/gvproxy %{buildroot}%{_libexecdir}/%{name}
740ac3
popd
740ac3
740ac3
%check
740ac3
%if 0%{?with_check}
740ac3
# Since we aren't packaging up the vendor directory we need to link
740ac3
# back to it somehow. Hack it up so that we can add the vendor
740ac3
# directory from BUILD dir as a gopath to be searched when executing
740ac3
# tests from the BUILDROOT dir.
740ac3
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
740ac3
740ac3
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
740ac3
740ac3
%if ! 0%{?gotest:1}
740ac3
%global gotest go test
740ac3
%endif
740ac3
740ac3
%gotest %{import_path}/cmd/%{name}
740ac3
%gotest %{import_path}/libkpod
740ac3
%gotest %{import_path}/libpod
740ac3
%gotest %{import_path}/pkg/registrar
740ac3
%endif
740ac3
740ac3
%triggerpostun -- %{name} < 1.1
740ac3
%{_bindir}/%{name} system renumber
740ac3
exit 0
740ac3
f18332
%preun
f18332
if [ $1 == 0 ]; then
f18332
  systemctl stop podman.service > /dev/null 2>&1
f18332
  systemctl stop podman.socket > /dev/null 2>&1
f18332
  systemctl disable podman.service > /dev/null 2>&1
f18332
  systemctl disable podman.socket > /dev/null 2>&1
f18332
fi
f18332
:
f18332
740ac3
#define license tag if not already defined
740ac3
%{!?_licensedir:%global license %doc}
740ac3
740ac3
%files -f podman.file-list
4cbd03
%license LICENSE COPYING-catatonit
f18332
%doc README.md CONTRIBUTING.md install.md transfer.md
740ac3
%{_bindir}/%{name}
4cbd03
%{_libexecdir}/%{name}/quadlet
576910
%{_libexecdir}/%{name}/rootlessport
740ac3
%{_datadir}/bash-completion/completions/%{name}
740ac3
# By "owning" the site-functions dir, we don't need to Require zsh
740ac3
%dir %{_datadir}/zsh/site-functions
740ac3
%{_datadir}/zsh/site-functions/_%{name}
740ac3
%dir %{_datadir}/fish/vendor_completions.d
740ac3
%{_datadir}/fish/vendor_completions.d/%{name}.fish
740ac3
%ghost %dir %{_sysconfdir}/cni/net.d
740ac3
%ghost %{_sysconfdir}/cni/net.d/87-%{name}-bridge.conflist
740ac3
%{_unitdir}/*.service
740ac3
%{_unitdir}/*.socket
740ac3
%{_unitdir}/*.timer
740ac3
%{_userunitdir}/*.service
740ac3
%{_userunitdir}/*.socket
740ac3
%{_userunitdir}/*.timer
740ac3
%{_usr}/lib/tmpfiles.d/%{name}.conf
4cbd03
%dir %{_libexecdir}/podman
4cbd03
%{_libexecdir}/podman/catatonit
4cbd03
%{_usr}/lib/systemd/system-generators/podman-system-generator
4cbd03
%{_usr}/lib/systemd/user-generators/podman-user-generator
4cbd03
740ac3
740ac3
%files docker
740ac3
%{_bindir}/docker
740ac3
%{_usr}/lib/tmpfiles.d/%{name}-docker.conf
4cbd03
%{_datadir}/user-tmpfiles.d/podman-docker.conf
740ac3
740ac3
%files remote
740ac3
%license LICENSE
740ac3
%{_bindir}/%{name}-remote
740ac3
%{_mandir}/man1/%{name}-remote*.*
740ac3
%{_datadir}/bash-completion/completions/%{name}-remote
740ac3
%dir %{_datadir}/fish
740ac3
%dir %{_datadir}/fish/vendor_completions.d
740ac3
%{_datadir}/fish/vendor_completions.d/%{name}-remote.fish
740ac3
%dir %{_datadir}/zsh
740ac3
%dir %{_datadir}/zsh/site-functions
740ac3
%{_datadir}/zsh/site-functions/_%{name}-remote
740ac3
740ac3
%files plugins
576910
%license dnsname-%{commit_dnsname}/LICENSE
576910
%doc dnsname-%{commit_dnsname}/{README.md,README_PODMAN.md}
740ac3
%{_libexecdir}/cni/dnsname
740ac3
740ac3
%files tests
740ac3
%license LICENSE
740ac3
%{_datadir}/%{name}/test
740ac3
740ac3
%files gvproxy
4cbd03
%license gvisor-tap-vsock-%{commit_gvproxy}/LICENSE
4cbd03
%doc gvisor-tap-vsock-%{commit_gvproxy}/README.md
740ac3
%dir %{_libexecdir}/%{name}
740ac3
%{_libexecdir}/%{name}/gvproxy
740ac3
740ac3
%changelog
4cbd03
* Fri Feb 03 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-1
4cbd03
- update to podman-4.4 release
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Wed Feb 01 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.10
4cbd03
- update to the latest content of https://github.com/containers/podman/tree/main
4cbd03
  (https://github.com/containers/podman/commit/68bbdc2)
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Mon Jan 30 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.9
4cbd03
- update to the latest content of https://github.com/containers/podman/tree/main
4cbd03
  (https://github.com/containers/podman/commit/323b515)
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Wed Jan 25 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.8
4cbd03
- update to the latest content of https://github.com/containers/podman/tree/main
4cbd03
  (https://github.com/containers/podman/commit/c35e74f)
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Tue Jan 24 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.7
4cbd03
- update to the latest content of https://github.com/containers/podman/tree/main
4cbd03
  (https://github.com/containers/podman/commit/ce504bb)
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Thu Jan 19 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.6
4cbd03
- add quadlet to tests
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Wed Jan 18 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.5
4cbd03
- obsolete podman-catatonit in order to not to file conflict with catatonit
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Wed Jan 18 2023 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.4.0-0.4
4cbd03
- build v4.4.0-rc2
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Tue Jan 17 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.3
4cbd03
- remove podman-machine-cni, it is now part of podman 4.0 or newer
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Tue Jan 17 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.2
4cbd03
- update to the latest content of https://github.com/containers/podman/tree/main
4cbd03
  (https://github.com/containers/podman/commit/07ba51d)
4cbd03
- update gvisor-tap-vsock to 0.5.0
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Fri Jan 13 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.4.0-0.1
4cbd03
- podman-4.4.0-rc1
4cbd03
- update to the latest content of https://github.com/containers/podman/tree/main
4cbd03
  (https://github.com/containers/podman/commit/f1af5b3)
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Wed Jan 11 2023 Jindrich Novy <jnovy@redhat.com> - 2:4.3.1-4
4cbd03
- podman shouldn't provide and file conflict with catatonit in CRB
4cbd03
- Resolves: #2151322
4cbd03
4cbd03
* Mon Nov 28 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.3.1-3
4cbd03
- fix 'podman manifest add' is not concurrent safe
4cbd03
- Resolves: #2105173
4cbd03
4cbd03
* Sat Nov 26 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.3.1-2
4cbd03
- properly obsolete catatonit
4cbd03
- Resolves: #2123319
4cbd03
4cbd03
* Wed Nov 16 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.3.1-1
4cbd03
- update to https://github.com/containers/podman/releases/tag/v4.3.1
4cbd03
- Related: #2124478
4cbd03
4cbd03
* Tue Nov 08 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.3.0-2
4cbd03
- rebuild to fix CVE-2022-30629
4cbd03
- Related: #2102994
4cbd03
4cbd03
* Thu Nov 03 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.3.0-1
4cbd03
- update to https://github.com/containers/podman/releases/tag/v4.3.0
4cbd03
- Related: #2124478
4cbd03
f18332
* Mon Aug 22 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.2.0-3
f18332
- fix dependency in test subpackage
f18332
- Related: #2061316
f18332
f18332
* Mon Aug 22 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.2.0-2
f18332
- readd catatonit
f18332
- Related: #2061316
f18332
f18332
* Thu Aug 11 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.2.0-1
f18332
- update to latest content of https://github.com/containers/podman/releases/tag/4.2.0
f18332
  (https://github.com/containers/podman/commit/7fe5a419cfd2880df2028ad3d7fd9378a88a04f4)
f18332
- Related: #2061316
f18332
f18332
* Wed Aug 10 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.2.0-0.3rc3
f18332
- require catatonit for gating tests
f18332
- Related: #2061316
f18332
f18332
* Fri Aug 05 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.2.0-0.2rc3
f18332
- update to 4.2.0-rc3
f18332
- Related: #2061316
f18332
f18332
* Mon Aug 01 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.2.0-0.1rc2
f18332
- update to 4.2.0-rc2
f18332
- Related: #2061316
f18332
f18332
* Thu Jul 28 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.1-6
f18332
- convert catatonit dependency to soft dep as catatonit is
f18332
  no longer in Appstream but in CRB
f18332
- Related: #2061316
f18332
f18332
* Fri Jul 22 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.1.1-5
f18332
- rebuild for combined gating with catatonit
f18332
- Related: #2097694
f18332
f18332
* Tue Jul 19 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.1.1-4
f18332
- catatonit is now a standalone package
f18332
- Related: #2097694
f18332
f18332
* Fri Jul 08 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.1-3
f18332
- update to the latest content of https://github.com/containers/podman/tree/v4.1.1-rhel
f18332
  (https://github.com/containers/podman/commit/fa692a6)
f18332
- Related: #2097694
f18332
f18332
* Fri Jul 01 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.1-2
f18332
- be sure podman services/sockets are stopped upon package removal
f18332
- Related: #2061316
f18332
f18332
* Wed Jun 15 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.1-1
f18332
- update to https://github.com/containers/podman/releases/tag/v4.1.1
f18332
- Related: #2061316
f18332
f18332
* Mon May 23 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.0-4
f18332
- don't require runc and Recommends: crun
f18332
- Related: #2061316
f18332
f18332
* Fri May 13 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.0-3
f18332
- Re-enable LTO and debuginfo
f18332
- Related: #2061316
f18332
f18332
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.0-2
f18332
- update gvisor-tap-vsock to 0.2.0 to fix compilation with golang 1.18
f18332
- Related: #2061316
f18332
f18332
* Mon May 09 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.1.0-1
f18332
- update to https://github.com/containers/podman/releases/tag/v4.1.0
f18332
- Related: #2061316
f18332
f18332
* Tue May 03 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.3-2
f18332
- require netavark and move CNI to soft dependencies
f18332
- Related: #2061316
f18332
f18332
* Fri Apr 01 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.3-1
f18332
- update to https://github.com/containers/podman/releases/tag/v4.0.3
f18332
- Related: #2061316
f18332
f18332
* Fri Mar 18 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.2-3
f18332
- bump minimal libseccomp version requirement
f18332
- Related: #2061316
f18332
f18332
* Mon Mar 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.2-2
f18332
- rebuilt with golang >= 1.17.5 (CVE-2021-44716, CVE-2021-44717)
f18332
- Related: #2061316
576910
576910
* Wed Mar 02 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.2-1
576910
- update to https://github.com/containers/podman/releases/tag/v4.0.2
576910
- Related: #2059681
576910
576910
* Mon Feb 28 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.1-1
576910
- update to https://github.com/containers/podman/releases/tag/v4.0.1
576910
- Related: #2000051
576910
576910
* Tue Feb 22 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.0.0-6
576910
- set catatonit cflags after configure step, don't explicitly set ldflags
576910
- Related: #2054115
576910
576910
* Tue Feb 22 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.0.0-5
576910
- revert previous change and run `set_build_flags` before the build process
576910
- Related: #2054115
576910
576910
* Tue Feb 22 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.0.0-4
576910
- add -D_FORTIFY_SOURCE=2 for podman-catatonit
576910
- Related: #2054115
576910
576910
* Tue Feb 22 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.0.0-3
576910
- depend on containers-common >= 2:1-28
576910
- Related: #2000051
576910
576910
* Mon Feb 21 2022 Lokesh Mandvekar <lsm5@redhat.com> - 2:4.0.0-2
576910
- use correct commit 49f8da72 for podman, previous commit said 4.0.1-dev
576910
- Related: #2000051
576910
576910
* Fri Feb 18 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-1
576910
- update to podman-4.0.0 release
576910
- Related: #2000051
576910
576910
* Thu Feb 17 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.32
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/a34f279)
576910
- Related: #2000051
576910
576910
* Tue Feb 15 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.31
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/ab3e566)
576910
- Related: #2000051
576910
576910
* Mon Feb 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.30
576910
- fix linker flags to assure -D_FORTIFY_SOURCE=2 is present at the command line
576910
- Related: #2000051
576910
576910
* Mon Feb 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.29
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/b0a445e)
576910
- Related: #2000051
576910
576910
* Fri Feb 11 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.28
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/c4a9aa7)
576910
- Related: #2000051
576910
576910
* Thu Feb 10 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.27
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/5b2d96f)
576910
- Related: #2000051
576910
576910
* Wed Feb 09 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.26
576910
- set CGO_CFLAGS explicitly
576910
- Related: #2000051
576910
576910
* Tue Feb 08 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.25
576910
- bump to 0.25 to have highest NVR
576910
- Related: #2000051
576910
576910
* Tue Feb 08 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.4
576910
- rebuilt
576910
- Related: #2000051
576910
576910
* Mon Feb 07 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.3
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/2dca7b2)
576910
- Related: #2000051
576910
576910
* Fri Feb 04 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.2
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/4ad9e00)
576910
- Related: #2000051
576910
576910
* Fri Feb 04 2022 Jindrich Novy <jnovy@redhat.com> - 2:4.0.0-0.1
576910
- update to the latest content of https://github.com/containers/podman/tree/v4.0
576910
  (https://github.com/containers/podman/commit/337f706)
576910
- Related: #2000051
576910
576910
* Thu Jan 27 2022 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.8
576910
- update to the latest content of https://github.com/containers/podman/tree/v3.4
576910
  (https://github.com/containers/podman/commit/a54320a)
576910
- Related: #2000051
576910
e24847
* Wed Jan 19 2022 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.7
e24847
- add rootless_role (Ed Santiago)
e24847
- Related: #2000051
e24847
e24847
* Mon Jan 17 2022 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.6
e24847
- add git-daemon to test subpackage
e24847
  (https://github.com/containers/podman/issues/12851)
e24847
- Related: #2000051
e24847
e24847
* Thu Jan 13 2022 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.5
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/63134a1)
e24847
- Related: #2000051
e24847
e24847
* Tue Jan 11 2022 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.4
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/3f57b6e)
e24847
- Related: #2000051
e24847
e24847
* Fri Dec 17 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.3
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/17788ed)
e24847
- Related: #2000051
e24847
e24847
* Thu Dec 09 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.2
e24847
- incorporate gating test fixes from Ed Santiago:
e24847
  - remove buildah and skopeo (unused)
e24847
  - bump BATS from v1.1 to v1.5
e24847
  - rename "nonroot" to "rootless"
e24847
- Related: #2000051
e24847
e24847
* Thu Dec 09 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.5-0.1
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/b8fde5c)
e24847
- Related: #2000051
e24847
e24847
* Tue Dec 07 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.4-0.1
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/49f589d)
e24847
- Related: #2000051
e24847
e24847
* Tue Dec 07 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.3-0.11
e24847
- remove downstream patch already applied upstream
e24847
- Related: #2000051
e24847
e24847
* Mon Dec 06 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.3-0.10
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/fe44757)
e24847
- Related: #2000051
e24847
e24847
* Thu Dec 02 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.3-0.9
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/815f36a)
e24847
- Related: #2000051
e24847
e24847
* Wed Dec 01 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.3-0.8
e24847
- update to the latest content of https://github.com/containers/podman/tree/v3.4
e24847
  (https://github.com/containers/podman/commit/31bc358)
e24847
- Related: #2000051
e24847
e24847
* Tue Nov 30 2021 Jindrich Novy <jnovy@redhat.com> - 2:3.4.3-0.7
e24847
- bump Epoch to not to pull in older versions built off upstream main branch
e24847
- Related: #2000051
e24847
c2e11d
* Tue Nov 23 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.3-0.6
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/e3a7a74)
c2e11d
- add libsubid_tag.sh into BUILDTAGS
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Nov 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.3-0.5
c2e11d
- do not put patch URL as the backported patch will get overwritten when
c2e11d
  "spectool -g -f" is executed
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Nov 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.3-0.4
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/7203178)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Tue Nov 16 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.3-0.3
c2e11d
- remove -t 0 from podman gating test
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Nov 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.3-0.2
c2e11d
- add BuildRequires: shadow-utils-subid-devel
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Nov 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.3-0.1
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/4808a63)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Fri Nov 12 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.8
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/fd010ad)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Thu Nov 11 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.7
c2e11d
- backport https://github.com/containers/podman/pull/12118 to 3.4
c2e11d
  in attempt to fix gating tests
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Thu Nov 11 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.6
c2e11d
- add Requires: gnupg
c2e11d
  (https://github.com/containers/podman/pull/12270)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Tue Nov 09 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.5
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/8de9950)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Nov 08 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.4
c2e11d
- update catatonit to 1.7
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Tue Nov 02 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.3
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/75023e9)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Thu Oct 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.2
c2e11d
- compile catatonit library as PIE
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Thu Oct 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.2-0.1
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/09aade7)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Tue Oct 19 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.1-2
c2e11d
- more dependency tightening - thanks to Michael Rochefort for noticing
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:3.4.1-1
c2e11d
- update to the latest content of https://github.com/containers/podman/tree/v3.4
c2e11d
  (https://github.com/containers/podman/commit/c15c154)
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:4.0.0-0.24
c2e11d
- respect Epoch in subpackage dependencies
c2e11d
- Related: #2000051
c2e11d
c2e11d
* Fri Oct 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:4.0.0-0.23
c2e11d
- bump Epoch to preserve upgrade path from RHEL8
c2e11d
- Related: #2000051
c2e11d
740ac3
* Mon Oct 11 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.22
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/ea86893)
740ac3
- Related: #2000051
740ac3
740ac3
* Fri Oct 08 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.21
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/14c0fcc)
740ac3
- Related: #2000051
740ac3
740ac3
* Thu Oct 07 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.20
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/bfb904b)
740ac3
- Related: #2000051
740ac3
740ac3
* Wed Oct 06 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.19
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/8bcc086)
740ac3
- Related: #2000051
740ac3
740ac3
* Tue Oct 05 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.18
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/c963a50)
740ac3
- Related: #2000051
740ac3
740ac3
* Mon Oct 04 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.17
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/b9d8c63)
740ac3
- Related: #2000051
740ac3
740ac3
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.16
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/317e20a)
740ac3
- Related: #2000051
740ac3
740ac3
* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.15
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/b187dfe)
740ac3
- Related: #2000051
740ac3
740ac3
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.14
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/cd10304)
740ac3
- Related: #2000051
740ac3
740ac3
* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.13
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/e19a09c)
740ac3
- Related: #2000051
740ac3
740ac3
* Fri Sep 24 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.12
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/800d594)
740ac3
- Related: #2000051
740ac3
740ac3
* Thu Sep 23 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.11
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/1dba601)
740ac3
- Related: #2000051
740ac3
740ac3
* Wed Sep 22 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.10
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/8e2d25e)
740ac3
- Related: #2000051
740ac3
740ac3
* Tue Sep 21 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.9
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/b925d70)
740ac3
- Related: #2000051
740ac3
740ac3
* Fri Sep 17 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.8
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/6cf13c3)
740ac3
- Related: #2000051
740ac3
740ac3
* Thu Sep 16 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.7
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/5f41ffd)
740ac3
- update to https://github.com/containers/podman-machine-cni/releases/tag/v0.2.0
740ac3
- Related: #2000051
740ac3
740ac3
* Wed Sep 15 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.6
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/4b6ffda)
740ac3
- Related: #2000051
740ac3
740ac3
* Wed Sep 15 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.5
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/323fe36)
740ac3
- Related: #2000051
740ac3
740ac3
* Tue Sep 14 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.4
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/b603c7a)
740ac3
- Related: #2000051
740ac3
740ac3
* Mon Sep 13 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.3
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/0f3d3bd)
740ac3
- Related: #2000051
740ac3
740ac3
* Fri Sep 10 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/63f6656)
740ac3
- Related: #2000051
740ac3
740ac3
* Thu Sep 09 2021 Jindrich Novy <jnovy@redhat.com> - 4.0.0-0.1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/26c8549)
740ac3
- Related: #2000051
740ac3
740ac3
* Fri Sep 03 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.1-1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.3.1-rhel
740ac3
  (https://github.com/containers/podman/commit/405507a)
740ac3
- Related: #2000051
740ac3
- mark ghost dir correctly
740ac3
740ac3
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 3.3.0-4
740ac3
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
740ac3
  Related: rhbz#1991688
740ac3
740ac3
* Thu Aug 05 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-3
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.3
740ac3
  (https://github.com/containers/podman/commit/57422d2)
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.3
740ac3
  (https://github.com/containers/podman/commit/b1d3875)
740ac3
- Related: #1970747
740ac3
740ac3
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-1
740ac3
- update to 3.3.0 release and switch to the v3.3 maint branch
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.27
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/4244288)
740ac3
- Related: #1970747
740ac3
740ac3
* Fri Jul 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.26
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/f17b810)
740ac3
- Related: #1970747
740ac3
740ac3
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.25
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/2041731)
740ac3
- Related: #1970747
740ac3
740ac3
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.24
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/f9395dd)
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.23
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/a5de831)
740ac3
- Related: #1970747
740ac3
740ac3
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.22
740ac3
- bump version to follow the 3.3.0 upgrade path
740ac3
- Related: #1970747
740ac3
740ac3
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.9
740ac3
- update to the latest content of https://github.com/containers/podman/tree/main
740ac3
  (https://github.com/containers/podman/commit/4f5b19c)
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.8
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.2.3-rhel
740ac3
  (https://github.com/containers/podman/commit/78f0bd7)
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jul 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.7
740ac3
- switch to v3.2.3-rhel branch
740ac3
- Related: #1970747
740ac3
740ac3
* Fri Jul 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.6
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.2
740ac3
  (https://github.com/containers/podman/commit/2eea7fe)
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jul 14 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.5
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.2
740ac3
  (https://github.com/containers/podman/commit/4136f8b)
740ac3
- Related: #1970747
740ac3
740ac3
* Fri Jul 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.4
740ac3
- update product version in gating.yaml
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.2
740ac3
  (https://github.com/containers/podman/commit/60d12f7)
740ac3
- Related: #1970747
740ac3
740ac3
* Thu Jul 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.3
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.2
740ac3
  (https://github.com/containers/podman/commit/275b0d8)
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jul 07 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.2
740ac3
- put 87-podman-bridge.conflist to main podman package not podman-remote
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jul 05 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.3-0.1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.2
740ac3
  (https://github.com/containers/podman/commit/6f0bf16)
740ac3
- Related: #1970747
740ac3
740ac3
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.2-2
740ac3
- remove missing unit files
740ac3
- Related: #1970747
740ac3
740ac3
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.2-1
740ac3
- consume content from v3.2 upstream branch
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jun 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.21
740ac3
- fix build
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jun 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.20
740ac3
- update install targets
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jun 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.19
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/1846070)
740ac3
- Related: #1970747
740ac3
740ac3
* Tue Jun 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.18
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/c260cbd)
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.17
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/0a0ade3)
740ac3
- Related: #1970747
740ac3
740ac3
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.16
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/d1f57a0)
740ac3
- Related: #1970747
740ac3
740ac3
* Thu Jun 24 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.15
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/fc34f35)
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.14
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/d3afc6b)
740ac3
- Related: #1970747
740ac3
740ac3
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 3.3.0-0.13
740ac3
- Rebuilt for RHEL 9 BETA for openssl 3.0
740ac3
  Related: rhbz#1971065
740ac3
740ac3
* Tue Jun 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.12
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/be15e69)
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jun 21 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.11
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/928687e)
740ac3
- Resolves: #1970747
740ac3
740ac3
* Fri Jun 18 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.10
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/ce04a3e)
740ac3
- Resolves: #1970747
740ac3
740ac3
* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.9
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/814a8b6)
740ac3
- Resolves: #1970747
740ac3
740ac3
* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.8
740ac3
- add new systemd unit files
740ac3
- Related: #1970747
740ac3
740ac3
* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.7
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/092b2ec)
740ac3
- Related: #1970747
740ac3
740ac3
* Tue Jun 15 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.6
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/e2f51ee)
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.5
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/e549ca5)
740ac3
- Related: #1970747
740ac3
740ac3
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 3.3.0-0.4
740ac3
- update podman
740ac3
- Related: #1970747
740ac3
740ac3
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.2.0-0.6
740ac3
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
740ac3
740ac3
* Tue Apr 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.5
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/2b13c5d)
740ac3
740ac3
* Thu Apr 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.4
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/12881ab)
740ac3
740ac3
* Wed Mar 31 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.3
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/a373e2f)
740ac3
740ac3
* Tue Mar 30 2021 Jindrich Novy <jnovy@redhat.com> - 3.2.0-0.2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/5eb5950)
740ac3
740ac3
* Mon Mar 29 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.15
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/ccbe7e9)
740ac3
740ac3
* Fri Mar 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.14
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/9e23e0b)
740ac3
740ac3
* Thu Mar 25 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.13
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/e523d09)
740ac3
740ac3
* Wed Mar 24 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.12
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/860de13)
740ac3
740ac3
* Tue Mar 23 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.11
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/60c90c3)
740ac3
740ac3
* Mon Mar 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.10
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/ebc9871)
740ac3
740ac3
* Fri Mar 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.9
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/5d9b070)
740ac3
740ac3
* Thu Mar 18 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.8
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/6f6cc1c)
740ac3
740ac3
* Wed Mar 17 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.7
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/604459b)
740ac3
740ac3
* Tue Mar 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.6
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/e7dc592)
740ac3
740ac3
* Mon Mar 15 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.5
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/fc02d16)
740ac3
740ac3
* Fri Mar 12 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.4
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/81737b3)
740ac3
740ac3
* Thu Mar 11 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.3
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/e2d35e5)
740ac3
740ac3
* Wed Mar 10 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/09473d4)
740ac3
740ac3
* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.1.0-0.1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/789d579)
740ac3
740ac3
* Mon Mar 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.5
740ac3
- remove docker man page as it was removed upstream
740ac3
740ac3
* Mon Mar 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.4
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/b7c00f2)
740ac3
740ac3
* Fri Mar 05 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.3
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/4e5cc6a)
740ac3
740ac3
* Thu Mar 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/87e2056)
740ac3
740ac3
* Wed Mar 03 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.2-0.1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/0a40c5a)
740ac3
740ac3
* Mon Feb 22 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.1-2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/9a2fc37)
740ac3
740ac3
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.1-1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/7e286bc)
740ac3
740ac3
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/797f1ea)
740ac3
740ac3
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/ddd8a17)
740ac3
740ac3
* Wed Feb 10 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.29rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/2b89fe7)
740ac3
740ac3
* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.28rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/a5ab59e)
740ac3
740ac3
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.27rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/288fb68)
740ac3
740ac3
* Thu Feb 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.26rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/82081e8)
740ac3
740ac3
* Wed Feb 03 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.25rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/978c005)
740ac3
740ac3
* Tue Feb 02 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.24rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/67d48c5)
740ac3
740ac3
* Mon Feb 01 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.23rc2
740ac3
- require oci-runtime to assure either crun or runc is pulled in via
740ac3
  dependencies
740ac3
- Resolves: #1923547
740ac3
740ac3
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.22rc2
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/745fa4a)
740ac3
740ac3
* Wed Jan 27 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.21rc1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/4dbb58d)
740ac3
740ac3
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.20rc1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/dc2f4c6)
740ac3
740ac3
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.19rc1
740ac3
- update to the latest content of https://github.com/containers/podman/tree/v3.0
740ac3
  (https://github.com/containers/podman/commit/469c203)
740ac3
740ac3
* Mon Jan 18 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.18rc1
740ac3
- switch from master to release candidate (3.0.0-rc1)
740ac3
740ac3
* Fri Jan 08 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.17
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/78cda71)
740ac3
740ac3
* Thu Jan 07 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.16
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/355e387)
740ac3
740ac3
* Wed Jan 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.15
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/ffe2b1e)
740ac3
740ac3
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.14
740ac3
- re-disable LTO as it sill fails even with GCC 11
740ac3
- Related: #1904567
740ac3
740ac3
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.13
740ac3
- attempt to build with gcc11
740ac3
- Related: #1904567
740ac3
740ac3
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.12
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/23f25b8)
740ac3
740ac3
* Thu Dec 10 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.11
740ac3
- update to https://github.com/containers/dnsname/releases/tag/v1.1.1
740ac3
740ac3
* Wed Dec 09 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.10
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/dd295f2)
740ac3
740ac3
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.9
740ac3
- disable LTO to fix build
740ac3
740ac3
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.8
740ac3
- use dedicated macro to build only on supported arches
740ac3
740ac3
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.7
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/0c96731)
740ac3
740ac3
* Mon Dec 07 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.6
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/0c2a43b)
740ac3
740ac3
* Sat Dec 05 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.5
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/8e83799)
740ac3
740ac3
* Fri Dec 04 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.4
740ac3
- update to the latest content of https://github.com/containers/podman/tree/master
740ac3
  (https://github.com/containers/podman/commit/70284b1)
740ac3
740ac3
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.3
740ac3
- attempt to fix gating tests with patch from Matt Heon
740ac3
740ac3
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 3.0.0-0.1
740ac3
- update NVR to reflect the development version
740ac3
740ac3
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.0-2
740ac3
- switch to master branch
740ac3
- remove varlink support
740ac3
- simplify spec
740ac3
740ac3
* Tue Dec 01 2020 Jindrich Novy <jnovy@redhat.com> - 2.2.0-1
740ac3
- update to https://github.com/containers/podman/releases/tag/v2.2.0
740ac3
740ac3
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-11
740ac3
- fix branch name setup
740ac3
740ac3
* Wed Nov 04 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-10
740ac3
- attempt to fix linker error with golang-1.15
740ac3
- add Requires: httpd-tools to tests, needed to work around
740ac3
  missing htpasswd in docker registry image, thanks to Ed Santiago
740ac3
740ac3
* Wed Nov 04 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-9
740ac3
- simplify spec
740ac3
- use shortcommit ID in all tarball names
740ac3
740ac3
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-8
740ac3
- use shortcommit ID in branch tarball name
740ac3
740ac3
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-7
740ac3
- add gating test files
740ac3
740ac3
* Wed Oct 21 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-6
740ac3
- fix the tarball reference for consumption directly from upstream branch
740ac3
740ac3
* Sat Oct 17 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-5
740ac3
- allow to build directly from upstream branch or release
740ac3
- make varlink disabled by default
740ac3
740ac3
* Thu Oct 15 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-4
740ac3
- add jnovy to gating test results recipients
740ac3
740ac3
* Thu Oct 15 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-3
740ac3
- update gating tests
740ac3
740ac3
* Wed Sep 30 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-2
740ac3
- fix the container-selinux boolean dependency
740ac3
740ac3
* Mon Sep 28 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.1-1
740ac3
- update to https://github.com/containers/podman/releases/tag/v2.1.1
740ac3
740ac3
* Wed Sep 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.1.0-1
740ac3
- update to https://github.com/containers/podman/releases/tag/v2.1.0
740ac3
740ac3
* Wed Sep 23 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-5
740ac3
- allow to be built on different than RHEL OSes
740ac3
740ac3
* Tue Sep 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-4
740ac3
- include dnsname plugin
740ac3
Resolves: #1877865
740ac3
740ac3
* Tue Sep 22 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-3
740ac3
- require container-selinux only when selinux-policy is installed
740ac3
Related: #1881218
740ac3
740ac3
* Mon Sep 21 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-2
740ac3
- use commit ID to refer to the upstream tarball
740ac3
740ac3
* Fri Sep 18 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.6-1
740ac3
- update to https://github.com/containers/podman/releases/tag/v2.0.6
740ac3
740ac3
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 2.0.5-5
740ac3
- update to podman-2.0.5 in rhel8 branch
740ac3