--- dict-jargon-4.4.7.orig/debian/watch +++ dict-jargon-4.4.7/debian/watch @@ -0,0 +1,13 @@ +# Jargon masters should always be downloaded from: +# http://catb.org/jargon/jargsrc.tar.gz +# +# We will track the version number from the html version and then, using +# downloadurlmangle option from uscan, we will download jargsrc.tar.gz and +# will save it as jargon-(.*).tar.gz +# +# Source should be repacked as we just need three files (~800K of 6M) from +# the dowloaded file (see debian/jargon2dict.sh for details on needed files) +# +version=3 +opts=downloadurlmangle=s/jargon-(.*)\.tar\.gz/jargsrc\.tar\.gz/ \ +http://catb.org/jargon/download.html jargon-(.*)\.tar\.gz --- dict-jargon-4.4.7.orig/debian/copyright +++ dict-jargon-4.4.7/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by: + + Ruben Molina on Fri, 09 Jan 2009 17:06:18 -0500 + +It was downloaded from: + + http://catb.org/jargon/jargsrc.tar.gz + +Upstream Author: + + Eric S. Raymond + +Copyright: + + The Jargon File is in the public domain. + +License: + + This document (the Jargon File) is in the public domain, to be freely + used, shared, and modified. There are (by intention) no legal restraints + on what you can do with it, but there are traditions about its proper use + to which many hackers are quite strongly attached. Please extend the + courtesy of proper citation when you quote the File, ideally with a + version number, as it will change and grow over time. (Examples of + appropriate citation form: "Jargon File 4.4.7" or "The on-line hacker + Jargon File, version 4.4.7, 29 Dec 2003".) + +The Debian packaging is: + + Copyright (C) 2009, Ruben Molina + Copyright (C) 1999,2001,2005 Paul Martin + +and is licensed under the GPL. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL-3'. --- dict-jargon-4.4.7.orig/debian/postinst +++ dict-jargon-4.4.7/debian/postinst @@ -0,0 +1,48 @@ +#!/bin/sh +# postinst script for dict-jargon +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + if [ -x /usr/sbin/dictdconfig ]; then dictdconfig -w ; fi + if [ -x /etc/init.d/dictd ]; then + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d dictd restart || exit $? + else + /etc/init.d/dictd restart || exit $? + fi + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + exit 0; + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- dict-jargon-4.4.7.orig/debian/jargon2dict.sh +++ dict-jargon-4.4.7/debian/jargon2dict.sh @@ -0,0 +1,83 @@ +#!/bin/sh +# Copyright (C) 2009 Ruben Molina +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this package; 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 General +# Public License can be found in `/usr/share/common-licenses/GPL'. + + +# The *.orig.tar.gz was created with 3 files from jargsrc.tar.gz +# wget http://catb.org/~esr/jargon/jargsrc.tar.gz +# tar zxvf jargsrc.tar.gz jargon.xml jargon.xsl jargon-text.xsl +# chmod 644 jargon.xml jargon.xsl jargon-text.xsl + + +# 'xml-->html-->txt' conversion extracted from jargon-text Debian package, +# Copyright 1999,2001,2005 Paul Martin and distributed under +# the GNU General Public Licence GPL (v2 or later). + +echo " [+] generating XML for web target" + # esr wrote xmlif, but jargon.xml uses the old syntax + PERLOPTS='s/<\?(if|else|fi)\b/ jargon-web.xml + +echo " [+] converting XML to HTML" + xmlto -m jargon-text.xsl html-nochunks jargon-web.xml 2> /dev/null + +echo " [+] fixing apostrophes" + # Change acute accents to apostrophes. iso_8859-15 shows them badly + sed -i "s/\o264/'/" jargon-web.html + +echo " [+] dumping plain-text version" + W3MOPTS="-dump" + w3m $W3MOPTS jargon-web.html > jargon.txt + + +extract() { # usage: extract 'first string' 'second string' +# returns: lines between the first occurrences of both strings on jargon.txt +# "first string" line *included* and "second string" line *excluded* +F='jargon.txt' +N1=$(grep --line-number --max-count=1 "$1" $F | cut --delimiter=':' --fields=1) +N2=$(grep --line-number --max-count=1 "$2" $F | cut --delimiter=':' --fields=1) +sed --quiet --expression="$N1,$((N2-1))p" 'jargon.txt' +} + +echo " [+] extracting chronology table to be used as ChangeLog" + extract 'Here is a chronology' 'Version numbering' > 'ChangeLog' + +echo " [+] extracting public domain notice to be included on dict headers" + extract 'public domain' 'common heritage' > 'extracted' + +echo " [+] extracting headwords/definitions" +#extract '^:(TM):' '^:zorkmid:' >> 'extracted' +extract '^:(TM):' 'Part.III' >> 'extracted' + +echo " [+] removing references to 'Crunchly saga' cartoons" + C=$(grep 'Crunchly saga' extracted | wc -l) + for i in $(seq $C) + do + N3=$(grep 'Crunchly saga' --max-count=1 --line-number 'extracted' | cut --delimiter=':' --fields=1) + sed --expression="$N3,$((N3+2))d" 'extracted' > 'cleaned' + mv 'cleaned' 'extracted' + done + +echo " [+] formatting dictionary database" + dictfmt -j -s "The Jargon File (version 4.4.7, 29 Dec 2003)" \ + -u "http://catb.org/~esr/jargon/jargsrc.tar.gz" \ + --utf8 --allchars --columns 79 'jargon' < 'extracted' + +echo " [+] compressing dictionary" + dictzip 'jargon.dict' --- dict-jargon-4.4.7.orig/debian/dirs +++ dict-jargon-4.4.7/debian/dirs @@ -0,0 +1 @@ +usr/share/dictd --- dict-jargon-4.4.7.orig/debian/control +++ dict-jargon-4.4.7/debian/control @@ -0,0 +1,24 @@ +Source: dict-jargon +Section: text +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Ruben Molina +Build-Depends: quilt, debhelper (>= 7) +Build-Depends-Indep: xmlto, w3m, dictfmt, dictzip +Standards-Version: 3.8.2 +Homepage: http://catb.org/jargon/ + +Package: dict-jargon +Architecture: all +Depends: dictd | dict-server +Suggests: dict +Provides: dictd-dictionary +Description: dict package for The Jargon Lexicon + The Jargon File is a comprehensive compendium of hacker slang + illuminating many aspects of hackish tradition, folklore, and humor. + . + This package includes "The Jargon Lexicon" (main section of The Jargon + File, version 4.4.7, 29 Dec 2003), formatted for use by the dictionary + server in the dictd package. + . + The complete Jargon File is available in the jargon-text package. --- dict-jargon-4.4.7.orig/debian/changelog +++ dict-jargon-4.4.7/debian/changelog @@ -0,0 +1,342 @@ +dict-jargon (4.4.7-2ubuntu1) lucid; urgency=low + + * Replace elinks with w3m. + + -- Mathias Gug Thu, 28 Jan 2010 18:14:54 -0500 + +dict-jargon (4.4.7-2) unstable; urgency=low + + * Add dict-server to Depends (Closes: #533717) + * Standards-Version bumped to 3.8.2 (no changes) + * Add versioned reference to GPL in debian/copyright + + -- Ruben Molina Sat, 20 Jun 2009 19:03:13 -0500 + +dict-jargon (4.4.7-1) unstable; urgency=low + + * New maintainer (Closes: #436120) + * New upstream version. Sources repackaged because only three files + are needed (817K of 6,0M) + * Standards-Version bumped to 3.8.0 + * Added Homepage field to debian/control + * Added debian/watch file + * Debian package reworked. See jargon2dict.sh for the new parsing process + * Removed Build-Depends-Indep on docbook-xml, konwert, gawk, python, lynx + and html2text + * Added Build-Depends-Indep on elinks-lite + * Added Build-Depends on quilt and debhelper + * Added Suggests on dict + * Removed Build-Conflicts-Indep on w3m (The problem reported on changelog + entry 4.4.4-6 is no longer reproducible) + * Solved some syntax errors on debian/changelog + * Removed duplicated entries from debian/changelog + * apologia and other sections of the Jargon File are no longer included. + This sections are available in jargon-text package + * Upstream ChangeLog is now generated using versions table from chapter 3, + and not the full chapter + * Added DEBHELPER token to postinst and postrm scripts + + -- Ruben Molina Thu, 29 Jan 2009 21:47:29 -0500 + +dict-jargon (4.4.4-7) unstable; urgency=low + + * QA Upload + + change maintainer to QA group + + acknowledge NMUs. Closes: #348263, #423755, #440501, + #463777, #470351. + * Provide dictd-dictionary. Closes: #466216. + + -- Frank Lichtenheld Thu, 24 Apr 2008 04:43:00 +0200 + +dict-jargon (4.4.4-6.2) unstable; urgency=low + + * Non-maintainer upload to fix RC bugs. + * Change invocation by "xmlto" of "jargon-text.xsl" in upstream + Makefile from "-m" to "-x". (Closes: #470351) + * Use "--columns 79" in invocation of dictfmt by debian/rules + since upstream Makefile uses 79 as output width. (Closes: #463777) + + -- Kapil Hari Paranjape Sat, 12 Apr 2008 05:46:31 +0530 + +dict-jargon (4.4.4-6.1) unstable; urgency=low + + * Non-maintainer upload to fix RC bugs. + * Switch to using invoke-rc.d in postinst and postrm. (Closes: #348263). + * Updated debian/jargon-patch using Cyril Brulebois's file to fix FTBFS. + (Closes: #423755, #440501). + + -- Lucas Nussbaum Sun, 30 Sep 2007 13:44:56 +0200 + +dict-jargon (4.4.4-6) unstable; urgency=high + + * Release Team - This upload fixes three FTBFS bugs, although only one was + given an RC severity by the submitter, and makes no other changes. + + * Apparently xmlto calls w3m or lynx to convert html to text, but I can't + find the call. (I don't know why neither one is a Build-Depend.) If w3m + is installed, it is called, but creates an error. Since I can't locate + the error, I have listed w3m as Build-Conflicts-Indep. This solves part + of Bug #302578, the rest of this bug is fixed by the followng paragraph. + + * Place single quotes around the version number in a test in jargon.xsl, as + suggested by Mike Hommey . Closes: #296957, 302578 + + * Although it isn't well documented, the output of + "/usr/share/konwert/filters/iso1-ascii" varies depending on the locale of + the system. In some cases this output may contain 8-bit characters, which + makes the patches in the rules file fail. To overcome this I have + inserted "LC_ALL=C" before the konwert calls, so the output should be the + same on any build machine. Closes: #274689 + + * For reasons that aren't clear to me, html2text in sid procuces an + "apologia" that is radically different and formatted much uglier than the + same version in sarge. I have included the formatted version of this file + from previous releases, and commented out the rules line that produces + this file. + + -- Robert D. Hilliard Fri, 22 Apr 2005 12:06:09 -0400 + +dict-jargon (4.4.4-5) unstable; urgency=high + + * Patched jargon.xml to make it validate properly, and to work with + current version of xmlif, with invaluable help from Neil Roeth + . Thanks, Neill. Closes: #229435. + + -- Robert D. Hilliard Mon, 22 Mar 2004 14:02:02 -0500 + + +dict-jargon (4.4.4-4) unstable; urgency=high + + * Added lynx to Build-Depends-Indep:, and eliminated need for nbreak + binary Closes: #214997 (really this time) + + * Commented out the Makefile target names.xml, and removed binary nbreak. + (According to the Makefile, names.xml is "needed for the book version", + so it is not needed for this package.) + + -- Robert D. Hilliard Sat, 01 Nov 2003 10:13:03 -0500 + + +dict-jargon (4.4.4-3) unstable; urgency=high + + * Added gawk and python to Build-Depends-Indep: Closes: #214997 + + -- Robert D. Hilliard Fri, 10 Oct 2003 11:20:46 -0400 + + +dict-jargon (4.4.4-2) unstable; urgency=low + + * Patched jargsrc-4.4.4/Makefile to call ./getversion and + ./name-extract. (Upstream assumes $PATH contains ".".) + Closes: 210687 + + -- Robert D. Hilliard Sun, 14 Sep 2003 13:36:34 -0400 + + +dict-jargon (4.4.4-1) unstable; urgency=low + + * New upstream version. The flat text file is no longer distributed by + upstream. It is now distributed as an HTML tarball and as a 6 MB + source tarball, that unpacks to 18 MB. This is a big hit on the + archive disk space! + + * Downloaded jargsrc.tar.gz and unpacked it in jargsrc-4.4.4/. Copied + tools nbreak, name-extract and getversion from jargsrc 4.4.1 (no + longer available on the jargon site - fortunately I had downloaded that + version when I was first wrestling with this new format) to + jargsrc-4.4.4. Created dict-jargon_4.4.4.orig.tar.gz. + + * Patched jargon.xml to point to + "/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd" instead of + "http://nwalsh.com/docbook/xml/4.1.2/db3xml.dtd" as recommended by + Neil Roeth . Since wraptext isn't + available, and it doesn't seem necessary, patched the Makefile + s/wraptext/cat/. + + * The Jargon File contains about 750 latin 1 8-bit characters. To avoid + displaying garbage on terminals that can't display latin 1 encodings, + the Jargon File is converted to 7-bit ASCII with konwert. + + * Added --allchars option to dictfmt invocation. This will cause + headwords including non-alphanumeric characters. + + -- Robert D. Hilliard Fri, 12 Sep 2003 19:06:36 -0400 + + +dict-jargon (4.3.3-1) unstable; urgency=low + + * New upstream version. + + * Downloaded Jargon 4.3.3 from http://www.jargon.org, and created + dict-jargon_4.3.3.orig.tar.gz. + + * Removed /usr/doc symlinks fro maintainer scripts. + + * Changelog for 4.3.1-1 gives wrong version for download and + .orig.tar.gz. (s/4.2.3/4.3.1/) + + -- Robert D. Hilliard Tue, 1 Oct 2002 13:26:08 -0400 + + +dict-jargon (4.3.1-1) unstable; urgency=low + + * New upstream version. closes: #143667 + + * Downloaded Jargon 4.2.3 from http://www.jargon.org, and created + dict-jargon_4.2.3.orig.tar.gz. + + * (4.3.0-1) fixed syntax error (omitted comma) in Build-Depends. This + was omitted from the changelog. + + * (4.3.0-1) Downloaded Jargon 4.3.0 from http://www.jargon.org, and created + dict-jargon_4.3.0.orig.tar.gz. Original changelog incorrectly used + earlier version. + + * Just as with the previous version, the last six lines of the + bibliography were missing from the download. Replaced them from the + previous version. + + -- Robert D. Hilliard Sun, 21 Apr 2002 16:50:26 -0400 + + +dict-jargon (4.3.0-1) unstable; urgency=low + + * New upstream version + Closes: #96043 + + * Downloaded Jargon 4.2.3 from http://www.jargon.org, and created + dict-jargon_4.2.3.orig.tar.gz. + + * The last six lines of the bibliography were missing from the + download. Replaced them from the previous version. + + -- Robert D. Hilliard Wed, 23 May 2001 15:56:11 -0400 + + +dict-jargon (4.2.3-1) unstable; urgency=low + + * New upstream version + + * Downloaded Jargon 4.2.3 from http://www.jargon.org, and created + dict-jargon_4.2.3.orig.tar.gz. + + * Changed structure of source package to use /usr/bin/dictfmt + instead of building dictfmt while building dict-jargon. + + * Removed bibliography titles from the index and cleaned up + redundant punctuation in bibliography entries. + + * There is a bug in dictfmt, that I haven't solved yet that + produces a duplicate index entry for the last headword indexed. + I have used a brute-force kluge to fix the index in this package. + + -- Robert D. Hilliard Thu, 18 Jan 2001 17:36:11 -0500 + + +dict-jargon (4.2.2-1) unstable; urgency=low + + * New upstrem version + Closes: #75273 + + * Copied build directory dict-jargon-4.2.0 to new directory + dict-jargon-4.2.2; replaced data/jargon 4.20 with data/jargon 4.22, + and created dict-jargon_4.2.0.orig.tar.gz from dict-jargon-4.2.0 + directory. + + -- Bob Hilliard Tue, 24 Oct 2000 19:51:31 -0400 + + +dict-jargon (4.2.0-1) unstable; urgency=low + + * Forked dict-jargon from dict-misc to incorporate new upstram version + of the Jargon File. Since this package inherits Makefile.in from + jargon in dict-misc-1.5, retained the old changelog here. + Closes: #60293 + + * Created README.debian and added it to rules + + * Copied build directory dict-misc-1.5 to new directory + dict-jargon-4.2.0; ran make distclean; removed all references to easton + and hitchcock from Makefile.in and removed their data files from + /data. Replaced jarg400.txt in /data with jargon-4.2.0. Updated jargon + version, date and url in Makefile.in. Created + dict-jargon_4.2.0.orig.tar.gz from dict-jargon-4.2.0 directory. + Added sed command to fix source format to Makefile.in and created + debian/sedfile. + + * Copied ../debian from dict-misc-1.5 to dict-jargon-4.2.0 directory. + Deleted files specific to easton and hitchcock from debian directory. + Modified rules file to make dict-jargon only. + + -- Bob Hilliard Wed, 5 Apr 2000 19:01:54 -0400 + + +# Old (dict-misc) changelog attached for reference: + +dict-misc (1.5-2) unstable; urgency=low + + * Added a check for existence of executable /etc/init.d/dictd + before calling it in postinst and prerm scripts for dict-[jargon, + hitchcock, easton] + Closes: #49255, #49281 + + * Corrected typo in changelog 1.5-1 for name of package in /usr/doc + symlinks. + + -- Bob Hilliard Fri, 5 Nov 1999 19:57:48 -0500 + + +dict-misc (1.5-1) unstable; urgency=low + + * New upstream version + + * Modified Makefile.in: + Made same modifications as 1.4-1 + Commented out elements and world95 from DATABASES= and DATAINDICES= + Commented out elements and world95 from format and install targets + Removed data files for dictionaries being forked. + + * Made new .orig.tar.gz after above changes to reduce the size of + the source package and the debian diff. + + * Update to Standards version 3.0.1.1: + Modified for FHS - /usr/share{doc, man} + Added scripts to provide and remove symlink /usr/doc/dict-wn + to /usr/share/doc/dict-wn and to reconfigure and restart dictd + when this package is installed or removed. + Corrected location of GPL license + + * Changed Recommends: to Suggests: due to the evil way dselect + treats recomends. + + * forked dict-elements and dict-world95 for separate release + (dict-foldoc was forked and released separately at 1.4-1 + + * Updated Jay Kominek's address (dict-elements author) + + -- Bob Hilliard Sat, 23 Oct 1999 17:26:19 -0400 + + +dict-misc (1.4-2) unstable; urgency=low + + * Changed Architecture from any to all + + -- Bob Hilliard Sat, 20 Mar 1999 20:01:26 -0500 + +dict-misc (1.4-1) unstable; urgency=low + + * Initial release + + * Modified Makefile.in: + Removed configure from the files removed by the distclean target + Commented out the "all" target, since no making is done in $subdirs + Commented out "install -m 755 -d $(dictdir)" since debian\rules makes + this directory. + Added -rm -f *.dict* *.index the clean target (removes *.dict.dz and + *.index which cause dpkg-buildpackage errors) + Commented out subdirs loop in distclean + Commented out foldoc from DATABASES= and DATAINDICES= + Commented out foldoc format and install targets + Commented out foldoc in install target + + -- Bob Hilliard Mon, 20 Apr 1998 22:17:03 -0400 --- dict-jargon-4.4.7.orig/debian/postrm +++ dict-jargon-4.4.7/debian/postrm @@ -0,0 +1,49 @@ +#!/bin/sh +# postrm script for dict-jargon +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove) + if [ -x /usr/sbin/dictdconfig ]; then dictdconfig -w ; fi + if [ -x /etc/init.d/dictd ]; then + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d dictd restart || exit $? + else + /etc/init.d/dictd restart || exit $? + fi + fi + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + exit 0 + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- dict-jargon-4.4.7.orig/debian/compat +++ dict-jargon-4.4.7/debian/compat @@ -0,0 +1 @@ +7 --- dict-jargon-4.4.7.orig/debian/rules +++ dict-jargon-4.4.7/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +DICTDIR=$(CURDIR)/debian/dict-jargon/usr/share/dictd + +include /usr/share/quilt/quilt.make + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp $(QUILT_STAMPFN) + dh_testdir + chmod +x ./debian/jargon2dict.sh + ./debian/jargon2dict.sh + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + rm -f jargon-web.html jargon-web.xml + rm -f jargon.txt extracted cleaned ChangeLog + rm -f jargon.index jargon.dict jargon.dict.dz + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + install -p -o root -g root -m 644 $(CURDIR)/jargon.dict.dz $(DICTDIR) + install -p -o root -g root -m 644 $(CURDIR)/jargon.index $(DICTDIR) + +binary-indep: install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_install + dh_compress + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- dict-jargon-4.4.7.orig/debian/README.Debian +++ dict-jargon-4.4.7/debian/README.Debian @@ -0,0 +1,16 @@ +dict-jargon for Debian +---------------------- + +The Jargon File includes three sections: Introduction, The Jargon +Lexicon, and Appendices. + +Just 'The Jargon Lexicon' is included in the Debian dict-jargon package. +The references to the Crunchly saga cartoons has been deleted as the +cartoons are not included. No other changes to this section have been made, +except for formatting. + +If you are interested on other sections, see the jargon-text package. + +The source was extracted from: http://catb.org/jargon/jargsrc.tar.gz + + -- Ruben Molina , Tue, 13 Jan 2009 22:51:03 -0500 --- dict-jargon-4.4.7.orig/debian/patches/series +++ dict-jargon-4.4.7/debian/patches/series @@ -0,0 +1 @@ +xsl.patch --- dict-jargon-4.4.7.orig/debian/patches/xsl.patch +++ dict-jargon-4.4.7/debian/patches/xsl.patch @@ -0,0 +1,25 @@ +# jargon.xsl: remove an import (missing/unneeded) +# jargon-text.xsl: disable the ToC generation +--- dict-jargon-4.4.7.orig/jargon.xsl ++++ dict-jargon-4.4.7/jargon.xsl +@@ -2,7 +2,6 @@ + + +- + + + ../graphics/ +--- dict-jargon-4.4.7.orig/jargon-text.xsl ++++ dict-jargon-4.4.7/jargon-text.xsl +@@ -6,8 +6,8 @@ + + + +- +- ++ ++ + + +