forked from pool/build
Rev openSUSE:Factory/2 Md5 9be3a509281b289a1152a712b3e18e43 2007-08-02 19:42:25 unknown None
This commit is contained in:
parent
844c4201e1
commit
fd270b5342
3
build-2007.08.02.tar.gz
Normal file
3
build-2007.08.02.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:409911f0853217ed5b24b4509f053cfc3f29b82510b40cb3b418e40e200fa089
|
||||
size 52987
|
@ -1,3 +1,84 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 2 15:56:09 CEST 2007 - mls@suse.de
|
||||
|
||||
- support 'order' config option
|
||||
- support 'patterntype' config option
|
||||
- new setdeps() method
|
||||
- support for flexible query options
|
||||
- support 'description' query
|
||||
- fix bug in changelog2spec time cutoff
|
||||
- make debtransform understand Debtransform-Tar/Debtransform-Files-Tar/
|
||||
Debtransform-Series
|
||||
- fix bug in substitutedeps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 13 17:18:17 CEST 2007 - mls@suse.de
|
||||
|
||||
- implement rpm installation order calculation in perl
|
||||
- make substitute code modify requires, too
|
||||
- add filelist query support
|
||||
- add prereq parsing support
|
||||
- speed up version comparison a bit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 10 20:02:29 CEST 2007 - mls@suse.de
|
||||
|
||||
- add _vendor to configs
|
||||
- fix deban dependency compare
|
||||
- allow not operator in configs
|
||||
- fix build from source rpms
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 12 16:22:16 CEST 2007 - mls@suse.de
|
||||
|
||||
- add --root to rpm call in rpm to work around a bug in rpm [#255720]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 5 15:59:21 CEST 2007 - mls@suse.de
|
||||
|
||||
- update to 1561:
|
||||
* support architecture dependand requires in dsc files
|
||||
* support "global" definitions for rpm
|
||||
* support vminstall config option
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 12 15:40:49 CET 2007 - mls@suse.de
|
||||
|
||||
- update to r1419:
|
||||
* fix buildroot in debtransform
|
||||
* obey version numbers when expanding
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 2 21:23:40 CET 2007 - mls@suse.de
|
||||
|
||||
- transform suse changes file to rpm specfile format
|
||||
- improved debian support
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 17:14:08 CET 2007 - poeml@suse.de
|
||||
|
||||
- update to r1114:
|
||||
- re-add the lost unrpm script
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 15:58:32 CET 2007 - poeml@suse.de
|
||||
|
||||
- update to r1110:
|
||||
- make exclarch an array
|
||||
- remount root rw in xen case, needed if root is not reiserfs
|
||||
- add repotype/runscripts options
|
||||
- remove devs in sl10.1/10.2
|
||||
- fix boolean test to make "00" false like rpm does
|
||||
- add rpm_verscmp for version comparison
|
||||
- runscripts
|
||||
- macro blocks
|
||||
- read_config_dist
|
||||
- useful xen exit status
|
||||
- add --kill
|
||||
- update 10.2 config
|
||||
- extend spec/dsc parser
|
||||
- fixed two bugs in the specfile parser
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 24 17:43:28 CET 2006 - mls@suse.de
|
||||
|
||||
|
76
build.spec
76
build.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package build (Version 2006.11.24)
|
||||
# spec file for package build (Version 2007.08.02)
|
||||
#
|
||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -11,13 +11,13 @@
|
||||
# norootforbuild
|
||||
|
||||
Name: build
|
||||
License: GNU General Public License (GPL)
|
||||
License: GPL v2 or later
|
||||
Group: Development/Tools/Building
|
||||
Autoreqprov: on
|
||||
Summary: A Script to Build SUSE Linux RPMs
|
||||
Version: 2006.11.24
|
||||
Version: 2007.08.02
|
||||
Release: 1
|
||||
Source: build.tar.bz2
|
||||
Source: build-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArchitectures: noarch
|
||||
|
||||
@ -28,14 +28,16 @@ chroot environment.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -n %{name}
|
||||
%setup
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/{bin,lib/build,lib/build/configs,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 Build.pm build createrpmdeps debsort 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/
|
||||
cp -a changelog2spec debtransform $RPM_BUILD_ROOT/usr/lib/build/
|
||||
cp -a configs/* $RPM_BUILD_ROOT/usr/lib/build/configs
|
||||
cp -a Build/* $RPM_BUILD_ROOT/usr/lib/build/Build
|
||||
cp -a mkbaselibs baselibs.conf baselibs_global.conf $RPM_BUILD_ROOT/usr/lib/build/
|
||||
cp -a build.1 $RPM_BUILD_ROOT/usr/share/man/man1
|
||||
ln -s /usr/lib/build/build $RPM_BUILD_ROOT/usr/bin/build
|
||||
@ -46,9 +48,63 @@ ln -s /usr/lib/build/build $RPM_BUILD_ROOT/usr/bin/build
|
||||
/usr/bin/build
|
||||
/usr/bin/unrpm
|
||||
/usr/lib/build
|
||||
%{_mandir}/man1/build.1.gz
|
||||
%{_mandir}/man1/build.1.*
|
||||
|
||||
%changelog -n build
|
||||
%changelog
|
||||
* Thu Aug 02 2007 - mls@suse.de
|
||||
- support 'order' config option
|
||||
- support 'patterntype' config option
|
||||
- new setdeps() method
|
||||
- support for flexible query options
|
||||
- support 'description' query
|
||||
- fix bug in changelog2spec time cutoff
|
||||
- make debtransform understand Debtransform-Tar/Debtransform-Files-Tar/
|
||||
Debtransform-Series
|
||||
- fix bug in substitutedeps
|
||||
* Wed Jun 13 2007 - mls@suse.de
|
||||
- implement rpm installation order calculation in perl
|
||||
- make substitute code modify requires, too
|
||||
- add filelist query support
|
||||
- add prereq parsing support
|
||||
- speed up version comparison a bit
|
||||
* Thu May 10 2007 - mls@suse.de
|
||||
- add _vendor to configs
|
||||
- fix deban dependency compare
|
||||
- allow not operator in configs
|
||||
- fix build from source rpms
|
||||
* Thu Apr 12 2007 - mls@suse.de
|
||||
- add --root to rpm call in rpm to work around a bug in rpm [#255720]
|
||||
* Thu Apr 05 2007 - mls@suse.de
|
||||
- update to 1561:
|
||||
* support architecture dependand requires in dsc files
|
||||
* support "global" definitions for rpm
|
||||
* support vminstall config option
|
||||
* Mon Mar 12 2007 - mls@suse.de
|
||||
- update to r1419:
|
||||
* fix buildroot in debtransform
|
||||
* obey version numbers when expanding
|
||||
* Fri Mar 02 2007 - mls@suse.de
|
||||
- transform suse changes file to rpm specfile format
|
||||
- improved debian support
|
||||
* Fri Jan 26 2007 - poeml@suse.de
|
||||
- update to r1114:
|
||||
- re-add the lost unrpm script
|
||||
* Fri Jan 26 2007 - poeml@suse.de
|
||||
- update to r1110:
|
||||
- make exclarch an array
|
||||
- remount root rw in xen case, needed if root is not reiserfs
|
||||
- add repotype/runscripts options
|
||||
- remove devs in sl10.1/10.2
|
||||
- fix boolean test to make "00" false like rpm does
|
||||
- add rpm_verscmp for version comparison
|
||||
- runscripts
|
||||
- macro blocks
|
||||
- read_config_dist
|
||||
- useful xen exit status
|
||||
- add --kill
|
||||
- update 10.2 config
|
||||
- extend spec/dsc parser
|
||||
- fixed two bugs in the specfile parser
|
||||
* Fri Nov 24 2006 - mls@suse.de
|
||||
- fix suse_version in sl10.1/sles10 config
|
||||
- add sl10.2 config
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5c251592c4ce83a70ab6b225e9381d17a98260f15a54dc74d87ba264f6af4b1b
|
||||
size 39324
|
@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
get_date_version_string `find_newest_file *.tar.bz2`
|
Loading…
Reference in New Issue
Block a user