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