update
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/build?expand=0&rev=371
This commit is contained in:
parent
ab17c9ea79
commit
214397dc66
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
|||||||
pkgname=build
|
pkgname=build
|
||||||
pkgver=20181206
|
pkgver=20190109
|
||||||
pkgrel=0
|
pkgrel=0
|
||||||
pkgdesc="Build packages in sandbox"
|
pkgdesc="Build packages in sandbox"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
|
@ -1,15 +1,23 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 6 15:23:11 UTC 2018 - Adrian Schröter <adrian@suse.de>
|
Thu Jan 17 11:02:13 UTC 2019 - Adrian Schröter <adrian@suse.de>
|
||||||
|
|
||||||
- support jumping into KVM debug shells using "--vm-type=kvm --shell"
|
- support "--shell" for chroot and KVM builds
|
||||||
- adapt to new containerd CLI syntax
|
- support kvm 3.1 syntax
|
||||||
|
- Support a ignoreconflicts flag for package expansion
|
||||||
|
- Tweak log messages
|
||||||
|
- Fix podman chroot builds
|
||||||
|
- Squash all layers by default in native docker builds
|
||||||
|
- Rename vc.1 manpage to buildvc.1
|
||||||
|
- support deb query strings in URLs
|
||||||
|
- detect & support new containerd CLI syntax
|
||||||
- Support a new 'UseOBSRepositories' flag
|
- Support a new 'UseOBSRepositories' flag
|
||||||
- lxc 3 support
|
- initial openSUSE Leap 15.1 config
|
||||||
- power9 fixes
|
- support for LXC version 3
|
||||||
- Generate a .milestone artifact for kiwi product builds
|
- milestone handling for kiwi product builds
|
||||||
- Support rpm's new '^' separator in version comparison
|
- Support rpm's new '^' separator in version comparison
|
||||||
- Allow to specify extra image repos with <!-- OBS-Imagerepo: -->
|
- separate cpu flags to extra varaible, set power9 as
|
||||||
- Rework release handling of containers
|
compat to power8 for now
|
||||||
|
- recommend qemu-kvm installation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 26 09:24:17 UTC 2018 - Max Lin <mlin@suse.com>
|
Mon Nov 26 09:24:17 UTC 2018 - Max Lin <mlin@suse.com>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: build
|
Source: build
|
||||||
Version: 20181206
|
Version: 20190109
|
||||||
Binary: build
|
Binary: build
|
||||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package build
|
# spec file for package build
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -22,7 +22,7 @@ Name: build
|
|||||||
Summary: A Script to Build SUSE Linux RPMs
|
Summary: A Script to Build SUSE Linux RPMs
|
||||||
License: GPL-2.0-or-later AND GPL-2.0-only
|
License: GPL-2.0-or-later AND GPL-2.0-only
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Version: 20181206
|
Version: 20190109
|
||||||
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
|
||||||
@ -61,6 +61,7 @@ Recommends: perl(YAML)
|
|||||||
Recommends: perl(YAML::LibYAML)
|
Recommends: perl(YAML::LibYAML)
|
||||||
Recommends: bsdtar
|
Recommends: bsdtar
|
||||||
Recommends: qemu-linux-user
|
Recommends: qemu-linux-user
|
||||||
|
Recommends: /usr/bin/qemu-kvm
|
||||||
Recommends: /sbin/mkfs.ext3
|
Recommends: /sbin/mkfs.ext3
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -190,6 +191,7 @@ test -e baselibs_global.conf || exit 1
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
for i in build build-* ; do bash -n $i || exit 1 ; done
|
||||||
if [ `whoami` != "root" ]; then
|
if [ `whoami` != "root" ]; then
|
||||||
echo "WARNING: Not building as root, tests did not run!"
|
echo "WARNING: Not building as root, tests did not run!"
|
||||||
exit 0
|
exit 0
|
||||||
@ -230,7 +232,7 @@ sed -i 's,build-mkbaselibs,,' ../configs/*.conf
|
|||||||
%config(noreplace) /usr/lib/build/emulator/emulator.sh
|
%config(noreplace) /usr/lib/build/emulator/emulator.sh
|
||||||
%{_mandir}/man1/build.1*
|
%{_mandir}/man1/build.1*
|
||||||
%{_mandir}/man1/unrpm.1*
|
%{_mandir}/man1/unrpm.1*
|
||||||
%{_mandir}/man1/vc.1*
|
%{_mandir}/man1/buildvc.1*
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
%exclude /usr/lib/build/initvm.*
|
%exclude /usr/lib/build/initvm.*
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
build (20181206) unstable; urgency=low
|
build (20190109) 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:2e37cd9e008b50451751c7aae12083fdf9536ee5a504e6bbad6b0fff25154d8e
|
|
||||||
size 319133
|
|
3
obs-build-20190109.tar.gz
Normal file
3
obs-build-20190109.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f16290b05449f9e356f264518898d9f58c9101d6401e7f55f4ab145856d4d78a
|
||||||
|
size 320004
|
Loading…
Reference in New Issue
Block a user