update to current svn (r7751)
- support for legacy releasepkg mechanism - only print parse warnings if $config->{'warnings'} is set - set warnings for expanddeps/substitutedeps - use UTC as default timezone - also consider patches as sources - do not call depmod until we use also the native kernel, it can't match otherwise - return with value 3, if basic file system creation fails. bs_worker will mark the build host as bad and retries on another one. - handle files from service correctly and strip their prefix. - - also add rpmv3 compatibility hack to createrpmdeps - mount proc filesystem for build compare run - fix for ccache support from - add build-ids for debuginfo packages for subpacks Rev openSUSE:Tools/47 Md5 cb4ed6d05904ad337b3a48928ebacb43 2009-07-27 15:09:13 oertel None
This commit is contained in:
parent
2316b91606
commit
535c0e2561
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2190ee5682411c8908d92f0b50e4ed1e1c53daef72fbdac86cf2814687c71fd2
|
||||
size 82479
|
3
build-2009.07.27.tar.gz
Normal file
3
build-2009.07.27.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e972e3c3dfbf953062f43d947dd5ebcecce02f8f123c8ab05f01276c61e88c70
|
||||
size 102544
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 27 17:03:47 CEST 2009 - ro@suse.de
|
||||
|
||||
- update to current svn (r7751)
|
||||
- support for legacy releasepkg mechanism
|
||||
- only print parse warnings if $config->{'warnings'} is set
|
||||
- set warnings for expanddeps/substitutedeps
|
||||
- use UTC as default timezone
|
||||
- also consider patches as sources
|
||||
- do not call depmod until we use also the native kernel,
|
||||
it can't match otherwise
|
||||
- return with value 3, if basic file system creation fails.
|
||||
bs_worker will mark the build host as bad and retries on another one.
|
||||
- handle files from service correctly and strip their prefix.
|
||||
- - also add rpmv3 compatibility hack to createrpmdeps
|
||||
- mount proc filesystem for build compare run
|
||||
- fix for ccache support from
|
||||
- add build-ids for debuginfo packages for subpacks
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 3 13:40:08 CEST 2009 - adrian@suse.de
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
Format: 1.0
|
||||
Source: build
|
||||
Version: 2009.06.04
|
||||
Version: 2009.07.27
|
||||
Binary: build
|
||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||
Architecture: all
|
||||
|
30
build.spec
30
build.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package build (Version 2009.02.25)
|
||||
# spec file for package build (Version 2009.07.27)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -23,8 +23,8 @@ License: GPL v2 or later
|
||||
Group: Development/Tools/Building
|
||||
AutoReqProv: on
|
||||
Summary: A Script to Build SUSE Linux RPMs
|
||||
Version: 2009.06.04
|
||||
Release: 2
|
||||
Version: 2009.07.27
|
||||
Release: 1
|
||||
# osc rm build-*tar.bz2
|
||||
# REVISION=$(svn info https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/build | sed -ne "/Revision: /s///p")
|
||||
# VERSION="$(date +"%Y.%m.%d").r$REVISION"
|
||||
@ -42,7 +42,7 @@ Source: build-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
# Manual requires to avoid hard require to bash-static
|
||||
Autoreqprov: off
|
||||
AutoReqProv: off
|
||||
Requires: /bin/bash
|
||||
Requires: /usr/bin/perl
|
||||
|
||||
@ -51,6 +51,7 @@ This package provides a script for building RPMs for SUSE Linux in a
|
||||
chroot environment.
|
||||
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
@ -70,6 +71,23 @@ make DESTDIR=$RPM_BUILD_ROOT install
|
||||
%{_mandir}/man1/build.1*
|
||||
|
||||
%changelog
|
||||
* Wed Jun 03 2009 adrian@suse.de
|
||||
- update to current svn (r7483)
|
||||
* Jan-Simons "ChangeTarget" support
|
||||
* fix for handling missing self provides with rpm format 3.0.6
|
||||
* Thu Apr 23 2009 adrian@suse.de
|
||||
- update to current svn (r7164)
|
||||
* package vc tool correctly
|
||||
* avoid running fsck on vm instances after 23 build runs
|
||||
- install files via Makefile instead of manual calls in spec file
|
||||
* Mon Apr 20 2009 adrian@suse.de
|
||||
- update to current svn (r7126)
|
||||
* new blocklist based build result export
|
||||
* Martin Mohrings cross build extensions
|
||||
* vc tool included now
|
||||
* Mon Mar 23 2009 adrian@suse.de
|
||||
- Fix for "Requires(pre/post)" tags
|
||||
- fix missing abuild group in /etc/gshadow on debian like distros
|
||||
* Wed Feb 25 2009 adrian@suse.de
|
||||
- Update for bug fix for image build with additional packages in --create step
|
||||
(fix from cthiel, bnc#479537)
|
||||
@ -213,7 +231,7 @@ make DESTDIR=$RPM_BUILD_ROOT install
|
||||
- make dist autodetection work with opensuse
|
||||
- fix macro sequencing and expression parser bugs
|
||||
- treat preinstalls as keep
|
||||
* Wed Aug 23 2006 ro@suse.de
|
||||
* Thu Aug 24 2006 ro@suse.de
|
||||
- init_buildsystem: when preinstalling, handle only sh scripts
|
||||
* Wed Jun 14 2006 mls@suse.de
|
||||
- support for buildservice and debian packages
|
||||
@ -278,7 +296,7 @@ make DESTDIR=$RPM_BUILD_ROOT install
|
||||
- fix BUILD_DIR security issue (#35281)
|
||||
* Thu Mar 11 2004 ro@suse.de
|
||||
- adapted for 9.1
|
||||
* Mon Nov 10 2003 mmj@suse.de
|
||||
* Tue Nov 11 2003 mmj@suse.de
|
||||
- Accept "-h" for help
|
||||
- rpm -ba is now rpmbuild -ba
|
||||
- Add Maximum RPM reference
|
||||
|
Loading…
Reference in New Issue
Block a user