[Debian-tex-commits] SVN tex-common commit + diffs: r3378 - tex-common/branches/triggers/scripts

Norbert Preining preining at alioth.debian.org
Mon May 19 11:17:47 UTC 2008


Author: preining
Date: 2008-05-19 11:17:46 +0000 (Mon, 19 May 2008)
New Revision: 3378

Modified:
   tex-common/branches/triggers/scripts/dh_installtex
Log:
fix a bug in dh_installtex, add a dep on tex-common >= 1.12


Modified: tex-common/branches/triggers/scripts/dh_installtex
===================================================================
--- tex-common/branches/triggers/scripts/dh_installtex	2008-05-19 10:58:59 UTC (rev 3377)
+++ tex-common/branches/triggers/scripts/dh_installtex	2008-05-19 11:17:46 UTC (rev 3378)
@@ -177,7 +177,8 @@
 specify a list from flavors to be selected.
 At the moment you can select from the following list of flavors:
 B<map:config_for_active_maps>, B<map:config_for_all_maps>, B<map:notriggers>,
-B<format:build_all>, and B<format:add_one:I<formatname>>.
+B<format:build_all>, B<format:add_one:I<formatname>>, and 
+B<language:notriggers>.
 
 B<map:config_for_active_maps> will create a file I<config.bar> for each active
 (i.e. uncommented) map in each of the cfg file generated by one of the
@@ -657,9 +658,9 @@
 			my @newwhat = ();
 			foreach my $t (@whattodo) {
 				if ($t eq "map") {
-					push @newwhat, $t unless $no_updmap_triggers;
+					push @newwhat, $t if $no_updmap_triggers;
 				} elsif ($t eq "language") {
-					push @newwhat, $t unless $no_language_triggers;
+					push @newwhat, $t if $no_language_triggers;
 				} else {
 					push @newwhat, $t;
 				}
@@ -672,7 +673,7 @@
 
 	# for trigger support
 	addsubstvar($package, "misc:Depends", "dpkg", ">= 1.14.18");
-	addsubstvar($package, "misc:Depends", "tex-common", ">= 1.11");
+	addsubstvar($package, "misc:Depends", "tex-common", ">= 1.12");
 }
 
 =head1 SEE ALSO




More information about the Debian-tex-commits mailing list