summaryrefslogtreecommitdiffstats
path: root/extra/pyfeeparser
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-03-05 15:18:19 +0100
committertnut <thierryn1 at hispeed dot ch>2010-03-05 15:18:19 +0100
commit68e029f4c4081f1918c1750e8ed84eb716cc4581 (patch)
treeca9f67182fa4668a11880bea00509fa826938102 /extra/pyfeeparser
parenta984f4b016a50433aa84b027d7ad957e0cb75a2c (diff)
downloadnutyx-pakxe-68e029f4c4081f1918c1750e8ed84eb716cc4581.tar.gz
nutyx-pakxe-68e029f4c4081f1918c1750e8ed84eb716cc4581.tar.bz2
nutyx-pakxe-68e029f4c4081f1918c1750e8ed84eb716cc4581.tar.xz
nutyx-pakxe-68e029f4c4081f1918c1750e8ed84eb716cc4581.zip
pyfeedparser, correction du dossier
Diffstat (limited to 'extra/pyfeeparser')
-rw-r--r--extra/pyfeeparser/.footprint7
-rw-r--r--extra/pyfeeparser/.md5sum2
-rw-r--r--extra/pyfeeparser/Pkgfile18
-rw-r--r--extra/pyfeeparser/feedparser_utf8_decoding.patch12
4 files changed, 0 insertions, 39 deletions
diff --git a/extra/pyfeeparser/.footprint b/extra/pyfeeparser/.footprint
deleted file mode 100644
index e16bfa4d8..000000000
--- a/extra/pyfeeparser/.footprint
+++ /dev/null
@@ -1,7 +0,0 @@
-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
deleted file mode 100644
index cf723f2bf..000000000
--- a/extra/pyfeeparser/.md5sum
+++ /dev/null
@@ -1,2 +0,0 @@
-7ab1140c1e29d4cd52ab20fa7b1f8640 feedparser-4.1.zip
-2ec7ad9aa5ebd1959eadf69cf46fd2b5 feedparser_utf8_decoding.patch
diff --git a/extra/pyfeeparser/Pkgfile b/extra/pyfeeparser/Pkgfile
deleted file mode 100644
index 88f929619..000000000
--- a/extra/pyfeeparser/Pkgfile
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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
deleted file mode 100644
index c1779c7e9..000000000
--- a/extra/pyfeeparser/feedparser_utf8_decoding.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- /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:
-