dev-python/braintree: Bump to 4.39.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-14 07:50:52 +02:00
parent f3d491aa96
commit 71f2cae56f
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST braintree_python-4.38.0.gh.tar.gz 252949 BLAKE2B 1ea4d1a1b2388fd3df1c5fd402a4feb1978e9a2817d358d4aa7fa473202a213d156f4517bd35d1adec48e0b0c2197cd015f4862bcebf8350da7c81761f3bd56e SHA512 b336c4004ca12695211a97d320d6c03eccadebfc514d9f639030cbae6008bf995a5ee997e9c175ddcb06e7c46228c2f871333a9a0f1985916c47ccc8ddb2750b
DIST braintree_python-4.39.0.gh.tar.gz 260297 BLAKE2B 96164326535726735f8c26ae5ec7746d0c05a01ca316c900a6b8f765a08dff354a1b5d41296a5a78b25afeeeb238047ecd55a464f7089b1bd8facea894702b30 SHA512 a803777196022c174dc619fba126f5333a9e331a29b55b29ebcbae66c9c2c069e43a993a9d5cf9f1c5bd40353ae3987d616cbc639180b86a88a987042193d394

View File

@@ -0,0 +1,39 @@
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
MY_P=braintree_python-${PV}
DESCRIPTION="Braintree Python Library"
HOMEPAGE="
https://developer.paypal.com/braintree/docs/reference/overview/
https://github.com/braintree/braintree_python/
https://pypi.org/project/braintree/
"
# no tests in sdist, as of 4.19.0
SRC_URI="
https://github.com/braintree/braintree_python/archive/${PV}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=dev-python/requests-0.11.0[${PYTHON_USEDEP}]
"
DOCS=( README.md )
distutils_enable_tests unittest
python_test() {
eunittest tests/unit
}