update
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/build?expand=0&rev=468
This commit is contained in:
parent
802be7281d
commit
2724699887
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
|||||||
pkgname=build
|
pkgname=build
|
||||||
pkgver=20220927
|
pkgver=20221118
|
||||||
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">20220927</param>
|
<param name="revision">20221118</param>
|
||||||
<param name="version">20220927</param>
|
<param name="version">20221118</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,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 18 15:34:56 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||||
|
|
||||||
|
- INCOMPATIBLE CHANGE: get rid off the power8 cpu limitation (#889) on powerpc
|
||||||
|
- Add handling of non-compressed tar when creating Debian archive for DSC 3.0
|
||||||
|
- Add automatic build-in-place detection
|
||||||
|
- Support dist/package subdir builds in pbuild
|
||||||
|
- Skip iothreads on QEMU 7.1.0
|
||||||
|
- Fix permissions of /dev/pts/ptmx
|
||||||
|
- Add license to container package list output
|
||||||
|
- initial SP5 build configurations
|
||||||
|
- vm-type:qemu use virtio on x86_64
|
||||||
|
- Improve installation of obs-docker-support for multi-stage builds
|
||||||
|
- Tweak ARG handling in dockerfile parser
|
||||||
|
- fixed Undefined subroutine &PBuild::Job::ls issue
|
||||||
|
- Add missing dependencies from vc as Recommends
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 27 07:01:33 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
Tue Sep 27 07:01:33 UTC 2022 - Adrian Schröter <adrian@suse.de>
|
||||||
|
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: build
|
Source: build
|
||||||
Version: 20220927
|
Version: 20221118
|
||||||
Binary: build
|
Binary: build
|
||||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Standards-Version: 3.7.2
|
Standards-Version: 3.7.2
|
||||||
Build-Depends: debhelper (>= 4)
|
Build-Depends: debhelper (>= 4)
|
||||||
Depends: bash, binutils, findutils, perl, tar, psmisc, libwww-perl
|
Depends: bash, binutils, findutils, perl, tar, psmisc
|
||||||
|
Depends: libwww-perl, libxml-parser-perl, libarchive-tools, zstd, qemu-kvm
|
||||||
|
|
||||||
|
14
build.spec
14
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: 20220927
|
Version: 20221118
|
||||||
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
|
||||||
@ -72,20 +72,27 @@ BuildRequires: perl(YAML::LibYAML)
|
|||||||
# Perl helper scripts use them.
|
# Perl helper scripts use them.
|
||||||
Recommends: perl(Archive::Tar)
|
Recommends: perl(Archive::Tar)
|
||||||
Recommends: /sbin/mkfs.ext3
|
Recommends: /sbin/mkfs.ext3
|
||||||
|
Recommends: /sbin/mkfs.ext3
|
||||||
|
Recommends: /usr/bin/qemu-kvm
|
||||||
Recommends: /usr/bin/qemu-kvm
|
Recommends: /usr/bin/qemu-kvm
|
||||||
Recommends: bsdtar
|
Recommends: bsdtar
|
||||||
|
Recommends: bsdtar
|
||||||
Recommends: qemu-linux-user
|
Recommends: qemu-linux-user
|
||||||
|
Recommends: qemu-linux-user
|
||||||
|
Recommends: zstd
|
||||||
Recommends: zstd
|
Recommends: zstd
|
||||||
Recommends: perl(Config::IniFiles)
|
Recommends: perl(Config::IniFiles)
|
||||||
Recommends: perl(Date::Language)
|
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(Pod::Usage)
|
Recommends: perl(Pod::Usage)
|
||||||
Recommends: perl(Time::Zone)
|
Recommends: perl(Time::Zone)
|
||||||
Recommends: perl(URI)
|
Recommends: perl(URI)
|
||||||
Recommends: perl(XML::Parser)
|
Recommends: perl(XML::Parser)
|
||||||
Recommends: perl(YAML::LibYAML)
|
Recommends: perl(YAML::LibYAML)
|
||||||
|
# for vc:
|
||||||
|
Recommends: /usr/bin/dnsdomainname
|
||||||
|
Recommends: /usr/bin/rpmdev-packager
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?suse_version} > 1120 || ! 0%{?suse_version}
|
%if 0%{?suse_version} > 1120 || ! 0%{?suse_version}
|
||||||
@ -263,6 +270,9 @@ fi
|
|||||||
if [ ! -e /.build.packages/rpmlint-strict.rpm ]; then
|
if [ ! -e /.build.packages/rpmlint-strict.rpm ]; then
|
||||||
sed -i 's,rpmlint-strict,,' ../configs/*.conf
|
sed -i 's,rpmlint-strict,,' ../configs/*.conf
|
||||||
fi
|
fi
|
||||||
|
if [ ! -e /.build.packages/rpmlint-mini.rpm ]; then
|
||||||
|
sed -i 's,rpmlint-mini,,' ../configs/*.conf
|
||||||
|
fi
|
||||||
./testbuild.sh /.build.binaries/
|
./testbuild.sh /.build.binaries/
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
build (20220927) unstable; urgency=low
|
build (20221118) 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:71fe2dd78e2e4a56455803f447a0eaf8fb2b6c6e74a4045e0802809a1ac74c31
|
|
||||||
size 584265
|
|
3
obs-build-20221118.tar.gz
Normal file
3
obs-build-20221118.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:002b3d6f426f89b5b052405462f3a941a5da0216a4a94a576d65a096acaaa840
|
||||||
|
size 623704
|
Loading…
Reference in New Issue
Block a user