dev-python/braintree: Bump to 4.34.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-03-01 06:57:33 +01:00
parent a237ce16f6
commit 028fb244eb
2 changed files with 40 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST braintree_python-4.31.0.gh.tar.gz 239483 BLAKE2B 959f039fa98a6acefb9b114bf8c7fef6d9b848f0a9c2e36dac86704df2e228604b316092022bfa2624c6d5688011e2ad85db6b2270736522497b67bfdbd8a2ff SHA512 5a29ab736f3c535c1e54f9210a148059833d1b56d073a0190407f103b65719cfdd02b3dd77ec61298127017dcc8bc4be0478aba2b386358169f5aaba264f19ea
DIST braintree_python-4.33.0.gh.tar.gz 247006 BLAKE2B 55f28e7bd99bf76d92875701a06779c0385a821a29a5ee7a137d00ea0ec8e9b7b2293eae12b2ec7d0470edbc450ea5ad610f8d1815ef4b55665fbf41b9904df4 SHA512 bb6fea92cde62beaa1556263c2eccc707692c7f9ed2c8ede2f12ef7382c07c17955f5dd1fd1f2bae90effa9e4e2f6bb7fdf4f51d849ab192fc49b3d08ce170a5
DIST braintree_python-4.33.1.gh.tar.gz 247023 BLAKE2B af47e62e1ee66699f40a4532f008eddcfb5968a8f771331934ab469d5c6011dd0d171c780cc27100af67294ca464505cdc93d53d069dc45c3158eb133f318c9c SHA512 9b347966e3edf33b94c6d70a2efed99db0665c71adb7658df3d71c42f77e98efd2b3a88b524f691f3b685bfc291d85a6368b780166d0bfca7806fa08885c3eaa
DIST braintree_python-4.34.0.gh.tar.gz 250439 BLAKE2B cc3d31be58c7b0a1ee1fbae258cd5721573f8a58e789950c481ea008d85a795da87a313b55b816a2660a764d22abfde8408327769722236d26cd1cd9620beeb0 SHA512 a181e0e38745c8037b9074ecc3b21ceb0c9f4d30a9931cf626cd1b75831a6d1daf9cf2f0ab02fa9c5f004d9f0f62e721aa02ad75ced57157e4f226290442c0a4

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_{10..13} )
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
}