Accepting request 624691 from devel:CaaSP:Head:ControllerNode
autosubmit from concourse OBS-URL: https://build.opensuse.org/request/show/624691 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/buildah?expand=0&rev=6
This commit is contained in:
parent
d629c8b9b1
commit
799e75ca13
4
_service
4
_service
@ -4,8 +4,8 @@
|
||||
<param name="url">https://github.com/projectatomic/buildah.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">buildah</param>
|
||||
<param name="versionformat">1.1</param>
|
||||
<param name="revision">v1.1</param>
|
||||
<param name="versionformat">1.2</param>
|
||||
<param name="revision">v1.2</param>
|
||||
</service>
|
||||
|
||||
<service name="recompress" mode="disabled">
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3148bf7fb46afb3d1077ba575cef3608f66fafea0289021c136166586830876f
|
||||
size 2211400
|
3
buildah-1.2.tar.xz
Normal file
3
buildah-1.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c25b8828ee7fd74b3ea9e1f0114ade49e6cac3d10abe26a3060bdade910d831
|
||||
size 2305732
|
@ -1,3 +1,35 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 16 06:33:14 UTC 2018 - vrothberg@suse.com
|
||||
|
||||
- Update buildah to v1.2:
|
||||
* build-using-dockerfile: let -t include transports again
|
||||
* Block use of /proc/acpi and /proc/keys from inside containers
|
||||
* Fix handling of -registries-conf
|
||||
* Add -cidfile option to from
|
||||
* Add a -loglevel option to build-with-dockerfile
|
||||
* docs: Follow man-pages(7) suggestions for SYNOPSIS
|
||||
* umount: add all option to umount all mounted containers
|
||||
* Fix buildah bud -layers
|
||||
* Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
|
||||
* build without seccomp
|
||||
* Add Capabilities lists to BuilderInfo
|
||||
* Fix ARGS parsing for run commands
|
||||
* Add info on registries.conf to from manpage
|
||||
* mount: support multiple inputs
|
||||
* Allow -userns-uid-map/-userns-gid-map to be global options
|
||||
* Add -rm and -force-rm to buildah bud
|
||||
* Add -all,-a flag to buildah images
|
||||
* Add environment variable BUILDAH_RUNTIME
|
||||
* Add -layers and -no-cache to buildah bud
|
||||
* Change 'registries' to 'container registries' in man
|
||||
* Add registries.conf link to a few man pages
|
||||
|
||||
- install missing buildah (1) manpage
|
||||
|
||||
- install bash completion at /usr/share/bash-completion/completions
|
||||
|
||||
- buildmode=pie: build position independent code
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 11 05:52:37 UTC 2018 - vrothberg@suse.com
|
||||
|
||||
|
13
buildah.spec
13
buildah.spec
@ -23,7 +23,7 @@
|
||||
%define with_libostree 1
|
||||
%endif
|
||||
Name: buildah
|
||||
Version: 1.1
|
||||
Version: 1.2
|
||||
Release: 0
|
||||
Summary: Tool for building OCI containers
|
||||
License: Apache-2.0
|
||||
@ -89,7 +89,8 @@ export BUILDTAGS="seccomp apparmor containers_image_ostree_stub"
|
||||
|
||||
# Build buildah
|
||||
go build -tags "$BUILDTAGS" \
|
||||
-i -ldflags '-s -w -X main.gitCommit=%{commit} -X main.buildInfo='$SOURCE_DATE_EPOCH'' \
|
||||
-buildmode=pie \
|
||||
-ldflags '-s -w -X main.gitCommit=%{commit} -X main.buildInfo='$SOURCE_DATE_EPOCH'' \
|
||||
-o bin/buildah \
|
||||
%{project}/cmd/buildah
|
||||
|
||||
@ -105,15 +106,15 @@ cd $HOME/go/src/%{project}
|
||||
|
||||
install -D -m 0755 bin/buildah %{buildroot}/%{_bindir}/buildah
|
||||
install -d %{buildroot}/%{_mandir}/man1
|
||||
install -m 0644 docs/buildah-*.1 %{buildroot}/%{_mandir}/man1
|
||||
install -D -m 0644 contrib/completions/bash/buildah %{buildroot}/%{_sysconfdir}/bash_completion.d/buildah
|
||||
install -m 0644 docs/buildah*.1 %{buildroot}/%{_mandir}/man1
|
||||
install -D -m 0644 contrib/completions/bash/buildah %{buildroot}/%{_datadir}/bash-completion/completions/buildah
|
||||
|
||||
%fdupes %{buildroot}/%{_prefix}
|
||||
|
||||
%files
|
||||
%{_bindir}/buildah
|
||||
%{_mandir}/man1/buildah-*
|
||||
%config %{_sysconfdir}/bash_completion.d/buildah
|
||||
%{_mandir}/man1/buildah*
|
||||
%{_datadir}/bash-completion/completions/buildah
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user