OBS User unknown 2007-01-15 23:36:24 +00:00 committed by Git OBS Bridge
commit 36c720f057
8 changed files with 30232 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

11
fix-install.patch Normal file
View File

@ -0,0 +1,11 @@
--- setup.py
+++ setup.py
@@ -330,7 +330,7 @@
if is_win32:
dir = 'Doc'
else:
- dir = os.path.join('man', 'man1')
+ dir = os.path.join('share', 'man', 'man1')
self.data_files = [(dir, ["scons.1", "sconsign.1"])]
man_dir = os.path.join(self.install_dir, dir)
msg = "Installed SCons man pages into %s" % man_dir

0
ready Normal file
View File

3
scons-0.96.91.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d030ac85ba320f9fe946aa687c149f887d4ea0ac9015c3f98a2775e86243cf9
size 275840

30070
scons-user.html Normal file

File diff suppressed because it is too large Load Diff

35
scons.changes Normal file
View File

@ -0,0 +1,35 @@
-------------------------------------------------------------------
Wed Mar 8 13:34:55 CET 2006 - ltinkl@suse.cz
- add more documentation (#154045)
-------------------------------------------------------------------
Tue Feb 28 16:46:04 CET 2006 - jmatejek@suse.cz
- updated to reflect python changes due to #149809
-------------------------------------------------------------------
Wed Jan 25 21:41:28 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Thu Nov 24 18:05:04 CET 2005 - sbrabec@suse.cz
- Bi-arch hack.
-------------------------------------------------------------------
Thu Nov 3 02:46:03 CET 2005 - dmueller@suse.de
- update to 0.96.91
-------------------------------------------------------------------
Tue Aug 24 18:11:32 CEST 2004 - mcihar@suse.cz
- install man pages
-------------------------------------------------------------------
Tue Aug 24 13:30:24 CEST 2004 - mcihar@suse.cz
- initial packaging

89
scons.spec Normal file
View File

@ -0,0 +1,89 @@
#
# spec file for package scons (Version 0.96.91)
#
# Copyright (c) 2006 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.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: scons
BuildRequires: python-devel
Summary: Replacement for Make
Version: 0.96.91
Release: 7
Source0: %{name}-%{version}.tar.bz2
Source1: scons-user.html
Patch1: fix-install.patch
License: X11/MIT
Group: Development/Tools/Building
URL: http://www.scons.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%description
SCons is a make replacement that provides a range of enhanced features,
such as automated dependency generation and built in compilation cache
support. SCons rule sets are Python scripts, so as well as the features
it provides itself SCons allows you to use the full power of Python to
control compilation.
Authors:
--------
Steven Knight <knight@baldmt.com>
Chad Austin
Charles Crain
Steve Leblanc
Gary Oberbrunner
Anthony Roach
Greg Spencer
Christoph Wiedemann
%prep
%setup
%patch1
patch -p0 <<EOF
--- engine/SCons/Tool/qt.py
+++ engine/SCons/Tool/qt.py
@@ -252,1 +252,1 @@
- QT_LIBPATH = os.path.join('\$QTDIR', 'lib'),
+ QT_LIBPATH = os.path.join('\$QTDIR', '%_lib'),
EOF
install %{SOURCE1} .
%build
export CFLAGS="$RPM_OPT_FLAGS"
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record-rpm=INSTALLED_FILES --install-lib=%{py_sitedir}
sed -i -e 's,\.1$,.1.gz,' INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc CHANGES.txt LICENSE.txt README.txt RELEASE.txt scons-user.html
%doc /%{_mandir}/man1/*
%changelog -n scons
* Wed Mar 08 2006 - ltinkl@suse.cz
- add more documentation (#154045)
* Tue Feb 28 2006 - jmatejek@suse.cz
- updated to reflect python changes due to #149809
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Thu Nov 24 2005 - sbrabec@suse.cz
- Bi-arch hack.
* Thu Nov 03 2005 - dmueller@suse.de
- update to 0.96.91
* Tue Aug 24 2004 - mcihar@suse.cz
- install man pages
* Tue Aug 24 2004 - mcihar@suse.cz
- initial packaging