network/feedparser: Updated for version 4.1

This commit is contained in:
Chess Griffin 2010-05-13 00:36:25 +02:00 committed by David Somero
parent a4d9bf3562
commit 5070523d72
3 changed files with 8 additions and 7 deletions

View file

@ -1,5 +1 @@
feedparser - parse RSS feeds in Python
feedparser is a Python utility to parse RSS and Atom feeds.
Homepage: http://www.feedparser.org

View file

@ -27,6 +27,7 @@ VERSION=4.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -64,8 +65,10 @@ python setup.py build || exit 1
python setup.py install --root $PKG || exit 1
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
@ -77,4 +80,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -2,7 +2,9 @@ PRGNAM="feedparser"
VERSION="4.1"
HOMEPAGE="http://www.feedparser.org"
DOWNLOAD="http://feedparser.googlecode.com/files/feedparser-4.1.zip"
DOWNLOAD_x86_64=""
MD5SUM="7ab1140c1e29d4cd52ab20fa7b1f8640"
MD5SUM_x86_64=""
MAINTAINER="Chess Griffin"
EMAIL="chess@chessgriffin.com"
APPROVED="dsomero"