libraries/dropbox-python: Updated for version 9.4.0.

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2019-12-10 11:08:00 +01:00 committed by Willy Sudiarto Raharjo
parent 51ec3240fb
commit 20ce18160c
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 12 additions and 5 deletions

View file

@ -1,2 +1,4 @@
Official Dropbox REST API Client. Dropbox Core SDK for Python.
A Python library that for Dropbox's HTTP-based Core and Datastore APIs.
NOTE: for python3 build python3 and python3-six requires.

View file

@ -2,7 +2,7 @@
# Slackware build script for dropbox-python
# Copyright 2014-2018 Dimitris Zlatanidis Orestiada, Greece
# Copyright 2014-2019 Dimitris Zlatanidis Orestiada, Greece
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,7 +24,7 @@
PRGNAM=dropbox-python
SCRNAM=$(printf $PRGNAM | cut -c1-7)
VERSION=${VERSION:-8.7.1}
VERSION=${VERSION:-9.4.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -72,6 +72,11 @@ find -L . \
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

View file

@ -1,8 +1,8 @@
PRGNAM="dropbox-python"
VERSION="8.7.1"
VERSION="9.4.0"
HOMEPAGE="https://www.dropbox.com/"
DOWNLOAD="https://pypi.python.org/packages/f3/5e/39bf5507db73b9fd47ef2d39ffa41b14c6627f0bdf5ea947414161e6285b/dropbox-8.7.1.tar.gz"
MD5SUM="f5c9941e72ed2347c25755b92b61cd5b"
DOWNLOAD="https://files.pythonhosted.org/packages/88/c9/899c5d112eb4aa48fb611153c2f2eadafd859cbdee637b376d140a60e50d/dropbox-9.4.0.tar.gz"
MD5SUM="25f2106e9d4ee7b063749c8f22a567dc"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="pytest-runner six python-requests"