mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
dropbox-sdk: update to the last version, drop old version
add documentation
This commit is contained in:
parent
db7447b898
commit
8b9894a755
3 changed files with 10 additions and 38 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST dropbox-sdk-10.1.1.tar.gz 1204066 BLAKE2B 8634915c24f1f1d3199103917987ae28c4df25146099da2a41e7c3dc185441b4c6fe887b49caf18ca65fcc66a214df9199e043f78754b4d23371e2c1a9dc6a7a SHA512 0af92e4460c2f2c3f520054d1c28678612ad92d1ea64451a26036b23876896f527aed2d959af398bbd0f7b7f21ee39afbf27bc3168a2c7636af8f76db64c4e67
|
||||
DIST dropbox-sdk-11.36.1.tar.gz 1166660 BLAKE2B ed2586c27e020cae38dafdee7367ea38ad191a6275ab677adef13cf3b3c2eec1fab204d6845a7108b33a925a41459053eb5d33bd5a5c0be771613e9f89f775d7 SHA512 29db18efa9059744d6e18f3f15eaee9161df0e26af947fac3fdf3d7e906380f499c1ecc4b2c14a5207c879cd282b73dea44a1dc664f27be99fbe2cd309b86f09
|
||||
DIST dropbox-sdk-12.0.2.gh.tar.gz 1155008 BLAKE2B cc0006909a204f0b9efab7605680027b144dfff5c91ddf31460884ada4948b285ff0777f19f9395a1fc447a906018c3a43b40bc7651bdbb715c597849e7ecba9 SHA512 73834c89e2dc8b129a549d082a7862ec81f731c4977c6650cc421c08b62903b78c9fa1e191a330022591e2cb0e29b825e89e2d04056e2f4e6362a168b57fec39
|
||||
|
|
|
|||
|
|
@ -1,31 +0,0 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
EGO_PN=github.com/dropbox/${PN}-python
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A Python SDK for integrating with the Dropbox API v2."
|
||||
HOMEPAGE="https://github.com/dropbox/dropbox-sdk-python"
|
||||
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.12.0[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}-python-${PV}"
|
||||
|
||||
python_prepare_all() {
|
||||
sed -e '/setup_requires=setup_requires/d' -i setup.py
|
||||
sed -e '/tests_require=test_reqs/d' -i setup.py
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
|
@ -5,27 +5,31 @@ EAPI=8
|
|||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
EGO_PN=github.com/dropbox/${PN}-python
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A Python SDK for integrating with the Dropbox API v2."
|
||||
HOMEPAGE="https://github.com/dropbox/dropbox-sdk-python"
|
||||
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://github.com/dropbox/${PN}-python/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
|
||||
RDEPEND="
|
||||
>=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.12.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/stone-2.0.0[${PYTHON_USEDEP}]"
|
||||
>=dev-python/stone-2.0.0[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}-python-${PV}"
|
||||
|
||||
distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
|
||||
|
||||
python_prepare_all() {
|
||||
# deprecated
|
||||
sed -e '/setup_requires=setup_requires/d' -i setup.py
|
||||
sed -e '/tests_require=test_reqs/d' -i setup.py
|
||||
distutils-r1_python_prepare_all
|
||||
Loading…
Reference in a new issue