From a984f4b016a50433aa84b027d7ad957e0cb75a2c Mon Sep 17 00:00:00 2001 From: tnut Date: Fri, 5 Mar 2010 12:55:17 +0100 Subject: Ajout pyfeedparser#4.1-1 --- extra/pyfeeparser/.footprint | 7 +++++++ extra/pyfeeparser/.md5sum | 2 ++ extra/pyfeeparser/Pkgfile | 18 ++++++++++++++++++ extra/pyfeeparser/feedparser_utf8_decoding.patch | 12 ++++++++++++ 4 files changed, 39 insertions(+) create mode 100644 extra/pyfeeparser/.footprint create mode 100644 extra/pyfeeparser/.md5sum create mode 100644 extra/pyfeeparser/Pkgfile create mode 100644 extra/pyfeeparser/feedparser_utf8_decoding.patch diff --git a/extra/pyfeeparser/.footprint b/extra/pyfeeparser/.footprint new file mode 100644 index 000000000..e16bfa4d8 --- /dev/null +++ b/extra/pyfeeparser/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/python2.6/ +drwxr-xr-x root/root usr/lib/python2.6/site-packages/ +-rw-r--r-- root/root usr/lib/python2.6/site-packages/feedparser-4.1-py2.6.egg-info +-rw-r--r-- root/root usr/lib/python2.6/site-packages/feedparser.py +-rw-r--r-- root/root usr/lib/python2.6/site-packages/feedparser.pyc diff --git a/extra/pyfeeparser/.md5sum b/extra/pyfeeparser/.md5sum new file mode 100644 index 000000000..cf723f2bf --- /dev/null +++ b/extra/pyfeeparser/.md5sum @@ -0,0 +1,2 @@ +7ab1140c1e29d4cd52ab20fa7b1f8640 feedparser-4.1.zip +2ec7ad9aa5ebd1959eadf69cf46fd2b5 feedparser_utf8_decoding.patch diff --git a/extra/pyfeeparser/Pkgfile b/extra/pyfeeparser/Pkgfile new file mode 100644 index 000000000..88f929619 --- /dev/null +++ b/extra/pyfeeparser/Pkgfile @@ -0,0 +1,18 @@ +# Description: Connecteur Python pour Parse RSS +# URL: http://feedparser.sf.net +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: python libxml2 + +name=pyfeedparser +version=4.1 +release=1 +source=(http://downloads.sourceforge.net/feedparser/feedparser-$version.zip\ + feedparser_utf8_decoding.patch) + +build() { + patch -Np0 -i feedparser_utf8_decoding.patch + + python setup.py build + python setup.py install --prefix=/usr --root=$PKG +} diff --git a/extra/pyfeeparser/feedparser_utf8_decoding.patch b/extra/pyfeeparser/feedparser_utf8_decoding.patch new file mode 100644 index 000000000..c1779c7e9 --- /dev/null +++ b/extra/pyfeeparser/feedparser_utf8_decoding.patch @@ -0,0 +1,12 @@ +--- /var/lib/python-support/python2.5/feedparser.py 2008-01-23 20:10:27.000000000 +0100 ++++ feedparser.py 2008-07-28 11:01:38.000000000 +0200 +@@ -1455,7 +1455,7 @@ + # thanks to Kevin Marks for this breathtaking hack to deal with (valid) high-bit attribute values in UTF-8 feeds + for key, value in attrs: + if type(value) != type(u''): +- value = unicode(value, self.encoding) ++ value = unicode(value, self.encoding, errors='replace') + uattrs.append((unicode(key, self.encoding), value)) + strattrs = u''.join([u' %s="%s"' % (key, value) for key, value in uattrs]).encode(self.encoding) + if tag in self.elements_no_end_tag: + -- cgit v1.2.3-54-g00ecf