python/pyperclip: Updated for version 1.7.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
2202d31489
commit
dd09153828
|
@ -1,6 +1,7 @@
|
|||
Pyperclip is a cross-platform Python module for copy and paste clipboard
|
||||
functions. It works with Python 2 and 3. It currently only handles
|
||||
plain text.
|
||||
functions. It currently only handles plain text.
|
||||
|
||||
Python 3 is a hard dependency. This script does not support Python 2.
|
||||
|
||||
For example usage see /usr/doc/pyperclip-$VERSION/README.md
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for pyperclip
|
||||
|
||||
# Copyright 2015-2016, 2018 Brenton Earl <brent@exitstatusone.com>
|
||||
# Copyright 2015-2016, 2018, 2020 Brenton Earl <brent@exitstatusone.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,8 +23,8 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=pyperclip
|
||||
VERSION=${VERSION:-1.6.4}
|
||||
SRCVERSION=${SRCVERSION:-16b1f5b7ece36a08adc5ddec1ef6b1b0aa9de77f}
|
||||
VERSION=${VERSION:-1.7.0}
|
||||
SRCVERSION=${SRCVERSION:-943372e295764e18ea2069e1c0615ad286089bda}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -70,12 +70,7 @@ 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 {} \;
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
# Python 3 support
|
||||
if $(python3 -c 'import sys' 2>/dev/null); then
|
||||
python3 setup.py install --root=$PKG
|
||||
fi
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="pyperclip"
|
||||
VERSION="1.6.4"
|
||||
VERSION="1.7.0"
|
||||
HOMEPAGE="https://github.com/asweigart/pyperclip"
|
||||
DOWNLOAD="https://github.com/asweigart/pyperclip/archive/16b1f5b/pyperclip-16b1f5b7ece36a08adc5ddec1ef6b1b0aa9de77f.tar.gz"
|
||||
MD5SUM="387c4c59688ee6f49992e8476282b9d4"
|
||||
DOWNLOAD="https://github.com/asweigart/pyperclip/archive/943372e/pyperclip-943372e295764e18ea2069e1c0615ad286089bda.tar.gz"
|
||||
MD5SUM="7a177f7271d626b339ccae91b8d08db0"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
REQUIRES="python3"
|
||||
MAINTAINER="Brenton Earl"
|
||||
EMAIL="brent@exitstatusone.com"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
pyperclip: pyperclip (Python copy and paste clipboard functions)
|
||||
pyperclip:
|
||||
pyperclip: Pyperclip is a cross-platform Python module for copy and paste
|
||||
pyperclip: clipboard functions. It works with Python 2 and 3.
|
||||
pyperclip: clipboard functions.
|
||||
pyperclip:
|
||||
pyperclip: Home page: https://github.com/asweigart/pyperclip
|
||||
pyperclip:
|
||||
|
|
Loading…
Reference in New Issue