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