forked from pool/build
Accepting request 1006382: - fix build of testsuite spec file
- sync factory build config - build-recipe-livebuild: run as root - vm_kill_kvm: Use SIGKILL after 3 minutes if the kvm process is not going away - Zip: Allow extraction of symlink targets - Convert obsolete egrep/fgrep calls to grep -E/-F - Add RemoteAsset support for Dockerfile based builds - new image format: mkosi - Support stacked container builds - Revert "build-vm-kvm: enable l3-cache on i386/x86_64 builds" - handling of non-compressed tar when creating Debian archive for DSC 3.0 - kvm: exclude powerpc from io_uring, enable iothreads always (#829) - kvm: enable more performant I/O also for s390(x) (#828) - Changelog patching when building DSC format 3.0. (#831) - support for building from slsa provenance files Rev openSUSE:Factory/145 Md5 4f91b443be4aa4854260ffc92ec52b64 2022-09-28 15:51:08 RBrownFactory 1006382
This commit is contained in:
commit
62e085e2ac
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
|||||||
pkgname=build
|
pkgname=build
|
||||||
pkgver=20220613
|
pkgver=20220927
|
||||||
pkgrel=0
|
pkgrel=0
|
||||||
pkgdesc="Build packages in sandbox"
|
pkgdesc="Build packages in sandbox"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
|
4
_service
4
_service
@ -1,7 +1,7 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="manual">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="revision">20220613</param>
|
<param name="revision">20220927</param>
|
||||||
<param name="version">20220613</param>
|
<param name="version">20220927</param>
|
||||||
<param name="url">https://github.com/openSUSE/obs-build.git</param>
|
<param name="url">https://github.com/openSUSE/obs-build.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="extract">dist/build.changes</param>
|
<param name="extract">dist/build.changes</param>
|
||||||
|
@ -1,8 +1,29 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 12:39:58 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
Tue Sep 27 07:01:33 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||||
|
|
||||||
- regression fix for Debian Source format 3.0 (quilt), also adding
|
- fix build of testsuite spec file
|
||||||
changelog modification now
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 26 08:15:38 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||||
|
|
||||||
|
- sync factory build config
|
||||||
|
- build-recipe-livebuild: run as root
|
||||||
|
- vm_kill_kvm: Use SIGKILL after 3 minutes if the kvm process is not going away
|
||||||
|
- Zip: Allow extraction of symlink targets
|
||||||
|
- Convert obsolete egrep/fgrep calls to grep -E/-F
|
||||||
|
- Add RemoteAsset support for Dockerfile based builds
|
||||||
|
- new image format: mkosi
|
||||||
|
- Support stacked container builds
|
||||||
|
- Revert "build-vm-kvm: enable l3-cache on i386/x86_64 builds"
|
||||||
|
- handling of non-compressed tar when creating Debian archive for DSC 3.0
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 20 09:33:55 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||||
|
|
||||||
|
- kvm: exclude powerpc from io_uring, enable iothreads always (#829)
|
||||||
|
- kvm: enable more performant I/O also for s390(x) (#828)
|
||||||
|
- Changelog patching when building DSC format 3.0. (#831)
|
||||||
|
- support for building from slsa provenance files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 31 09:10:07 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
Tue May 31 09:10:07 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: build
|
Source: build
|
||||||
Version: 20220613
|
Version: 20220927
|
||||||
Binary: build
|
Binary: build
|
||||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
12
build.spec
12
build.spec
@ -28,7 +28,7 @@ Name: %{__pkg_name}
|
|||||||
Summary: A Script to Build SUSE Linux RPMs
|
Summary: A Script to Build SUSE Linux RPMs
|
||||||
License: GPL-2.0-only OR GPL-3.0-only
|
License: GPL-2.0-only OR GPL-3.0-only
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Version: 20220613
|
Version: 20220927
|
||||||
Release: 0
|
Release: 0
|
||||||
Source: obs-build-%{version}.tar.gz
|
Source: obs-build-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -64,16 +64,20 @@ Conflicts: qemu < 2.5.0
|
|||||||
BuildRequires: perl(Date::Parse)
|
BuildRequires: perl(Date::Parse)
|
||||||
BuildRequires: perl(Test::Harness)
|
BuildRequires: perl(Test::Harness)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
|
%if 0%{?suse_version} >= 1200
|
||||||
BuildRequires: perl(YAML::LibYAML)
|
BuildRequires: perl(YAML::LibYAML)
|
||||||
|
%endif
|
||||||
%if 0%{?suse_version} > 1000 || 0%{?centos_version} >= 800 || 0%{?rhel_version} >= 800 || 0%{?fedora_version} >= 21
|
%if 0%{?suse_version} > 1000 || 0%{?centos_version} >= 800 || 0%{?rhel_version} >= 800 || 0%{?fedora_version} >= 21
|
||||||
# None of them are actually required for core features.
|
# None of them are actually required for core features.
|
||||||
# Perl helper scripts use them.
|
# Perl helper scripts use them.
|
||||||
Recommends: perl(Date::Language)
|
Recommends: perl(Archive::Tar)
|
||||||
Recommends: /sbin/mkfs.ext3
|
Recommends: /sbin/mkfs.ext3
|
||||||
Recommends: /usr/bin/qemu-kvm
|
Recommends: /usr/bin/qemu-kvm
|
||||||
Recommends: bsdtar
|
Recommends: bsdtar
|
||||||
Recommends: qemu-linux-user
|
Recommends: qemu-linux-user
|
||||||
Recommends: zstd
|
Recommends: zstd
|
||||||
|
Recommends: perl(Config::IniFiles)
|
||||||
|
Recommends: perl(Date::Language)
|
||||||
Recommends: perl(Date::Parse)
|
Recommends: perl(Date::Parse)
|
||||||
Recommends: perl(LWP::UserAgent)
|
Recommends: perl(LWP::UserAgent)
|
||||||
Recommends: perl(Net::SSL)
|
Recommends: perl(Net::SSL)
|
||||||
@ -162,7 +166,6 @@ make CFLAGS="$RPM_BUILD_FLAGS" initvm-all
|
|||||||
make DESTDIR=%{buildroot} initvm-install
|
make DESTDIR=%{buildroot} initvm-install
|
||||||
strip %{buildroot}/usr/lib/build/initvm.*
|
strip %{buildroot}/usr/lib/build/initvm.*
|
||||||
export NO_BRP_STRIP_DEBUG="true"
|
export NO_BRP_STRIP_DEBUG="true"
|
||||||
chmod 0644 %{buildroot}/usr/lib/build/initvm.*
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# main
|
# main
|
||||||
@ -257,6 +260,9 @@ sed -i 's,build-mkbaselibs,,' ../configs/*.conf
|
|||||||
if [ ! -e /.build.packages/rpmlint-Factory.rpm ]; then
|
if [ ! -e /.build.packages/rpmlint-Factory.rpm ]; then
|
||||||
sed -i 's,rpmlint-Factory,,' ../configs/*.conf
|
sed -i 's,rpmlint-Factory,,' ../configs/*.conf
|
||||||
fi
|
fi
|
||||||
|
if [ ! -e /.build.packages/rpmlint-strict.rpm ]; then
|
||||||
|
sed -i 's,rpmlint-strict,,' ../configs/*.conf
|
||||||
|
fi
|
||||||
./testbuild.sh /.build.binaries/
|
./testbuild.sh /.build.binaries/
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
build (20220613) unstable; urgency=low
|
build (20220927) unstable; urgency=low
|
||||||
|
|
||||||
* Update to current git trunk
|
* Update to current git trunk
|
||||||
- add sles11sp2 build config and adapt autodetection
|
- add sles11sp2 build config and adapt autodetection
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:aa0bec84a03bbebf18fb5bc923716d7951cf64e23e00da51de1ea82f1f1ee918
|
|
||||||
size 578371
|
|
3
obs-build-20220927.tar.gz
Normal file
3
obs-build-20220927.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:71fe2dd78e2e4a56455803f447a0eaf8fb2b6c6e74a4045e0802809a1ac74c31
|
||||||
|
size 584265
|
Loading…
Reference in New Issue
Block a user