diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-12 23:29:47 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:29:47 +0200 |
commit | 4406fcfcb598d2776160bd37c58f81b70eb3c07f (patch) | |
tree | c182d44ad331fb2926e6eec1df2b7fa2797fe81c | |
parent | 1b9c385766b75d8b241cbcc10387b8dac65acd84 (diff) | |
download | slackbuilds-4406fcfcb598d2776160bd37c58f81b70eb3c07f.tar.gz |
libraries/ClientForm: Added to 12.2 repository
-rw-r--r-- | libraries/ClientForm/ClientForm.SlackBuild | 55 | ||||
-rw-r--r-- | libraries/ClientForm/ClientForm.info | 8 | ||||
-rw-r--r-- | libraries/ClientForm/README | 7 | ||||
-rw-r--r-- | libraries/ClientForm/pysetuptools.diff | 12 | ||||
-rw-r--r-- | libraries/ClientForm/slack-desc | 19 |
5 files changed, 101 insertions, 0 deletions
diff --git a/libraries/ClientForm/ClientForm.SlackBuild b/libraries/ClientForm/ClientForm.SlackBuild new file mode 100644 index 0000000000..4974f180c3 --- /dev/null +++ b/libraries/ClientForm/ClientForm.SlackBuild @@ -0,0 +1,55 @@ +#!/bin/sh + +# Slackware build script for ClientForm + +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=ClientForm +VERSION=${VERSION:-0.2.10} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -eu + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $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 {} \; + +# Use system pysetuptools +patch -p1 < $CWD/pysetuptools.diff + +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 +mv testdata $PKG/usr/doc/$PRGNAM-$VERSION +cp -a *.txt *.html $PKG/usr/doc/$PRGNAM-$VERSION +cp -a test/test_clientform.py examples/* $PKG/usr/doc/$PRGNAM-$VERSION/testdata +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/ClientForm/ClientForm.info b/libraries/ClientForm/ClientForm.info new file mode 100644 index 0000000000..fa47a07eda --- /dev/null +++ b/libraries/ClientForm/ClientForm.info @@ -0,0 +1,8 @@ +PRGNAM="ClientForm" +VERSION="0.2.10" +HOMEPAGE="http://wwwsearch.sourceforge.net/ClientForm/" +DOWNLOAD="http://wwwsearch.sourceforge.net/ClientForm/src/ClientForm-0.2.10.tar.gz" +MD5SUM="832c0ca78674f9263d1fc5fab8756e66" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero,rworkman" diff --git a/libraries/ClientForm/README b/libraries/ClientForm/README new file mode 100644 index 0000000000..926540e208 --- /dev/null +++ b/libraries/ClientForm/README @@ -0,0 +1,7 @@ +ClientForm is a Python module for handling HTML forms on the client +side, useful for parsing HTML forms, filling them in and returning +the completed forms to the server. It developed from a port of Gisle +Aas' Perl module HTML::Form, from the libwww-perl library, but the +interface is not the same. + +Requires pysetuptools.
\ No newline at end of file diff --git a/libraries/ClientForm/pysetuptools.diff b/libraries/ClientForm/pysetuptools.diff new file mode 100644 index 0000000000..4b143c9b42 --- /dev/null +++ b/libraries/ClientForm/pysetuptools.diff @@ -0,0 +1,12 @@ +diff -Naur ClientForm-0.2.10.orig/setup.py ClientForm-0.2.10/setup.py +--- ClientForm-0.2.10.orig/setup.py 2008-12-03 23:12:31.000000000 +0000 ++++ ClientForm-0.2.10/setup.py 2009-03-16 15:48:45.000000000 +0000 +@@ -89,8 +89,6 @@ + del kwargs["py_modules"] + apply(_setup, (), kwargs) + else: +- import ez_setup +- ez_setup.use_setuptools() + from setuptools import setup + + setup( diff --git a/libraries/ClientForm/slack-desc b/libraries/ClientForm/slack-desc new file mode 100644 index 0000000000..29e499aace --- /dev/null +++ b/libraries/ClientForm/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------------------------------------------------------| +ClientForm: ClientForm (Python module for handling HTML forms) +ClientForm: +ClientForm: ClientForm is a Python module for handling HTML forms on the client +ClientForm: side, useful for parsing HTML forms, filling them in and returning +ClientForm: the completed forms to the server. +ClientForm: +ClientForm: Homepage: http://wwwsearch.sourceforge.net/ClientForm/ +ClientForm: +ClientForm: +ClientForm: +ClientForm: |