From cd62ef307555ad7d15899cb8e175a3824f60d960 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Wed, 12 May 2010 23:30:49 +0200 Subject: libraries/lxml: Added to 12.2 repository --- libraries/lxml/README | 5 +++++ libraries/lxml/lxml.SlackBuild | 51 ++++++++++++++++++++++++++++++++++++++++++ libraries/lxml/lxml.info | 8 +++++++ libraries/lxml/slack-desc | 19 ++++++++++++++++ 4 files changed, 83 insertions(+) create mode 100644 libraries/lxml/README create mode 100644 libraries/lxml/lxml.SlackBuild create mode 100644 libraries/lxml/lxml.info create mode 100644 libraries/lxml/slack-desc (limited to 'libraries/lxml') diff --git a/libraries/lxml/README b/libraries/lxml/README new file mode 100644 index 0000000000..08750c71a9 --- /dev/null +++ b/libraries/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. + +Optionally Cython and pysetuptools can be used. \ No newline at end of file diff --git a/libraries/lxml/lxml.SlackBuild b/libraries/lxml/lxml.SlackBuild new file mode 100644 index 0000000000..94e5d1ce27 --- /dev/null +++ b/libraries/lxml/lxml.SlackBuild @@ -0,0 +1,51 @@ +#!/bin/sh +# Slackware build script for lxml +# Written by Larry Hajali + +PRGNAM=lxml +VERSION=${VERSION:-2.2.1} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + 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 -a \ + *.txt doc/licenses/* doc/FAQ.txt \ + $PKG/usr/doc/$PRGNAM-$VERSION +rm -f $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.tgz diff --git a/libraries/lxml/lxml.info b/libraries/lxml/lxml.info new file mode 100644 index 0000000000..dad40d602e --- /dev/null +++ b/libraries/lxml/lxml.info @@ -0,0 +1,8 @@ +PRGNAM="lxml" +VERSION="2.2.1" +HOMEPAGE="http://codespeak.net/lxml/" +DOWNLOAD="http://codespeak.net/lxml/lxml-2.2.1.tgz" +MD5SUM="f18b17e4c83edcfc8a8649c498210e20" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="rworkman" diff --git a/libraries/lxml/slack-desc b/libraries/lxml/slack-desc new file mode 100644 index 0000000000..4d2625b4ff --- /dev/null +++ b/libraries/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 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