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