From fc10d7ff1b194ec06be8c2d561ca72b324f5dd98 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Tue, 12 Jul 2011 05:27:11 -0400 Subject: python/lxml: Updated for version 2.3 and moved from libraries. Signed-off-by: dsomero --- python/lxml/README | 5 ++++ python/lxml/lxml.SlackBuild | 64 +++++++++++++++++++++++++++++++++++++++++++++ python/lxml/lxml.info | 10 +++++++ python/lxml/slack-desc | 19 ++++++++++++++ 4 files changed, 98 insertions(+) create mode 100644 python/lxml/README create mode 100644 python/lxml/lxml.SlackBuild create mode 100644 python/lxml/lxml.info create mode 100644 python/lxml/slack-desc (limited to 'python') diff --git a/python/lxml/README b/python/lxml/README new file mode 100644 index 0000000000..e258753366 --- /dev/null +++ b/python/lxml/README @@ -0,0 +1,5 @@ +lxml is a Pythonic binding for the libxml2 and libxslt libraries. +It is unique in that it combines the speed and feature completeness +of these libraries with the simplicity of a native Python API. + +Lxml can optionally use Cython and pysetuptools. diff --git a/python/lxml/lxml.SlackBuild b/python/lxml/lxml.SlackBuild new file mode 100644 index 0000000000..bd9dcb8839 --- /dev/null +++ b/python/lxml/lxml.SlackBuild @@ -0,0 +1,64 @@ +#!/bin/sh +# Slackware build script for lxml +# Written by Larry Hajali + +PRGNAM=lxml +VERSION=2.3 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +else + SLKCFLAGS="-O2" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tgz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +python setup.py install --root=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + *.txt PKG-INFO doc/licenses/* doc/FAQ.txt \ + $PKG/usr/doc/$PRGNAM-$VERSION +rm $PKG/usr/doc/$PRGNAM-$VERSION/version.txt +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.${PKGTYPE:-tgz} diff --git a/python/lxml/lxml.info b/python/lxml/lxml.info new file mode 100644 index 0000000000..b4650eb37c --- /dev/null +++ b/python/lxml/lxml.info @@ -0,0 +1,10 @@ +PRGNAM="lxml" +VERSION="2.3" +HOMEPAGE="http://lxml.de/" +DOWNLOAD="http://lxml.de/files/lxml-2.3.tgz" +MD5SUM="a245a015fd59b63e220005f263e1682a" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero" diff --git a/python/lxml/slack-desc b/python/lxml/slack-desc new file mode 100644 index 0000000000..da756a78d0 --- /dev/null +++ b/python/lxml/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +lxml: lxml (Python bindings for the libxml2 and libxslt) +lxml: +lxml: lxml is a Pythonic binding for the libxml2 and libxslt libraries. It +lxml: is unique in that it combines the speed and feature completeness of +lxml: these libraries with the simplicity of a native Python API. +lxml: +lxml: Homepage: http://codespeak.net/lxml/ +lxml: +lxml: +lxml: +lxml: -- cgit v1.2.3