[Pkg-tcltk-commits] r825 - tcl8.3/trunk/debian

sgolovan-guest at alioth.debian.org sgolovan-guest at alioth.debian.org
Sun Mar 1 10:09:15 UTC 2009


Author: sgolovan-guest
Date: 2009-03-01 10:09:15 +0000 (Sun, 01 Mar 2009)
New Revision: 825

Modified:
   tcl8.3/trunk/debian/changelog
   tcl8.3/trunk/debian/tcl8.3.prerm
Log:
[tcl8.3]
  * Don't remove tclsh alternative in case of package upgrade because the
    manually installed alternative is also removed which isn't desirable.


Modified: tcl8.3/trunk/debian/changelog
===================================================================
--- tcl8.3/trunk/debian/changelog	2009-03-01 10:07:42 UTC (rev 824)
+++ tcl8.3/trunk/debian/changelog	2009-03-01 10:09:15 UTC (rev 825)
@@ -1,8 +1,9 @@
-tcl8.3 (8.3.5-14) UNRELEASED; urgency=low
+tcl8.3 (8.3.5-14) unstable; urgency=low
 
-  * NOT RELEASED YET
+  * Don't remove tclsh alternative in case of package upgrade because the
+    manually installed alternative is also removed which isn't desirable.
 
- -- Sergei Golovan <sgolovan at debian.org>  Sat,  5 Jul 2008 18:16:20 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Sun, 01 Mar 2009 10:35:02 +0300
 
 tcl8.3 (8.3.5-13) unstable; urgency=medium
 

Modified: tcl8.3/trunk/debian/tcl8.3.prerm
===================================================================
--- tcl8.3/trunk/debian/tcl8.3.prerm	2009-03-01 10:07:42 UTC (rev 824)
+++ tcl8.3/trunk/debian/tcl8.3.prerm	2009-03-01 10:09:15 UTC (rev 825)
@@ -2,6 +2,8 @@
 
 set -e
 
-update-alternatives --remove tclsh /usr/bin/tclsh8.3
+if [ $1 != "upgrade" ] ; then
+    update-alternatives --remove tclsh /usr/bin/tclsh8.3
+fi
 
 #DEBHELPER#




More information about the Pkg-tcltk-commits mailing list