The package rpms/buildah.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/buildah.git/commit/?id=206186f833194....
Change: +ExclusiveArch: x86_64 %{arm} aarch64 ppc64le s390x
Thanks.
Full change: ============
commit 206186f83319427ea924adda92736a5ea9eb1bd8 Author: Daniel J Walsh dwalsh@redhat.com Date: Mon May 7 06:56:23 2018 -0700
Remove buildah run cmd and entrypoint execution Add Files section with registries.conf to pertinent man pages Force "localhost" as a default registry Add --compress, --rm, --squash flags as a noop for bud Add FIPS mode secret to buildah run and bud Add config --comment/--domainname/--history-comment/--hostname Add support for --iidfile to bud and commit Add /bin/sh -c to entrypoint in config buildah images and podman images are listing different sizes Remove tarball as an option from buildah push --help Update entrypoint behaviour to match docker Display imageId after commit config: add support for StopSignal Allow referencing stages as index and names Add multi-stage builds support Vendor in latest imagebuilder, to get mixed case AS support Allow umount to have multi-containers Update buildah push doc buildah bud walks symlinks Imagename is required for commit atm, update manpage
diff --git a/.gitignore b/.gitignore index 36f6083..8997ae2 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,21 @@ /buildah-ef0ca9c.tar.gz /buildah-d1330a5.tar.gz /buildah-82529cd.tar.gz +/buildah-4339223.tar.gz +/buildah-83d7d10.tar.gz +/buildah-6421399.tar.gz +/buildah-45a4b81.tar.gz +/buildah-28a27a3.tar.gz +/buildah-e008b73.tar.gz +/buildah-d84f05a.tar.gz +/buildah-b16a1ea.tar.gz +/buildah-fdc3998.tar.gz +/buildah-49abf82.tar.gz +/buildah-ca1704f.tar.gz +/buildah-c50c287.tar.gz +/buildah-adb8e6f.tar.gz +/buildah-e130f2b.tar.gz +/buildah-a4f5707.tar.gz +/buildah-6fe2b55.tar.gz +/buildah-45772e8.tar.gz +/buildah-dd02e70.tar.gz diff --git a/buildah.spec b/buildah.spec index 8af182b..1a83c22 100644 --- a/buildah.spec +++ b/buildah.spec @@ -7,42 +7,42 @@ %global debug_package %{nil} %endif
-%global provider github -%global provider_tld com -%global project projectatomic -%global repo buildah +%global provider github +%global provider_tld com +%global project projectatomic +%global repo buildah # https://github.com/projectatomic/buildah %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} -%global import_path %{provider_prefix} -%global commit 82529cdf31628d4636214d93b8d28a05443fce60 -%global shortcommit %(c=%{commit}; echo ${c:0:7}) - -Name: %{repo} -Version: 0.16 -Release: 1.git%{shortcommit}%{?dist} -Summary: A command line tool used for creating OCI Images -License: ASL 2.0 -URL: https://%%7Bprovider_prefix%7D -Source: https://%%7Bprovider_prefix%7D/archive/%%7Bcommit%7D/%%7Brepo%7D-%%7Bshortco... - -ExclusiveArch: x86_64 %{arm} aarch64 ppc64le s390x +%global import_path %{provider_prefix} +%global commit0 1ab80bcd88929a94c52268a5af8443c0055a42cb +%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) + +Name: %{repo} +Version: 1.0 +Release: 1.git%{shortcommit0}%{?dist} +Summary: A command line tool used for creating OCI Images +License: ASL 2.0 +URL: https://%%7Bprovider_prefix%7D +Source: https://%%7Bprovider_prefix%7D/archive/%%7Bcommit0%7D/%%7Bname%7D-%%7Bshortc... + +ExclusiveArch: x86_64 %{arm} aarch64 ppc64le s390x # If go_compiler is not set to 1, there is no virtual provide. Use golang instead. -BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} -BuildRequires: git -BuildRequires: glib2-devel -BuildRequires: libseccomp-devel -BuildRequires: ostree-devel -BuildRequires: glibc-static -BuildRequires: go-md2man -BuildRequires: gpgme-devel -BuildRequires: device-mapper-devel -BuildRequires: btrfs-progs-devel -BuildRequires: libassuan-devel -Requires: runc >= 1.0.0-17 -Requires: skopeo-containers >= 0.1.20-2 -Requires: container-selinux -Requires: ostree -Provides: %{repo} = %{version}-%{release} +BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} +BuildRequires: git +BuildRequires: glib2-devel +BuildRequires: libseccomp-devel +BuildRequires: ostree-devel +BuildRequires: glibc-static +BuildRequires: go-md2man +BuildRequires: gpgme-devel +BuildRequires: device-mapper-devel +BuildRequires: btrfs-progs-devel +BuildRequires: libassuan-devel +BuildRequires: make +Requires: runc >= 1.0.0-17 +Requires: skopeo-containers >= 0.1.20-2 +Requires: container-selinux +Requires: ostree
%description The %{name} package provides a command line tool which can be used to @@ -54,7 +54,7 @@ or * delete a working container or an image
%prep -%autosetup -Sgit -n %{name}-%{commit} +%autosetup -Sgit -n %{name}-%{commit0}
%build mkdir _build @@ -66,7 +66,7 @@ popd mv vendor src
export GOPATH=$(pwd)/_build:$(pwd):%{gopath} -make all GIT_COMMIT=%{shortcommit} +make all GIT_COMMIT=%{shortcommit0}
%install export GOPATH=$(pwd)/_build:$(pwd):%{gopath} @@ -85,6 +85,100 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions %{_datadir}/bash-completion/completions/%{name}
%changelog +* Mon May 07 2018 Dan Walsh dwalsh@redhat.com 1.0-1 +- Remove buildah run cmd and entrypoint execution +- Add Files section with registries.conf to pertinent man pages +- Force "localhost" as a default registry +- Add --compress, --rm, --squash flags as a noop for bud +- Add FIPS mode secret to buildah run and bud +- Add config --comment/--domainname/--history-comment/--hostname +- Add support for --iidfile to bud and commit +- Add /bin/sh -c to entrypoint in config +- buildah images and podman images are listing different sizes +- Remove tarball as an option from buildah push --help +- Update entrypoint behaviour to match docker +- Display imageId after commit +- config: add support for StopSignal +- Allow referencing stages as index and names +- Add multi-stage builds support +- Vendor in latest imagebuilder, to get mixed case AS support +- Allow umount to have multi-containers +- Update buildah push doc +- buildah bud walks symlinks +- Imagename is required for commit atm, update manpage + +* Mon May 07 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-25.gitdd02e70 +- autobuilt dd02e70 + +* Sat May 05 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-24.git45772e8 +- autobuilt 45772e8 + +* Fri May 04 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-23.git6fe2b55 +- autobuilt 6fe2b55 + +* Wed May 02 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-22.gita4f5707 +- autobuilt a4f5707 + +* Wed May 02 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-21.gite130f2b +- autobuilt commit e130f2b + +* Tue May 01 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-20.gitadb8e6f +- autobuilt commit adb8e6f + +* Sat Apr 28 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-19.gitc50c287 +- autobuilt commit c50c287 + +* Fri Apr 27 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-18.gitca1704f +- autobuilt commit ca1704f + +* Wed Apr 25 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-17.git49abf82 +- autobuilt commit 49abf82 + +* Tue Apr 24 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-16.gitfdc3998 +- autobuilt commit fdc3998 + +* Tue Apr 24 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-15.gitb16a1ea +- autobuilt commit b16a1ea + +* Fri Apr 20 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-14.gitd84f05a +- autobuilt commit d84f05a + +* Thu Apr 19 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-13.gite008b73 +- autobuilt commit e008b73 + +* Thu Apr 19 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-12.git28a27a3 +- autobuilt commit 28a27a3 + +* Tue Apr 17 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-11.git45a4b81 +- autobuilt commit 45a4b81 + +* Tue Apr 17 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-10.git45a4b81 +- autobuilt commit 45a4b81 + +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-9.git6421399 +- autobuilt commit 6421399 + +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-8.git83d7d10 +- autobuilt commit 83d7d10 + +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-7.git83d7d10 +- autobuilt commit 83d7d10 + +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-6.git83d7d10 +- autobuilt commit 83d7d10 + +* Mon Apr 09 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-5.git4339223 +- autobuilt commit 4339223 + +* Mon Apr 09 2018 Lokesh Mandvekar (Bot) lsm5+bot@fedoraproject.org - 0.16-4.git4339223 +- autobuilt commit 4339223 + +* Mon Apr 09 2018 Lokesh Mandvekar lsm5@fedoraproject.org - 0.16-3.git4339223 +- autobuilt commit 4339223 + +* Sun Apr 08 2018 Lokesh Mandvekar lsm5@fedoraproject.org - 0.16-2.git4743c2e +- autobuilt commit 4743c2e + * Wed Apr 4 2018 Dan Walsh dwalsh@redhat.com 0.16-1 - Add support for shell - Vendor in latest containers/image diff --git a/sources b/sources index 5083be7..4a51cbe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (buildah-82529cd.tar.gz) = 979a9e1cef5368ae03c0f67b9649b7f74ab3c294e1e1efe2b23e4e2a7ddeb143d73ee8cdd2cbb0bba9266fdf5db059cac0dcdafb461f3e0f60cdecf6e21684a5 +SHA512 (buildah-dd02e70.tar.gz) = 8030ceee96bcc6839f4ff0b9da388b4ae743f2bdd9ab4f398fca0d9f2dccada54c963527751503dccbb09ee1f4c9c99204fbe9b7d7f64964aef2978b776c8d19
arch-excludes@lists.fedoraproject.org