mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
python/python-dateutil: Updated for version 2.4.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
76f42db404
commit
3b28eef135
2 changed files with 13 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for python-dateutil
|
||||
|
||||
# Copyright 2012 Larry Hajali <larryhaja[at]gmail[dot]com>
|
||||
# Copyright 2012-2015 Larry Hajali <larryhaja[at]gmail[dot]com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=python-dateutil
|
||||
VERSION=${VERSION:-2.4.0}
|
||||
VERSION=${VERSION:-2.4.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -55,6 +55,14 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# Fix end-of-line encoding.
|
||||
for i in NEWS PKG-INFO python_dateutil.egg-info/{zip-safe,PKG-INFO}; do
|
||||
cp $i ${i}.new
|
||||
sed -i 's/\r//' ${i}.new
|
||||
touch -r $i ${i}.new
|
||||
mv ${i}.new $i
|
||||
done
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="python-dateutil"
|
||||
VERSION="2.4.0"
|
||||
VERSION="2.4.1"
|
||||
HOMEPAGE="http://labix.org/python-dateutil"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.4.0.tar.gz"
|
||||
MD5SUM="75714163bb96bedd07685cdb2071b8bc"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.4.1.tar.gz"
|
||||
MD5SUM="6ca9645559545db28c47fe159d288ee2"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="pysetuptools six"
|
||||
|
|
Loading…
Reference in a new issue