Your message dated Wed, 05 Apr 2006 06:02:13 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#343217: fixed in menu-xdg 0.2.3
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: menu-xdg
Version: 0.2.2
Severity: normal
Hello Chris,
I have made two NMUs of menu-xdg but I fail to send the patches,
so here is the patch between 0.2.2 and 0.2.
I will probably make a third NMU to add section .desktop file
generation.
Cheers,
--
Bill. <[EMAIL PROTECTED]>
Imagine a large red swirl here.
diff -Nru /tmp/MuSs0nxcxJ/menu-xdg-0.2/debian/changelog
/tmp/AHopUmnqL6/menu-xdg-0.2.2/debian/changelog
--- /tmp/MuSs0nxcxJ/menu-xdg-0.2/debian/changelog 2004-11-04
02:46:42.000000000 +0100
+++ /tmp/AHopUmnqL6/menu-xdg-0.2.2/debian/changelog 2005-12-13
18:34:37.000000000 +0100
@@ -1,3 +1,25 @@
+menu-xdg (0.2.2) unstable; urgency=low
+
+ * NMU
+ * xdg-menu-spec: remove useless prerun definition.
+ * xdg-desktop-entry-spec-apps, xdg-desktop-entry-spec-dirs:
+ - adds removemenu config options.
+ - prerun: remove menus more cleanly. This actually fix #297322.
+
+
+ -- Bill Allombert <[EMAIL PROTECTED]> Tue, 13 Dec 2005 16:04:26 +0100
+
+menu-xdg (0.2.1) unstable; urgency=low
+
+ * NMU
+ * Apply fix from Christopher Martin:
+ + Use 'find | xargs rm 'instead of 'rm *' to remove .desktop files.
+ packages installed. (Closes: #297322)
+ + Set <AppDir> to /var/lib/menu-xdg/applications to avoid duplicate
+ menu entries. (Closes: #328055, #317567, #324545)
+
+ -- Bill Allombert <[EMAIL PROTECTED]> Tue, 18 Oct 2005 19:11:12 +0200
+
menu-xdg (0.2) unstable; urgency=low
* Add section name to apps filename to differentiate entries.
diff -Nru /tmp/MuSs0nxcxJ/menu-xdg-0.2/debian/menu-xdg.menu-method
/tmp/AHopUmnqL6/menu-xdg-0.2.2/debian/menu-xdg.menu-method
--- /tmp/MuSs0nxcxJ/menu-xdg-0.2/debian/menu-xdg.menu-method 2004-11-03
23:55:47.000000000 +0100
+++ /tmp/AHopUmnqL6/menu-xdg-0.2.2/debian/menu-xdg.menu-method 2005-12-13
16:02:17.000000000 +0100
@@ -13,7 +13,7 @@
function Dirs() =
ifempty($section,ifroot(
- "<AppDir>/var/lib/menu-xdg/applications/menu-xdg</AppDir>\n"
+ "<AppDir>/var/lib/menu-xdg/applications</AppDir>\n"
"<DirectoryDir>/var/lib/menu-xdg/desktop-directories/menu-xdg</DirectoryDir>\n",
"<DirectoryDir>"
parent(parent(prefix()))
@@ -43,8 +43,6 @@
rootsection = "";
-prerun = "rm -rf " prefix() "/" "debian-menu.menu";
-
preoutput = "<!DOCTYPE Menu PUBLIC \"-//freedesktop//DTD Menu 0.8//EN\"\n
\"http://www.freedesktop.org/standards/menu-spec/menu-0.8.dtd\">\n<!--
Automatically generated do not edit -->\n";
rootprefix = "/var/lib/menu-xdg/menus";
diff -Nru /tmp/MuSs0nxcxJ/menu-xdg-0.2/xdg-desktop-entry-spec-apps
/tmp/AHopUmnqL6/menu-xdg-0.2.2/xdg-desktop-entry-spec-apps
--- /tmp/MuSs0nxcxJ/menu-xdg-0.2/xdg-desktop-entry-spec-apps 2004-11-04
02:31:12.000000000 +0100
+++ /tmp/AHopUmnqL6/menu-xdg-0.2.2/xdg-desktop-entry-spec-apps 2005-12-13
17:49:20.000000000 +0100
@@ -38,7 +38,13 @@
rootsection = "";
-prerun = "rm -rf " prefix() "/*";
+prerun = "test -d " prefix() " && ("
+ "find " prefix() " -type f -exec rm {} \\; ;"
+ "find " prefix() " -depth -type d -exec rmdir {} \\;)";
+
+removemenu = "test -d " prefix() " && ("
+ "find " prefix() " -type f -exec rm {} \\; ;"
+ "find " prefix() " -depth -type d -exec rmdir {} \\;)";
preoutput = "";
diff -Nru /tmp/MuSs0nxcxJ/menu-xdg-0.2/xdg-desktop-entry-spec-dirs
/tmp/AHopUmnqL6/menu-xdg-0.2.2/xdg-desktop-entry-spec-dirs
--- /tmp/MuSs0nxcxJ/menu-xdg-0.2/xdg-desktop-entry-spec-dirs 2004-08-02
16:35:38.000000000 +0200
+++ /tmp/AHopUmnqL6/menu-xdg-0.2.2/xdg-desktop-entry-spec-dirs 2005-12-13
17:49:31.000000000 +0100
@@ -42,7 +42,13 @@
rootsection = "";
-prerun = "rm -rf " prefix() "/*";
+prerun = "test -d " prefix() " && ("
+ "find " prefix() " -type f -exec rm {} \\; ;"
+ "find " prefix() " -depth -type d -exec rmdir {} \\;)";
+
+removemenu = "test -d " prefix() " && ("
+ "find " prefix() " -type f -exec rm {} \\; ;"
+ "find " prefix() " -depth -type d -exec rmdir {} \\;)";
preoutput = "";
diff -Nru /tmp/MuSs0nxcxJ/menu-xdg-0.2/xdg-menu-spec
/tmp/AHopUmnqL6/menu-xdg-0.2.2/xdg-menu-spec
--- /tmp/MuSs0nxcxJ/menu-xdg-0.2/xdg-menu-spec 2004-11-03 23:55:47.000000000
+0100
+++ /tmp/AHopUmnqL6/menu-xdg-0.2.2/xdg-menu-spec 2005-12-13
16:02:17.000000000 +0100
@@ -13,7 +13,7 @@
function Dirs() =
ifempty($section,ifroot(
- "<AppDir>/var/lib/menu-xdg/applications/menu-xdg</AppDir>\n"
+ "<AppDir>/var/lib/menu-xdg/applications</AppDir>\n"
"<DirectoryDir>/var/lib/menu-xdg/desktop-directories/menu-xdg</DirectoryDir>\n",
"<DirectoryDir>"
parent(parent(prefix()))
@@ -43,8 +43,6 @@
rootsection = "";
-prerun = "rm -rf " prefix() "/" "debian-menu.menu";
-
preoutput = "<!DOCTYPE Menu PUBLIC \"-//freedesktop//DTD Menu 0.8//EN\"\n
\"http://www.freedesktop.org/standards/menu-spec/menu-0.8.dtd\">\n<!--
Automatically generated do not edit -->\n";
rootprefix = "/var/lib/menu-xdg/menus";
--- End Message ---
--- Begin Message ---
Source: menu-xdg
Source-Version: 0.2.3
We believe that the bug you reported is fixed in the latest version of
menu-xdg, which is due to be installed in the Debian FTP archive:
menu-xdg_0.2.3.dsc
to pool/main/m/menu-xdg/menu-xdg_0.2.3.dsc
menu-xdg_0.2.3.tar.gz
to pool/main/m/menu-xdg/menu-xdg_0.2.3.tar.gz
menu-xdg_0.2.3_all.deb
to pool/main/m/menu-xdg/menu-xdg_0.2.3_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Bill Allombert <[EMAIL PROTECTED]> (supplier of updated menu-xdg package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Mon, 20 Mar 2006 14:07:09 +0100
Source: menu-xdg
Binary: menu-xdg
Architecture: source all
Version: 0.2.3
Distribution: unstable
Urgency: low
Maintainer: Bill Allombert <[EMAIL PROTECTED]>
Changed-By: Bill Allombert <[EMAIL PROTECTED]>
Description:
menu-xdg - freedesktop.org menu compliant window manager scripts
Closes: 297322 317567 324545 328055 334941 343217 343469
Changes:
menu-xdg (0.2.3) unstable; urgency=low
.
* Take over the package from Chris.
* Acknowledge NMU (Closes: #297322, #328055, #317567, #324545, #343217).
* Remove the debian-menu.menu file in the prerun to avoid problem
with gnome-panel. Hopefully Closes: #334941, #343469.
* Add xdg-desktop-entry-spec-sessions menu-method to generate
xsessions .desktop files in /var/lib/menu-xdg/xsessions.
* Bump Standards-Version to 3.6.2.0.
* Use /usr/bin/install-menu instead of /usr/sbin/install-menu.
* Do not use dh_installmenu (does not handle multiple menu-methods).
Files:
0a54d954c10a78423da70452fa36ab3c 499 admin optional menu-xdg_0.2.3.dsc
257008a9a38c819774b976bae5346b9d 4349 admin optional menu-xdg_0.2.3.tar.gz
59954ff890fb20d699659013840617d2 4594 admin optional menu-xdg_0.2.3_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)
iD8DBQFEM7zZeDPs8bVESBURAgXSAJ0al7JLvNJvIiMMWoCLph+m7CG2nQCgkc8K
khGRD11eI53fiWDV+xPttv4=
=r2Qg
-----END PGP SIGNATURE-----
--- End Message ---