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