diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-10-13 19:41:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-10-13 20:14:50 +0200 |
commit | 055c0cfe72aa89edb7e4e10570b78e9776243a5a (patch) | |
tree | c78e4d3f5423827fbcc2a51f9a3d493f06031cac /dev-python/PyGithub | |
parent | dev-python/nuitka: Bump to 1.1.4 (diff) | |
download | gentoo-055c0cfe72aa89edb7e4e10570b78e9776243a5a.tar.gz gentoo-055c0cfe72aa89edb7e4e10570b78e9776243a5a.tar.bz2 gentoo-055c0cfe72aa89edb7e4e10570b78e9776243a5a.zip |
dev-python/PyGithub: Bump to 1.56
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/PyGithub')
-rw-r--r-- | dev-python/PyGithub/Manifest | 1 | ||||
-rw-r--r-- | dev-python/PyGithub/PyGithub-1.56.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/PyGithub/Manifest b/dev-python/PyGithub/Manifest index 8a69860df0a5..f6c986408afa 100644 --- a/dev-python/PyGithub/Manifest +++ b/dev-python/PyGithub/Manifest @@ -1 +1,2 @@ DIST PyGithub-1.55.gh.tar.gz 3123996 BLAKE2B 58522db764b44286bb4b65cfa13fcce8fcaac99f1b71d62afe6cfda2bc8b13537de0b0db65e0cbc5c6e4a346cfdbf0084c0c8f4c13ed046d8bea33b10fa51382 SHA512 7ea9e67428e98330f90f1d78e5a003dbe1a6d5cd98b6c729f2030a73d21b4a72a7957382c888fac0b7bae4a409cfb53473a19e7e73df46b251df0327871e173a +DIST PyGithub-1.56.gh.tar.gz 3144624 BLAKE2B 04ee4784802f04b39da3fe28b67a884f14adc3d60f3085a5490d91e7b56fcadb735e70e8295ffddb63f21ca417932f1f8da0adf592e59034d3f7449d3c837aad SHA512 fe20d5eaa0f0267c49141fdd4d37bff81fe766a7db48662ceabc5a3f69ae7587bba6958d959a67dd224d4402f9b5785b67b461cac4c2f1bf5a15e8fcf8ae98ec diff --git a/dev-python/PyGithub/PyGithub-1.56.ebuild b/dev-python/PyGithub/PyGithub-1.56.ebuild new file mode 100644 index 000000000000..2aff9499dee1 --- /dev/null +++ b/dev-python/PyGithub/PyGithub-1.56.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python library to access the Github API v3" +HOMEPAGE=" + https://github.com/PyGithub/PyGithub/ + https://pypi.org/project/PyGithub/ +" +SRC_URI=" + https://github.com/PyGithub/PyGithub/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/deprecated[${PYTHON_USEDEP}] + >=dev-python/pyjwt-2.0[${PYTHON_USEDEP}] + >=dev-python/pynacl-1.4.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.14.0[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/cryptography[${PYTHON_USEDEP}] + >=dev-python/httpretty-0.9.6[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |