--- swi-prolog-doc-5.6.59.orig/debian/swi-prolog-doc.doc-base.1 +++ swi-prolog-doc-5.6.59/debian/swi-prolog-doc.doc-base.1 @@ -0,0 +1,14 @@ +Document: swi-prolog-doc +Title: SWI-Prolog +Author: Jan Wielmaker +Abstract: A description of SWI-Prolog, a Prolog implementation based on a + subset of the WAM (Warren Abstract Machine). It is an open Prolog + environment with a powerful interface to C. +Section: Programming + +Format: HTML +Index: /usr/share/doc/swi-prolog-doc/Manual/index.html +Files: /usr/share/doc/swi-prolog-doc/Manual/*.html + +Format: PDF +Files: /usr/share/doc/swi-prolog-doc/refman.pdf --- swi-prolog-doc-5.6.59.orig/debian/changelog +++ swi-prolog-doc-5.6.59/debian/changelog @@ -0,0 +1,82 @@ +swi-prolog-doc (5.6.59-1) unstable; urgency=low + + * New upstream release. + * Move to debhelper 7-style debian/rules. + * Add ${misc:Depends} to Depends of swi-prolog-doc. + * New maintainer email address. + * Update Git repository URLs. + * Bump Standards-Version to 3.8.1. + + -- Chris Lamb Sat, 14 Mar 2009 01:56:46 +0000 + +swi-prolog-doc (5.6.58-1) unstable; urgency=low + + * New upstream release. + * debian/control: + - Bump Standards Version to 3.8.0. + - Rename Xs-Vcs-{Git,Browser} to Vcs-{Git,Browser}. + * debian/rules: + - Remove unused "configure" and add "get-orig-source" to .PHONY. + - Tidy get-orig-source target. + * Fix 'doc-base-unknown-section' Lintian warnings. + * Reformat debian/copyright to ensure saner line lengths. + * Remove useless debian/postinst and debian/prerm files. + + -- Chris Lamb Tue, 22 Jul 2008 21:58:16 +0100 + +swi-prolog-doc (5.6.50-1) unstable; urgency=low + + * New upstream release. + * Do not compress the PDFs - it is inconvenient and does not save much space. + * Add get-orig-source target to debian/rules. + * Update upstream location in debian/copyright. + * Rename Vcs-Browse -> Vcs-Browser. + + -- Chris Lamb Mon, 11 Feb 2008 12:56:04 +0000 + +swi-prolog-doc (5.6.46-1) unstable; urgency=low + + * New upstream release. + * New maintainer (Closes: #454148) + * Update Standards-Version to 3.7.3 + * Use Homepage: field. + * Add XS-Vcs-* fields. + * Use debian/compat over exporting DH_COMPAT. + * Bump debhelper compatibility to 5. + + -- Chris Lamb Sat, 08 Dec 2007 13:56:50 +0000 + +swi-prolog-doc (5.6.17-1) unstable; urgency=low + + *New Upstream Release + *New Maintainer + + + -- Gerardo Curiel Sun, 13 Aug 2006 05:09:48 -0400 + +swi-prolog-doc (5.2.2-1) unstable; urgency=low + + * New upstream version. + * Closes: #139111 typo + + -- Michael Piefel Mon, 23 Jun 2003 15:35:12 +0200 + +swi-prolog-doc (5.0.10-1) unstable; urgency=low + + * New upstream version. This manual is already about version 5.1.4, due to + be released soon as 5.2. + + -- Michael Piefel Fri, 27 Dec 2002 16:54:30 +0100 + +swi-prolog-doc (5.0.0-1) unstable; urgency=low + + * New upstream version. Includes XPCE manual. + + -- Michael Piefel Tue, 12 Feb 2002 12:24:43 +0100 + +swi-prolog-doc (4.0.11-1) unstable; urgency=low + + * Initial Release. + + -- Michael Piefel Mon, 10 Dec 2001 16:21:48 +0100 + --- swi-prolog-doc-5.6.59.orig/debian/compat +++ swi-prolog-doc-5.6.59/debian/compat @@ -0,0 +1 @@ +7 --- swi-prolog-doc-5.6.59.orig/debian/rules +++ swi-prolog-doc-5.6.59/debian/rules @@ -0,0 +1,34 @@ +#!/usr/bin/make -f + +get-orig-source: + ORIG=swi-prolog-doc_`dpkg-parsechangelog | awk '/Version:/ {print $$2}' | sed 's/-[0-9]*$\//g'`.orig.tar.gz; \ + set -e; DIR=swi-prolog-doc; mkdir $$DIR; cd $$DIR; \ + for URL in \ + SWI-Prolog/refman/refman.pdf \ + SWI-Prolog/refman/HTMLmanual.tar.gz \ + xpce/doc/userguide/userguide.pdf \ + xpce/doc/userguide/userguide.html.tgz; \ + do \ + wget http://gollem.science.uva.nl/cgi-bin/nph-download/$$URL; \ + done; cd ..; \ + tar cvvfz $$ORIG $$DIR; \ + rm -rf $$DIR; \ + echo "Upstream tarball is: $$ORIG" + +%: + dh $@ + +override_dh_install: + # SWI-prolog manual + cp refman.pdf debian/swi-prolog-doc/usr/share/doc/swi-prolog-doc + tar xzf HTMLmanual.tar.gz + mv Manual debian/swi-prolog-doc/usr/share/doc/swi-prolog-doc + + # XPCE manual + cp userguide.pdf debian/swi-prolog-doc/usr/share/doc/swi-prolog-doc + tar xzf userguide.html.tgz + mv UserGuide debian/swi-prolog-doc/usr/share/doc/swi-prolog-doc + dh_install + +override_dh_compress: + dh_compress -X.pdf --- swi-prolog-doc-5.6.59.orig/debian/watch +++ swi-prolog-doc-5.6.59/debian/watch @@ -0,0 +1,3 @@ +# Upstream do not currently version their documentation, so I provide snapshots +# that correspond approximately with releases of swi-prolog. Thus, a debian/watch +# entry cannot exist for this package at this time. --- swi-prolog-doc-5.6.59.orig/debian/control +++ swi-prolog-doc-5.6.59/debian/control @@ -0,0 +1,20 @@ +Source: swi-prolog-doc +Section: doc +Priority: optional +Maintainer: Chris Lamb +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.1 +Vcs-Git: git://git.chris-lamb.co.uk/debian/pkg-swi-prolog-doc.git +Vcs-Browser: http://git.chris-lamb.co.uk/?p=debian/pkg-swi-prolog-doc.git +Homepage: http://www.swi-prolog.org + +Package: swi-prolog-doc +Architecture: all +Depends: ${misc:Depends} +Description: Documentation for SWI-Prolog interpreter and XPCE + SWI-Prolog is a Prolog implementation based on a subset of the WAM. + It is accompanied by XPCE, a symbolic programming environment for + user interfaces. + . + This package contains the documentation in PDF and HTML format for + SWI-Prolog and XPCE/Prolog. --- swi-prolog-doc-5.6.59.orig/debian/swi-prolog-doc.doc-base.2 +++ swi-prolog-doc-5.6.59/debian/swi-prolog-doc.doc-base.2 @@ -0,0 +1,15 @@ +Document: swi-prolog-xpce-doc +Title: XPCE/Prolog +Author: Jan Wielmaker +Abstract: A description of XPCE, an object-oriented symbolic programming + environment for user interfaces. XPCE was designed to be language-independent. + In practice it has gained popularity with Prolog and many useful libraries are + now available for Prolog only. Therefore we will often talk about XPCE/Prolog. +Section: Programming + +Format: HTML +Index: /usr/share/doc/swi-prolog-doc/UserGuide/index.html +Files: /usr/share/doc/swi-prolog-doc/UserGuide/*.html + +Format: PDF +Files: /usr/share/doc/swi-prolog-doc/userguide.pdf --- swi-prolog-doc-5.6.59.orig/debian/swi-prolog-doc.dirs +++ swi-prolog-doc-5.6.59/debian/swi-prolog-doc.dirs @@ -0,0 +1 @@ +usr/share/doc/swi-prolog-doc --- swi-prolog-doc-5.6.59.orig/debian/copyright +++ swi-prolog-doc-5.6.59/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Michael Piefel on +Mon, 10 Dec 2001 16:21:48 +0100. + +It was downloaded from: + http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/refman/refman.pdf + http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/refman/HTMLmanual.tar.gz + http://gollem.science.uva.nl/cgi-bin/nph-download/xpce/doc/userguide/userguide.pdf + http://gollem.science.uva.nl/cgi-bin/nph-download/xpce/doc/userguide/userguide.html.tgz + +Upstream Author: Jan Wielemaker + +License: + Copyright (C) 1990-2008 University of Amsterdam. + + Released under the terms of the GNU GPL. + +On Debian systems, the full text of the GNU General Public License may be +obtained from `/usr/share/common-licenses/GPL'.