From 7a1b4848a3d34a263544fadf08178c91c12fbad0 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Wed, 16 Mar 2011 01:13:49 -0500 Subject: python/*: Moved a lot of Python stuff here The criteria for whether something "belongs" in Development or Libraries or Python or ... is admittedly arbitrary. As a general rule, if it could be either Libraries or Python, it's Python. Otherwise, pick one and we'll go from there... Signed-off-by: Robby Workman --- python/pyquery/README | 12 ++++++++++ python/pyquery/pyquery.SlackBuild | 50 +++++++++++++++++++++++++++++++++++++++ python/pyquery/pyquery.info | 10 ++++++++ python/pyquery/slack-desc | 19 +++++++++++++++ 4 files changed, 91 insertions(+) create mode 100644 python/pyquery/README create mode 100644 python/pyquery/pyquery.SlackBuild create mode 100644 python/pyquery/pyquery.info create mode 100644 python/pyquery/slack-desc (limited to 'python/pyquery') diff --git a/python/pyquery/README b/python/pyquery/README new file mode 100644 index 0000000000..cc2788340c --- /dev/null +++ b/python/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. + +Requires lxml. diff --git a/python/pyquery/pyquery.SlackBuild b/python/pyquery/pyquery.SlackBuild new file mode 100644 index 0000000000..5284aaedcf --- /dev/null +++ b/python/pyquery/pyquery.SlackBuild @@ -0,0 +1,50 @@ +#!/bin/sh + +# Slackware build script for pyquery +# Written by Šime Ramov + +PRGNAM=pyquery +VERSION=${VERSION:-0.6.1} +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} + +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 README.txt CHANGES.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/python/pyquery/pyquery.info b/python/pyquery/pyquery.info new file mode 100644 index 0000000000..366e28f508 --- /dev/null +++ b/python/pyquery/pyquery.info @@ -0,0 +1,10 @@ +PRGNAM="pyquery" +VERSION="0.6.1" +HOMEPAGE="http://www.bitbucket.org/olauzanne/pyquery/" +DOWNLOAD="http://pypi.python.org/packages/source/p/pyquery/pyquery-0.6.1.tar.gz" +MD5SUM="2a677d7c52b1aa89f5aaa70427e36b70" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Šime Ramov" +EMAIL="s@ramov.com" +APPROVED="Erik Hanson" diff --git a/python/pyquery/slack-desc b/python/pyquery/slack-desc new file mode 100644 index 0000000000..e5905e9902 --- /dev/null +++ b/python/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