--- python-pyrss2gen-1.0.0.orig/debian/copyright +++ python-pyrss2gen-1.0.0/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Matthijs Mohlmann +on Thu, 18 Sep 2005 17:12:28 +0200. + +The original source can always be found at: + http://www.dalkescientific.com/Python + +Copyright (c) 2003, Dalke Scientific Software, LLC + +License: + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the Dalke Scientific Softare, LLC, Andrew + Dalke, nor the names of its contributors may be used to endorse or + promote products derived from this software without specific prior + written permission. + +On Debian systems, the complete text of the BSD License can be found +in `/usr/share/common-licenses/BSD'. --- python-pyrss2gen-1.0.0.orig/debian/changelog +++ python-pyrss2gen-1.0.0/debian/changelog @@ -0,0 +1,52 @@ +python-pyrss2gen (1.0.0-6) unstable; urgency=high + + * Add correct check for python versions. Fixes RC (Closes: #496611) + + -- Matthijs Mohlmann Tue, 02 Sep 2008 23:40:06 +0200 + +python-pyrss2gen (1.0.0-5) unstable; urgency=low + + * Add check for python versions in debian/rules. (Closes: #485052) + Thanks to Jan Hülsbergen + * Bump Standards-Version to 3.8.0 + + -- Matthijs Mohlmann Sat, 02 Aug 2008 13:48:44 +0200 + +python-pyrss2gen (1.0.0-4) unstable; urgency=low + + * Bump Standards-Version to 3.7.3.0 + * Make lintian happy + + -- Matthijs Mohlmann Tue, 25 Mar 2008 21:05:56 +0100 + +python-pyrss2gen (1.0.0-3) unstable; urgency=low + + * Acknowledge NMU. (Closes: #403348) + + -- Matthijs Mohlmann Sun, 17 Dec 2006 09:50:02 +0100 + +python-pyrss2gen (1.0.0-2.1) unstable; urgency=low + + * NMU. + * Don't depend on explicit python versions in the package build. + + -- Matthias Klose Sat, 16 Dec 2006 14:24:15 +0000 + +python-pyrss2gen (1.0.0-2) unstable; urgency=low + + * Adopt new python policy. (Closes: #373344) + * Bumped Standerds-Version to 3.7.2.0. + + -- Matthijs Mohlmann Wed, 14 Jun 2006 18:16:23 +0200 + +python-pyrss2gen (1.0.0-1) unstable; urgency=low + + * New upstream release. + + -- Matthijs Mohlmann Sat, 12 Nov 2005 13:41:09 +0100 + +python-pyrss2gen (0.1.1-1) unstable; urgency=low + + * Initial release. (Closes: #329255) + + -- Matthijs Mohlmann Tue, 20 Sep 2005 22:34:27 +0200 --- python-pyrss2gen-1.0.0.orig/debian/pycompat +++ python-pyrss2gen-1.0.0/debian/pycompat @@ -0,0 +1 @@ +2 --- python-pyrss2gen-1.0.0.orig/debian/compat +++ python-pyrss2gen-1.0.0/debian/compat @@ -0,0 +1 @@ +6 --- python-pyrss2gen-1.0.0.orig/debian/control +++ python-pyrss2gen-1.0.0/debian/control @@ -0,0 +1,19 @@ +Source: python-pyrss2gen +Section: python +Priority: optional +Maintainer: Matthijs Mohlmann +Build-Depends-Indep: python-central (>= 0.5) +Build-Depends: debhelper (>= 6.0.0), python-all-dev | python-dev | python-all | python | python2.4 | python2.4-dev | python2.5 | python2.5-dev +Standards-Version: 3.8.0 +XS-Python-Version: >= 2.3 + +Package: python-pyrss2gen +Architecture: all +Depends: ${python:Depends} +Provides: ${python:Provides} +Replaces: python2.3-pyrss2gen (<< 1.0.0-2), python2.4-pyrss2gen (<< 1.0.0-2) +Conflicts: python2.3-pyrss2gen (<< 1.0.0-2), python2.4-pyrss2gen (<< 1.0.0-2) +XB-Python-Version: ${python:Versions} +Description: A Python interface for generating RSS 2.0 feeds + PyRSS2Gen is the interface to RSS 2.0 feeds. PyRSS2Gen builds the feed up by + using a XML generator. --- python-pyrss2gen-1.0.0.orig/debian/rules +++ python-pyrss2gen-1.0.0/debian/rules @@ -0,0 +1,51 @@ +#!/usr/bin/make -f +# +# python-pyrss2gen + +# Verbose mode +#export DH_VERBOSE=1 + +# Supported python versions +PYTHON := /usr/bin/python +PYVERS := $(shell pyversions -r debian/control) + +clean: + dh_testdir + dh_testroot + + set -e; \ + for python in $(PYVERS); do \ + [ -x "/usr/bin/$$python" ] && $$python setup.py clean || true; \ + done + find . -name "*.py[co]" -exec rm -f {} \; + rm -rf build-stamp build + + dh_clean + +build: build-stamp +build-stamp: + dh_testdir + dh_installdirs + + # Install python module. + for python in $(PYVERS); do \ + [ -x "/usr/bin/$$python" ] && $$python setup.py install \ + --root `pwd`/debian/python-pyrss2gen || true; \ + done + + touch build-stamp + +binary-arch: +binary-indep: build + dh_installdocs -A README + dh_installchangelogs + dh_compress + dh_fixperms + dh_pycentral + dh_gencontrol + dh_installdeb + dh_md5sums + dh_builddeb + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary