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