network/feedparser: Added to 12.1 repository

This commit is contained in:
Chess Griffin 2010-05-11 22:54:46 +02:00 committed by Erik Hanson
parent d5e9300817
commit 17d2e912a0
4 changed files with 81 additions and 0 deletions

View file

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

View file

@ -0,0 +1,52 @@
#!/bin/sh
# Slackware build script for feedparser
# Written by Chess Griffin <chess@chessgriffin.com>
PRGNAM=feedparser
VERSION=4.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
DOCS="LICENSE README"
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
mkdir $PRGNAM-$VERSION
unzip $CWD/$PRGNAM-$VERSION.zip -d $PRGNAM-$VERSION || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
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
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 0644 {} \;
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

View file

@ -0,0 +1,8 @@
PRGNAM="feedparser"
VERSION="4.1"
HOMEPAGE="http://www.feedparser.org"
DOWNLOAD="http://feedparser.googlecode.com/files/feedparser-4.1.zip"
MD5SUM="7ab1140c1e29d4cd52ab20fa7b1f8640"
MAINTAINER="Chess Griffin"
EMAIL="chess@chessgriffin.com"
APPROVED="Erik Hanson"

View file

@ -0,0 +1,16 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
feedparser: feedparser - parse RSS feeds in Python
feedparser:
feedparser: feedparser is a Python utility to parse RSS
feedparser: and Atom feeds.
feedparser:
feedparser: Homepage: http://www.feedparser.org
feedparser: