mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
python/cssutils: Updated for version 1.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
2ad081bc95
commit
a60ca9808d
2 changed files with 13 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue