forked from pool/build
Accepting request 959816: Features:
* download_assets: add --outdir --clean --show-dir-srcmd5 parameters support multiple --arch arguments * asset support for golang modules * add support for LXC 4. * new shortcuts for rpm building: --rpm-noprep, --rpm-build-in-place, --rpm-build-in-place-noprep for building directly from upstream git repositories without any tar ball. * mount securityfs if not mounted by kernel-obs-build * collect steal time during VM builds in statistics. * declare armv8 and armv7 compatible * support OBS Debuginfo build flag for Red Hat variants * setup rpmmacros for all build types and earlier * Kiwi builds - Always append the profile name to kiwi container names * Dockerfile build - improve registry handling - initial Dockerfile.dapper support - support 'curl' commands in docker builds - strip known domains from container name - support container alias names * introducing --verbose option, currently only showing kernel messages. * support cpio creation for special files * handle QEMU >= 6.0 on POWER9 Changes: * Use git+https instead of git-https as url schema * add oops=panic kernel parameter * Updated distribution configurations (esp. Leap 15.4 and Tumbleweed) Rev openSUSE:Factory/139 Md5 7e118fc3827fe429070b8b78e532abc5 2022-03-09 17:46:55 dimstar_suse 959816
This commit is contained in:
commit
48df5fa919
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
||||
pkgname=build
|
||||
pkgver=20211125
|
||||
pkgver=20220307
|
||||
pkgrel=0
|
||||
pkgdesc="Build packages in sandbox"
|
||||
arch=('i686' 'x86_64')
|
||||
|
6
_service
6
_service
@ -1,8 +1,8 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="revision">20211125</param>
|
||||
<param name="version">20211125</param>
|
||||
<param name="url">git://github.com/openSUSE/obs-build.git</param>
|
||||
<param name="revision">20220307</param>
|
||||
<param name="version">20220307</param>
|
||||
<param name="url">https://github.com/openSUSE/obs-build.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="extract">dist/build.changes</param>
|
||||
<param name="extract">dist/build.spec</param>
|
||||
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 7 08:41:07 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||
|
||||
Features:
|
||||
* download_assets: add --outdir --clean --show-dir-srcmd5 parameters
|
||||
support multiple --arch arguments
|
||||
* asset support for golang modules
|
||||
* add support for LXC 4.
|
||||
* new shortcuts for rpm building:
|
||||
--rpm-noprep, --rpm-build-in-place, --rpm-build-in-place-noprep
|
||||
for building directly from upstream git repositories without
|
||||
any tar ball.
|
||||
* mount securityfs if not mounted by kernel-obs-build
|
||||
* collect steal time during VM builds in statistics.
|
||||
* declare armv8 and armv7 compatible
|
||||
* support OBS Debuginfo build flag for Red Hat variants
|
||||
* setup rpmmacros for all build types and earlier
|
||||
* Kiwi builds
|
||||
- Always append the profile name to kiwi container names
|
||||
* Dockerfile build
|
||||
- improve registry handling
|
||||
- initial Dockerfile.dapper support
|
||||
- support 'curl' commands in docker builds
|
||||
- strip known domains from container name
|
||||
- support container alias names
|
||||
* introducing --verbose option, currently only showing kernel
|
||||
messages.
|
||||
* support cpio creation for special files
|
||||
* handle QEMU >= 6.0 on POWER9
|
||||
|
||||
Changes:
|
||||
* Use git+https instead of git-https as url schema
|
||||
* add oops=panic kernel parameter
|
||||
* Updated distribution configurations (esp. Leap 15.4 and Tumbleweed)
|
||||
* new preinstallimages are using zstd by default
|
||||
* source subdirectories are used in git managed sources
|
||||
|
||||
Minor improvements
|
||||
* change sccache default size limit
|
||||
* speed up improvements in
|
||||
- vm shutdown
|
||||
- rpm preinstall
|
||||
- avoid calling external commands in a loop
|
||||
- using zstd for preinstallimages
|
||||
- no more unpacking progress indicators to avoid slowdown
|
||||
- virtio handling
|
||||
* fixed vm-type=qemu
|
||||
* multiple smaller bugfixes and speed improvements
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 25 13:01:00 UTC 2021 - Adrian Schröter <adrian@suse.de>
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
Format: 1.0
|
||||
Source: build
|
||||
Version: 20211125
|
||||
Version: 20220307
|
||||
Binary: build
|
||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||
Architecture: all
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -28,7 +28,7 @@ Name: %{__pkg_name}
|
||||
Summary: A Script to Build SUSE Linux RPMs
|
||||
License: GPL-2.0-only OR GPL-3.0-only
|
||||
Group: Development/Tools/Building
|
||||
Version: 20211125
|
||||
Version: 20220307
|
||||
Release: 0
|
||||
Source: obs-build-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@ -37,6 +37,7 @@ BuildArch: noarch
|
||||
# Keep the following dependencies in sync with obs-worker package
|
||||
Requires: bash
|
||||
Requires: binutils
|
||||
Requires: findutils
|
||||
Requires: perl
|
||||
Requires: tar
|
||||
# needed for fuser
|
||||
@ -57,6 +58,9 @@ Requires: perl-TimeDate
|
||||
BuildRequires: perl-TimeDate
|
||||
%endif
|
||||
Conflicts: bsdtar < 2.5.5
|
||||
%if 0%{?suse_version}
|
||||
Conflicts: qemu < 2.5.0
|
||||
%endif
|
||||
BuildRequires: perl(Date::Parse)
|
||||
BuildRequires: perl(Test::Harness)
|
||||
BuildRequires: perl(Test::More)
|
||||
|
@ -1,4 +1,4 @@
|
||||
build (20211125) unstable; urgency=low
|
||||
build (20220307) unstable; urgency=low
|
||||
|
||||
* Update to current git trunk
|
||||
- add sles11sp2 build config and adapt autodetection
|
||||
|
@ -7,12 +7,11 @@ Standards-Version: 3.7.2
|
||||
|
||||
Package: obs-build
|
||||
Architecture: all
|
||||
Depends: ${perl:Depends}, rpm, libarchive-tools | bsdtar
|
||||
Depends: ${perl:Depends}, rpm, findutils, libarchive-tools | bsdtar
|
||||
Recommends: rpm2cpio
|
||||
Conflicts: build
|
||||
Replaces: build
|
||||
Provides: build
|
||||
Description: A script to build SUSE Linux RPMs
|
||||
This package provides a script for building RPMs for SUSE Linux
|
||||
Description: A script to build SUSE RPMs
|
||||
This package provides a script for building RPMs for SUSE
|
||||
in a chroot environment.
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e5b46890c8e24643a7f05572e7b4218e7b3eb1f6bcd446e60222bcbaa40568e
|
||||
size 535864
|
3
obs-build-20220307.tar.gz
Normal file
3
obs-build-20220307.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2051c78ef050a6796c44883ca2cdb1cd5cfa51043a17473c1efb81f864f592e2
|
||||
size 559483
|
Loading…
Reference in New Issue
Block a user