lintian: r588 - in trunk: debian testset unpack
Author: jeroen
Date: 2006-03-26 15:42:31 +0200 (Sun, 26 Mar 2006)
New Revision: 588
Modified:
trunk/debian/changelog
trunk/debian/control
trunk/testset/runtests
trunk/unpack/unpack-srcpkg-l2
Log:
Replace r561 (surpress dpkg-source warnings in testsuite) by surpressing the
generation of such warnings in lintian itself, which requires latest dpkg-dev.
We're not sarge-safe anyway, so...
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2006-03-25 17:10:55 UTC (rev 587)
+++ trunk/debian/changelog 2006-03-26 13:42:31 UTC (rev 588)
@@ -1,4 +1,4 @@
-lintian (1.23.16) UNRELEASED; urgency=low
+lintian (1.23.16) unstable; urgency=low
The "What's this Russ guy up to?" release
@@ -79,6 +79,8 @@
* debian/{control,copyright}:
+ [RA] Add Russ Allbery to Uploaders and copyright.
+ + [JvW] Version dpkg-dev requirement to >= 1.13.17, for
+ unpack/unpack-srcpkg-l2
* frontends/lintian-info:
+ [RA] Avoid Perl uninitialized value warnings when given output that
@@ -94,10 +96,11 @@
* man/{lintian.1,lintian-info.1}:
+ [RA] Left-justify and disable hyphenation for readability.
- * testset/runtests:
- + [RA] Filter out dpkg-source warnings about unsigned source packages.
+ * unpack/unpack-srcpkg-l2:
+ + [JvW] Use -q with dpkg-source to surpress warnings about unsigned source
+ packages. Requires dpkg-dev 1.13.17
- -- Russ Allbery <rra@debian.org> Sat, 18 Mar 2006 02:35:14 +0100
+ -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl> Sun, 26 Mar 2006 15:38:37 +0200
lintian (1.23.15) unstable; urgency=low
Modified: trunk/debian/control
===================================================================
--- trunk/debian/control 2006-03-25 17:10:55 UTC (rev 587)
+++ trunk/debian/control 2006-03-26 13:42:31 UTC (rev 588)
@@ -9,7 +9,7 @@
Package: lintian
Architecture: all
-Depends: perl, libdigest-md5-perl | perl (>> 5.8), dpkg-dev, file, binutils, diffstat (>= 1.27-1), man-db (>= 2.3.20-1), gettext, intltool-debian, libparse-debianchangelog-perl (>= 0.6)
+Depends: perl, libdigest-md5-perl | perl (>> 5.8), dpkg-dev (>= 1.13.17), file, binutils, diffstat (>= 1.27-1), man-db (>= 2.3.20-1), gettext, intltool-debian, libparse-debianchangelog-perl (>= 0.6)
Suggests: binutils-multiarch
Description: Debian package checker
Lintian dissects Debian packages and reports bugs and policy
Modified: trunk/testset/runtests
===================================================================
--- trunk/testset/runtests 2006-03-25 17:10:55 UTC (rev 587)
+++ trunk/testset/runtests 2006-03-26 13:42:31 UTC (rev 588)
@@ -235,8 +235,7 @@
print "testing... ";
print "Running lintian $lintian_options on $rundir/$pkg\_$ver*.changes...\n" if $debug;
runsystem_ok("$lintian_path $lintian_options $rundir/$pkg\_$ver*.changes".
- " 2>&1 | grep -v '^dpkg-source:.*unsigned source package' | sort".
- " > $rundir/tags.$pkg");
+ " 2>&1 | sort > $rundir/tags.$pkg");
# Run a sed-script if it exists, for tests that have slightly variable
# output
Modified: trunk/unpack/unpack-srcpkg-l2
===================================================================
--- trunk/unpack/unpack-srcpkg-l2 2006-03-25 17:10:55 UTC (rev 587)
+++ trunk/unpack/unpack-srcpkg-l2 2006-03-26 13:42:31 UTC (rev 588)
@@ -37,7 +37,7 @@
my $IN = FileHandle->new;
pipeline_open($IN, sub {
- my $ret=exec 'dpkg-source', '-x', 'dsc';
+ my $ret=exec 'dpkg-source', '-q', '-x', 'dsc';
$ret;
}) or fail("cannot run dpkg-source: $!");
Reply to: