diff -Nru tex-common-2.09/debian/changelog tex-common-2.10/debian/changelog --- tex-common-2.09/debian/changelog 2011-03-23 00:47:07.000000000 +0000 +++ tex-common-2.10/debian/changelog 2011-06-26 00:00:27.000000000 +0000 @@ -1,3 +1,17 @@ +tex-common (2.10) unstable; urgency=low + + [ Norbert Preining ] + * 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) + * bump standards version to 3.9.2, no changes needed + + [ Frank Küster ] + * double-escape backslash in a printf string, thanks to Steve Langasek + (closes: #622938) + + -- Norbert Preining Sun, 26 Jun 2011 09:00:08 +0900 + tex-common (2.09) unstable; urgency=high * fix creation of ls-R files in /usr/local/share/texmf by updmap-sys diff -Nru tex-common-2.09/debian/control tex-common-2.10/debian/control --- tex-common-2.09/debian/control 2011-02-18 02:45:38.000000000 +0000 +++ tex-common-2.10/debian/control 2011-06-26 00:00:06.000000000 +0000 @@ -5,7 +5,7 @@ Uploaders: Julian Gilbey , C.M. Connelly , Atsuhito KOHDA , Frank Küster , Florent Rougon , Norbert Preining Build-Depends: debhelper (>= 5.0.0), po-debconf Build-Depends-Indep: debiandoc-sgml, eperl -Standards-Version: 3.9.1 +Standards-Version: 3.9.2 Vcs-Svn: svn://svn.debian.org/svn/debian-tex/tex-common/trunk Vcs-Browser: http://svn.debian.org/wsvn/debian-tex/tex-common/trunk/ diff -Nru tex-common-2.09/scripts/dh_installtex tex-common-2.10/scripts/dh_installtex --- tex-common-2.09/scripts/dh_installtex 2010-01-18 16:58:51.000000000 +0000 +++ tex-common-2.10/scripts/dh_installtex 2011-03-23 06:18:35.000000000 +0000 @@ -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"; } diff -Nru tex-common-2.09/scripts/update-fontlang tex-common-2.10/scripts/update-fontlang --- tex-common-2.09/scripts/update-fontlang 2010-01-18 16:58:51.000000000 +0000 +++ tex-common-2.10/scripts/update-fontlang 2011-05-24 10:19:44.000000000 +0000 @@ -775,7 +775,7 @@ printf " ${PCC}${PCC}${PCC} No changes may be made beyond this point. -\uselanguage {USenglish} ${PCC}${PCC}${PCC} This MUST be the last line of the file. +\\\\uselanguage {USenglish} ${PCC}${PCC}${PCC} This MUST be the last line of the file. " >> "$tempfile" fi diff -Nru tex-common-2.09/scripts/update-language-dat tex-common-2.10/scripts/update-language-dat --- tex-common-2.09/scripts/update-language-dat 2010-01-18 16:58:51.000000000 +0000 +++ tex-common-2.10/scripts/update-language-dat 2011-05-24 10:19:44.000000000 +0000 @@ -775,7 +775,7 @@ printf " ${PCC}${PCC}${PCC} No changes may be made beyond this point. -\uselanguage {USenglish} ${PCC}${PCC}${PCC} This MUST be the last line of the file. +\\\\uselanguage {USenglish} ${PCC}${PCC}${PCC} This MUST be the last line of the file. " >> "$tempfile" fi diff -Nru tex-common-2.09/scripts/update-language-def tex-common-2.10/scripts/update-language-def --- tex-common-2.09/scripts/update-language-def 2010-01-18 16:58:51.000000000 +0000 +++ tex-common-2.10/scripts/update-language-def 2011-05-24 10:19:44.000000000 +0000 @@ -775,7 +775,7 @@ printf " ${PCC}${PCC}${PCC} No changes may be made beyond this point. -\uselanguage {USenglish} ${PCC}${PCC}${PCC} This MUST be the last line of the file. +\\\\uselanguage {USenglish} ${PCC}${PCC}${PCC} This MUST be the last line of the file. " >> "$tempfile" fi