Below is a list of packages that I either maintain or co-maintain which I would wish to see in etch. All of them:
* have the same upstream version in both testing and unstable; * have a version in unstable for more than 10 days; and * have no bug reports filed against them. I believe that accepting them in etch would imply very low risk since most of the changes are regular QA updates. The debdiffs are attached below. The packages are: * latex-mk + 1.8-5 -> 1.8-8 + Closes: #401802, #401806 * libparse-recdescent-perl + 1.94.free-3 -> 1.94.free-4 + Closes: #369553 * slgtk + 0.5.16-2 -> 0.5.16-3 * slpvm + 0.1.5-4 -> 0.1.5-5 * tipa + 2:1.3-4 -> 2:1.3-5 + Closes: #405922 Thanks, -- Rafael
Index: control =================================================================== --- control (.../1.8-5/debian) (revision 542) +++ control (.../1.8-8/debian) (revision 542) @@ -5,7 +5,7 @@ Build-Depends: debhelper (>= 4), cdbs Build-Depends-Indep: tetex-bin | texlive-base, texinfo, xsltproc, docbook-xsl, imagemagick, gv, hevea, latex2rtf, cupsys-bsd, gs-common, - tgif, transfig, csh, tetex-extra, autoconf + tgif, transfig, csh, autoconf, tetex-extra Standards-Version: 3.7.2 Package: latex-mk Index: changelog =================================================================== --- changelog (.../1.8-5/debian) (revision 542) +++ changelog (.../1.8-8/debian) (revision 542) @@ -1,3 +1,33 @@ +latex-mk (1.8-8) unstable; urgency=low + + * Uploaded to unstable, since etch is already frozen + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Thu, 1 Feb 2007 13:08:14 +0100 + +latex-mk (1.8-7) experimental; urgency=low + + * debian/patches/50-fig-pdf-extension.patch: Added patch for generating + PDF files with .pdf extension instead of .eps when using the fig2dev + command with USE_PDFLATEX activated (closes: #401802). Thanks to Elmar + Hoffmann for the patch. + + * debian/patches/60-gmk-clean.patch: Added patch to remove BSDisms in + some makefile fragments, such that them work with GNU make (closes: + #401806). Thanks to Elmar Hoffmann for the patch. + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Wed, 6 Dec 2006 16:42:58 +0100 + +latex-mk (1.8-6) experimental; urgency=low + + * debian/patches/50-no-wait-stdin-in-test.patch: Patch for avoiding + hanging the tests when LaTeX waits for input from stdin. + * debian/rules: Run make check with option -i and check after the build + whether some tests fails. In this case, show relevant *.dlog files. + Thanks to Goswin von Brederlow for the suggestion. + * Uploading to experimental, until 1.8-5 enters testing. + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Fri, 24 Nov 2006 07:54:39 +0100 + latex-mk (1.8-5) unstable; urgency=low * debian/patches/50-prefix-in-doc.patch: Added patch for having the Index: patches/60-gmk-clean.patch =================================================================== --- patches/60-gmk-clean.patch (.../1.8-5/debian) (revision 0) +++ patches/60-gmk-clean.patch (.../1.8-8/debian) (revision 542) @@ -0,0 +1,39 @@ +diff -Nur latex-mk-1.8/lgrind.mk.in.in latex-mk-1.8.new/lgrind.mk.in.in +--- latex-mk-1.8/lgrind.mk.in.in 2006-04-04 22:32:34.000000000 +0200 ++++ latex-mk-1.8.new/lgrind.mk.in.in 2006-12-06 16:32:22.000000000 +0100 +@@ -218,7 +218,8 @@ + all:: $(ALLLGRINDOBJS) + + clean:: +- $(RM) -f $(ALLLGRINDOBJS:Q) ++BMK: $(RM) -f $(ALLLGRINDOBJS:Q) ++GMK: $(RM) -f $(ALLLGRINDOBJS) + + + ####################################### +diff -Nur latex-mk-1.8/tgif.mk.in.in latex-mk-1.8.new/tgif.mk.in.in +--- latex-mk-1.8/tgif.mk.in.in 2006-04-04 22:32:35.000000000 +0200 ++++ latex-mk-1.8.new/tgif.mk.in.in 2006-12-06 16:32:22.000000000 +0100 +@@ -174,7 +174,8 @@ + all:: $(ALLTGIFOBJS) + + clean:: +- $(RM) -f $(ALLTGIFOBJS:Q) ++BMK: $(RM) -f $(ALLTGIFOBJS:Q) ++GMK: $(RM) -f $(ALLTGIFOBJS) + + ####################################### + # +diff -Nur latex-mk-1.8/xfig.mk.in.in latex-mk-1.8.new/xfig.mk.in.in +--- latex-mk-1.8/xfig.mk.in.in 2006-12-06 16:32:07.000000000 +0100 ++++ latex-mk-1.8.new/xfig.mk.in.in 2006-12-06 16:32:22.000000000 +0100 +@@ -174,7 +174,8 @@ + all:: $(ALLXFIGOBJS) + + clean:: +- $(RM) -f $(ALLXFIGOBJS:Q) ++BMK: $(RM) -f $(ALLXFIGOBJS:Q) ++GMK: $(RM) -f $(ALLXFIGOBJS) + + ####################################### + # Index: patches/50-fig-pdf-extension.patch =================================================================== --- patches/50-fig-pdf-extension.patch (.../1.8-5/debian) (revision 0) +++ patches/50-fig-pdf-extension.patch (.../1.8-8/debian) (revision 542) @@ -0,0 +1,12 @@ +diff -Nur latex-mk-1.8/xfig.mk.in.in latex-mk-1.8.new/xfig.mk.in.in +--- latex-mk-1.8/xfig.mk.in.in 2006-04-04 22:32:35.000000000 +0200 ++++ latex-mk-1.8.new/xfig.mk.in.in 2006-12-06 14:44:11.000000000 +0100 +@@ -189,6 +189,6 @@ + GMK: $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_EPS_FLAGS) $*.fig $*.eps + + .fig.pdf : +-BMK: $(FIG2DEV:Q) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.eps +-GMK: $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.eps ++BMK: $(FIG2DEV:Q) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.pdf ++GMK: $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.pdf + Index: patches/50-no-wait-stdin-in-test.patch =================================================================== --- patches/50-no-wait-stdin-in-test.patch (.../1.8-5/debian) (revision 0) +++ patches/50-no-wait-stdin-in-test.patch (.../1.8-8/debian) (revision 542) @@ -0,0 +1,12 @@ +diff -Nur latex-mk-1.8/testsuite/script_tests.sh latex-mk-1.8.new/testsuite/script_tests.sh +--- latex-mk-1.8/testsuite/script_tests.sh 2006-11-24 00:07:39.000000000 +0100 ++++ latex-mk-1.8.new/testsuite/script_tests.sh 2006-11-24 00:09:08.000000000 +0100 +@@ -241,7 +241,7 @@ + testlog="/tmp/script_tests.$$$$" + #echo "cd ${rundir} && env ${vars} ${here}/../latex-mk --testlog ${testlog} $args" + cd ${rundir} && env ${vars} ${here}/../latex-mk --testlog ${testlog} $args 2>&1 \ +- > ${here}/${REF}/${t}.dlog ++ > ${here}/${REF}/${t}.dlog < /dev/null + rc=$? + + if test $rc -ne $ret -a "X$regen" != "Xyes" ; then Index: rules =================================================================== --- rules (.../1.8-5/debian) (revision 542) +++ rules (.../1.8-8/debian) (revision 542) @@ -14,7 +14,9 @@ DEB_AUTO_UPDATE_AUTOCONF = 1 -# Activate check rule +# Activate check rule; option -i is added such that all the tests are +# run, without stopping at failures. See the build/latex-mk rule +# below for the post-processing of the check. DEB_MAKE_CHECK_TARGET := -i check @@ -42,7 +44,16 @@ $(XP) $(DB2MAN) $< build/latex-mk:: latex-mk.1 ieee-copyout.1 - + ( errfiles=$$(find . -name \*.dlog | xargs grep -l Error:) ; \ + if test -n "$$errfiles" ; then \ + echo make check failed for the following tests: ; \ + for i in $$errfiles ; do \ + echo "===== $$i" ; \ + cat $$i ; \ + done ; \ + exit 1 ; \ + fi ) + clean:: rm -f *.1 doc/prefix.texi configure doc/latex-mk.info
Index: control =================================================================== --- control (.../1.94.free-3/debian) (revision 542) +++ control (.../1.94.free-4/debian) (revision 542) @@ -23,3 +23,5 @@ during a parse, * Incremental extension of the parsing grammar (even during a parse), * The ability to retrieve the generated parsing code. + . + Homepage: http://search.cpan.org/~dconway/Parse-RecDescent-1.94/ \ No newline at end of file Index: changelog =================================================================== --- changelog (.../1.94.free-3/debian) (revision 542) +++ changelog (.../1.94.free-4/debian) (revision 542) @@ -1,3 +1,12 @@ +libparse-recdescent-perl (1.94.free-4) unstable; urgency=low + + * debian/NEWS: Added note saying that I give up about having the + tutorial from The Perl Journal one day in Debian (closes: #369553) + * debian/control: Reintroduced Homepage pseudo-header + * debian/rules: Run tests after building the package + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Fri, 9 Mar 2007 14:41:53 +0100 + libparse-recdescent-perl (1.94.free-3) unstable; urgency=low * debian/control: Dropped superfluous Build-Depends-Indep (which is Index: rules =================================================================== --- rules (.../1.94.free-3/debian) (revision 542) +++ rules (.../1.94.free-4/debian) (revision 542) @@ -4,7 +4,7 @@ # Description: rules file for Debian package libparse-recdescent-perl # Author: Rafael Laboissière <[EMAIL PROTECTED]> # Created on: Mon Jul 12 23:01:43 CEST 1999 -# Last modified on: Tue May 30 19:04:33 CEST 2006 +# Last modified on: Fri Mar 9 14:45:35 CET 2007 # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 @@ -36,6 +36,7 @@ dh_testdir $(MAKE) + $(MAKE) test touch build-stamp Index: NEWS =================================================================== --- NEWS (.../1.94.free-3/debian) (revision 542) +++ NEWS (.../1.94.free-4/debian) (revision 542) @@ -1,3 +1,14 @@ +libparse-recdescent-perl (1.94.free-3) unstable; urgency=low + + Realistically, the tutorial from the Perl Journal is not going to be + in Debian, even in the non-free section. This tutorial (which was + included in the Debian package for versions << 1.94.free-1) can be + read at: + + http://search.cpan.org/src/DCONWAY/Parse-RecDescent-1.94/tutorial/tutorial.html + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Fri, 9 Mar 2007 14:31:40 +0100 + libparse-recdescent-perl (1.94.free-2) unstable; urgency=low The tutorial from The Perl Journal, which is shipped with the upstream
Index: changelog =================================================================== --- changelog (.../0.5.16-2/debian) (revision 604) +++ changelog (.../0.5.16-3/debian) (revision 604) @@ -1,3 +1,10 @@ +slgtk (0.5.16-3) unstable; urgency=low + + [Jörg Sommer] + * debian/copyright: Updated FSF address. + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Mon, 18 Dec 2006 10:40:16 +0100 + slgtk (0.5.16-2) unstable; urgency=low * debian/control: Build-depends on gfortran, otherwise the package FTBFS Index: copyright =================================================================== --- copyright (.../0.5.16-2/debian) (revision 604) +++ copyright (.../0.5.16-3/debian) (revision 604) @@ -45,12 +45,12 @@ Copyright (C) 2003 Massachusetts Institute of Technology Copyright (C) 2002 Michael S. Noble <[EMAIL PROTECTED]> - + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -60,12 +60,12 @@ slirp/admin/importify: Copyright (C) 2002-2004 Michael S. Noble <[EMAIL PROTECTED]> - + This script is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This script is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -75,23 +75,22 @@ src/paste.sl: Copyright (C) 2002 Michael S. Noble <[EMAIL PROTECTED]> - + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + src/gtkextra/*: Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald @@ -111,10 +110,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA src/glib/*: @@ -133,18 +131,17 @@ modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + src/gtk/*: Copyright (c) 1992-1994 The Regents of the University of California. @@ -154,7 +151,7 @@ California, Sun Microsystems, Inc., and other parties. The following terms apply to all files associated with the software unless explicitly disclaimed in individual files. - + The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in @@ -164,20 +161,20 @@ software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply. - + IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - + THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - + GOVERNMENT USE: If you are acquiring this software on behalf of the U.S. government, the Government shall have only "Restricted Rights" in the software and related documentation as defined in the Federal @@ -219,39 +216,37 @@ modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + You should have received a copy of the GNU Lesser General Public License + along with this library; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + src/pango: Copyright (C) 1999-2004 Red Hat Software Copyright (C) 2000 SuSE Linux Ltd Copyright (C) 2000 Tor Lillqvist - + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL'.
Index: control =================================================================== --- control (.../0.1.5-4/debian) (revision 604) +++ control (.../0.1.5-5/debian) (revision 604) @@ -1,10 +1,12 @@ Source: slpvm Section: interpreters -Priority: optional +Priority: extra Maintainer: Debian JED Group <[EMAIL PROTECTED]> Uploaders: Rafael Laboissiere <[EMAIL PROTECTED]> Build-Depends: debhelper (>= 4.0.0), libslang2-dev (>= 2.0.4-6), pvm-dev, cdbs Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-jed/slpvm/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-jed/slpvm/ Package: slang-pvm Architecture: any @@ -24,4 +26,4 @@ CPU intensive work is done in compiled code and PVM simplifies using all available CPUs. . - Homepage: http://space.mit.edu/cxc/software/slang/modules/pvm/ + Homepage: http://space.mit.edu/cxc/software/slang/modules/pvm/ Index: slang-pvm.examples =================================================================== --- slang-pvm.examples (.../0.1.5-4/debian) (revision 604) +++ slang-pvm.examples (.../0.1.5-5/debian) (revision 604) @@ -1 +1 @@ -examples/* \ No newline at end of file +examples/* Index: watch =================================================================== --- watch (.../0.1.5-4/debian) (revision 0) +++ watch (.../0.1.5-5/debian) (revision 604) @@ -0,0 +1,2 @@ +version=3 +ftp://space.mit.edu/pub/cxc/modules/pvm/pvm-([\d.]+).tar.gz Index: changelog =================================================================== --- changelog (.../0.1.5-4/debian) (revision 604) +++ changelog (.../0.1.5-5/debian) (revision 604) @@ -1,3 +1,19 @@ +slpvm (0.1.5-5) unstable; urgency=low + + * debian/watch: Added file + * debian/control: + - Added space before pseudo-header Homepage, complying with the Debian + Best Packaging Practices + - Added XS-Vcs-Svn and XS-Vcs-Browser fields to the Source section + - Changed the priority of the package "extra", because it depends on + libpvm3, which has also priority "extra" (comply with Policy Section + 2.5: Priorities) + * debian/source.lintian-overrides: Add a lintian override for + outdated-autotools-helper-file, since we're using CDBS' autotools.mk + * debian/rules: Remove config.log in clean target + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Wed, 7 Mar 2007 23:29:35 +0100 + slpvm (0.1.5-4) unstable; urgency=low * debian/control: Index: rules =================================================================== --- rules (.../0.1.5-4/debian) (revision 604) +++ rules (.../0.1.5-5/debian) (revision 604) @@ -8,3 +8,5 @@ build/slang-pvm:: -( cd examples ; pvmd & ./master hostname 2 ; echo halt | pvm ) +clean:: + rm -f config.log Index: source.lintian-overrides =================================================================== --- source.lintian-overrides (.../0.1.5-4/debian) (revision 0) +++ source.lintian-overrides (.../0.1.5-5/debian) (revision 604) @@ -0,0 +1 @@ +slpvm source: outdated-autotools-helper-file autoconf/config.guess 2002-03-20 \ No newline at end of file Property changes on: . ___________________________________________________________________ Name: svn:ignore + files slang-pvm.substvars slang-pvm stamp-*
Index: doc-base.tipa-manual =================================================================== --- doc-base.tipa-manual (.../2:1.3-4/debian) (revision 542) +++ doc-base.tipa-manual (.../2:1.3-5/debian) (revision 542) @@ -1,11 +0,0 @@ -Document: tipa-manual -Title: TIPA Manual -Author: Fukui Rei -Abstract: TIPA is a system for processing IPA (International Phonetic - Alphabet) symbols in LaTeX. This manual describes the usage of the - LaTeX macros and contains a reference section to the available phonetic - characters. -Section: Apps/Text - -Format: DVI -Files: /usr/share/doc/tipa/tipaman.dvi.gz Index: docs =================================================================== --- docs (.../2:1.3-4/debian) (revision 542) +++ docs (.../2:1.3-5/debian) (revision 542) @@ -1,3 +0,0 @@ -doc/tipaman.dvi -doc/vowel.dvi -doc/tipaface.pdf Index: doc-base.tipa-typefaces =================================================================== --- doc-base.tipa-typefaces (.../2:1.3-4/debian) (revision 542) +++ doc-base.tipa-typefaces (.../2:1.3-5/debian) (revision 542) @@ -1,11 +0,0 @@ -Document: tipa-typefaces -Title: TIPA Typefaces -Author: Fukui Rei -Abstract: TIPA is a system for processing IPA (International Phonetic - Alphabet) symbols in LaTeX. This reference manual provides the - MetaFont sources for all the characters in TIPA, as well as graphics showing - their glyphs. -Section: Apps/Text - -Format: PDF -Files: /usr/share/doc/tipa/tipaface.pdf.gz Index: doc-base.tipa-vowel =================================================================== --- doc-base.tipa-vowel (.../2:1.3-4/debian) (revision 542) +++ doc-base.tipa-vowel (.../2:1.3-5/debian) (revision 542) @@ -1,10 +0,0 @@ -Document: tipa-vowel -Title: TIPA Vowels -Author: Fukui Rei -Abstract: TIPA is a system for processing IPA (International Phonetic - Alphabet) symbols in LaTeX. Options and commands for typesetting - phonetic symbols for vowels are explained in this manual. -Section: Apps/Text - -Format: DVI -Files: /usr/share/doc/tipa/vowel.dvi.gz Index: control =================================================================== --- control (.../2:1.3-4/debian) (revision 542) +++ control (.../2:1.3-5/debian) (revision 542) @@ -13,7 +13,7 @@ Depends: tetex-base (>= 3) | texlive-latex-base, tetex-bin | texlive-base-bin Conflicts: tipa-type1 Replaces: tipa-type1 -Description: System for processing phonetic symbols in LaTeX +Description: system for processing phonetic symbols in LaTeX TIPA is a system for processing IPA (International Phonetic Alphabet) symbols in LaTeX written by Fukui Rei. TIPA stands for either TeX IPA or Tokyo IPA and derived from the tsipa package, made @@ -36,9 +36,10 @@ Times Roman and Helvetica fonts. . Type 1 fonts for TIPA are also included in this package (to make them - available in X11, please install the xfonts-tipa package). + available in X11 applications other than LaTeX, please install the + xfonts-tipa package). . - Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ + Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ Package: xfonts-tipa Priority: extra @@ -51,4 +52,14 @@ contains the pfb and afm files. The installed X font has the silipa encoding (see http://www.sil.org/computing/fonts/encore-ipa.html). . - Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ + Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ + +Package: tipa-doc +Priority: extra +Architecture: all +Section: doc +Description: documentation for the TIPA LaTeX font + This package contains the documentation for the TIPA (Tokyo + International Phonetic Alphabet) fonts for LaTeX. + . + Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ Index: tipa-doc.doc-base.tipa-manual =================================================================== --- tipa-doc.doc-base.tipa-manual (.../2:1.3-4/debian) (revision 0) +++ tipa-doc.doc-base.tipa-manual (.../2:1.3-5/debian) (revision 542) @@ -0,0 +1,11 @@ +Document: tipa-manual +Title: TIPA Manual +Author: Fukui Rei +Abstract: TIPA is a system for processing IPA (International Phonetic + Alphabet) symbols in LaTeX. This manual describes the usage of the + LaTeX macros and contains a reference section to the available phonetic + characters. +Section: Apps/Text + +Format: DVI +Files: /usr/share/doc/tipa-doc/tipaman.dvi.gz Index: tipa-doc.docs =================================================================== --- tipa-doc.docs (.../2:1.3-4/debian) (revision 0) +++ tipa-doc.docs (.../2:1.3-5/debian) (revision 542) @@ -0,0 +1,3 @@ +doc/tipaman.dvi +doc/vowel.dvi +doc/tipaface.pdf Index: changelog =================================================================== --- changelog (.../2:1.3-4/debian) (revision 542) +++ changelog (.../2:1.3-5/debian) (revision 542) @@ -1,3 +1,13 @@ +tipa (2:1.3-5) unstable; urgency=low + + * Created the tipa-doc package, containing the (rather larger) *.dvi and + *.pdf files for the TIPA documentation + * debian/control: Reworded the description of the TIPA package, making + it clear that the xfonts-tipa package is not necessary for visualizing + documents typeset with TIPA/LaTeX in X11 (closes: #405922) + + -- Rafael Laboissiere <[EMAIL PROTECTED]> Thu, 1 Feb 2007 18:01:49 +0100 + tipa (2:1.3-4) unstable; urgency=low * debian/postrm: Removed this file, whose job is done automatically by Index: tipa-doc.doc-base.tipa-typefaces =================================================================== --- tipa-doc.doc-base.tipa-typefaces (.../2:1.3-4/debian) (revision 0) +++ tipa-doc.doc-base.tipa-typefaces (.../2:1.3-5/debian) (revision 542) @@ -0,0 +1,11 @@ +Document: tipa-typefaces +Title: TIPA Typefaces +Author: Fukui Rei +Abstract: TIPA is a system for processing IPA (International Phonetic + Alphabet) symbols in LaTeX. This reference manual provides the + MetaFont sources for all the characters in TIPA, as well as graphics showing + their glyphs. +Section: Apps/Text + +Format: PDF +Files: /usr/share/doc/tipa-doc/tipaface.pdf.gz Index: xfonts-tipa.postinst =================================================================== --- xfonts-tipa.postinst (.../2:1.3-4/debian) (revision 0) +++ xfonts-tipa.postinst (.../2:1.3-5/debian) (revision 542) @@ -0,0 +1,17 @@ +#!/bin/sh -e + +# postinst script for the xfonts-tipa Debian package +# Create by Rafael Laboissiere <[EMAIL PROTECTED]> +# This file is in the public domain + +# Remove the X11R6 xfonts-tipa.scale file which was present from 2:1.2-2.2 +# to 2:1.3-4 (suggested by Norbert Preining) + +if [ $# -eq 2 ] && ( [ "$1" = "install" ] || [ "$1" = "upgrade" ] ); then + if dpkg --compare-versions "$2" ge 2:1.2-2.2 && \ + dpkg --compare-versions "$2" le 2:1.3-4 ; then + rm -f /etc/X11/fonts/X11R7/Type1/xfonts-tipa.scale + fi +fi + +#DEBHELPER# Index: tipa-doc.doc-base.tipa-vowel =================================================================== --- tipa-doc.doc-base.tipa-vowel (.../2:1.3-4/debian) (revision 0) +++ tipa-doc.doc-base.tipa-vowel (.../2:1.3-5/debian) (revision 542) @@ -0,0 +1,10 @@ +Document: tipa-vowel +Title: TIPA Vowels +Author: Fukui Rei +Abstract: TIPA is a system for processing IPA (International Phonetic + Alphabet) symbols in LaTeX. Options and commands for typesetting + phonetic symbols for vowels are explained in this manual. +Section: Apps/Text + +Format: DVI +Files: /usr/share/doc/tipa-doc/vowel.dvi.gz Property changes on: . ___________________________________________________________________ Name: svn:ignore - patched files *.debhelper tipa *.substvars xfonts-tipa + patched files *.debhelper tipa *.substvars xfonts-tipa tipa-doc