summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornils <nils@pkgsrc.org>2015-11-27 16:49:19 +0000
committernils <nils@pkgsrc.org>2015-11-27 16:49:19 +0000
commita46b9b2986bf44f55d0d9af45f85dbaaf902d395 (patch)
tree45b4d8e15201ddf46bff9a49d1d493fa0f895135
parentb8e227e50b814b130f167b24b17dc1a5df0143a2 (diff)
downloadpkgsrc-a46b9b2986bf44f55d0d9af45f85dbaaf902d395.tar.gz
Initial import of feedgenerator, version 1.7.
Feedgenerator-py3k is a standalone version of Django's feedgenerator. It is based on the current Django Version 1.5.dev20120824122350. The previous feedgenerator 1.2.1 is based on rather old code, and during the port to Python 3 it became obvious that (at least) the handling of unicode strings has to be refactored. Django has evolved since, so I decided to create a new standalone version which is based upon modern code. See http://parenchym.com/pymblog/ for details.
-rw-r--r--www/py-feedgenerator/DESCR11
-rw-r--r--www/py-feedgenerator/Makefile20
-rw-r--r--www/py-feedgenerator/PLIST37
-rw-r--r--www/py-feedgenerator/distinfo6
4 files changed, 74 insertions, 0 deletions
diff --git a/www/py-feedgenerator/DESCR b/www/py-feedgenerator/DESCR
new file mode 100644
index 00000000000..1fc18e32a39
--- /dev/null
+++ b/www/py-feedgenerator/DESCR
@@ -0,0 +1,11 @@
+Feedgenerator-py3k is a standalone version of Django's feedgenerator.
+It is based on the current Django Version 1.5.dev20120824122350.
+
+The previous feedgenerator 1.2.1 is based on rather old code, and
+during the port to Python 3 it became obvious that (at least) the
+handling of unicode strings has to be refactored.
+
+Django has evolved since, so I decided to create a new standalone
+version which is based upon modern code.
+
+See http://parenchym.com/pymblog/ for details.
diff --git a/www/py-feedgenerator/Makefile b/www/py-feedgenerator/Makefile
new file mode 100644
index 00000000000..3791a71ae83
--- /dev/null
+++ b/www/py-feedgenerator/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2015/11/27 16:49:19 nils Exp $
+
+DISTNAME= feedgenerator-1.7
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= www
+MASTER_SITES= ${MASTER_SITE_PYPI:=f/feedgenerator/}
+
+MAINTAINER= nils@NetBSD.org
+HOMEPAGE= https://github.com/dmdm/feedgenerator-py3k.git
+COMMENT= Standalone version of django.utils.feedgenerator, compatible with Py3k
+LICENSE= modified-bsd
+
+DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
+DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/application.mk"
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/py-feedgenerator/PLIST b/www/py-feedgenerator/PLIST
new file mode 100644
index 00000000000..9e8317bca1d
--- /dev/null
+++ b/www/py-feedgenerator/PLIST
@@ -0,0 +1,37 @@
+@comment $NetBSD: PLIST,v 1.1 2015/11/27 16:49:19 nils Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/feedgenerator/__init__.py
+${PYSITELIB}/feedgenerator/__init__.pyc
+${PYSITELIB}/feedgenerator/__init__.pyo
+${PYSITELIB}/feedgenerator/django/__init__.py
+${PYSITELIB}/feedgenerator/django/__init__.pyc
+${PYSITELIB}/feedgenerator/django/__init__.pyo
+${PYSITELIB}/feedgenerator/django/utils/__init__.py
+${PYSITELIB}/feedgenerator/django/utils/__init__.pyc
+${PYSITELIB}/feedgenerator/django/utils/__init__.pyo
+${PYSITELIB}/feedgenerator/django/utils/datetime_safe.py
+${PYSITELIB}/feedgenerator/django/utils/datetime_safe.pyc
+${PYSITELIB}/feedgenerator/django/utils/datetime_safe.pyo
+${PYSITELIB}/feedgenerator/django/utils/encoding.py
+${PYSITELIB}/feedgenerator/django/utils/encoding.pyc
+${PYSITELIB}/feedgenerator/django/utils/encoding.pyo
+${PYSITELIB}/feedgenerator/django/utils/feedgenerator.py
+${PYSITELIB}/feedgenerator/django/utils/feedgenerator.pyc
+${PYSITELIB}/feedgenerator/django/utils/feedgenerator.pyo
+${PYSITELIB}/feedgenerator/django/utils/functional.py
+${PYSITELIB}/feedgenerator/django/utils/functional.pyc
+${PYSITELIB}/feedgenerator/django/utils/functional.pyo
+${PYSITELIB}/feedgenerator/django/utils/six.py
+${PYSITELIB}/feedgenerator/django/utils/six.pyc
+${PYSITELIB}/feedgenerator/django/utils/six.pyo
+${PYSITELIB}/feedgenerator/django/utils/timezone.py
+${PYSITELIB}/feedgenerator/django/utils/timezone.pyc
+${PYSITELIB}/feedgenerator/django/utils/timezone.pyo
+${PYSITELIB}/feedgenerator/django/utils/xmlutils.py
+${PYSITELIB}/feedgenerator/django/utils/xmlutils.pyc
+${PYSITELIB}/feedgenerator/django/utils/xmlutils.pyo
diff --git a/www/py-feedgenerator/distinfo b/www/py-feedgenerator/distinfo
new file mode 100644
index 00000000000..a9fff463ec9
--- /dev/null
+++ b/www/py-feedgenerator/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2015/11/27 16:49:19 nils Exp $
+
+SHA1 (feedgenerator-1.7.tar.gz) = 56ca2dc406551d7f30952f064bc759131150b149
+RMD160 (feedgenerator-1.7.tar.gz) = 94a831af75c35d8d09dea569d358a9ee73cc6cf2
+SHA512 (feedgenerator-1.7.tar.gz) = 359e584af7766b1a67c752df88ad67f06f9b2a6677d2e858484286b079e33b47192a5cf141fc86eb5590d86175e24d3fa1e87506773c28f6a35b2dc545520044
+Size (feedgenerator-1.7.tar.gz) = 22155 bytes