2007-01-16 00:06:25 +01:00
|
|
|
#
|
2010-02-02 17:31:57 +01:00
|
|
|
# spec file for package build (Version 2010.01.13)
|
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-02-25 02:19:10 +01:00
|
|
|
Version: 2010.01.13
|
2009-06-16 18:20:30 +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
|
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:10 +01:00
|
|
|
Requires: /bin/bash
|
|
|
|
Requires: /usr/bin/perl
|
2010-02-02 17:31:57 +01:00
|
|
|
Requires: perl-TimeDate
|
2007-01-16 00:06:25 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides a script for building RPMs for SUSE Linux in a
|
|
|
|
chroot environment.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
#ln -s /usr/lib/build/build $RPM_BUILD_ROOT/usr/bin/build
|
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
|
|
|
|
2007-08-02 21:42:25 +02:00
|
|
|
%changelog
|