97347a
%global _find_debuginfo_dwz_opts %{nil}
97347a
%global _dwz_low_mem_die_limit 0
97347a
97347a
%if 0%{?rhel} > 7 && ! 0%{?fedora}
97347a
%define gobuild(o:) \
97347a
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
97347a
%else
97347a
%if ! 0%{?gobuild:1}
97347a
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -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 %{?**};
97347a
%endif
97347a
%endif
97347a
97347a
%global import_path github.com/containers/buildah
f01db1
%global branch release-1.24
f01db1
%global commit0 8cc45860878359be0a53bed42adb8991e245e24a
97347a
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
97347a
97347a
Epoch: 1
97347a
Name: buildah
f01db1
Version: 1.24.5
97347a
Release: 2%{?dist}
97347a
Summary: A command line tool used for creating OCI Images
97347a
License: ASL 2.0
97347a
URL: https://%{name}.io
97347a
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
97347a
ExclusiveArch: %{go_arches}
97347a
%if 0%{?branch:1}
97347a
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
97347a
%else
97347a
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
97347a
%endif
f01db1
BuildRequires: golang >= 1.17.7
97347a
BuildRequires: git
97347a
BuildRequires: glib2-devel
97347a
BuildRequires: libseccomp-devel
97347a
BuildRequires: ostree-devel
97347a
BuildRequires: glibc-static
97347a
BuildRequires: go-md2man
97347a
BuildRequires: gpgme-devel
97347a
BuildRequires: device-mapper-devel
97347a
BuildRequires: libassuan-devel
97347a
BuildRequires: make
97347a
Requires: runc >= 1.0.0-26
97347a
Requires: containers-common >= 2:1-2
97347a
Recommends: container-selinux
97347a
Requires: slirp4netns >= 0.3-0
97347a
97347a
%description
97347a
The %{name} package provides a command line tool which can be used to
97347a
* create a working container from scratch
97347a
or
97347a
* create a working container from an image as a starting point
97347a
* mount/umount a working container's root file system for manipulation
97347a
* save container's root file system layer to create a new image
97347a
* delete a working container or an image
97347a
97347a
%package tests
97347a
Summary: Tests for %{name}
97347a
Requires: %{name} = %{epoch}:%{version}-%{release}
97347a
Requires: bzip2
97347a
Requires: podman
97347a
Requires: golang
97347a
Requires: jq
97347a
Requires: httpd-tools
97347a
Requires: openssl
97347a
Requires: nmap-ncat
97347a
97347a
%description tests
97347a
%{summary}
97347a
97347a
This package contains system tests for %{name}
97347a
97347a
%prep
97347a
%if 0%{?branch:1}
97347a
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
97347a
%else
97347a
%autosetup -Sgit -n %{name}-%{commit0}
97347a
%endif
97347a
sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
97347a
sed -i '/docs install/d' Makefile
97347a
97347a
%build
97347a
mkdir _build
97347a
pushd _build
97347a
mkdir -p src/github.com/containers
97347a
ln -s $(dirs +1 -l) src/%{import_path}
97347a
popd
97347a
97347a
mv vendor src
97347a
97347a
export GOPATH=$(pwd)/_build:$(pwd)
97347a
export BUILDTAGS='seccomp selinux btrfs_noversion exclude_graphdriver_btrfs'
97347a
export GO111MODULE=off
97347a
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
97347a
export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'`
97347a
export LDFLAGS="$LDFLAGS -X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}"
97347a
rm -f src/github.com/containers/storage/drivers/register/register_btrfs.go
97347a
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
97347a
%gobuild -o imgtype %{import_path}/tests/imgtype
97347a
%gobuild -o bin/copy %{import_path}/tests/copy
97347a
GOMD2MAN=go-md2man %{__make} -C docs
97347a
97347a
%install
97347a
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
97347a
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
97347a
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
97347a
cp -pav tests/. %{buildroot}/%{_datadir}/%{name}/test/system
97347a
cp imgtype %{buildroot}/%{_bindir}/%{name}-imgtype
97347a
cp bin/copy %{buildroot}/%{_bindir}/%{name}-copy
97347a
make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
97347a
97347a
#define license tag if not already defined
97347a
%{!?_licensedir:%global license %doc}
97347a
97347a
%files
97347a
%license LICENSE
97347a
%doc README.md
97347a
%{_bindir}/%{name}
97347a
%{_mandir}/man[15]/*
97347a
%dir %{_datadir}/bash-completion
97347a
%dir %{_datadir}/bash-completion/completions
97347a
%{_datadir}/bash-completion/completions/%{name}
97347a
97347a
%files tests
97347a
%license LICENSE
97347a
%{_bindir}/%{name}-imgtype
97347a
%{_bindir}/%{name}-copy
97347a
%{_datadir}/%{name}/test
97347a
97347a
%changelog
f01db1
* Wed Aug 24 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.5-2
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/8cc4586)
f01db1
- Related: #2061390
f01db1
f01db1
* Thu Jul 28 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.5-1
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/83c5f26)
f01db1
- Related: #2061390
f01db1
f01db1
* Fri Jul 15 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.4-3
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/e99286b)
f01db1
- Related: #2061390
f01db1
f01db1
* Wed Jul 13 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.4-2
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/63813ef)
f01db1
- Related: #2061390
f01db1
f01db1
* Thu May 12 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.4-1
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/c1bdaba)
f01db1
- Related: #2061390
f01db1
f01db1
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.3-1
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/d29224c)
f01db1
- Related: #2061390
f01db1
f01db1
* Fri Apr 29 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-5
f01db1
- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
f01db1
  (https://github.com/containers/buildah/commit/9c456a3)
f01db1
- Related: #2061390
f01db1
f01db1
* Fri Apr 29 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-4
f01db1
- use release-1.24 maintenance branch for the 4.0 stable stream
f01db1
- Related: #2061390
f01db1
f01db1
* Fri Apr 08 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.1-2
f01db1
- bump golang BR to 1.17.7
f01db1
- Related: #2061390
f01db1
f01db1
* Thu Mar 31 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.1-1
f01db1
- update to https://github.com/containers/buildah/releases/tag/v1.25.1
f01db1
- Related: #2061390
f01db1
f01db1
* Wed Mar 30 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.0-1
f01db1
- update to https://github.com/containers/buildah/releases/tag/v1.25.0
f01db1
- Related: #2061390
f01db1
97347a
* Mon Feb 21 2022 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.24.2-2
97347a
- Add patch to fix bash symtax for gating tests
97347a
- Upstream PR: https://github.com/containers/buildah/pull/3792
97347a
- Related: #2001445
97347a
97347a
* Thu Feb 17 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.24.2
97347a
- Related: #2001445
97347a
97347a
* Fri Feb 04 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.1-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.24.1
97347a
- Related: #2001445
97347a
97347a
* Wed Feb 02 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.24.0
97347a
- Related: #2001445
97347a
97347a
* Tue Jan 25 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.23.2-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.23
97347a
  (https://github.com/containers/buildah/commit/83a66a7)
97347a
- Related: #2001445
97347a
97347a
* Mon Nov 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.23.1-3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.23
97347a
  (https://github.com/containers/buildah/commit/867c1bc)
97347a
- Related: #2001445
97347a
97347a
* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.23.1-2
97347a
- respect Epoch in subpackage dependencies
97347a
- Related: #2001445
97347a
97347a
* Fri Oct 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.23.1-1
97347a
- bump Epoch to preserve upgrade path
97347a
- Related: #2001445
97347a
97347a
* Wed Oct 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.1-0.1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.23
97347a
  (https://github.com/containers/buildah/commit/87a0565)
97347a
- Related: #2001445
97347a
97347a
* Wed Oct 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.18
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/982717a)
97347a
- Related: #2001445
97347a
97347a
* Mon Oct 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.17
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/50869a7)
97347a
- Related: #2001445
97347a
97347a
* Fri Oct 08 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.16
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/211972a)
97347a
- Related: #2001445
97347a
97347a
* Thu Oct 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.15
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/c044ad6)
97347a
- Related: #2001445
97347a
97347a
* Wed Oct 06 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.14
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/7807a0e)
97347a
- Related: #2001445
97347a
97347a
* Mon Oct 04 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.13
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/0cd9445)
97347a
- Related: #2001445
97347a
97347a
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.12
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/954c481)
97347a
- Related: #2001445
97347a
97347a
* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.11
97347a
- include all man pages
97347a
- Related: #2001445
97347a
97347a
* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.10
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/d2ef199)
97347a
- Related: #2001445
97347a
97347a
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.9
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/455f2f1)
97347a
- Related: #2001445
97347a
97347a
* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.8
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/8548885)
97347a
- Related: #2001445
97347a
97347a
* Fri Sep 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.7
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/9a49348)
97347a
- Related: #2001445
97347a
97347a
* Thu Sep 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.6
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/a72aad4)
97347a
- Related: #2001445
97347a
97347a
* Wed Sep 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.5
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/b8757e9)
97347a
- Related: #2001445
97347a
97347a
* Tue Sep 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.4
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/fb84638)
97347a
- Related: #2001445
97347a
97347a
* Mon Sep 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/f3f3c55)
97347a
- Related: #2001445
97347a
97347a
* Fri Sep 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/753716a)
97347a
- Related: #2001445
97347a
97347a
* Wed Sep 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/69b3e56)
97347a
- Related: #2001445
97347a
97347a
* Mon Sep 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/e9bc224)
97347a
- Related: #2001445
97347a
97347a
* Fri Sep 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/a5aba5c)
97347a
- Related: #2001445
97347a
97347a
* Wed Aug 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.3-2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
97347a
  (https://github.com/containers/buildah/commit/4d20222)
97347a
- Related: #1934415
97347a
97347a
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@redhat.com> - 1.22.3-1
97347a
- update to v1.22.3
97347a
- Related: #1934415
97347a
97347a
* Mon Aug 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
97347a
  (https://github.com/containers/buildah/commit/98960f2)
97347a
- Related: #1934415
97347a
97347a
* Thu Aug 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
97347a
  (https://github.com/containers/buildah/commit/71b8003)
97347a
- Related: #1934415
97347a
97347a
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-1
97347a
- update to 1.22.0 release and switch to the release-1.22 maint branch
97347a
- Related: #1934415
97347a
97347a
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/56ff12f)
97347a
- Related: #1934415
97347a
97347a
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/f517d85)
97347a
- Related: #1934415
97347a
97347a
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/42dbc97)
97347a
- Related: #1934415
97347a
97347a
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.0-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/42dbc97)
97347a
- Related: #1934415
97347a
97347a
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.1
97347a
- switch to main branch
97347a
- Related: #1934415
97347a
97347a
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-2
97347a
- add buildah-copy helper
97347a
- Related: #1934415
97347a
97347a
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
97347a
  (https://github.com/containers/buildah/commit/9c83683)
97347a
- Related: #1934415
97347a
97347a
* Wed Jul 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
97347a
  (https://github.com/containers/buildah/commit/30a10f3)
97347a
- Related: #1934415
97347a
97347a
* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
97347a
  (https://github.com/containers/buildah/commit/7f9540d)
97347a
- Related: #1934415
97347a
97347a
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.17
97347a
- update to buildah 1.21.1 from the release-1.21 upstream branch
97347a
- Related: #1934415
97347a
97347a
* Tue Jun 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.16
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/3ed5d8e)
97347a
- Related: #1934415
97347a
97347a
* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.15
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/c7d828f)
97347a
- Related: #1934415
97347a
97347a
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.14
97347a
- "buildah version" produces correct output
97347a
- Related: #1934415
97347a
97347a
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.13
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/6bc611d)
97347a
- Related: #1934415
97347a
97347a
* Thu Jun 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.12
97347a
- update to the latest content of https://github.com/containers/buildah/tree/main
97347a
  (https://github.com/containers/buildah/commit/3a0b52f)
97347a
- Related: #1934415
97347a
97347a
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.11
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/6d5d1ae)
97347a
- Related: #1934415
97347a
97347a
* Tue Jun 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.10
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/802a904)
97347a
- Related: #1934415
97347a
97347a
* Mon Jun 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.9
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/5181b9c)
97347a
- Related: #1934415
97347a
97347a
* Fri Jun 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.8
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/db16262)
97347a
- Related: #1934415
97347a
97347a
* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.7
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/30c07b7)
97347a
- Related: #1934415
97347a
97347a
* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.6
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/d99221f)
97347a
- Related: #1934415
97347a
97347a
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.5
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/8d08247)
97347a
- Related: #1934415
97347a
97347a
* Thu Jun 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/9c7f50b)
97347a
- Related: #1934415
97347a
97347a
* Mon Jun 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/d08dbe7)
97347a
- Related: #1934415
97347a
97347a
* Thu Jun 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/bbbe10a)
97347a
- Related: #1934415
97347a
97347a
* Wed Jun 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.8
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/4fa566e)
97347a
- Related: #1934415
97347a
97347a
* Mon May 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.7
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/8a6d840)
97347a
- Related: #1934415
97347a
97347a
* Wed May 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.6
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/d677bf0)
97347a
- Related: #1934415
97347a
97347a
* Tue May 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.5
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/df14b1c)
97347a
- Related: #1934415
97347a
97347a
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.4
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/19d3065)
97347a
- Related: #1934415
97347a
97347a
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/2a83637)
97347a
- Related: #1934415
97347a
97347a
* Thu May 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/f629ded)
97347a
- Related: #1934415
97347a
97347a
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.8
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/c3a3fe8)
97347a
- Related: #1934415
97347a
97347a
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.7
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/f30b420)
97347a
- Related: #1934415
97347a
97347a
* Mon May 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.6
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/162fbaf)
97347a
- Related: #1934415
97347a
97347a
* Thu May 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.5
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/5119393)
97347a
- Related: #1934415
97347a
97347a
* Wed May 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.4
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/a0853c3)
97347a
- Related: #1934415
97347a
97347a
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/135d63d)
97347a
- Related: #1934415
97347a
97347a
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-2
97347a
- fix release to reflect a development version
97347a
- Related: #1934415
97347a
97347a
* Fri May 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/master
97347a
  (https://github.com/containers/buildah/commit/22fc573)
97347a
- Related: #1934415
97347a
97347a
* Mon Apr 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.1-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.20.1
97347a
- sync tests with Fedora
97347a
- Related: #1934415
97347a
97347a
* Fri Mar 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.0-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.20.0
97347a
- Related: #1934415
97347a
97347a
* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.8-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.19.8
97347a
- Related: #1934415
97347a
97347a
* Fri Mar 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.7-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.19.7
97347a
- Related: #1934415
97347a
97347a
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/7aedb16)
97347a
- Related: #1883490
97347a
97347a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-6
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/dcd385e)
97347a
- Related: #1883490
97347a
97347a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-5
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/016b90d)
97347a
- Related: #1883490
97347a
97347a
* Tue Feb 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-4
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/e5384ed)
97347a
- Related: #1883490
97347a
97347a
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/9dd415b)
97347a
- Related: #1883490
97347a
97347a
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/db783f4)
97347a
- Related: #1883490
97347a
97347a
* Wed Feb 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/1fb260f)
97347a
- Related: #1883490
97347a
97347a
* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.4-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/76beccc)
97347a
- Related: #1883490
97347a
97347a
* Sun Feb 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-3
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/a96b716)
97347a
- Related: #1883490
97347a
97347a
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/17521db)
97347a
- Related: #1883490
97347a
97347a
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-1
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/af31e45)
97347a
- Related: #1883490
97347a
97347a
* Fri Jan 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-2
97347a
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
97347a
  (https://github.com/containers/buildah/commit/06e091b)
97347a
- Related: #1883490
97347a
97347a
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.19.2
97347a
- Related: #1883490
97347a
97347a
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.1-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.19.1
97347a
- Related: #1883490
97347a
97347a
* Wed Jan 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-2
97347a
- fix gating test issue with openssl cert
97347a
- Related: #1914884
97347a
97347a
* Sat Jan 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.19.0
97347a
- Related: #1883490
97347a
97347a
* Tue Dec 08 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-1
97347a
- make build log more readable
97347a
- always build with debuginfo enabled
97347a
- Related: #1883490
97347a
97347a
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 1.17.0-2
97347a
- simplify spec file
97347a
- use short commit ID in tarball name
97347a
- Related: #1883490
97347a
97347a
* Fri Oct 30 2020 Jindrich Novy <jnovy@redhat.com> - 1.17.0-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.17.0
97347a
- Related: #1883490
97347a
97347a
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.5-2
97347a
- use shortcommit ID in branch tarball name
97347a
- Related: #1883490
97347a
97347a
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.5-1
97347a
- synchronize with stream-container-tools-rhel8
97347a
- Related: #1883490
97347a
97347a
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-3
97347a
- update source tarball
97347a
- Related: #1883490
97347a
97347a
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-2
97347a
- use the mainline 1.16.4 buildah release as starting point for 8.4.0
97347a
  not the content from upstream branch yet
97347a
- Related: #1883490
97347a
97347a
* Wed Oct 21 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-1
97347a
- synchronize with stream-container-tools-rhel8
97347a
- Related: #1883490
97347a
97347a
* Tue Aug 11 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.1-2
97347a
- propagate proper CFLAGS to CGO_CFLAGS to assure code hardening and optimization
97347a
- Related: #1821193
97347a
97347a
* Mon Aug 10 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.1-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.15.1
97347a
- Related: #1821193
97347a
97347a
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.0-2
97347a
- fix "CVE-2020-14040 buildah: golang.org/x/text: possibility to trigger an infinite loop in encoding/unicode could lead to crash [rhel-8]"
97347a
- Resolves: #1854717
97347a
97347a
* Thu Jun 18 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.0-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.15.0
97347a
- Related: #1821193
97347a
97347a
* Wed Jun 10 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.9-2
97347a
- exclude i686 arch
97347a
- Related: #1821193
97347a
97347a
* Tue May 19 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.9-1
97347a
- update to https://github.com/containers/buildah/releases/tag/v1.14.9
97347a
- Related: #1821193
97347a
97347a
* Tue May 12 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.8-1
97347a
- synchronize containter-tools 8.3.0 with 8.2.1
97347a
- Related: #1821193
97347a
97347a
* Wed Apr 01 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-8
97347a
- fix "CVE-2020-10696 buildah: crafted input tar file may lead to local file overwriting during image build process"
97347a
- Resolves: #1819810
97347a
97347a
* Mon Feb 24 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-7
97347a
- fix "COPY command takes long time with buildah"
97347a
- Resolves: #1806120
97347a
97347a
* Mon Feb 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-6
97347a
- fix CVE-2020-1702
97347a
- Resolves: #1801926
97347a
97347a
* Thu Feb 13 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-5
97347a
- adding the first phase of FIPS fix
97347a
- Related: #1784952
97347a
97347a
* Wed Dec 11 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-4
97347a
- compile in FIPS mode
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Mon Dec 09 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-3
97347a
- be sure to use golang >= 1.12.12-4
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Fri Dec 06 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-2
97347a
- fix chroot: unmount with MNT_DETACH instead of UnmountMountpoints()
97347a
- bug reference 1772179
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Thu Dec 05 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-1
97347a
- update to buildah 1.11.6
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Thu Nov 21 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.5-1
97347a
- update to buildah 1.11.5
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Thu Nov 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.4-2
97347a
- fix %%gobuild macro to not to ignore BUILDTAGS
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Thu Nov 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.4-1
97347a
- update to 1.11.4
97347a
- Related: RHELPLAN-25139
97347a
97347a
* Tue Sep 17 2019 Jindrich Novy <jnovy@redhat.com> - 1.9.0-5
97347a
- Use autosetup macro again.
97347a
97347a
* Thu Sep 12 2019 Jindrich Novy <jnovy@redhat.com> - 1.9.0-4
97347a
- Fix CVE-2019-10214 (#1734653).
97347a
97347a
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-3
97347a
- Resolves: #1721247 - enable fips mode
97347a
97347a
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-2
97347a
- Resolves: #1720654 - tests subpackage depends on golang explicitly
97347a
97347a
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-1
97347a
- Resolves: #1720654 - rebase to v1.9.0
97347a
97347a
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.3-1
97347a
- Resolves: #1720654 - rebase to v1.8.3
97347a
97347a
* Tue Apr  9 2019 Eduardo Santiago <santiago@redhat.com> - 1.8-0.git021d607
97347a
- package system tests
97347a
97347a
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-3.gite94b4f9
97347a
- re-enable debuginfo
97347a
97347a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-2.gite94b4f9
97347a
- go toolset not in scl anymore
97347a
97347a
* Fri Nov 23 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-1.gite94b4f9
97347a
- rebase
97347a
97347a
* Mon Nov 19 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.4-3.git608fa84
97347a
- fedora-like go compiler macro in buildrequires is enough
97347a
97347a
* Wed Oct 10 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.4-2.git608fa84
97347a
- rebase
97347a
97347a
* Mon Aug 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.3-3.git4888163
97347a
- Resolves: #1615611 - rebuild with gobuild tag 'no_openssl'
97347a
97347a
* Wed Aug 08 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.3-2.git4888163
97347a
- Resolves: #1614009 - built with updated scl-ized go-toolset dep
97347a
- build with %%gobuild
97347a
97347a
* Sun Aug 5 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-1
97347a
- Bump to v1.3
97347a
- Vendor in lates containers/image
97347a
- build-using-dockerfile: let -t include transports again
97347a
- Block use of /proc/acpi and /proc/keys from inside containers
97347a
- Fix handling of --registries-conf
97347a
- Fix becoming a maintainer link
97347a
- add optional CI test fo darwin
97347a
- Don't pass a nil error to errors.Wrapf()
97347a
- image filter test: use kubernetes/pause as a "since"
97347a
- Add --cidfile option to from
97347a
- vendor: update containers/storage
97347a
- Contributors need to find the CONTRIBUTOR.md file easier
97347a
- Add a --loglevel option to build-with-dockerfile
97347a
- Create Development plan
97347a
- cmd: Code improvement
97347a
- allow buildah cross compile for a darwin target
97347a
- Add unused function param lint check
97347a
- docs: Follow man-pages(7) suggestions for SYNOPSIS
97347a
- Start using github.com/seccomp/containers-golang
97347a
- umount: add all option to umount all mounted containers
97347a
- runConfigureNetwork(): remove an unused parameter
97347a
- Update github.com/opencontainers/selinux
97347a
- Fix buildah bud --layers
97347a
- Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
97347a
- main: if unprivileged, reexec in a user namespace
97347a
- Vendor in latest imagebuilder
97347a
- Reduce the complexity of the buildah.Run function
97347a
- mount: output it before replacing lastError
97347a
- Vendor in latest selinux-go code
97347a
- Implement basic recognition of the "--isolation" option
97347a
- Run(): try to resolve non-absolute paths using $PATH
97347a
- Run(): don't include any default environment variables
97347a
- build without seccomp
97347a
- vendor in latest runtime-tools
97347a
- bind/mount_unsupported.go: remove import errors
97347a
- Update github.com/opencontainers/runc
97347a
- Add Capabilities lists to BuilderInfo
97347a
- Tweaks for commit tests
97347a
- commit: recognize committing to second storage locations
97347a
- Fix ARGS parsing for run commands
97347a
- Add info on registries.conf to from manpage
97347a
- Switch from using docker to podman for testing in .papr
97347a
- buildah: set the HTTP User-Agent
97347a
- ONBUILD tutorial
97347a
- Add information about the configuration files to the install docs
97347a
- Makefile: add uninstall
97347a
- Add tilde info for push to troubleshooting
97347a
- mount: support multiple inputs
97347a
- Use the right formatting when adding entries to /etc/hosts
97347a
- Vendor in latest go-selinux bindings
97347a
- Allow --userns-uid-map/--userns-gid-map to be global options
97347a
- bind: factor out UnmountMountpoints
97347a
- Run(): simplify runCopyStdio()
97347a
- Run(): handle POLLNVAL results
97347a
- Run(): tweak terminal mode handling
97347a
- Run(): rename 'copyStdio' to 'copyPipes'
97347a
- Run(): don't set a Pdeathsig for the runtime
97347a
- Run(): add options for adding and removing capabilities
97347a
- Run(): don't use a callback when a slice will do
97347a
- setupSeccomp(): refactor
97347a
- Change RunOptions.Stdin/Stdout/Stderr to just be Reader/Writers
97347a
- Escape use of '_' in .md docs
97347a
- Break out getProcIDMappings()
97347a
- Break out SetupIntermediateMountNamespace()
97347a
- Add Multi From Demo
97347a
- Use the c/image conversion code instead of converting configs manually
97347a
- Don't throw away the manifest MIME type and guess again
97347a
- Consolidate loading manifest and config in initConfig
97347a
- Pass a types.Image to Builder.initConfig
97347a
- Require an image ID in importBuilderDataFromImage
97347a
- Use c/image/manifest.GuessMIMEType instead of a custom heuristic
97347a
- Do not ignore any parsing errors in initConfig
97347a
- Explicitly handle "from scratch" images in Builder.initConfig
97347a
- Fix parsing of OCI images
97347a
- Simplify dead but dangerous-looking error handling
97347a
- Don't ignore v2s1 history if docker_version is not set
97347a
- Add --rm and --force-rm to buildah bud
97347a
- Add --all,-a flag to buildah images
97347a
- Separate stdio buffering from writing
97347a
- Remove tty check from images --format
97347a
- Add environment variable BUILDAH_RUNTIME
97347a
- Add --layers and --no-cache to buildah bud
97347a
- Touch up images man
97347a
- version.md: fix DESCRIPTION
97347a
- tests: add containers test
97347a
- tests: add images test
97347a
- images: fix usage
97347a
- fix make clean error
97347a
- Change 'registries' to 'container registries' in man
97347a
- add commit test
97347a
- Add(): learn to record hashes of what we add
97347a
- Minor update to buildah config documentation for entrypoint
97347a
- Bump to v1.2-dev
97347a
- Add registries.conf link to a few man pages
97347a
97347a
* Tue Jul 24 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.2-3
97347a
- do not depend on btrfs-progs for rhel8
97347a
97347a
* Thu Jul 19 2018 Dan Walsh <dwalsh@redhat.com> - 1.2-2
97347a
- buildah does not require ostree
97347a
97347a
* Sun Jul 15 2018 Dan Walsh <dwalsh@redhat.com> 1.2-1
97347a
- Vendor in latest containers/image
97347a
- build-using-dockerfile: let -t include transports again
97347a
- Block use of /proc/acpi and /proc/keys from inside containers
97347a
- Fix handling of --registries-conf
97347a
- Fix becoming a maintainer link
97347a
- add optional CI test fo darwin
97347a
- Don't pass a nil error to errors.Wrapf()
97347a
- image filter test: use kubernetes/pause as a "since"
97347a
- Add --cidfile option to from
97347a
- vendor: update containers/storage
97347a
- Contributors need to find the CONTRIBUTOR.md file easier
97347a
- Add a --loglevel option to build-with-dockerfile
97347a
- Create Development plan
97347a
- cmd: Code improvement
97347a
- allow buildah cross compile for a darwin target
97347a
- Add unused function param lint check
97347a
- docs: Follow man-pages(7) suggestions for SYNOPSIS
97347a
- Start using github.com/seccomp/containers-golang
97347a
- umount: add all option to umount all mounted containers
97347a
- runConfigureNetwork(): remove an unused parameter
97347a
- Update github.com/opencontainers/selinux
97347a
- Fix buildah bud --layers
97347a
- Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
97347a
- main: if unprivileged, reexec in a user namespace
97347a
- Vendor in latest imagebuilder
97347a
- Reduce the complexity of the buildah.Run function
97347a
- mount: output it before replacing lastError
97347a
- Vendor in latest selinux-go code
97347a
- Implement basic recognition of the "--isolation" option
97347a
- Run(): try to resolve non-absolute paths using $PATH
97347a
- Run(): don't include any default environment variables
97347a
- build without seccomp
97347a
- vendor in latest runtime-tools
97347a
- bind/mount_unsupported.go: remove import errors
97347a
- Update github.com/opencontainers/runc
97347a
- Add Capabilities lists to BuilderInfo
97347a
- Tweaks for commit tests
97347a
- commit: recognize committing to second storage locations
97347a
- Fix ARGS parsing for run commands
97347a
- Add info on registries.conf to from manpage
97347a
- Switch from using docker to podman for testing in .papr
97347a
- buildah: set the HTTP User-Agent
97347a
- ONBUILD tutorial
97347a
- Add information about the configuration files to the install docs
97347a
- Makefile: add uninstall
97347a
- Add tilde info for push to troubleshooting
97347a
- mount: support multiple inputs
97347a
- Use the right formatting when adding entries to /etc/hosts
97347a
- Vendor in latest go-selinux bindings
97347a
- Allow --userns-uid-map/--userns-gid-map to be global options
97347a
- bind: factor out UnmountMountpoints
97347a
- Run(): simplify runCopyStdio()
97347a
- Run(): handle POLLNVAL results
97347a
- Run(): tweak terminal mode handling
97347a
- Run(): rename 'copyStdio' to 'copyPipes'
97347a
- Run(): don't set a Pdeathsig for the runtime
97347a
- Run(): add options for adding and removing capabilities
97347a
- Run(): don't use a callback when a slice will do
97347a
- setupSeccomp(): refactor
97347a
- Change RunOptions.Stdin/Stdout/Stderr to just be Reader/Writers
97347a
- Escape use of '_' in .md docs
97347a
- Break out getProcIDMappings()
97347a
- Break out SetupIntermediateMountNamespace()
97347a
- Add Multi From Demo
97347a
- Use the c/image conversion code instead of converting configs manually
97347a
- Don't throw away the manifest MIME type and guess again
97347a
- Consolidate loading manifest and config in initConfig
97347a
- Pass a types.Image to Builder.initConfig
97347a
- Require an image ID in importBuilderDataFromImage
97347a
- Use c/image/manifest.GuessMIMEType instead of a custom heuristic
97347a
- Do not ignore any parsing errors in initConfig
97347a
- Explicitly handle "from scratch" images in Builder.initConfig
97347a
- Fix parsing of OCI images
97347a
- Simplify dead but dangerous-looking error handling
97347a
- Don't ignore v2s1 history if docker_version is not set
97347a
- Add --rm and --force-rm to buildah bud
97347a
- Add --all,-a flag to buildah images
97347a
- Separate stdio buffering from writing
97347a
- Remove tty check from images --format
97347a
- Add environment variable BUILDAH_RUNTIME
97347a
- Add --layers and --no-cache to buildah bud
97347a
- Touch up images man
97347a
- version.md: fix DESCRIPTION
97347a
- tests: add containers test
97347a
- tests: add images test
97347a
- images: fix usage
97347a
- fix make clean error
97347a
- Change 'registries' to 'container registries' in man
97347a
- add commit test
97347a
- Add(): learn to record hashes of what we add
97347a
- Minor update to buildah config documentation for entrypoint
97347a
- Add registries.conf link to a few man pages
97347a
97347a
* Sun Jun 10 2018 Dan Walsh <dwalsh@redhat.com> 1.1-1
97347a
- Drop capabilities if running container processes as non root
97347a
- Print Warning message if cmd will not be used based on entrypoint
97347a
- Update 01-intro.md
97347a
- Shouldn't add insecure registries to list of search registries
97347a
- Report errors on bad transports specification when pushing images
97347a
- Move parsing code out of common for namespaces and into pkg/parse.go
97347a
- Add disable-content-trust noop flag to bud
97347a
- Change freenode chan to buildah
97347a
- runCopyStdio(): don't close stdin unless we saw POLLHUP
97347a
- Add registry errors for pull
97347a
- runCollectOutput(): just read until the pipes are closed on us
97347a
- Run(): provide redirection for stdio
97347a
- rmi, rm: add test
97347a
- add mount test
97347a
- Add parameter judgment for commands that do not require parameters
97347a
- Add context dir to bud command in baseline test
97347a
- run.bats: check that we can run with symlinks in the bundle path
97347a
- Give better messages to users when image can not be found
97347a
- use absolute path for bundlePath
97347a
- Add environment variable to buildah --format
97347a
- rm: add validation to args and all option
97347a
- Accept json array input for config entrypoint
97347a
- Run(): process RunOptions.Mounts, and its flags
97347a
- Run(): only collect error output from stdio pipes if we created some
97347a
- Add OnBuild support for Dockerfiles
97347a
- Quick fix on demo readme
97347a
- run: fix validate flags
97347a
- buildah bud should require a context directory or URL
97347a
- Touchup tutorial for run changes
97347a
- Validate common bud and from flags
97347a
- images: Error if the specified imagename does not exist
97347a
- inspect: Increase err judgments to avoid panic
97347a
- add test to inspect
97347a
- buildah bud picks up ENV from base image
97347a
- Extend the amount of time travis_wait should wait
97347a
- Add a make target for Installing CNI plugins
97347a
- Add tests for namespace control flags
97347a
- copy.bats: check ownerships in the container
97347a
- Fix SELinux test errors when SELinux is enabled
97347a
- Add example CNI configurations
97347a
- Run: set supplemental group IDs
97347a
- Run: use a temporary mount namespace
97347a
- Use CNI to configure container networks
97347a
- add/secrets/commit: Use mappings when setting permissions on added content
97347a
- Add CLI options for specifying namespace and cgroup setup
97347a
- Always set mappings when using user namespaces
97347a
- Run(): break out creation of stdio pipe descriptors
97347a
- Read UID/GID mapping information from containers and images
97347a
- Additional bud CI tests
97347a
- Run integration tests under travis_wait in Travis
97347a
- build-using-dockerfile: add --annotation
97347a
- Implement --squash for build-using-dockerfile and commit
97347a
- Vendor in latest container/storage for devicemapper support
97347a
- add test to inspect
97347a
- Vendor github.com/onsi/ginkgo and github.com/onsi/gomega
97347a
- Test with Go 1.10, too
97347a
- Add console syntax highlighting to troubleshooting page
97347a
- bud.bats: print "$output" before checking its contents
97347a
- Manage "Run" containers more closely
97347a
- Break Builder.Run()'s "run runc" bits out
97347a
- util.ResolveName(): handle completion for tagged/digested image names
97347a
- Handle /etc/hosts and /etc/resolv.conf properly in container
97347a
- Documentation fixes
97347a
- Make it easier to parse our temporary directory as an image name
97347a
- Makefile: list new pkg/ subdirectoris as dependencies for buildah
97347a
- containerImageSource: return more-correct errors
97347a
- API cleanup: PullPolicy and TerminalPolicy should be types
97347a
- Make "run --terminal" and "run -t" aliases for "run --tty"
97347a
- Vendor github.com/containernetworking/cni v0.6.0
97347a
- Update github.com/containers/storage
97347a
- Update github.com/projectatomic/libpod
97347a
- Add support for buildah bud --label
97347a
- buildah push/from can push and pull images with no reference
97347a
- Vendor in latest containers/image
97347a
- Update gometalinter to fix install.tools error
97347a
- Update troubleshooting with new run workaround
97347a
- Added a bud demo and tidied up
97347a
- Attempt to download file from url, if fails assume Dockerfile
97347a
- Add buildah bud CI tests for ENV variables
97347a
- Re-enable rpm .spec version check and new commit test
97347a
- Update buildah scratch demo to support el7
97347a
- Added Docker compatibility demo
97347a
- Update to F28 and new run format in baseline test
97347a
- Touchup man page short options across man pages
97347a
- Added demo dir and a demo. chged distrorlease
97347a
- builder-inspect: fix format option
97347a
- Add cpu-shares short flag (-c) and cpu-shares CI tests
97347a
- Minor fixes to formatting in rpm spec changelog
97347a
- Fix rpm .spec changelog formatting
97347a
- CI tests and minor fix for cache related noop flags
97347a
- buildah-from: add effective value to mount propagation
97347a
97347a
* Mon May 7 2018 Dan Walsh <dwalsh@redhat.com> 1.0-1
97347a
- Remove buildah run cmd and entrypoint execution
97347a
- Add Files section with registries.conf to pertinent man pages
97347a
- Force "localhost" as a default registry
97347a
- Add --compress, --rm, --squash flags as a noop for bud
97347a
- Add FIPS mode secret to buildah run and bud
97347a
- Add config --comment/--domainname/--history-comment/--hostname
97347a
- Add support for --iidfile to bud and commit
97347a
- Add /bin/sh -c to entrypoint in config
97347a
- buildah images and podman images are listing different sizes
97347a
- Remove tarball as an option from buildah push --help
97347a
- Update entrypoint behaviour to match docker
97347a
- Display imageId after commit
97347a
- config: add support for StopSignal
97347a
- Allow referencing stages as index and names
97347a
- Add multi-stage builds support
97347a
- Vendor in latest imagebuilder, to get mixed case AS support
97347a
- Allow umount to have multi-containers
97347a
- Update buildah push doc
97347a
- buildah bud walks symlinks
97347a
- Imagename is required for commit atm, update manpage
97347a
97347a
* Thu May 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.16-3.git532e267
97347a
- Resolves: #1573681
97347a
- built commit 532e267
97347a
97347a
* Tue Apr 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.16.0-2.git6f7d05b
97347a
- built commit 6f7d05b
97347a
97347a
* Wed Apr 4 2018 Dan Walsh <dwalsh@redhat.com> 0.16-1
97347a
-   Add support for shell
97347a
-   Vendor in latest containers/image
97347a
-    	 docker-archive generates docker legacy compatible images
97347a
-	 Do not create $DiffID subdirectories for layers with no configs
97347a
- 	 Ensure the layer IDs in legacy docker/tarfile metadata are unique
97347a
-	 docker-archive: repeated layers are symlinked in the tar file
97347a
-	 sysregistries: remove all trailing slashes
97347a
-	 Improve docker/* error messages
97347a
-	 Fix failure to make auth directory
97347a
-	 Create a new slice in Schema1.UpdateLayerInfos
97347a
-	 Drop unused storageImageDestination.{image,systemContext}
97347a
-	 Load a *storage.Image only once in storageImageSource
97347a
-	 Support gzip for docker-archive files
97347a
-	 Remove .tar extension from blob and config file names
97347a
-	 ostree, src: support copy of compressed layers
97347a
-	 ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
97347a
-	 image: fix docker schema v1 -> OCI conversion
97347a
-	 Add /etc/containers/certs.d as default certs directory
97347a
-  Change image time to locale, add troubleshooting.md, add logo to other mds
97347a
-   Allow --cmd parameter to have commands as values
97347a
-   Document the mounts.conf file
97347a
-   Fix man pages to format correctly
97347a
-   buildah from now supports pulling images using the following transports:
97347a
-   docker-archive, oci-archive, and dir.
97347a
-   If the user overrides the storage driver, the options should be dropped
97347a
-   Show Config/Manifest as JSON string in inspect when format is not set
97347a
-   Adds feature to pull compressed docker-archive files
97347a
97347a
* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.com> 0.15-1
97347a
- Fix handling of buildah run command options
97347a
97347a
* Mon Feb 26 2018 Dan Walsh <dwalsh@redhat.com> 0.14-1
97347a
- If commonOpts do not exist, we should return rather then segfault
97347a
- Display full error string instead of just status
97347a
- Implement --volume and --shm-size for bud and from
97347a
- Fix secrets patch for buildah bud
97347a
- Fixes the naming issue of blobs and config for the dir transport by removing the .tar extension
97347a
97347a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.13-1.git99066e0
97347a
- use correct version
97347a
97347a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-4.git99066e0
97347a
- enable debuginfo
97347a
97347a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-3.git99066e0
97347a
- BR: libseccomp-devel
97347a
97347a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-2.git99066e0
97347a
- Resolves: #1548535
97347a
- built commit 99066e0
97347a
97347a
* Mon Feb 12 2018 Dan Walsh <dwalsh@redhat.com> 0.12-1
97347a
- Added handing for simpler error message for Unknown Dockerfile instructions.
97347a
- Change default certs directory to /etc/containers/certs.dir
97347a
- Vendor in latest containers/image
97347a
- Vendor in latest containers/storage
97347a
- build-using-dockerfile: set the 'author' field for MAINTAINER
97347a
- Return exit code 1 when buildah-rmi fails
97347a
- Trim the image reference to just its name before calling getImageName
97347a
- Touch up rmi -f usage statement
97347a
- Add --format and --filter to buildah containers
97347a
- Add --prune,-p option to rmi command
97347a
- Add authfile param to commit
97347a
- Fix --runtime-flag for buildah run and bud
97347a
- format should override quiet for images
97347a
- Allow all auth params to work with bud
97347a
- Do not overwrite directory permissions on --chown
97347a
- Unescape HTML characters output into the terminal
97347a
- Fix: setting the container name to the image
97347a
- Prompt for un/pwd if not supplied with --creds
97347a
- Make bud be really quiet
97347a
- Return a better error message when failed to resolve an image
97347a
- Update auth tests and fix bud man page
97347a
97347a
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.11-3.git49095a8
97347a
- Resolves: #1542236 - add ostree and bump runc dep
97347a
97347a
* Thu Feb 01 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.11-2.git49095a8
97347a
- rebased to 49095a83f8622cf69532352d183337635562e261
97347a
97347a
* Tue Jan 16 2018 Dan Walsh <dwalsh@redhat.com> 0.11-1
97347a
- Add --all to remove containers
97347a
- Add --all functionality to rmi
97347a
- Show ctrid when doing rm -all
97347a
- Ignore sequential duplicate layers when reading v2s1
97347a
- Lots of minor bug fixes
97347a
- Vendor in latest containers/image and containers/storage
97347a
97347a
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-2
97347a
- Fix checkin
97347a
97347a
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-1
97347a
- Display Config and Manifest as strings
97347a
- Bump containers/image
97347a
- Use configured registries to resolve image names
97347a
- Update to work with newer image library
97347a
- Add --chown option to add/copy commands
97347a
97347a
* Tue Dec 12 2017 Lokesh Mandvekar <lsm5@redhat.com> - 0.9-2.git04ea079
97347a
- build for all arches
97347a
97347a
* Sat Dec 2 2017 Dan Walsh <dwalsh@redhat.com> 0.9-1
97347a
- Allow push to use the image id
97347a
- Make sure builtin volumes have the correct label
97347a
97347a
* Wed Nov 22 2017 Dan Walsh <dwalsh@redhat.com> 0.8-1
97347a
- Buildah bud was failing on SELinux machines, this fixes this
97347a
- Block access to certain kernel file systems inside of the container
97347a
97347a
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.7-1
97347a
- Ignore errors when trying to read containers buildah.json for loading SELinux reservations
97347a
-     Use credentials from kpod login for buildah
97347a
- Adds support for converting manifest types when using the dir transport
97347a
- Rework how we do UID resolution in images
97347a
- Bump github.com/vbatts/tar-split
97347a
- Set option.terminal appropriately in run
97347a
97347a
* Thu Nov 16 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.5-5.gitf7dc659
97347a
- revert building for s390x, it is intended for rhel 7.5
97347a
97347a
* Wed Nov 15 2017 Dan Walsh <dwalsh@redhat.com> 0.5-4
97347a
- Add requires for container-selinux
97347a
97347a
* Mon Nov 13 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.5-3.gitf7dc659
97347a
- build for s390x, https://bugzilla.redhat.com/show_bug.cgi?id=1482234
97347a
97347a
* Wed Nov 08 2017 Dan Walsh <dwalsh@redhat.com> 0.5-2
97347a
-  Bump github.com/vbatts/tar-split
97347a
-  Fixes CVE That could allow a container image to cause a DOS
97347a
97347a
* Tue Nov 07 2017 Dan Walsh <dwalsh@redhat.com> 0.5-1
97347a
-  Add secrets patch to buildah
97347a
-  Add proper SELinux labeling to buildah run
97347a
-  Add tls-verify to bud command
97347a
-  Make filtering by date use the image's date
97347a
-  images: don't list unnamed images twice
97347a
-  Fix timeout issue
97347a
-  Add further tty verbiage to buildah run
97347a
-  Make inspect try an image on failure if type not specified
97347a
-  Add support for `buildah run --hostname`
97347a
-  Tons of bug fixes and code cleanup
97347a
97347a
* Tue Nov  7 2017 Nalin Dahyabhai <nalin@redhat.com> - 0.4-2.git01db066
97347a
- bump to latest version
97347a
- set GIT_COMMIT at build-time
97347a
97347a
* Fri Sep 22 2017 Dan Walsh <dwalsh@redhat.com> 0.4-1.git9cbccf88c
97347a
-   Add default transport to push if not provided
97347a
-   Avoid trying to print a nil ImageReference
97347a
-   Add authentication to commit and push
97347a
-   Add information on buildah from man page on transports
97347a
-   Remove --transport flag
97347a
-   Run: do not complain about missing volume locations
97347a
-   Add credentials to buildah from
97347a
-   Remove export command
97347a
-   Run(): create the right working directory
97347a
-   Improve "from" behavior with unnamed references
97347a
-   Avoid parsing image metadata for dates and layers
97347a
-   Read the image's creation date from public API
97347a
-   Bump containers/storage and containers/image
97347a
-   Don't panic if an image's ID can't be parsed
97347a
-   Turn on --enable-gc when running gometalinter
97347a
-   rmi: handle truncated image IDs
97347a
97347a
* Fri Sep 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 0.4-1.git9cbccf8
97347a
- bump to v0.4
97347a
97347a
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-4.gitb9b2a8a
97347a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
97347a
97347a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-3.gitb9b2a8a
97347a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
97347a
97347a
* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.com> 0.3-2.gitb9b2a8a7e
97347a
- Bump for inclusion of OCI 1.0 Runtime and Image Spec
97347a
97347a
* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
97347a
-   buildah run: Add support for -- ending options parsing
97347a
-   buildah Add/Copy support for glob syntax
97347a
-   buildah commit: Add flag to remove containers on commit
97347a
-   buildah push: Improve man page and help information
97347a
-   buildah run: add a way to disable PTY allocation
97347a
-   Buildah docs: clarify --runtime-flag of run command
97347a
-   Update to match newer storage and image-spec APIs
97347a
-   Update containers/storage and containers/image versions
97347a
-   buildah export: add support
97347a
-   buildah images: update commands
97347a
-   buildah images: Add JSON output option
97347a
-   buildah rmi: update commands
97347a
-   buildah containers: Add JSON output option
97347a
-   buildah version: add command
97347a
-   buildah run: Handle run without an explicit command correctly
97347a
-   Ensure volume points get created, and with perms
97347a
-   buildah containers: Add a -a/--all option
97347a
97347a
* Wed Jun 14 2017 Dan Walsh <dwalsh@redhat.com> 0.1.0-2.git597d2ab9
97347a
- Release Candidate 1
97347a
- All features have now been implemented.
97347a
97347a
* Fri Apr 14 2017 Dan Walsh <dwalsh@redhat.com> 0.0.1-1.git7a0a5333
97347a
- First package for Fedora