forked from pool/build
osc copypac from project:OBS:Server:2.4 package:build revision:34, using keep-link
Rev openSUSE:Tools/208 Md5 bc81c705647b9601f3dfe1cecb4c6d62 2013-05-14 12:10:30 adrianSuSE None
This commit is contained in:
parent
1198e177f8
commit
37fb6f33ca
4
PKGBUILD
4
PKGBUILD
@ -1,5 +1,5 @@
|
||||
pkgname=build
|
||||
pkgver=20130508
|
||||
pkgver=20130514
|
||||
pkgrel=0
|
||||
pkgdesc="Build packages in sandbox"
|
||||
arch=('i686' 'x86_64')
|
||||
@ -8,7 +8,7 @@ license=('GPL-2.0+' 'GPL-2.0')
|
||||
groups=('base-devel')
|
||||
depends=('perl')
|
||||
source=(obs-build-${pkgver}.tar.gz)
|
||||
md5sums=('61d38fe23efcd677e24a6f6919409d5b')
|
||||
md5sums=('8c3484555b9e23a6933d7d513a32cae5')
|
||||
|
||||
package() {
|
||||
msg "Installing build ..."
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue May 14 10:52:18 UTC 2013 - adrian@suse.de
|
||||
|
||||
- debian builds call linitian now if installed
|
||||
- Arch Linux: support new pacman tool syntax
|
||||
- support kiwi installation medias with new kiwi versions
|
||||
- fixed regression using build host rpm instead of the version from chroot
|
||||
- fixed repository priority ordering, when only some repos have a priority
|
||||
and kiwi appliances get build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 8 11:12:37 UTC 2013 - adrian@suse.de
|
||||
|
||||
|
@ -1,12 +1,9 @@
|
||||
Format: 1.0
|
||||
Source: build
|
||||
Version: 20130508
|
||||
Version: 20130514
|
||||
Binary: build
|
||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||
Architecture: all
|
||||
Standards-Version: 3.7.2
|
||||
Build-Depends: debhelper (>= 7)
|
||||
VCS-Git: git://github.com/openSUSE/obs-build.git
|
||||
VCS-Browser: https://github.com/openSUSE/obs-build
|
||||
Homepage: https://build.opensuse.org/package/show?package=build&project=openSUSE%3ATools
|
||||
Build-Depends: debhelper (>= 4)
|
||||
|
||||
|
14
build.spec
14
build.spec
@ -20,7 +20,7 @@ Name: build
|
||||
Summary: A Script to Build SUSE Linux RPMs
|
||||
License: GPL-2.0+ and GPL-2.0
|
||||
Group: Development/Tools/Building
|
||||
Version: 20130508
|
||||
Version: 20130514
|
||||
Release: 0
|
||||
#!BuildIgnore: build-mkbaselibs
|
||||
Source: obs-build-%{version}.tar.gz
|
||||
@ -85,7 +85,11 @@ for generating delta rpm packages.
|
||||
|
||||
%endif
|
||||
|
||||
%package initvm-%{_host_cpu}
|
||||
%define initvm_arch %{_host_cpu}
|
||||
%if %{_host_cpu} == "i686"
|
||||
%define initvm_arch i586
|
||||
%endif
|
||||
%package initvm-%{initvm_arch}
|
||||
Summary: Virtualization initializer for emulated cross architecture builds
|
||||
Group: Development/Tools/Building
|
||||
Requires: build
|
||||
@ -97,7 +101,7 @@ Obsoletes: build-initvm
|
||||
BuildRequires: glibc-devel-static
|
||||
%endif
|
||||
|
||||
%description initvm-%{_host_cpu}
|
||||
%description initvm-%{initvm_arch}
|
||||
This package provides a script for building RPMs for SUSE Linux in a
|
||||
chroot or a secure virtualized
|
||||
|
||||
@ -109,8 +113,8 @@ make CFLAGS="$RPM_BUILD_FLAGS" initvm-all
|
||||
|
||||
%install
|
||||
# initvm
|
||||
strip initvm.%{_host_cpu}
|
||||
make DESTDIR=$RPM_BUILD_ROOT initvm-install
|
||||
strip $RPM_BUILD_ROOT/usr/lib/build/initvm.*
|
||||
export NO_BRP_STRIP_DEBUG="true"
|
||||
chmod 0644 $RPM_BUILD_ROOT/usr/lib/build/initvm.*
|
||||
|
||||
@ -155,7 +159,7 @@ test -e default.conf
|
||||
/usr/lib/build/mkdrpms
|
||||
%endif
|
||||
|
||||
%files initvm-%{_host_cpu}
|
||||
%files initvm-%{initvm_arch}
|
||||
%defattr(-,root,root)
|
||||
/usr/lib/build/initvm.*
|
||||
|
||||
|
@ -1,32 +1,3 @@
|
||||
build (2012.08.24-1) unstable; urgency=low
|
||||
|
||||
* update to current git
|
||||
- fixed arch PKGBUILD parsing
|
||||
- add .qcow2 file handling for kiwi
|
||||
- support root tar ball output format of kiwi
|
||||
|
||||
-- Michael Schroeder <mls@suse.de> Fri, 24 Aug 2012 14:06:31 +0200
|
||||
|
||||
build (2012.07.19-2) unstable; urgency=low
|
||||
|
||||
* fix version in debian.changelog
|
||||
* misc updates for debian/*
|
||||
- Use debhelper compat level 7 (lenny)
|
||||
- Add some informational headers to control
|
||||
- Simplify rules file by using dh
|
||||
- Convert copyright file to UTF-8
|
||||
|
||||
-- Frank Lichtenheld <flichtenheld@hawking-vb-opensuse> Tue, 24 Jul 2012 00:13:28 +0200
|
||||
|
||||
build (2012.07.19-1) unstable; urgency=low
|
||||
|
||||
* update 12.2 config to RC1 state
|
||||
* add 12.3 config to fix build for factory
|
||||
* do not package compressed _and_ uncompressed kiwi images
|
||||
* add build timestamps in each logfile line
|
||||
|
||||
-- Adrian Schroeter <adrian@suse.de> Thu, 19 Jul 2010 10:03:54 +0200
|
||||
|
||||
build (2011.10.10-1) unstable; urgency=low
|
||||
|
||||
* Update to current git trunk
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f91fb16572adc921059cb857a6c4a6ebc6dded6c1a93762f0ae28c9123efb624
|
||||
size 1093
|
||||
oid sha256:e76356912637c3554da7a0cef6cbc7f12e5adf9fc4c6b14fb09084c6b6bcc845
|
||||
size 1524
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:347b5d1e3b3079db827c760e9cd6fb040bf33314584317fcba9249561c14de33
|
||||
size 152330
|
3
obs-build-20130514.tar.gz
Normal file
3
obs-build-20130514.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3b5869bbabf7839f1e0b41301dd3551d463e4afd3a8d5641ed9dc64dea2056c3
|
||||
size 153635
|
Loading…
Reference in New Issue
Block a user