From d24549b6c4585cd95e9426512808f29cbf07e525 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Sun, 5 Feb 2012 12:17:38 -0600 Subject: python/cssutils: Moved from Libraries Signed-off-by: Robby Workman --- libraries/cssutils/README | 3 -- libraries/cssutils/cssutils.SlackBuild | 56 ---------------------------------- libraries/cssutils/cssutils.info | 10 ------ libraries/cssutils/slack-desc | 19 ------------ python/cssutils/README | 3 ++ python/cssutils/cssutils.SlackBuild | 56 ++++++++++++++++++++++++++++++++++ python/cssutils/cssutils.info | 10 ++++++ python/cssutils/slack-desc | 19 ++++++++++++ 8 files changed, 88 insertions(+), 88 deletions(-) delete mode 100644 libraries/cssutils/README delete mode 100644 libraries/cssutils/cssutils.SlackBuild delete mode 100644 libraries/cssutils/cssutils.info delete mode 100644 libraries/cssutils/slack-desc create mode 100644 python/cssutils/README create mode 100644 python/cssutils/cssutils.SlackBuild create mode 100644 python/cssutils/cssutils.info create mode 100644 python/cssutils/slack-desc diff --git a/libraries/cssutils/README b/libraries/cssutils/README deleted file mode 100644 index 8186cf6070..0000000000 --- a/libraries/cssutils/README +++ /dev/null @@ -1,3 +0,0 @@ -A Python package to parse and build CSS Cascading Style Sheets. - -This requires distribute. diff --git a/libraries/cssutils/cssutils.SlackBuild b/libraries/cssutils/cssutils.SlackBuild deleted file mode 100644 index a985b5e11c..0000000000 --- a/libraries/cssutils/cssutils.SlackBuild +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh -# Slackware build script for cssutils -# Written by Larry Hajali - -PRGNAM=cssutils -VERSION=0.9.8 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -unzip $CWD/$PRGNAM-$VERSION.zip -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 {} \; - -# Change files from DOS to unix. -for FILE in $(find . -type f -exec grep -Pl '\r\n' {} \;); do - sed -i 's/\r//g' $FILE -done - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a *.txt COPYING* $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/cssutils/cssutils.info b/libraries/cssutils/cssutils.info deleted file mode 100644 index f88d75a48f..0000000000 --- a/libraries/cssutils/cssutils.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="cssutils" -VERSION="0.9.8" -HOMEPAGE="https://bitbucket.org/cthedot/cssutils" -DOWNLOAD="http://pypi.python.org/packages/source/c/cssutils/cssutils-0.9.8.zip" -MD5SUM="416af035c002150da7248a1944bd9cf9" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" diff --git a/libraries/cssutils/slack-desc b/libraries/cssutils/slack-desc deleted file mode 100644 index 9222023cd6..0000000000 --- a/libraries/cssutils/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -cssutils: cssutils (CSS parser and builder) -cssutils: -cssutils: A Python package to parse and build CSS Cascading Style Sheets. -cssutils: -cssutils: Homepage: http://code.google.com/p/cssutils/ -cssutils: -cssutils: -cssutils: -cssutils: -cssutils: -cssutils: diff --git a/python/cssutils/README b/python/cssutils/README new file mode 100644 index 0000000000..8186cf6070 --- /dev/null +++ b/python/cssutils/README @@ -0,0 +1,3 @@ +A Python package to parse and build CSS Cascading Style Sheets. + +This requires distribute. diff --git a/python/cssutils/cssutils.SlackBuild b/python/cssutils/cssutils.SlackBuild new file mode 100644 index 0000000000..a985b5e11c --- /dev/null +++ b/python/cssutils/cssutils.SlackBuild @@ -0,0 +1,56 @@ +#!/bin/sh +# Slackware build script for cssutils +# Written by Larry Hajali + +PRGNAM=cssutils +VERSION=0.9.8 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +unzip $CWD/$PRGNAM-$VERSION.zip +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 {} \; + +# Change files from DOS to unix. +for FILE in $(find . -type f -exec grep -Pl '\r\n' {} \;); do + sed -i 's/\r//g' $FILE +done + +python setup.py install --root=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a *.txt COPYING* $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/cssutils/cssutils.info b/python/cssutils/cssutils.info new file mode 100644 index 0000000000..f88d75a48f --- /dev/null +++ b/python/cssutils/cssutils.info @@ -0,0 +1,10 @@ +PRGNAM="cssutils" +VERSION="0.9.8" +HOMEPAGE="https://bitbucket.org/cthedot/cssutils" +DOWNLOAD="http://pypi.python.org/packages/source/c/cssutils/cssutils-0.9.8.zip" +MD5SUM="416af035c002150da7248a1944bd9cf9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="rworkman" diff --git a/python/cssutils/slack-desc b/python/cssutils/slack-desc new file mode 100644 index 0000000000..9222023cd6 --- /dev/null +++ b/python/cssutils/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------------------------------------------------------| +cssutils: cssutils (CSS parser and builder) +cssutils: +cssutils: A Python package to parse and build CSS Cascading Style Sheets. +cssutils: +cssutils: Homepage: http://code.google.com/p/cssutils/ +cssutils: +cssutils: +cssutils: +cssutils: +cssutils: +cssutils: -- cgit v1.2.3