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