[Debian-tex-commits] SVN tex-common commit + diffs: r5184 - tex-common/branches/v3/debian

Norbert Preining preining at alioth.debian.org
Fri Mar 9 04:52:51 UTC 2012


Author: preining
Date: 2012-03-09 04:52:49 +0000 (Fri, 09 Mar 2012)
New Revision: 5184

Modified:
   tex-common/branches/v3/debian/changelog
   tex-common/branches/v3/debian/control
   tex-common/branches/v3/debian/postrm.in
Log:
fix a few bugs


Modified: tex-common/branches/v3/debian/changelog
===================================================================
--- tex-common/branches/v3/debian/changelog	2012-03-09 04:29:43 UTC (rev 5183)
+++ tex-common/branches/v3/debian/changelog	2012-03-09 04:52:49 UTC (rev 5184)
@@ -1,3 +1,11 @@
+tex-common (3.1) experimental; urgency=low
+
+  * UNRELEASED
+  * only try to remove /etc/texmf/web2c if it is still here (Closes: #663029)
+  * add missing break against tex-gyre <= 2.004.1-2.1 (Closes: #?????)
+
+ -- Norbert Preining <preining at debian.org>  Fri, 09 Mar 2012 13:40:20 +0900
+
 tex-common (3.0) experimental; urgency=low
 
   * remove all texmf.d conf files

Modified: tex-common/branches/v3/debian/control
===================================================================
--- tex-common/branches/v3/debian/control	2012-03-09 04:29:43 UTC (rev 5183)
+++ tex-common/branches/v3/debian/control	2012-03-09 04:52:49 UTC (rev 5184)
@@ -15,7 +15,7 @@
 Suggests: debhelper (>= 7.0.8)
 Replaces: tetex-base (<= 3.0-10), dvipdfmx
 Conflicts: tetex-base (<< 2007), texlive-common (<< 2009), context (<= 2011.05.18.20110627-1)
-Breaks: texlive-common (<< 2010), tipa (<= 2:1.3-15), itrans (<= 5.3-10), gregoriotex (<= 2.0-1.1), cm-super (<= 0.3.4-4), cm-super-minimal (<= 0.3.4-4), latex-cjk-chinese-arphic-bkai00mp (<= 1.21+nmu1), latex-cjk-japanese-wadalab (<= 0.20050817-15), latex-fonts-sipa-arundina (<= 0.2.0-1), latex-fonts-thai-tlwg (<= 1:0.5.0-1), lmodern (<= 2.004.1-3.1), ko.tex-base (<= 0.1.0+20071012-1), ko.tex-extra (<= 0.1.0+20071012-1), latex-cjk-chinese-arphic-bsmi00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gbsn00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gkai00mp (<= 1.21+nmu1), latex-cjk-thai (<= 4.8.2+git20111216-1), latex-sanskrit (<= 2.2-8), musixtex (<= 1:0.115-2), scalable-cyrfonts-tex (<= 4.15), 
+Breaks: texlive-common (<< 2010), tipa (<= 2:1.3-15), itrans (<= 5.3-10), gregoriotex (<= 2.0-1.1), cm-super (<= 0.3.4-4), cm-super-minimal (<= 0.3.4-4), latex-cjk-chinese-arphic-bkai00mp (<= 1.21+nmu1), latex-cjk-japanese-wadalab (<= 0.20050817-15), latex-fonts-sipa-arundina (<= 0.2.0-1), latex-fonts-thai-tlwg (<= 1:0.5.0-1), lmodern (<= 2.004.1-3.1), ko.tex-base (<= 0.1.0+20071012-1), ko.tex-extra (<= 0.1.0+20071012-1), latex-cjk-chinese-arphic-bsmi00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gbsn00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gkai00mp (<= 1.21+nmu1), latex-cjk-thai (<= 4.8.2+git20111216-1), latex-sanskrit (<= 2.2-8), musixtex (<= 1:0.115-2), scalable-cyrfonts-tex (<= 4.15), tex-gyre (<= 2.004.1-2.1)
 Description: common infrastructure for building and installing TeX
  This package contains a number of scripts and common configuration
  files that are needed to install a TeX System.

Modified: tex-common/branches/v3/debian/postrm.in
===================================================================
--- tex-common/branches/v3/debian/postrm.in	2012-03-09 04:29:43 UTC (rev 5183)
+++ tex-common/branches/v3/debian/postrm.in	2012-03-09 04:52:49 UTC (rev 5184)
@@ -31,8 +31,10 @@
     # TODO purge ucf files
 
     # remove texmf.cnf
-    rm -rf /etc/texmf/web2c/texmf.cnf
-    rmdir --ignore-fail-on-non-empty /etc/texmf/web2c
+    if [ -d /etc/texmf/web2c ] ; then
+      rm -rf /etc/texmf/web2c/texmf.cnf
+      rmdir --ignore-fail-on-non-empty /etc/texmf/web2c
+    fi
 
     # try to remove /usr/local/share/texmf if it is empty
     # people should normally not have TEXMFLOCAL ls-R files




More information about the Debian-tex-commits mailing list