From 352a6a0590dcb585d4b9a47eb36af398d146a47e Mon Sep 17 00:00:00 2001 From: Thomas Moschny Date: Sun, 31 Aug 2008 20:49:53 +0000 Subject: [PATCH] Update to 1.4.4. --- .cvsignore | 2 +- import.log | 1 + sources | 2 +- waf-1.4.3-libdir.patch => waf-1.4.4-libdir.patch | 12 ++++++------ waf.spec | 10 ++++++++-- 5 files changed, 17 insertions(+), 10 deletions(-) rename waf-1.4.3-libdir.patch => waf-1.4.4-libdir.patch (66%) diff --git a/.cvsignore b/.cvsignore index f5d61ac..da54fed 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -waf-1.4.3.tar.bz2 +waf-1.4.4.tar.bz2 diff --git a/import.log b/import.log index dcf12ee..6c95c24 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ waf-1_4_3-1_fc9:HEAD:waf-1.4.3-1.fc9.src.rpm:1214694119 +waf-1_4_4-1_fc9:HEAD:waf-1.4.4-1.fc9.src.rpm:1220215604 diff --git a/sources b/sources index 9b17049..b4ada0a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fb4acb46dbb612e911d7296282269743 waf-1.4.3.tar.bz2 +6a809e446497b710592579772c8b22bd waf-1.4.4.tar.bz2 diff --git a/waf-1.4.3-libdir.patch b/waf-1.4.4-libdir.patch similarity index 66% rename from waf-1.4.3-libdir.patch rename to waf-1.4.4-libdir.patch index 3824afe..a929d71 100644 --- a/waf-1.4.3-libdir.patch +++ b/waf-1.4.4-libdir.patch @@ -1,6 +1,6 @@ -diff -up waf-1.4.3/waf-light.orig waf-1.4.3/waf-light ---- waf-1.4.3/waf-light.orig 2008-06-23 01:53:07.000000000 +0200 -+++ waf-1.4.3/waf-light 2008-06-28 19:04:21.000000000 +0200 +diff -up waf-1.4.4/waf-light.orig waf-1.4.4/waf-light +--- waf-1.4.4/waf-light.orig 2008-08-26 23:44:34.000000000 +0200 ++++ waf-1.4.4/waf-light 2008-08-31 22:35:35.000000000 +0200 @@ -109,7 +109,7 @@ def find_lib(): if w: return w err("waf-light requires wafadmin -> export WAFDIR=/folder") @@ -10,9 +10,9 @@ diff -up waf-1.4.3/waf-light.orig waf-1.4.3/waf-light for i in [INSTALL,'/usr','/usr/local','/opt']: w = test(i+dir) if w: return w -diff -up waf-1.4.3/wscript.orig waf-1.4.3/wscript ---- waf-1.4.3/wscript.orig 2008-06-23 01:53:07.000000000 +0200 -+++ waf-1.4.3/wscript 2008-06-28 19:02:00.000000000 +0200 +diff -up waf-1.4.4/wscript.orig waf-1.4.4/wscript +--- waf-1.4.4/wscript.orig 2008-08-26 23:44:34.000000000 +0200 ++++ waf-1.4.4/wscript 2008-08-31 22:35:35.000000000 +0200 @@ -324,7 +324,7 @@ def build(bld): wafadmin = bld.create_obj('py') wafadmin.find_sources_in_dirs('wafadmin', exts=['.py']) diff --git a/waf.spec b/waf.spec index 8e1df30..8941ce5 100644 --- a/waf.spec +++ b/waf.spec @@ -1,5 +1,5 @@ Name: waf -Version: 1.4.3 +Version: 1.4.4 Release: 1%{?dist} Summary: A Python-based build system @@ -9,7 +9,7 @@ License: BSD and Python URL: http://code.google.com/p/waf/ Source0: http://waf.googlecode.com/files/waf-%{version}.tar.bz2 # use _datadir instead of /usr/lib -Patch0: waf-1.4.3-libdir.patch +Patch0: waf-1.4.4-libdir.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch @@ -81,6 +81,12 @@ find demos utils -type f -exec %{__chmod} 0644 {} \; %changelog +* Sun Aug 31 2008 Thomas Moschny - 1.4.4-1 +- Update to 1.4.4: + - python 2.3 compatibility was restored + - task randomization was removed + - the vala tool was updated + * Sat Jun 28 2008 Thomas Moschny - 1.4.3-1 - Update to 1.4.3. - Remove fcntl patch (fixed upstream).