Source: feedgenerator Version: 1.7-1 Severity: wishlist Tags: patch User: [email protected] Usertags: patchme-python3
Hi, while trying to get pelican build with python3, I noticed that one of its dependencies, python-feedgenerator does not have a python3 version. Please find a patch attached that rectifies this situation. Thanks! cheers, josch
diff -Nru feedgenerator-1.7/debian/changelog feedgenerator-1.7/debian/changelog --- feedgenerator-1.7/debian/changelog 2013-09-10 16:17:09.000000000 +0200 +++ feedgenerator-1.7/debian/changelog 2015-06-06 07:49:01.000000000 +0200 @@ -1,3 +1,10 @@ +feedgenerator (1.7-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * add python3-feedgenerator for Python 3 support + + -- Johannes Schauer <[email protected]> Sat, 06 Jun 2015 07:48:48 +0200 + feedgenerator (1.7-1) unstable; urgency=low * Add Homepage to debian/control diff -Nru feedgenerator-1.7/debian/control feedgenerator-1.7/debian/control --- feedgenerator-1.7/debian/control 2013-09-10 16:17:09.000000000 +0200 +++ feedgenerator-1.7/debian/control 2015-06-06 07:59:44.000000000 +0200 @@ -3,13 +3,20 @@ Uploaders: Ondřej Surý <[email protected]> Section: python Priority: optional -Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7) +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7), python3-setuptools, python3-all, python-six, python3-six, python-tz, python3-tz Standards-Version: 3.9.4 Homepage: https://github.com/dmdm/feedgenerator-py3k Package: python-feedgenerator Architecture: all Depends: ${misc:Depends}, ${python:Depends} -Description: Syndication feed generation library +Description: Syndication feed generation library (Python 2 version) + Feedgenerator is a standalone version of Django's feedgenerator, which + is a syndication feed generation library used for generating RSS. + +Package: python3-feedgenerator +Architecture: all +Depends: ${misc:Depends}, ${python3:Depends} +Description: Syndication feed generation library (Python 3 version) Feedgenerator is a standalone version of Django's feedgenerator, which is a syndication feed generation library used for generating RSS. diff -Nru feedgenerator-1.7/debian/pydist-overrides feedgenerator-1.7/debian/pydist-overrides --- feedgenerator-1.7/debian/pydist-overrides 2013-09-10 16:17:09.000000000 +0200 +++ feedgenerator-1.7/debian/pydist-overrides 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -six python-six diff -Nru feedgenerator-1.7/debian/python3-feedgenerator.install feedgenerator-1.7/debian/python3-feedgenerator.install --- feedgenerator-1.7/debian/python3-feedgenerator.install 1970-01-01 01:00:00.000000000 +0100 +++ feedgenerator-1.7/debian/python3-feedgenerator.install 2015-06-06 07:49:41.000000000 +0200 @@ -0,0 +1 @@ +usr/lib/python3* diff -Nru feedgenerator-1.7/debian/python-feedgenerator.install feedgenerator-1.7/debian/python-feedgenerator.install --- feedgenerator-1.7/debian/python-feedgenerator.install 1970-01-01 01:00:00.000000000 +0100 +++ feedgenerator-1.7/debian/python-feedgenerator.install 2015-06-06 07:49:30.000000000 +0200 @@ -0,0 +1 @@ +usr/lib/python2* diff -Nru feedgenerator-1.7/debian/rules feedgenerator-1.7/debian/rules --- feedgenerator-1.7/debian/rules 2013-09-10 16:17:09.000000000 +0200 +++ feedgenerator-1.7/debian/rules 2015-06-06 07:52:42.000000000 +0200 @@ -4,6 +4,6 @@ # Mon, 04 Mar 2013 11:44:26 +0100 %: - dh $@ --with python2 --buildsystem=python_distutils + dh $@ --with python2,python3 --buildsystem=pybuild
_______________________________________________ Python-modules-team mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

