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

Norbert Preining preining at alioth.debian.org
Wed Mar 23 06:24:23 UTC 2011


Author: preining
Date: 2011-03-23 06:24:14 +0000 (Wed, 23 Mar 2011)
New Revision: 4815

Modified:
   tex-common/trunk/debian/changelog
   tex-common/trunk/scripts/dh_installtex
Log:
generated postrm code does not remove metapost format since the engine
was not rewritten, fix that with a special case in dh_installtex
(needs rebuild of texlive-metapost, context) (Closes: #619358)


Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog	2011-03-23 06:14:32 UTC (rev 4814)
+++ tex-common/trunk/debian/changelog	2011-03-23 06:24:14 UTC (rev 4815)
@@ -1,3 +1,11 @@
+tex-common (2.10) unstable; urgency=low
+
+  * generated postrm code does not remove metapost format since the engine
+    was not rewritten, fix that with a special case in dh_installtex 
+    (needs rebuild of texlive-metapost, context) (Closes: #619358)
+
+ -- Norbert Preining <preining at debian.org>  Wed, 23 Mar 2011 15:20:39 +0900
+
 tex-common (2.09) unstable; urgency=high
 
   * fix creation of ls-R files in /usr/local/share/texmf by updmap-sys

Modified: tex-common/trunk/scripts/dh_installtex
===================================================================
--- tex-common/trunk/scripts/dh_installtex	2011-03-23 06:14:32 UTC (rev 4814)
+++ tex-common/trunk/scripts/dh_installtex	2011-03-23 06:24:14 UTC (rev 4815)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 # dh_installtex --- register Type 1 fonts, languages, or formats with TeX
 # Copyright (C) 2006, 2007 Florent Rougon
-# Copyright (C) 2006, 2007, 2008, 2009 Norbert Preining
+# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Norbert Preining
 # Copyright (C) 2006, 2007 Frank Küster
 #
 # This program is free software; you can redistribute it and/or modify
@@ -598,6 +598,8 @@
 			my ($format,$engine) = $pair =~ m/^(.*)\t(.*)$/;
 			if ($engine =~ m/^(mf|mf-nowin)$/) {
 				push @postrmfmtdata, "metafont/$format";
+			} elsif ($engine eq "mpost") {
+				push @postrmfmtdata, "metapost/$format";
 			} else {
 				push @postrmfmtdata, "$engine/$format";
 			}




More information about the Debian-tex-commits mailing list