[Pkg-lyx-devel] svn commit: r405 - in /lyx/trunk/debian: changelog lyx-common.preinst

hoaxter-guest at users.alioth.debian.org hoaxter-guest at users.alioth.debian.org
Mon Dec 10 09:46:12 UTC 2007


Author: hoaxter-guest
Date: Mon Dec 10 09:46:11 2007
New Revision: 405

URL: http://svn.debian.org/wsvn/pkg-lyx/?sc=1&rev=405
Log:
Added lyx-common.preinst to remove /etc/lyxrc if existing

Added:
    lyx/trunk/debian/lyx-common.preinst
Modified:
    lyx/trunk/debian/changelog

Modified: lyx/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-lyx/lyx/trunk/debian/changelog?rev=405&op=diff
==============================================================================
--- lyx/trunk/debian/changelog (original)
+++ lyx/trunk/debian/changelog Mon Dec 10 09:46:11 2007
@@ -5,6 +5,10 @@
   * Added a note to the NEWS.Debian file about the removal of the old
     -qt and -xforms frontend packages. Closes: #452888
   * Standards-Version: 3.7.3 - no changes required.
+  * Added lyx-common.preinst script. Remove /etc/lyxrc (if existing)
+    which is left from the LyX 1.4.x packages and would be otherwise
+    left on the system even if you purge the latest package.
+    Closes: #454713
   
   [ Per Olofsson ]
   * Disable assertions per upstream advice. More specifically, don't pass
@@ -12,7 +16,7 @@
     (only enables assertions for prereleases and devel versions).
     Closes: #410175
 
- -- Per Olofsson <pelle at debian.org>  Tue, 20 Nov 2007 18:04:19 +0100
+ -- Sven Hoexter <sven at timegate.de>  Mon, 10 Dec 2007 10:37:50 +0100
 
 lyx (1.5.2-1) unstable; urgency=low
 

Added: lyx/trunk/debian/lyx-common.preinst
URL: http://svn.debian.org/wsvn/pkg-lyx/lyx/trunk/debian/lyx-common.preinst?rev=405&op=file
==============================================================================
--- lyx/trunk/debian/lyx-common.preinst (added)
+++ lyx/trunk/debian/lyx-common.preinst Mon Dec 10 09:46:11 2007
@@ -1,0 +1,7 @@
+#!/bin/sh -e
+
+if [ -f /etc/lyxrc ]; then
+    rm -f /etc/lyxrc
+fi
+
+#DEBHELPER#




More information about the Pkg-lyx-devel mailing list