[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

lintian: r258 - in trunk: checks debian



Author: jeroen
Date: 2004-05-05 16:56:50 +0200 (Wed, 05 May 2004)
New Revision: 258

Modified:
   trunk/checks/po-debconf
   trunk/debian/changelog
   trunk/debian/control
Log:
* checks/po-debconf:
  + [JvW] Simply fail is stuff from gettext is missing.
* debian/{control,rules}, frontend/lintian:
  + [JvW] Start depending on gettext.


Modified: trunk/checks/po-debconf
===================================================================
--- trunk/checks/po-debconf	2004-05-05 01:33:15 UTC (rev 257)
+++ trunk/checks/po-debconf	2004-05-05 14:56:50 UTC (rev 258)
@@ -79,8 +79,7 @@
 opendir(DEBIAN, 'debfiles/po')
         or fail("Can't open debfiles/po directory.");
 if (! -x "/usr/bin/msgfmt" ) {
-    print "N: Warning: msgfmt (package gettext) not available, not\n";
-    print "N: going to check *.po syntax\n";
+	fail("msgfmt not found");
 }
 while (defined(my $file=readdir(DEBIAN))) {
         next unless $file =~ m/\.po$/;

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-05-05 01:33:15 UTC (rev 257)
+++ trunk/debian/changelog	2004-05-05 14:56:50 UTC (rev 258)
@@ -20,6 +20,8 @@
       to pkg-not-in-package-test which is issued when the package is
       not in the list. Don't issue menu-command-not-in-package when
       we have a list.
+  * checks/po-debconf:
+    + [JvW] Simply fail is stuff from gettext is missing.
   * checks/shared-libs:
     + [FL] Don't report shlib-with-executable-bit and
       shlib-with-bad-permissions on symbolic links to such files
@@ -28,6 +30,7 @@
     + [JvW] Insert version number at package build time, no need to commit a
       change to frontend/lintian on every version number change... Requires
       sed version 4 at build-time.
+    + [JvW] Start depending on gettext.
 
   * frontend/lintian:
     + [JvW] Rewrite: checks are now plugins loaded into lintian, rather than
@@ -39,7 +42,7 @@
     + [JvW] Fix two lintian warnings in lintian itself by touching files only
       on clean target, and not distributing them in the source
 
- -- Debian Lintian Maintainers <lintian-maint@debian.org>  Sun, 02 May 2004 19:11:02 +0200
+ -- Debian Lintian Maintainers <lintian-maint@debian.org>  Wed, 05 May 2004 16:54:46 +0200
 
 lintian (1.23.0) unstable; urgency=low
 

Modified: trunk/debian/control
===================================================================
--- trunk/debian/control	2004-05-05 01:33:15 UTC (rev 257)
+++ trunk/debian/control	2004-05-05 14:56:50 UTC (rev 258)
@@ -8,8 +8,8 @@
 
 Package: lintian
 Architecture: all
-Depends: perl, file, binutils, diffstat (>= 1.27-1), man-db (>= 2.3.20-1)
-Suggests: binutils-multiarch, gettext
+Depends: perl, file, binutils, diffstat (>= 1.27-1), man-db (>= 2.3.20-1), gettext
+Suggests: binutils-multiarch
 Description: Debian package checker
  Lintian dissects Debian packages and reports bugs and policy
  violations. It contains automated checks for many aspects of Debian



Reply to: