tag 666645 pending
tag 669395 pending
thanks

Hi,

I'm uploading an NMU for whizzytex (1.3.2-1.1) to DELAYED/2-day.
Please let me know if you'd like me to cancel it or delay further.

Cheers,

Matej

Attachment: pgpVox1dRaacJ.pgp
Description: PGP signature

--- whizzytex-1.3.2~/debian/changelog
+++ whizzytex-1.3.2/debian/changelog
@@ -1,3 +1,12 @@
+whizzytex (1.3.2-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * 11_boxsep_boolean: doc/manual.tex: Set "boxsep" to "false" rather
+    than "0pt".  Closes: #666645.
+  * Use dh_installtex.  Closes: #669395.
+
+ -- Matej Vela <v...@debian.org>  Sat, 19 May 2012 18:49:04 +0100
+
 whizzytex (1.3.2-1) unstable; urgency=low
 
   [ Matthias Klose ]
--- whizzytex-1.3.2~/debian/control
+++ whizzytex-1.3.2/debian/control
@@ -2,7 +2,7 @@
 Section: tex
 Priority: optional
 Maintainer: Junichi Uekawa <dan...@debian.org>
-Build-Depends-Indep: hevea (>= 1.08), texlive-pstricks, texlive-latex-extra, 
advi, texlive-latex-recommended
+Build-Depends-Indep: hevea (>= 1.08), texlive-pstricks, texlive-latex-extra, 
advi, texlive-latex-recommended, tex-common
 Build-Depends: debhelper (>> 3.0.0), dpatch
 Standards-Version: 3.7.2
 
--- whizzytex-1.3.2~/debian/patches/00list
+++ whizzytex-1.3.2/debian/patches/00list
@@ -1,2 +1,3 @@
 07_bash_makefile
 09_compat_config
+11_boxsep_boolean
--- whizzytex-1.3.2~/debian/patches/11_boxsep_boolean.dpatch
+++ whizzytex-1.3.2/debian/patches/11_boxsep_boolean.dpatch
@@ -0,0 +1,37 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 11_boxsep_boolean.dpatch by Matej Vela <v...@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: doc/manual.tex: Set "boxsep" to "false" rather than "0pt" (Bug#666645).
+
+@DPATCH@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' 
'--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' 
whizzytex-1.3.2~/doc/manual.tex whizzytex-1.3.2/doc/manual.tex
+--- whizzytex-1.3.2~/doc/manual.tex    2011-08-01 08:43:46.000000000 +0100
++++ whizzytex-1.3.2/doc/manual.tex     2012-05-16 18:11:27.000000000 +0100
+@@ -1410,7 +1410,7 @@
+ This small page contains
+ 
+ \hbox {\hbox to 0em
+-{\hss\circlenode[linecolor=green,boxsep=0pt,framesep=0.4ex]{A}{}\hss}%
++{\hss\circlenode[linecolor=green,boxsep=false,framesep=0.4ex]{A}{}\hss}%
+ \adviedit{x=0.3418,y=-0.1445,w=0.6574}
+ 
{\pnode{P}\psframebox[linecolor=blue,framesep=0pt]{\setbox0=\hbox{\parbox[c]{\adviw}{This
+ whizzy-editable parbox drawn in a blue rectangle. 
+@@ -1430,7 +1430,7 @@
+ \wd0=1ex\ht0=1ex
+ \psframebox[linecolor=blue,framesep=0pt]
+ {\pnode{P2}\hbox to 0em
+-{\hss\circlenode[linecolor=green,boxsep=0pt,framesep=0.4ex]{A}{}\hss}%
++{\hss\circlenode[linecolor=green,boxsep=false,framesep=0.4ex]{A}{}\hss}%
+ \box0\pnode{Q2}\ncline[linecolor=blue]{P2}{Q2}}%
+ 
+ a whizzy-editable vertical space. 
+@@ -1555,7 +1555,7 @@
+ \begin{verbatim}
+         \adviedit[A]{w=4}
+           {\setedit{unit=\adviw}%
+-           \psset{boxsep=0pt,framesep=0pt}%
++           \psset{boxsep=false,framesep=0pt}%
+            \hbox to \adviw
+              {\circlenode{A}{\hspace {\adviw}}\hss
+               \adviedit[B]{w=0.5}{\circlenode{B}{\hspace{\adviw}}}}}
--- whizzytex-1.3.2~/debian/postinst
+++ whizzytex-1.3.2/debian/postinst
@@ -5,44 +5,6 @@
 
 set -e
 
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see /usr/share/doc/debian-policy/
-#
-# quoting from the policy:
-#     Any necessary prompting should almost always be confined to the
-#     post-installation script, and should be protected with a conditional
-#     so that unnecessary prompting doesn't happen if a package's
-#     installation fails and the `postinst' is called with `abort-upgrade',
-#     `abort-remove' or `abort-deconfigure'.
-
-TEXCONFIG=/usr/bin/mktexlsr
-
-case "$1" in
-    configure)
-       if [ -e $TEXCONFIG ]
-       then
-           $TEXCONFIG
-       fi   
-
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 0
-    ;;
-esac
-
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.
 
--- whizzytex-1.3.2~/debian/postrm
+++ whizzytex-1.3.2/debian/postrm
@@ -5,35 +5,6 @@
 
 set -e
 
-# summary of how this script can be called:
-#        * <postrm> `remove'
-#        * <postrm> `purge'
-#        * <old-postrm> `upgrade' <new-version>
-#        * <new-postrm> `failed-upgrade' <old-version>
-#        * <new-postrm> `abort-install'
-#        * <new-postrm> `abort-install' <old-version>
-#        * <new-postrm> `abort-upgrade' <old-version>
-#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# for details, see /usr/share/doc/debian-policy/
-
-TEXCONFIG=/usr/bin/mktexlsr
-
-case "$1" in
-    purge|remove|failed-upgrade|abort-install|abort-upgrade|disappear)
-       if [ -e $TEXCONFIG ]
-           then
-           $TEXCONFIG
-       fi  
-       
-        ;;
-    upgrade)
-       ;;
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 0
-
-esac
-
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.
 
--- whizzytex-1.3.2~/debian/rules
+++ whizzytex-1.3.2/debian/rules
@@ -84,6 +84,7 @@
        dh_installman
        dh_installinfo -v debian/tmp-info/whizzytex.info*
        dh_installchangelogs CHANGES
+       dh_installtex
        dh_link
        dh_strip
        dh_compress

Reply via email to