r17784 - in /packages/unstable/system-config-printer/debian: changelog control postinst

lool at users.alioth.debian.org lool at users.alioth.debian.org
Fri Nov 28 19:51:03 UTC 2008


Author: lool
Date: Fri Nov 28 19:51:03 2008
New Revision: 17784

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=17784
Log:
Don't purge /etc/xdg/autostart/redhat-print-applet.desktop during first
installation.

Modified:
    packages/unstable/system-config-printer/debian/changelog
    packages/unstable/system-config-printer/debian/control
    packages/unstable/system-config-printer/debian/postinst

Modified: packages/unstable/system-config-printer/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/system-config-printer/debian/changelog?rev=17784&op=diff
==============================================================================
--- packages/unstable/system-config-printer/debian/changelog (original)
+++ packages/unstable/system-config-printer/debian/changelog Fri Nov 28 19:51:03 2008
@@ -1,3 +1,10 @@
+system-config-printer (1.0.0-5) UNRELEASED; urgency=low
+
+  * Don't purge /etc/xdg/autostart/redhat-print-applet.desktop during first
+    installation.
+
+ -- Loic Minier <lool at dooz.org>  Fri, 28 Nov 2008 20:50:43 +0100
+
 system-config-printer (1.0.0-4) unstable; urgency=low
 
   * Require desktop-file-utils 0.13. Closes: #499382, thanks Tom Parker.

Modified: packages/unstable/system-config-printer/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/system-config-printer/debian/control?rev=17784&op=diff
==============================================================================
--- packages/unstable/system-config-printer/debian/control (original)
+++ packages/unstable/system-config-printer/debian/control Fri Nov 28 19:51:03 2008
@@ -2,7 +2,7 @@
 Section: python
 Priority: optional
 Maintainer: Otavio Salvador <otavio at debian.org>
-Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Josselin Mouette <joss at debian.org>
+Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Josselin Mouette <joss at debian.org>, Loic Minier <lool at dooz.org>
 Build-Depends: cdbs (>= 0.4.43),
                debhelper (>= 5.0.37.2),
                quilt,

Modified: packages/unstable/system-config-printer/debian/postinst
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/system-config-printer/debian/postinst?rev=17784&op=diff
==============================================================================
--- packages/unstable/system-config-printer/debian/postinst (original)
+++ packages/unstable/system-config-printer/debian/postinst Fri Nov 28 19:51:03 2008
@@ -1,11 +1,11 @@
-#! /bin/sh
+#!/bin/sh
+
 set -e
 
 #DEBHELPER#
 
 # Remove old configuration file
-if dpkg --compare-versions "$2" lt "1.0.0-1"; then
-	rm -f /etc/xdg/autostart/redhat-print-applet.desktop
+if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt-nl "1.0.0-1"; then
+    rm -f /etc/xdg/autostart/redhat-print-applet.desktop
 fi
 
-exit 0




More information about the pkg-gnome-commits mailing list