[Debian-tex-commits] SVN tex-common commit + diffs: r2513 - in tex-common/trunk: debian scripts

Norbert Preining preining at alioth.debian.org
Sun Feb 25 18:28:02 CET 2007


Author: preining
Date: 2007-02-25 18:28:00 +0100 (Sun, 25 Feb 2007)
New Revision: 2513

Modified:
   tex-common/trunk/debian/changelog
   tex-common/trunk/scripts/dh_installtex
Log:
fix a stupid bug in dh_installtex which prohibits
	dh_installtex --priority TYPEfile=foo.cfg
to work. The priority was evaluated AFTER the reading of the other
cmd line args!


Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog	2007-02-25 17:15:49 UTC (rev 2512)
+++ tex-common/trunk/debian/changelog	2007-02-25 17:28:00 UTC (rev 2513)
@@ -1,7 +1,7 @@
 tex-common (1.1~2) experimental; urgency=low
 
   * Upload to experimental.  This version is needed to build TeXLive
-    2007. 
+    2007.
   * Increase trie_size to the value in TeXLive 2007, and update the
     comment from their texmf.in file, too.
   * Only strip comments with '^[ \t]*# ' from the auto files to preserve
@@ -11,8 +11,10 @@
   * implement flavors format:build_all and format:add_one:formatname
   * let dh_installtex automatically create links for formats installed
     and add flavor to disable this behaviour.
+  * fix a bug in dh_installtex which prohibits --priority to work 
+    correctly for command line config files. [NP]
 
- -- Frank Küster <frank at debian.org>  Tue, 20 Feb 2007 14:42:45 +0100
+ -- Norbert Preining <preining at debian.org>  Sun, 25 Feb 2007 18:25:53 +0100
 
 tex-common (1.0) unstable; urgency=low
 

Modified: tex-common/trunk/scripts/dh_installtex
===================================================================
--- tex-common/trunk/scripts/dh_installtex	2007-02-25 17:15:49 UTC (rev 2512)
+++ tex-common/trunk/scripts/dh_installtex	2007-02-25 17:28:00 UTC (rev 2513)
@@ -346,6 +346,10 @@
 #
 #
 
+if (defined($dh{PRIORITY}) && $dh{PRIORITY} ne '') {
+	$priority=$dh{PRIORITY};
+}
+
 #
 # parse the cmd line and fill in the various hashes
 #
@@ -389,9 +393,6 @@
 	}
 }
 
-if (defined($dh{PRIORITY}) && $dh{PRIORITY} ne '') {
-	$priority=$dh{PRIORITY};
-}
 
 
 foreach my $package (@{$dh{DOPACKAGES}}) {




More information about the Debian-tex-commits mailing list