python/cssutils: Updated for version 1.0.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Larry Hajali 2014-03-02 09:49:28 +07:00 committed by Willy Sudiarto Raharjo
parent 2ad081bc95
commit a60ca9808d
2 changed files with 13 additions and 5 deletions

View file

@ -23,8 +23,8 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=cssutils
VERSION=${VERSION:-0.9.10}
BUILD=${BUILD:-2}
VERSION=${VERSION:-1.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
@ -60,8 +60,16 @@ for FILE in $(find . -type f -exec grep -Pl '\r$' {} \;); do
sed -i 's/\r//g' $FILE
done
# Don't use ez_setup. Use system setuptools or fail.
sed -i '/ez_setup/d' setup.py
python setup.py install --root=$PKG
if $(python3 -c 'import setuptools' 2>/dev/null); then
rm -rf build
python3 setup.py install --root=$PKG
fi
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true

View file

@ -1,8 +1,8 @@
PRGNAM="cssutils"
VERSION="0.9.10"
VERSION="1.0"
HOMEPAGE="https://bitbucket.org/cthedot/cssutils"
DOWNLOAD="http://pypi.python.org/packages/source/c/cssutils/cssutils-0.9.10.zip"
MD5SUM="81b5c0294c54479a54548769eaa236f8"
DOWNLOAD="http://pypi.python.org/packages/source/c/cssutils/cssutils-1.0.zip"
MD5SUM="0c0b9df329ec1461c732d0f3cba05e93"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="pysetuptools"