[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[tex-common] 01/01: add --no-error-if-no-engine=luajittex to fmtutils calls



This is an automated email from the git hooks/post-receive script.

preining pushed a commit to branch master
in repository tex-common.

commit 44872df4fd513d45584ed5df61d8788225d67b95
Author: Norbert Preining <preining@debian.org>
Date:   Fri May 30 17:58:57 2014 +0900

    add --no-error-if-no-engine=luajittex to fmtutils calls
---
 debian/changelog     | 8 ++++++++
 debian/control       | 2 +-
 debian/postinst      | 6 +++---
 scripts/postinst-tex | 2 +-
 4 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 13d9cf9..eedfbf7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tex-common (5.02) unstable; urgency=medium
+
+  * call fmtutil-sys with --no-error-if-no-engine=luajittex following
+    upstream, as there are some architectures that do not support
+    luajittex
+
+ -- Norbert Preining <preining@debian.org>  Fri, 30 May 2014 17:58:17 +0900
+
 tex-common (5.01) unstable; urgency=medium
 
   * upload to unstable
diff --git a/debian/control b/debian/control
index 38f314a..4f173a8 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Depends: ${misc:Depends}, ucf, debconf (>= 1.4.69) | cdebconf (>= 0.39), dpkg (>
 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-7), 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-chines [...]
+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-7), 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-chines [...]
 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.
diff --git a/debian/postinst b/debian/postinst
index 5082dda..edc08a4 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -76,7 +76,7 @@ dhit_build_format ()
 
     tempfile=$(mktemp -p /tmp fmtutil.XXXXXXXX)
     printf "Building format(s) $*.\n\tThis may take some time... "
-    if fmtutil-sys "$@" > $tempfile 2>&1 ; then
+    if fmtutil-sys --no-error-if-no-engine=luajittex "$@" > $tempfile 2>&1 ; then
         rm -f $tempfile
         echo "done."
     else
@@ -312,7 +312,7 @@ do_triggers()
                   # formats based on language.dat
                   tempfile=$(mktemp -p /tmp fmtutil.XXXXXXXX)
                   printf "Building latex-based formats --byhyphen $(kpsewhich language.dat).\n\tThis may take some time... "
-                  if fmtutil-sys --byhyphen "$(kpsewhich language.dat)" > $tempfile 2>&1 ; then
+                  if fmtutil-sys --no-error-if-no-engine=luajittex --byhyphen "$(kpsewhich language.dat)" > $tempfile 2>&1 ; then
                     rm -f $tempfile
                     echo "done."
                   else
@@ -331,7 +331,7 @@ do_triggers()
                   # formats based on language.def
                   tempfile=$(mktemp -p /tmp fmtutil.XXXXXXXX)
                   printf "Building e-tex based formats --byhyphen $(kpsewhich language.def).\n\tThis may take some time... "
-                  if fmtutil-sys --byhyphen "$(kpsewhich language.def)" > $tempfile 2>&1 ; then
+                  if fmtutil-sys --no-error-if-no-engine=luajittex --byhyphen "$(kpsewhich language.def)" > $tempfile 2>&1 ; then
                     rm -f $tempfile
                     echo "done."
                   else
diff --git a/scripts/postinst-tex b/scripts/postinst-tex
index f3b1f21..42f46ec 100644
--- a/scripts/postinst-tex
+++ b/scripts/postinst-tex
@@ -81,7 +81,7 @@ dhit_build_format ()
 
     tempfile=$(mktemp -p /tmp fmtutil.XXXXXXXX)
     printf "Building format(s) $*.\n\tThis may take some time... "
-    if fmtutil-sys "$@" > $tempfile 2>&1 ; then
+    if fmtutil-sys --no-error-if-no-engine=luajittex "$@" > $tempfile 2>&1 ; then
         rm -f $tempfile
         echo "done."
     else

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-tex/tex-common.git


Reply to: