forked from pool/build
Rev openSUSE:Factory/7 Md5 2ed24fb175b31d4dbbaaf0078c1850b4 2008-10-22 13:31:56 unknown None
This commit is contained in:
parent
d13178f704
commit
cb522dc40a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f8ee6b3d2d016d3e9d34cb00d03773c3276feddbfbf03d72adcebc2f4b233468
|
|
||||||
size 74270
|
|
3
build-2008.10.21.tar.bz2
Normal file
3
build-2008.10.21.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d209a6b62b6bdb54fe3adcce2050e7a619e63075e391c155aeb13036b11dbe07
|
||||||
|
size 60652
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 21 13:25:50 CEST 2008 - jblunck@suse.de
|
||||||
|
|
||||||
|
- Generate debuginfo packages for baselibs (bnc #396196)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 20 17:56:20 CEST 2008 - ro@suse.de
|
||||||
|
|
||||||
|
- update to svn trunk of today:
|
||||||
|
- init_buildsystem: check for some left space before calling rpmbuild
|
||||||
|
- create dev/shm as directory
|
||||||
|
- baselibs_global.conf: update to current internal revision
|
||||||
|
- add ia32 stuff for x86 binaries on ppc
|
||||||
|
- add ldconfig for all non-devel baselibs packages
|
||||||
|
- changed: to function also with emulators better use fakeroot-tcp
|
||||||
|
for debian build
|
||||||
|
- fixed: changed basis for memory calculation to assume also a stack
|
||||||
|
which can be swapped well. gcc often needs much memory here
|
||||||
|
- recognize SLES10
|
||||||
|
- fix boolification in && and ||
|
||||||
|
- re-preinstall critical packages on update
|
||||||
|
- fix creation of buildenv to do it the same time with and without VM.
|
||||||
|
- fixes installation-images build for ppc
|
||||||
|
- fixed #406596: don't ignore BuildRequires in subpackages
|
||||||
|
- print finished message
|
||||||
|
- set BUILD_USER depending on the suse_version like it is done in
|
||||||
|
old autobuild
|
||||||
|
- added documentation for specfile control comments for build(1)
|
||||||
|
- add --incarnation
|
||||||
|
- add --create-build-binaries
|
||||||
|
- support badarch (aka excludearch)
|
||||||
|
- add support for Requires(pre) or (post) semantic
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 11 16:15:23 CEST 2008 - adrian@suse.de
|
Mon Aug 11 16:15:23 CEST 2008 - adrian@suse.de
|
||||||
|
|
||||||
|
36
build.spec
36
build.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package build (Version 2008.08.11)
|
# spec file for package build (Version 2008.10.21)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -23,7 +23,7 @@ License: GPL v2 or later
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: A Script to Build SUSE Linux RPMs
|
Summary: A Script to Build SUSE Linux RPMs
|
||||||
Version: 2008.08.11
|
Version: 2008.10.21
|
||||||
Release: 1
|
Release: 1
|
||||||
Source: build-%{version}.tar.bz2
|
Source: build-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -38,8 +38,9 @@ chroot environment.
|
|||||||
%prep
|
%prep
|
||||||
%setup
|
%setup
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/usr/{bin,lib/build,lib/build/configs,lib/build/Build,share/man/man1}
|
mkdir -p $RPM_BUILD_ROOT/usr/{bin,lib/build,lib/build/configs,lib/build/Build,share/man/man1}
|
||||||
cp -a unrpm $RPM_BUILD_ROOT/usr/bin
|
cp -a unrpm $RPM_BUILD_ROOT/usr/bin
|
||||||
cp -a Build.pm build createrpmdeps order getbinaryid expanddeps extractbuild getmacros getoptflags init_buildsystem substitutedeps $RPM_BUILD_ROOT/usr/lib/build/
|
cp -a Build.pm build createrpmdeps order getbinaryid expanddeps extractbuild getmacros getoptflags init_buildsystem substitutedeps $RPM_BUILD_ROOT/usr/lib/build/
|
||||||
@ -56,9 +57,36 @@ ln -s /usr/lib/build/build $RPM_BUILD_ROOT/usr/bin/build
|
|||||||
/usr/bin/build
|
/usr/bin/build
|
||||||
/usr/bin/unrpm
|
/usr/bin/unrpm
|
||||||
/usr/lib/build
|
/usr/lib/build
|
||||||
%{_mandir}/man1/build.1.*
|
%{_mandir}/man1/build.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 21 2008 jblunck@suse.de
|
||||||
|
- Generate debuginfo packages for baselibs (bnc #396196)
|
||||||
|
* Mon Oct 20 2008 ro@suse.de
|
||||||
|
- update to svn trunk of today:
|
||||||
|
- init_buildsystem: check for some left space before calling rpmbuild
|
||||||
|
- create dev/shm as directory
|
||||||
|
- baselibs_global.conf: update to current internal revision
|
||||||
|
- add ia32 stuff for x86 binaries on ppc
|
||||||
|
- add ldconfig for all non-devel baselibs packages
|
||||||
|
- changed: to function also with emulators better use fakeroot-tcp
|
||||||
|
for debian build
|
||||||
|
- fixed: changed basis for memory calculation to assume also a stack
|
||||||
|
which can be swapped well. gcc often needs much memory here
|
||||||
|
- recognize SLES10
|
||||||
|
- fix boolification in && and ||
|
||||||
|
- re-preinstall critical packages on update
|
||||||
|
- fix creation of buildenv to do it the same time with and without VM.
|
||||||
|
- fixes installation-images build for ppc
|
||||||
|
- fixed #406596: don't ignore BuildRequires in subpackages
|
||||||
|
- print finished message
|
||||||
|
- set BUILD_USER depending on the suse_version like it is done in
|
||||||
|
old autobuild
|
||||||
|
- added documentation for specfile control comments for build(1)
|
||||||
|
- add --incarnation
|
||||||
|
- add --create-build-binaries
|
||||||
|
- support badarch (aka excludearch)
|
||||||
|
- add support for Requires(pre) or (post) semantic
|
||||||
* Mon Aug 11 2008 adrian@suse.de
|
* Mon Aug 11 2008 adrian@suse.de
|
||||||
Update from current svn trunk:
|
Update from current svn trunk:
|
||||||
- Improved XEN support (XEN call only once per build)
|
- Improved XEN support (XEN call only once per build)
|
||||||
|
Loading…
Reference in New Issue
Block a user