SHA256
1
0
forked from pool/buildah

Accepting request 728755 from devel:kubic

OBS-URL: https://build.opensuse.org/request/show/728755
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/buildah?expand=0&rev=18
This commit is contained in:
Dominique Leuenberger 2019-09-07 09:53:50 +00:00 committed by Git OBS Bridge
parent f840c322ef
commit 9cab70a589
5 changed files with 34 additions and 17 deletions

View File

@ -4,8 +4,8 @@
<param name="url">https://github.com/containers/buildah.git</param> <param name="url">https://github.com/containers/buildah.git</param>
<param name="scm">git</param> <param name="scm">git</param>
<param name="filename">buildah</param> <param name="filename">buildah</param>
<param name="versionformat">1.10.1</param> <param name="versionformat">1.11.0</param>
<param name="revision">v1.10.1</param> <param name="revision">v1.11.0</param>
</service> </service>
<service name="recompress" mode="disabled"> <service name="recompress" mode="disabled">

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:559760b878c8450e872ba15977ea4d85d96ee106da901957cbb6f978a2aaf8b6
size 4930004

3
buildah-1.11.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0573b2068f00cfc2febdd2c1f147ed96600fb107452e22fd37245df8b136841c
size 5308928

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Sep 5 15:02:56 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
- Update to v1.11.0
* Add --digestfile and Re-add push statement as debug
* Add --log-level command line option and deprecate --debug
* Add security-related volume options to validator
* Allow buildah bud to be called without arguments
* Allow to override build date with SOURCE_DATE_EPOCH
* Correctly detect ExitError values from Run()
* Disable empty logrus timestamps to reduce logger noise
* Fix directory pull image names
* Fix handling of /dev/null masked devices
* Fix possible runtime panic on bud
* Update bud/from help to contain indicator for --dns=none
* Update documentation about bud
* Update shebangs to take env into consideration
* Use content digests in ADD/COPY history entries
* add support for cgroupsV2
* add: add a DryRun flag to AddAndCopyOptions
* add: handle hard links when copying with .dockerignore
* add: teach copyFileWithTar() about symlinks and directories
* imagebuilder: fix detection of referenced stage roots
* pull/commit/push: pay attention to $BUILD_REGISTRY_SOURCES
* run_linux: fix mounting /sys in a userns
- Remove hardly set build tags in favor of the Makefile
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 16 06:32:33 UTC 2019 - Sascha Grunert <sgrunert@suse.com> Fri Aug 16 06:32:33 UTC 2019 - Sascha Grunert <sgrunert@suse.com>

View File

@ -22,7 +22,7 @@
%define with_libostree 1 %define with_libostree 1
%endif %endif
Name: buildah Name: buildah
Version: 1.10.1 Version: 1.11.0
Release: 0 Release: 0
Summary: Tool for building OCI containers Summary: Tool for building OCI containers
License: Apache-2.0 License: Apache-2.0
@ -79,18 +79,8 @@ rm -rf $HOME/go/src/%{project}/*
cp -avr * $HOME/go/src/%{project} cp -avr * $HOME/go/src/%{project}
cd $HOME/go/src/%{project} cd $HOME/go/src/%{project}
# TODO: remove this in a later release of buildah and let the make targets
# discover the tags correctly
%if 0%{?with_libostree}
echo "Compiling with libostree support"
export BUILDTAGS="seccomp apparmor"
%else
echo "Compiling without libostree support"
export BUILDTAGS="seccomp apparmor containers_image_ostree_stub"
%endif
# Build buildah # Build buildah
make %{?_smp_mflags} BUILDTAGS='$BUILDTAGS' GIT_COMMIT=unknown EXTRALDFLAGS=-buildmode=pie make %{?_smp_mflags} GIT_COMMIT=unknown EXTRALDFLAGS=-buildmode=pie
%check %check
# Too many tests fail due to the restricted permissions in the build enviroment. # Too many tests fail due to the restricted permissions in the build enviroment.