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