2007-01-16 00:06:25 +01:00
|
|
|
#
|
2010-08-02 11:53:53 +02:00
|
|
|
# spec file for package build (Version 2010.07.08)
|
2007-01-16 00:06:25 +01:00
|
|
|
#
|
2010-02-02 17:31:57 +01:00
|
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:06:25 +01:00
|
|
|
#
|
2008-08-15 22:36:21 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:06:25 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-05-31 12:08:28 +02:00
|
|
|
|
2007-01-16 00:06:25 +01:00
|
|
|
Name: build
|
2010-02-02 17:31:57 +01:00
|
|
|
License: GPLv2+
|
2007-01-16 00:06:25 +01:00
|
|
|
Group: Development/Tools/Building
|
2007-09-15 12:05:41 +02:00
|
|
|
AutoReqProv: on
|
2007-01-16 00:06:25 +01:00
|
|
|
Summary: A Script to Build SUSE Linux RPMs
|
2010-08-02 11:53:53 +02:00
|
|
|
Version: 2010.07.08
|
2010-06-18 06:01:12 +02:00
|
|
|
Release: 1
|
2008-12-03 16:24:53 +01:00
|
|
|
# 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"
|
|
|
|
# svn export -r$REVISION https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/build build-$VERSION
|
|
|
|
# tar cjvf build-$VERSION.tar.bz2 build-$VERSION
|
|
|
|
# rm -rf build-$VERSION
|
|
|
|
# osc add build-$VERSION.tar.bz2
|
|
|
|
# # There's several occurences of "Version: something" in this file,
|
|
|
|
# # two of them valid, so we need to be picky in the match.
|
|
|
|
# sed --in-place build.spec -e"/\(Version:\?[[:space:]]\+\)\([0-9]\{4\}\.[0-9][0-9]\.[0-9][0-9]\.r[0-9]\+\)/s,,\1$VERSION,"
|
|
|
|
# osc build build.spec
|
|
|
|
# osc ci
|
|
|
|
# osc submitreq create -m"current svn snapshot." openSUSE:Tools build openSUSE:Factory
|
2010-04-16 01:14:22 +02:00
|
|
|
#!BuildIgnore: build-mkbaselibs
|
2009-02-20 21:02:31 +01:00
|
|
|
Source: build-%{version}.tar.gz
|
2007-01-16 00:06:25 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2007-09-15 12:05:41 +02:00
|
|
|
BuildArch: noarch
|
2009-06-16 18:20:30 +02:00
|
|
|
# Manual requires to avoid hard require to bash-static
|
|
|
|
AutoReqProv: off
|
2010-02-25 02:19:14 +01:00
|
|
|
# Keep the following dependencies in sync with obs-worker package
|
|
|
|
Requires: bash
|
|
|
|
Requires: perl
|
2010-02-02 17:31:57 +01:00
|
|
|
Requires: perl-TimeDate
|
2010-02-25 02:19:14 +01:00
|
|
|
Requires: binutils
|
2010-03-09 16:59:01 +01:00
|
|
|
Requires: tar
|
2007-01-16 00:06:25 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides a script for building RPMs for SUSE Linux in a
|
|
|
|
chroot environment.
|
|
|
|
|
|
|
|
|
2010-04-15 17:55:11 +02:00
|
|
|
%if 0%{?suse_version} > 1120 || ! 0%{?suse_version}
|
2010-04-15 23:59:47 +02:00
|
|
|
Requires: build-mkbaselibs
|
2010-04-15 17:55:11 +02:00
|
|
|
|
|
|
|
%package mkbaselibs
|
2010-04-15 23:59:47 +02:00
|
|
|
License: GPLv2+
|
2010-04-15 17:55:11 +02:00
|
|
|
Group: Development/Tools/Building
|
|
|
|
Summary: Tools to generate base lib packages
|
|
|
|
# NOTE: this package must not have dependencies which may break boot strapping (eg. perl modules)
|
|
|
|
|
|
|
|
%description mkbaselibs
|
|
|
|
This package contains the parts which may be installed in the inner build system
|
|
|
|
for generating base lib packages.
|
|
|
|
%endif
|
2007-01-16 00:06:25 +01:00
|
|
|
|
|
|
|
%prep
|
2009-06-16 18:20:30 +02:00
|
|
|
%setup -q
|
2007-01-16 00:06:25 +01:00
|
|
|
|
2008-10-22 15:31:56 +02:00
|
|
|
%build
|
|
|
|
|
2007-01-16 00:06:25 +01:00
|
|
|
%install
|
2009-06-16 18:20:30 +02:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
2010-03-09 16:59:01 +01:00
|
|
|
cd $RPM_BUILD_ROOT/usr/lib/build/configs/
|
2010-03-19 10:37:22 +01:00
|
|
|
%if 0%{?sles_version}
|
2010-03-09 16:59:01 +01:00
|
|
|
ln -s sles%{sles_version}.conf default.conf
|
|
|
|
%else
|
2010-03-19 10:37:22 +01:00
|
|
|
%if 0%{?suse_version}
|
2010-03-09 16:59:01 +01:00
|
|
|
V=%suse_version
|
|
|
|
ln -s sl${V:0:2}.${V:2:1}.conf default.conf
|
|
|
|
%endif
|
|
|
|
%endif
|
2007-01-16 00:06:25 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc README
|
|
|
|
/usr/bin/build
|
2009-06-16 18:20:30 +02:00
|
|
|
/usr/bin/buildvc
|
2007-01-16 00:06:25 +01:00
|
|
|
/usr/bin/unrpm
|
|
|
|
/usr/lib/build
|
2008-10-22 15:31:56 +02:00
|
|
|
%{_mandir}/man1/build.1*
|
2007-01-16 00:06:25 +01:00
|
|
|
|
2010-04-15 17:55:11 +02:00
|
|
|
%if 0%{?suse_version} > 1120 || ! 0%{?suse_version}
|
|
|
|
%exclude /usr/lib/build/mkbaselibs
|
2010-04-19 01:02:29 +02:00
|
|
|
%exclude /usr/lib/build/baselibs*
|
2010-04-15 17:55:11 +02:00
|
|
|
|
|
|
|
%files mkbaselibs
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%dir /usr/lib/build
|
|
|
|
/usr/lib/build/mkbaselibs
|
2010-04-19 01:02:29 +02:00
|
|
|
/usr/lib/build/baselibs*
|
2010-04-15 17:55:11 +02:00
|
|
|
%endif
|
|
|
|
|
2007-08-02 21:42:25 +02:00
|
|
|
%changelog
|