--- jaxml-3.01.orig/debian/compat +++ jaxml-3.01/debian/compat @@ -0,0 +1 @@ +5 --- jaxml-3.01.orig/debian/changelog +++ jaxml-3.01/debian/changelog @@ -0,0 +1,88 @@ +jaxml (3.01-3) unstable; urgency=medium + + * QA upload. + * Actually conform to new Python policy. Closes: #381655. + - Build depend on debhelper (>= 5.0.37.2). + - Build depend on python-support (>= 0.3). + - Build depend on python rather than python-all-dev since we don't + compile extensions. + - Replace `Provides: ${pyhon:Provides}' (sic) with `Provides: jaxml'. + - debian/postinst, debian/postrm: Remove old compilation code. + * debian/rules: Restore `dh_compress -X.py' to keep test.py executable. + * Change section to python in accordance with the override file. + + -- Matej Vela Sun, 6 Aug 2006 23:25:00 +0200 + +jaxml (3.01-2) unstable; urgency=low + + * QA Upload. + * Update package to the new python policy (and even the previous one). + (Closes: #380848) + * Switch to cdbs, as it eases the maintenance of such tools, and uses the + builtin setup.py (instead of custom crude hack). + * Fix FSF address in debian/copyright. + + -- Pierre Habouzit Tue, 1 Aug 2006 21:59:33 +0200 + +jaxml (3.01-1) unstable; urgency=low + + * QA upload. + * Package is orphaned (see #302299); set maintainer to Debian QA Group. + * Acknowledge NMU by Matthias Klose. Closes: #206634. + * Move test.py and template.htt to examples. + * Conforms to Standards version 3.6.1. + + -- Matej Vela Tue, 26 Apr 2005 12:05:25 +0200 + +jaxml (3.01-0.1) unstable; urgency=low + + * NMU + * New upstream version. + * Add support for python2.3 (closes: #206634). + + -- Matthias Klose Tue, 26 Aug 2003 08:29:06 +0200 + +jaxml (3.0-2) unstable; urgency=low + + * Really remove python 1.5 install (closes: #188069, #188074) + + -- JP Sugarbroad Mon, 07 Apr 2003 19:47:22 -0500 + +jaxml (3.0-1) unstable; urgency=low + + * New upstream release + * Remove python 1.5 install + + -- JP Sugarbroad Sat, 5 Apr 2003 12:48:40 -0600 + +jaxml (2.24-2) unstable; urgency=low + + * Fix postinst/prerm (closes: #161108) + + -- JP Sugarbroad Mon, 16 Sep 2002 17:23:29 -0500 + +jaxml (2.24-1) unstable; urgency=low + + * New upstream release + * Update to Standards-Version 3.5.7 + * Update to python 2.2 + * Add python to Build-Depends-Indep + + -- JP Sugarbroad Sat, 14 Sep 2002 16:05:08 -0500 + +jaxml (2.22-2) unstable; urgency=low + + * Integrate NMU changes (thanks Gregor) + * Remove Build-Depends (closes: #119207) + * Expand to more python versions (closes: #123910) + Note that it compiles the .py files at install time now. + + -- JP Sugarbroad Fri, 21 Dec 2001 17:23:01 -0600 + +jaxml (2.22-1) unstable; urgency=low + + * Initial Release + + -- JP Sugarbroad Sun, 13 May 2001 03:17:02 -0500 + +# vim:nosta: --- jaxml-3.01.orig/debian/control +++ jaxml-3.01/debian/control @@ -0,0 +1,17 @@ +Source: jaxml +Section: python +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.43), python +Build-Depends-Indep: python-support (>= 0.3) +Standards-Version: 3.7.2 + +Package: python-jaxml +Architecture: all +Depends: ${python:Depends} +Provides: jaxml +Replaces: jaxml +Conflicts: jaxml +Description: Python module for generating XML documents + jaxml is a python module that defines a class XML_document, which allows easy + and trouble-free generation of XML documents. --- jaxml-3.01.orig/debian/copyright +++ jaxml-3.01/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by JP Sugarbroad on +Sun, 13 May 2001 03:17:02 -0500. + +It was downloaded from http://www.librelogiciel.com/software/jaxml/action_Presentation + +Upstream Author: Jerome Alet + +Copyright: + + This package 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; version 2 dated June, 1991. + + This package 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'. --- jaxml-3.01.orig/debian/pycompat +++ jaxml-3.01/debian/pycompat @@ -0,0 +1 @@ +2 --- jaxml-3.01.orig/debian/docs +++ jaxml-3.01/debian/docs @@ -0,0 +1,3 @@ +CREDITS +NEWS +README --- jaxml-3.01.orig/debian/examples +++ jaxml-3.01/debian/examples @@ -0,0 +1 @@ +test/* --- jaxml-3.01.orig/debian/rules +++ jaxml-3.01/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM=pysupport +DEB_COMPRESS_EXCLUDE=.py + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +# vim:noet:nosta:nolist: