From 50cf5d8ac663367bb8297bd5cc73c5d0da40efb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ime=20Ramov?= Date: Mon, 19 Apr 2010 18:51:14 -0400 Subject: libraries/pyquery: Added (A jquery-like library for python) --- libraries/pyquery/README | 12 ++++++++++ libraries/pyquery/pyquery.SlackBuild | 43 ++++++++++++++++++++++++++++++++++++ libraries/pyquery/pyquery.info | 10 +++++++++ libraries/pyquery/slack-desc | 19 ++++++++++++++++ 4 files changed, 84 insertions(+) create mode 100644 libraries/pyquery/README create mode 100644 libraries/pyquery/pyquery.SlackBuild create mode 100644 libraries/pyquery/pyquery.info create mode 100644 libraries/pyquery/slack-desc (limited to 'libraries') diff --git a/libraries/pyquery/README b/libraries/pyquery/README new file mode 100644 index 0000000000..6aa9eec643 --- /dev/null +++ b/libraries/pyquery/README @@ -0,0 +1,12 @@ +pyquery (A jquery-like library for python) + +pyquery allows you to make jquery queries on xml documents. The API +is as much as possible the similar to jquery. pyquery uses lxml for +fast xml and html manipulation. + +It can be used for many purposes, one idea that I might try in the +future is to use it for templating with pure http templates that you +modify using pyquery. I can also be used for web scrapping or for +theming applications. + +This requires lxml. diff --git a/libraries/pyquery/pyquery.SlackBuild b/libraries/pyquery/pyquery.SlackBuild new file mode 100644 index 0000000000..fbce37f147 --- /dev/null +++ b/libraries/pyquery/pyquery.SlackBuild @@ -0,0 +1,43 @@ +#!/bin/sh + +# Slackware build script for pyquery +# Written by Šime Ramov + +PRGNAM=pyquery +VERSION=${VERSION:-0.5} +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 xzf $CWD/$PRGNAM-$VERSION.tar.gz +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 build +python setup.py install --root=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a pyquery/README.txt $PKG/usr/doc/$PRGNAM-$VERSION +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/libraries/pyquery/pyquery.info b/libraries/pyquery/pyquery.info new file mode 100644 index 0000000000..67a4ec38d9 --- /dev/null +++ b/libraries/pyquery/pyquery.info @@ -0,0 +1,10 @@ +PRGNAM="pyquery" +VERSION="0.5" +HOMEPAGE="http://www.bitbucket.org/olauzanne/pyquery/" +DOWNLOAD="http://pypi.python.org/packages/source/p/pyquery/pyquery-0.5.tar.gz" +MD5SUM="9f3c6145fd4ebf4a74d328804142dc5e" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Šime Ramov" +EMAIL="s@ramov.com" +APPROVED="dsomero" diff --git a/libraries/pyquery/slack-desc b/libraries/pyquery/slack-desc new file mode 100644 index 0000000000..19cf76c3db --- /dev/null +++ b/libraries/pyquery/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------------------------------------------------------| +pyquery: pyquery (A jquery-like library for python) +pyquery: +pyquery: pyquery allows you to make jquery queries on xml documents. The API +pyquery: is as much as possible the similar to jquery. pyquery uses lxml for +pyquery: fast xml and html manipulation. +pyquery: +pyquery: It can be used for many purposes, one idea that I might try in the +pyquery: future is to use it for templating with pure http templates that you +pyquery: modify using pyquery. I can also be used for web scrapping or for +pyquery: theming applications. +pyquery: -- cgit v1.2.3