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

[SCM] Debian package checker branch, master, updated. 2.5.0-rc2-122-g12888e8



The following commit has been merged in the master branch:
commit f46236a94b465c7af45b5ff50c00d55797080d1b
Author: Niels Thykier <niels@thykier.net>
Date:   Tue Jan 18 12:10:56 2011 +0100

    Removed / prefix from filenames emitted by menu-format check

diff --git a/checks/menu-format b/checks/menu-format
index 4e85dae..60ca96a 100644
--- a/checks/menu-format
+++ b/checks/menu-format
@@ -400,13 +400,13 @@ foreach my $file (@{$info->sorted_index}) {
     my $index_info = $info->index->{$file};
     my $operm = $index_info->{operm};
 
-    tag 'deprecated-kdelnk-file', "/$file" if ($file =~ m,\.kdelnk$,);
+    tag 'deprecated-kdelnk-file', "$file" if ($file =~ m,\.kdelnk$,);
 
     if ($index_info->{type} =~ m/[-h]/ &&
-	$file =~ m,usr/share/applications/.*\.desktop$,) {
+	$file =~ m,^usr/share/applications/.*\.desktop$,) {
 
 	if ($operm & 0100 or $operm & 010 or $operm & 01) {
-           tag "executable-desktop-file", sprintf("/%s %04o",$file,$operm);
+           tag "executable-desktop-file", sprintf("%s %04o",$file,$operm);
 	}
         unless ($file =~ m,template,) {
             push (@desktop_files, $file);
@@ -424,8 +424,8 @@ foreach my $menufile (@menufiles) {
     next if -x $menufile; # don't try to parse executables
 
     my $basename = basename $menufile;
-    my $fullname = "/usr/share/menu/$basename";
-    $fullname = "/usr/lib/menu/$basename" if $menufile =~ m,^menu/lib/,o;
+    my $fullname = "usr/share/menu/$basename";
+    $fullname = "usr/lib/menu/$basename" if $menufile =~ m,^menu/lib/,o;
 
     next if $basename eq "README"; # README is a special case
 
@@ -611,7 +611,7 @@ sub VerifyLine {
 
     # Sanitize the section tag
     my $section = $vals{'section'};
-    $section =~ tr:/:/:s;	# eliminate duplicate slashes.
+    $section =~ tr:/:/:s;	# eliminate duplicate slashes. # Hallo emacs ;;
     $section =~ s:/$::;		# remove trailing slash.
 
     # Be sure the command is provided by the package.
@@ -748,7 +748,7 @@ sub VerifyDesktopFile {
         chomp $line;
         next if ($line =~ m/^\s*\#/ or $line =~ m/^\s*$/);
         if ($line =~ s/\r//) {
-            tag 'desktop-entry-file-has-crs', "/$file:$." unless $warned_cr;
+            tag 'desktop-entry-file-has-crs', "$file:$." unless $warned_cr;
             $warned_cr = 1;
         }
 
@@ -759,7 +759,7 @@ sub VerifyDesktopFile {
         unless ($saw_first) {
             return unless $line =~ /^\[(KDE )?Desktop Entry\]\s*$/;
             $saw_first = 1;
-            tag 'desktop-contains-deprecated-header', "/$file:$." if ($line =~ /^\[KDE Desktop Entry\]\s*$/);
+            tag 'desktop-contains-deprecated-header', "$file:$." if ($line =~ /^\[KDE Desktop Entry\]\s*$/);
         }
 
 	# Tag = Value.	For most errors, just add the error to pending rather
@@ -774,17 +774,17 @@ sub VerifyDesktopFile {
 	    my $basetag = $tag;
 	    my ($encoding) = ($basetag =~ s/\[([^\]]+)\]$//);
 	    if (exists $vals{$tag}) {
-		tag "duplicated-key-in-desktop-entry", "/$file:$. $tag";
+		tag "duplicated-key-in-desktop-entry", "$file:$. $tag";
 	    } elsif ($deprecated_desktop_keys{$basetag}) {
 		if ($basetag eq 'Encoding') {
-		    push (@pending, [ "desktop-entry-contains-encoding-key", "/$file:$. $tag" ]);
+		    push (@pending, [ "desktop-entry-contains-encoding-key", "$file:$. $tag" ]);
 		} else {
 		    push (@pending, [ "desktop-entry-contains-deprecated-key", "$file:$. $tag" ]);
 		}
 	    } elsif (	 not $known_desktop_keys{$basetag}
 		     and not $kde_desktop_keys{$basetag}
 		     and not $basetag =~ /^X-/) {
-		push (@pending, [ "desktop-entry-contains-unknown-key", "/$file:$. $tag" ]);
+		push (@pending, [ "desktop-entry-contains-unknown-key", "$file:$. $tag" ]);
 	    }
 	    $vals{$tag} = $value;
 	}
@@ -802,7 +802,7 @@ sub VerifyDesktopFile {
     # Test for important keys.
     for my $tag (@req_desktop_keys) {
         unless (defined $vals{$tag}) {
-            tag "desktop-entry-missing-required-key", "/$file $tag";
+            tag "desktop-entry-missing-required-key", "$file $tag";
         }
     }
 
@@ -815,7 +815,7 @@ sub VerifyDesktopFile {
     if ($file =~ m,^usr/share/applications/, and $vals{'Exec'} and $vals{'Exec'} =~ /\S/) {
         my ($okay, $command) = VerifyCmd ($file, undef, $vals{'Exec'}, $pkg,
 					  $info);
-        tag "desktop-command-not-in-package", "/$file $command"
+        tag "desktop-command-not-in-package", "$file $command"
             unless $okay or $command eq 'kcmshell';
     }
 
@@ -827,18 +827,18 @@ sub VerifyDesktopFile {
         for my $cat (@cats) {
             next if $cat =~ /^X-/;
             if ($reserved_categories{$cat}) {
-                tag "desktop-entry-uses-reserved-category", "$cat /$file"
+                tag "desktop-entry-uses-reserved-category", "$cat $file"
                     unless $vals{'OnlyShowIn'};
                 $saw_main = 1;
 		$in_reserved = 1;
             } elsif (not $categories{$cat} and not $main_categories{$cat}) {
-                tag "desktop-entry-invalid-category", "$cat /$file";
+                tag "desktop-entry-invalid-category", "$cat $file";
             } elsif ($main_categories{$cat}) {
                 $saw_main = 1;
             }
         }
         unless ($saw_main) {
-            tag "desktop-entry-lacks-main-category", "/$file";
+            tag "desktop-entry-lacks-main-category", "$file";
         }
     }
 
@@ -849,7 +849,7 @@ sub VerifyDesktopFile {
     if (defined $vals{OnlyShowIn} and not $in_reserved) {
 	my @envs = split (';', $vals{OnlyShowIn});
 	if (@envs > 1) {
-	    tag 'desktop-entry-limited-to-environments', "/$file";
+	    tag 'desktop-entry-limited-to-environments', "$file";
 	}
     }
 }
@@ -861,7 +861,6 @@ sub VerifyDesktopFile {
 # su-to-root wrapper).  Shared between the desktop and menu code.
 sub VerifyCmd {
     my ($file, $line, $exec, $pkg, $info) = @_;
-    $file = '/' . $file unless $file =~ m,^/,;
     my $location = ($line ? "$file:$line" : $file);
 
     # This routine handles su wrappers.  The option parsing here is ugly and
diff --git a/t/tests/lintian-display-level/tags b/t/tests/lintian-display-level/tags
index ee0bcf2..db3043a 100644
--- a/t/tests/lintian-display-level/tags
+++ b/t/tests/lintian-display-level/tags
@@ -4,7 +4,7 @@ E: lintian-display-level: dir-or-file-in-var-lock var/lock/lintian/
 E: lintian-display-level: new-essential-package
 E: lintian-display-level: possible-gpl-code-linked-with-openssl
 I: lintian-display-level: description-synopsis-might-not-be-phrased-properly
-I: lintian-display-level: desktop-entry-limited-to-environments /usr/share/applications/script.desktop
+I: lintian-display-level: desktop-entry-limited-to-environments usr/share/applications/script.desktop
 I: lintian-display-level: package-contains-empty-directory usr/local/share/lintian/
 P: lintian-display-level source: debian-control-has-unusual-field-spacing line 11
 P: lintian-display-level source: direct-changes-in-diff-but-no-patch-system Changes
diff --git a/t/tests/lintian-output-colons/tags b/t/tests/lintian-output-colons/tags
index 28d7825..3f382e4 100644
--- a/t/tests/lintian-output-colons/tags
+++ b/t/tests/lintian-output-colons/tags
@@ -4,7 +4,7 @@ tag:E:serious:certain::lintian-output-colons:1.0+dsfg-1.1:all:binary:dir-in-usr-
 tag:E:serious:possible::lintian-output-colons:1.0+dsfg-1.1:all:binary:dir-or-file-in-var-lock:var/lock/lintian/:
 tag:E:serious:wild-guess::lintian-output-colons:1.0+dsfg-1.1:all:binary:possible-gpl-code-linked-with-openssl::
 tag:I:minor:possible::lintian-output-colons:1.0+dsfg-1.1:all:binary:description-synopsis-might-not-be-phrased-properly::
-tag:I:normal:wild-guess::lintian-output-colons:1.0+dsfg-1.1:all:binary:desktop-entry-limited-to-environments:/usr/share/applications/script.desktop:
+tag:I:normal:wild-guess::lintian-output-colons:1.0+dsfg-1.1:all:binary:desktop-entry-limited-to-environments:usr/share/applications/script.desktop:
 tag:I:wishlist:certain::lintian-output-colons:1.0+dsfg-1.1:source:source:binary-control-field-duplicates-source:field "section" in package lintian-output-colons:
 tag:I:wishlist:possible::lintian-output-colons:1.0+dsfg-1.1:all:binary:package-contains-empty-directory:usr/local/share/lintian/:
 tag:I:wishlist:wild-guess::lintian-output-colons:1.0+dsfg-1.1:all:binary:description-possibly-contains-homepage:http\://www.example.com/.:
diff --git a/t/tests/lintian-output-letter/tags b/t/tests/lintian-output-letter/tags
index 6748263..cc91809 100644
--- a/t/tests/lintian-output-letter/tags
+++ b/t/tests/lintian-output-letter/tags
@@ -4,7 +4,7 @@ E[S!]: lintian-output-letter: dir-in-usr-local usr/local/share/
 E[S!]: lintian-output-letter: dir-in-usr-local usr/local/share/lintian/
 E[S?]: lintian-output-letter: possible-gpl-code-linked-with-openssl
 I[M ]: lintian-output-letter: description-synopsis-might-not-be-phrased-properly
-I[N?]: lintian-output-letter: desktop-entry-limited-to-environments /usr/share/applications/script.desktop
+I[N?]: lintian-output-letter: desktop-entry-limited-to-environments usr/share/applications/script.desktop
 I[W ]: lintian-output-letter: package-contains-empty-directory usr/local/share/lintian/
 I[W!]: lintian-output-letter source: binary-control-field-duplicates-source field "section" in package lintian-output-letter
 I[W?]: lintian-output-letter: description-possibly-contains-homepage http://www.example.com/.
diff --git a/t/tests/lintian-output-xml/tags b/t/tests/lintian-output-xml/tags
index 68a4e97..a6f9fe2 100644
--- a/t/tests/lintian-output-xml/tags
+++ b/t/tests/lintian-output-xml/tags
@@ -9,7 +9,7 @@
 <tag severity="minor" certainty="possible" flags="" name="description-synopsis-might-not-be-phrased-properly"></tag>
 <tag severity="normal" certainty="certain" flags="" name="maintainer-upload-has-incorrect-version-number">1.0+dsfg-1.1</tag>
 <tag severity="normal" certainty="possible" flags="" name="binary-without-manpage">usr/bin/script</tag>
-<tag severity="normal" certainty="wild-guess" flags="" name="desktop-entry-limited-to-environments">/usr/share/applications/script.desktop</tag>
+<tag severity="normal" certainty="wild-guess" flags="" name="desktop-entry-limited-to-environments">usr/share/applications/script.desktop</tag>
 <tag severity="pedantic" certainty="certain" flags="" name="debian-control-has-unusual-field-spacing">line 11</tag>
 <tag severity="pedantic" certainty="certain" flags="" name="direct-changes-in-diff-but-no-patch-system">Changes</tag>
 <tag severity="pedantic" certainty="possible" flags="" name="example-unusual-interpreter">usr/share/doc/lintian-output-xml/examples/example #!/usr/bin/foo</tag>
diff --git a/t/tests/menu-format-desktop-general/tags b/t/tests/menu-format-desktop-general/tags
index 5b74f95..eeaafec 100644
--- a/t/tests/menu-format-desktop-general/tags
+++ b/t/tests/menu-format-desktop-general/tags
@@ -1,15 +1,15 @@
-E: menu-format-desktop-general: executable-desktop-file /usr/share/applications/general.desktop 0755
-I: menu-format-desktop-general: desktop-entry-contains-encoding-key /usr/share/applications/general.desktop:7 Encoding
-I: menu-format-desktop-general: desktop-entry-limited-to-environments /usr/share/applications/environments.desktop
-W: menu-format-desktop-general: desktop-command-not-in-package /usr/share/applications/environments.desktop foo
-W: menu-format-desktop-general: desktop-command-not-in-package /usr/share/applications/general.desktop foo
-W: menu-format-desktop-general: desktop-command-not-in-package /usr/share/applications/reserved-bad.desktop foo
-W: menu-format-desktop-general: desktop-command-not-in-package /usr/share/applications/reserved.desktop foo
+E: menu-format-desktop-general: executable-desktop-file usr/share/applications/general.desktop 0755
+I: menu-format-desktop-general: desktop-entry-contains-encoding-key usr/share/applications/general.desktop:7 Encoding
+I: menu-format-desktop-general: desktop-entry-limited-to-environments usr/share/applications/environments.desktop
+W: menu-format-desktop-general: desktop-command-not-in-package usr/share/applications/environments.desktop foo
+W: menu-format-desktop-general: desktop-command-not-in-package usr/share/applications/general.desktop foo
+W: menu-format-desktop-general: desktop-command-not-in-package usr/share/applications/reserved-bad.desktop foo
+W: menu-format-desktop-general: desktop-command-not-in-package usr/share/applications/reserved.desktop foo
 W: menu-format-desktop-general: desktop-entry-contains-deprecated-key usr/share/applications/general.desktop:10 TerminalOptions
-W: menu-format-desktop-general: desktop-entry-contains-unknown-key /usr/share/applications/general.desktop:6 Foo
-W: menu-format-desktop-general: desktop-entry-file-has-crs /usr/share/applications/crlf.desktop:1
-W: menu-format-desktop-general: desktop-entry-invalid-category Lintian /usr/share/applications/general.desktop
-W: menu-format-desktop-general: desktop-entry-lacks-main-category /usr/share/applications/general.desktop
-W: menu-format-desktop-general: desktop-entry-uses-reserved-category Screensaver /usr/share/applications/reserved-bad.desktop
-W: menu-format-desktop-general: duplicated-key-in-desktop-entry /usr/share/applications/general.desktop:3 Name
+W: menu-format-desktop-general: desktop-entry-contains-unknown-key usr/share/applications/general.desktop:6 Foo
+W: menu-format-desktop-general: desktop-entry-file-has-crs usr/share/applications/crlf.desktop:1
+W: menu-format-desktop-general: desktop-entry-invalid-category Lintian usr/share/applications/general.desktop
+W: menu-format-desktop-general: desktop-entry-lacks-main-category usr/share/applications/general.desktop
+W: menu-format-desktop-general: desktop-entry-uses-reserved-category Screensaver usr/share/applications/reserved-bad.desktop
+W: menu-format-desktop-general: duplicated-key-in-desktop-entry usr/share/applications/general.desktop:3 Name
 W: menu-format-desktop-general: executable-not-elf-or-script usr/share/applications/general.desktop
diff --git a/testset/tags.binary b/testset/tags.binary
index 86c1486..afdbcfd 100644
--- a/testset/tags.binary
+++ b/testset/tags.binary
@@ -5,8 +5,8 @@ E: binary: changelog-file-not-compressed changelog
 E: binary: debian-changelog-file-missing-or-wrong-name
 E: binary: debian-news-file-uses-obsolete-national-encoding at line 3
 E: binary: depends-on-metapackage pre-depends: xorg
-E: binary: deprecated-kdelnk-file /usr/share/applications/hello.kdelnk
-E: binary: desktop-entry-missing-required-key /usr/share/applications/goodbye.desktop Name
+E: binary: deprecated-kdelnk-file usr/share/applications/hello.kdelnk
+E: binary: desktop-entry-missing-required-key usr/share/applications/goodbye.desktop Name
 E: binary: doc-base-document-field-ends-in-whitespace binary:1
 E: binary: doc-base-file-duplicated-format binary:36 html
 E: binary: doc-base-file-lacks-required-field binary:22 files
@@ -25,26 +25,26 @@ E: binary: doc-base-file-unknown-field binary:18 unknown
 E: binary: doc-base-file-uses-obsolete-national-encoding binary:8
 E: binary: doc-base-index-references-multiple-files binary:25
 E: binary: doc-base-invalid-document-field binary:1 binary!docs  
-E: binary: executable-desktop-file /usr/share/applications/goodbye.desktop 0755
+E: binary: executable-desktop-file usr/share/applications/goodbye.desktop 0755
 E: binary: file-directly-in-usr-share usr/share/baz
 E: binary: lengthy-symlink usr/share/doc/binary/html/ch2.html ../html/./ch1.html
-E: binary: menu-item-missing-required-tag needs /usr/lib/menu/binary:6
-E: binary: menu-item-missing-required-tag needs /usr/share/menu/binary:6
-E: binary: menu-item-missing-required-tag section /usr/lib/menu/binary:1
-E: binary: menu-item-missing-required-tag section /usr/share/menu/binary:1
+E: binary: menu-item-missing-required-tag needs usr/lib/menu/binary:6
+E: binary: menu-item-missing-required-tag needs usr/share/menu/binary:6
+E: binary: menu-item-missing-required-tag section usr/lib/menu/binary:1
+E: binary: menu-item-missing-required-tag section usr/share/menu/binary:1
 E: binary: menu-method-should-include-menu-h etc/menu-methods/lintian
-E: binary: non-wm-in-windowmanager-menu-section x11 /usr/lib/menu/binary:4
-E: binary: non-wm-in-windowmanager-menu-section x11 /usr/share/menu/binary:4
-E: binary: non-wm-module-in-wm-modules-menu-section wm /usr/lib/menu/binary:22
-E: binary: non-wm-module-in-wm-modules-menu-section wm /usr/share/menu/binary:22
+E: binary: non-wm-in-windowmanager-menu-section x11 usr/lib/menu/binary:4
+E: binary: non-wm-in-windowmanager-menu-section x11 usr/share/menu/binary:4
+E: binary: non-wm-module-in-wm-modules-menu-section wm usr/lib/menu/binary:22
+E: binary: non-wm-module-in-wm-modules-menu-section wm usr/share/menu/binary:22
 E: binary: possible-gpl-code-linked-with-openssl
 E: binary: postinst-does-not-call-updatemenus usr/share/menu/binary
 E: binary: postrm-does-not-call-updatemenus etc/menu-methods/lintian
 E: binary: statically-linked-binary usr/bin/static-hello
-E: binary: su-wrapper-without--c /usr/lib/menu/binary:2 su-to-root
-E: binary: su-wrapper-without--c /usr/lib/menu/binary:3 sux
-E: binary: su-wrapper-without--c /usr/share/menu/binary:2 su-to-root
-E: binary: su-wrapper-without--c /usr/share/menu/binary:3 sux
+E: binary: su-wrapper-without--c usr/lib/menu/binary:2 su-to-root
+E: binary: su-wrapper-without--c usr/lib/menu/binary:3 sux
+E: binary: su-wrapper-without--c usr/share/menu/binary:2 su-to-root
+E: binary: su-wrapper-without--c usr/share/menu/binary:3 sux
 E: binary: suidregister-used-in-maintainer-script postinst
 E: binary: symlink-contains-spurious-segments usr/share/doc/binary/html/ch2.html ../html/./ch1.html
 E: binary: unstripped-binary-or-object usr/bin/hello
@@ -55,8 +55,8 @@ I: binary-data: capitalization-error-in-description subversion Subversion
 I: binary: arch-dep-package-has-big-usr-share
 I: binary: binary-has-unneeded-section usr/bin/hello-static .comment
 I: binary: capitalization-error-in-description debian Debian
-I: binary: desktop-entry-contains-encoding-key /usr/share/applications/goodbye.desktop:11 Encoding
-I: binary: desktop-entry-contains-encoding-key /usr/share/applications/hello.desktop:13 Encoding
+I: binary: desktop-entry-contains-encoding-key usr/share/applications/goodbye.desktop:11 Encoding
+I: binary: desktop-entry-contains-encoding-key usr/share/applications/hello.desktop:13 Encoding
 I: binary: no-md5sums-control-file
 W: binary source: ancient-standards-version 3.2.1 (current is 3.9.1)
 W: binary source: debian-rules-ignores-make-clean-error line 12
@@ -76,13 +76,13 @@ W: binary: changelog-news-debian-mismatch urgency low != high
 W: binary: debian-copyright-file-uses-obsolete-national-encoding at line 13
 W: binary: debian-news-entry-has-strange-distribution UNRELEASED
 W: binary: description-contains-homepage
-W: binary: desktop-command-not-in-package /usr/share/applications/goodbye.desktop goodbye
-W: binary: desktop-contains-deprecated-header /usr/share/applications/hello.desktop:4
-W: binary: desktop-entry-contains-unknown-key /usr/share/applications/goodbye.desktop:5 SpecialTag
-W: binary: desktop-entry-contains-unknown-key /usr/share/applications/goodbye.desktop:7 icon
-W: binary: desktop-entry-file-has-crs /usr/share/applications/hello.desktop:7
-W: binary: desktop-entry-invalid-category WeirdStuff /usr/share/applications/goodbye.desktop
-W: binary: desktop-entry-uses-reserved-category Screensaver /usr/share/applications/goodbye.desktop
+W: binary: desktop-command-not-in-package usr/share/applications/goodbye.desktop goodbye
+W: binary: desktop-contains-deprecated-header usr/share/applications/hello.desktop:4
+W: binary: desktop-entry-contains-unknown-key usr/share/applications/goodbye.desktop:5 SpecialTag
+W: binary: desktop-entry-contains-unknown-key usr/share/applications/goodbye.desktop:7 icon
+W: binary: desktop-entry-file-has-crs usr/share/applications/hello.desktop:7
+W: binary: desktop-entry-invalid-category WeirdStuff usr/share/applications/goodbye.desktop
+W: binary: desktop-entry-uses-reserved-category Screensaver usr/share/applications/goodbye.desktop
 W: binary: doc-base-abstract-field-separator-extra-whitespaces binary:7
 W: binary: doc-base-file-unknown-format binary:20 esp
 W: binary: doc-base-unknown-section binary:11 Non/Existant
@@ -92,27 +92,27 @@ W: binary: file-in-unusual-dir usr/bar
 W: binary: file-in-unusual-dir usr/bar2
 W: binary: file-in-unusual-dir usr/foo
 W: binary: file-name-ends-in-whitespace usr/share/doc-base/space 
-W: binary: menu-command-not-in-package /usr/lib/menu/binary:18 imnothere
-W: binary: menu-command-not-in-package /usr/lib/menu/binary:20 cfdisk
-W: binary: menu-command-not-in-package /usr/lib/menu/binary:4 xfdisk
-W: binary: menu-command-not-in-package /usr/lib/menu/binary:7 /imnothere
-W: binary: menu-command-not-in-package /usr/share/menu/binary:18 imnothere
-W: binary: menu-command-not-in-package /usr/share/menu/binary:20 cfdisk
-W: binary: menu-command-not-in-package /usr/share/menu/binary:4 xfdisk
-W: binary: menu-command-not-in-package /usr/share/menu/binary:7 /imnothere
+W: binary: menu-command-not-in-package usr/lib/menu/binary:18 imnothere
+W: binary: menu-command-not-in-package usr/lib/menu/binary:20 cfdisk
+W: binary: menu-command-not-in-package usr/lib/menu/binary:4 xfdisk
+W: binary: menu-command-not-in-package usr/lib/menu/binary:7 /imnothere
+W: binary: menu-command-not-in-package usr/share/menu/binary:18 imnothere
+W: binary: menu-command-not-in-package usr/share/menu/binary:20 cfdisk
+W: binary: menu-command-not-in-package usr/share/menu/binary:4 xfdisk
+W: binary: menu-command-not-in-package usr/share/menu/binary:7 /imnothere
 W: binary: menu-file-in-usr-lib usr/lib/menu/binary
-W: binary: menu-item-creates-new-section Applications/System /usr/lib/menu/binary:2
-W: binary: menu-item-creates-new-section Applications/System /usr/share/menu/binary:2
-W: binary: menu-item-creates-new-section Apps/System /usr/lib/menu/binary:7
-W: binary: menu-item-creates-new-section Apps/System /usr/share/menu/binary:7
-W: binary: menu-item-creates-new-section WindowManagers/Modules /usr/lib/menu/binary:13
-W: binary: menu-item-creates-new-section WindowManagers/Modules /usr/share/menu/binary:13
-W: binary: menu-item-needs-tag-has-unknown-value wm /usr/lib/menu/binary:5
-W: binary: menu-item-needs-tag-has-unknown-value wm /usr/share/menu/binary:5
-W: binary: menu-item-uses-apps-section /usr/lib/menu/binary:7
-W: binary: menu-item-uses-apps-section /usr/share/menu/binary:7
-W: binary: menu-item-uses-windowmanagers-section /usr/lib/menu/binary:13
-W: binary: menu-item-uses-windowmanagers-section /usr/share/menu/binary:13
+W: binary: menu-item-creates-new-section Applications/System usr/lib/menu/binary:2
+W: binary: menu-item-creates-new-section Applications/System usr/share/menu/binary:2
+W: binary: menu-item-creates-new-section Apps/System usr/lib/menu/binary:7
+W: binary: menu-item-creates-new-section Apps/System usr/share/menu/binary:7
+W: binary: menu-item-creates-new-section WindowManagers/Modules usr/lib/menu/binary:13
+W: binary: menu-item-creates-new-section WindowManagers/Modules usr/share/menu/binary:13
+W: binary: menu-item-needs-tag-has-unknown-value wm usr/lib/menu/binary:5
+W: binary: menu-item-needs-tag-has-unknown-value wm usr/share/menu/binary:5
+W: binary: menu-item-uses-apps-section usr/lib/menu/binary:7
+W: binary: menu-item-uses-apps-section usr/share/menu/binary:7
+W: binary: menu-item-uses-windowmanagers-section usr/lib/menu/binary:13
+W: binary: menu-item-uses-windowmanagers-section usr/share/menu/binary:13
 W: binary: old-fsf-address-in-copyright-file
 W: binary: package-contains-hardlink usr/bar2 -> usr/share/baz
 W: binary: package-contains-upstream-install-documentation usr/share/doc/binary/INSTALL
@@ -121,17 +121,17 @@ W: binary: spelling-error-in-doc-base-abstract-field binary:10 speling spelling
 W: binary: spelling-error-in-doc-base-title-field binary:2 debian Debian
 W: binary: spelling-error-in-news-debian speling spelling
 W: binary: spelling-error-in-news-debian usefull useful
-W: binary: su-to-root-with-usr-sbin /usr/lib/menu/binary:4
-W: binary: su-to-root-with-usr-sbin /usr/share/menu/binary:4
-W: binary: su-wrapper-not-su-to-root /usr/lib/menu/binary:3 sux
-W: binary: su-wrapper-not-su-to-root /usr/share/applications/hello.desktop kdesu
-W: binary: su-wrapper-not-su-to-root /usr/share/menu/binary:3 sux
+W: binary: su-to-root-with-usr-sbin usr/lib/menu/binary:4
+W: binary: su-to-root-with-usr-sbin usr/share/menu/binary:4
+W: binary: su-wrapper-not-su-to-root usr/lib/menu/binary:3 sux
+W: binary: su-wrapper-not-su-to-root usr/share/applications/hello.desktop kdesu
+W: binary: su-wrapper-not-su-to-root usr/share/menu/binary:3 sux
 W: binary: superfluous-clutter-in-homepage <http://lintian.debian.org/>
 W: binary: symlink-should-be-relative usr/share/doc/binary/html/ch3.html /usr/share/doc/binary/htm/ch1.html
 W: binary: syntax-error-in-debian-changelog line 16 "couldn't parse date The, 15 Apr 2004 23:33:51 +0200"
 W: binary: syntax-error-in-debian-news-file line 12 "badly formatted trailer line"
 W: binary: syntax-error-in-debian-news-file line 12 "found eof where expected more change data or trailer"
-W: binary: unquoted-string-in-menu-item /usr/lib/menu/binary needs:1
-W: binary: unquoted-string-in-menu-item /usr/lib/menu/binary needs:2
-W: binary: unquoted-string-in-menu-item /usr/share/menu/binary needs:1
-W: binary: unquoted-string-in-menu-item /usr/share/menu/binary needs:2
+W: binary: unquoted-string-in-menu-item usr/lib/menu/binary needs:1
+W: binary: unquoted-string-in-menu-item usr/lib/menu/binary needs:2
+W: binary: unquoted-string-in-menu-item usr/share/menu/binary needs:1
+W: binary: unquoted-string-in-menu-item usr/share/menu/binary needs:2

-- 
Debian package checker


Reply to: