mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/FormEncode: Added to 12.2 repository
This commit is contained in:
parent
4406fcfcb5
commit
89f1daa6e5
4 changed files with 81 additions and 0 deletions
44
libraries/FormEncode/FormEncode.SlackBuild
Normal file
44
libraries/FormEncode/FormEncode.SlackBuild
Normal file
|
@ -0,0 +1,44 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for FormEncode
|
||||
|
||||
# Written by Mikko Varri (vmj@linuxbox.fi)
|
||||
# Public domain
|
||||
|
||||
PRGNAM=FormEncode
|
||||
VERSION=${VERSION:-1.2}
|
||||
ARCH=noarch
|
||||
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.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 install --root=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a docs/*.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.tgz
|
8
libraries/FormEncode/FormEncode.info
Normal file
8
libraries/FormEncode/FormEncode.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="FormEncode"
|
||||
VERSION="1.2"
|
||||
HOMEPAGE="http://FormEncode.org/"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/F/FormEncode/FormEncode-1.2.tar.gz"
|
||||
MD5SUM="da9d30ad0115ed8de86dc3b796899b41"
|
||||
MAINTAINER="Mikko Varri"
|
||||
EMAIL="vmj@linuxbox.fi"
|
||||
APPROVED="rworkman"
|
10
libraries/FormEncode/README
Normal file
10
libraries/FormEncode/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
FormEncode (HTML form validation, generation, and conversion package)
|
||||
|
||||
FormEncode validates and converts nested structures. It allows for a
|
||||
declarative form of defining the validation, and decoupled processes
|
||||
for filling and generating forms.
|
||||
|
||||
NOTE: To build this package, setuptools needs to be installed
|
||||
(available at SlackBuilds.org as "pysetuptools").
|
||||
|
||||
NOTE: Running the test suite requires nose.
|
19
libraries/FormEncode/slack-desc
Normal file
19
libraries/FormEncode/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
FormEncode: FormEncode (HTML form validation, generation, and conversion package)
|
||||
FormEncode:
|
||||
FormEncode: FormEncode validates and converts nested structures. It allows for a
|
||||
FormEncode: declarative form of defining the validation, and decoupled processes
|
||||
FormEncode: for filling and generating forms.
|
||||
FormEncode:
|
||||
FormEncode: http://FormEncode.org/
|
||||
FormEncode:
|
||||
FormEncode:
|
||||
FormEncode:
|
||||
FormEncode:
|
Loading…
Reference in a new issue