diff --git a/fix-install.patch b/fix-install.patch index ebd62e9..e70e5ba 100644 --- a/fix-install.patch +++ b/fix-install.patch @@ -1,11 +1,20 @@ ---- setup.py -+++ setup.py -@@ -330,7 +330,7 @@ +--- setup.py 2007-05-17 18:36:40.000000000 +0200 ++++ setup.py 2007-05-30 15:20:13.000000000 +0200 +@@ -336,7 +336,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"])] + self.data_files = [(dir, man_pages)] man_dir = os.path.join(self.install_dir, dir) msg = "Installed SCons man pages into %s" % man_dir +@@ -384,7 +384,7 @@ + "SCons.Sig", + "SCons.Tool"], + 'package_dir' : {'' : 'engine'}, +- 'data_files' : [('man/man1', man_pages)], ++ 'data_files' : [('share/man/man1', man_pages)], + 'scripts' : scripts, + 'cmdclass' : {'install' : install, + 'install_lib' : install_lib, diff --git a/scons-0.96.91.tar.bz2 b/scons-0.96.91.tar.bz2 deleted file mode 100644 index 9c14c91..0000000 --- a/scons-0.96.91.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d030ac85ba320f9fe946aa687c149f887d4ea0ac9015c3f98a2775e86243cf9 -size 275840 diff --git a/scons-0.97.tar.bz2 b/scons-0.97.tar.bz2 new file mode 100644 index 0000000..4be6982 --- /dev/null +++ b/scons-0.97.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8be647f6bfe28a12092be953a596fe715f40db24c7fa0d7346d0901a815f8b +size 342469 diff --git a/scons.changes b/scons.changes index 1ab94ca..a31e431 100644 --- a/scons.changes +++ b/scons.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed May 30 15:22:18 CEST 2007 - ltinkl@suse.cz + +- update to stable release 0.97 +- fix man installation patch + ------------------------------------------------------------------- Wed Mar 8 13:34:55 CET 2006 - ltinkl@suse.cz diff --git a/scons.spec b/scons.spec index c22a4fc..af52643 100644 --- a/scons.spec +++ b/scons.spec @@ -1,7 +1,7 @@ # -# spec file for package scons (Version 0.96.91) +# spec file for package scons (Version 0.97) # -# 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. # @@ -12,9 +12,9 @@ Name: scons BuildRequires: python-devel -Summary: Replacement for Make -Version: 0.96.91 -Release: 7 +Summary: Replacement for make +Version: 0.97 +Release: 1 Source0: %{name}-%{version}.tar.bz2 Source1: scons-user.html Patch1: fix-install.patch @@ -26,9 +26,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build %description SCons is a make replacement that provides a range of enhanced features, -such as automated dependency generation and built in compilation cache +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 +it provides itself, SCons allows you to use the full power of Python to control compilation. @@ -72,7 +72,10 @@ rm -rf $RPM_BUILD_ROOT %doc CHANGES.txt LICENSE.txt README.txt RELEASE.txt scons-user.html %doc /%{_mandir}/man1/* -%changelog -n scons +%changelog +* Wed May 30 2007 - ltinkl@suse.cz +- update to stable release 0.97 +- fix man installation patch * Wed Mar 08 2006 - ltinkl@suse.cz - add more documentation (#154045) * Tue Feb 28 2006 - jmatejek@suse.cz