]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1818: releasing version 5.0.5 5.0.5
authorjoey <joey>
Wed, 9 Nov 2005 20:43:45 +0000 (20:43 +0000)
committerjoey <joey>
Wed, 9 Nov 2005 20:43:45 +0000 (20:43 +0000)
debian/changelog
debian/rules
po/debhelper.pot
t/syntax [changed mode: 0644->0755]

index ec4f43a7e4aaa96a6328c753306a68c31d30904a..9096a8e1dd497c356ccdf1f8db1e3150a160881d 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (5.0.5) unstable; urgency=low
+
+  * Create Dh_Version.pm before running syntax test. Closes: #338337
+
+ -- Joey Hess <joeyh@debian.org>  Wed,  9 Nov 2005 15:41:06 -0500
+
 debhelper (5.0.4) unstable; urgency=low
 
   * Remove hardcoded paths to update-modules and gconf-schemas in various
index 0457356affe36c0cb2154ea1a5547e81f34f24b7..c9b186eda7c7ba4188fbd246d09514a22363d1ea 100755 (executable)
@@ -32,7 +32,11 @@ PERLLIBDIR=$(shell perl -MConfig -e 'print $$Config{vendorlib}')
 
 POD2MAN=pod2man -c Debhelper -r "$(VERSION)"
 
-build: test build-stamp
+version:
+       printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';" > \
+               Debian/Debhelper/Dh_Version.pm
+
+build: version test build-stamp
 build-stamp:
        find . -maxdepth 1 -type f -perm +100 -name "dh_*" \
                -exec $(POD2MAN) {} {}.1 \;
@@ -52,8 +56,6 @@ build-stamp:
                        $(POD2MAN) --section=7 > debhelper.$$lang.7; \
        done
        
-       printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';" > \
-               Debian/Debhelper/Dh_Version.pm
        touch build-stamp
 
 clean:
@@ -62,7 +64,7 @@ clean:
        ./run dh_clean *.1 *.7 *-stamp Debian/Debhelper/Dh_Version.pm
        rm -rf man
 
-test: test-stamp
+test: version test-stamp
 test-stamp:
        ./run dh_clean
        ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ } @ARGV' t/*
index bafb13e05b0ac9e588fe03aabc6ede45fe9bb59c..74062c1b9b3604d31f819c289de69c19785ce904 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2005-11-08 16:41-0500\n"
+"POT-Creation-Date: 2005-11-09 15:41-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
old mode 100644 (file)
new mode 100755 (executable)
index b647b91..76fd46a
--- a/t/syntax
+++ b/t/syntax
@@ -7,5 +7,6 @@ my @libs=glob("Debian/Debhelper/*.pm");
 plan(tests => (@progs + @libs));
 
 foreach my $file (@progs, @libs) {
+       print "# Testing $file\n";
        ok(system("perl -c $file >/dev/null 2>&1"), 0);
 }