diff --git a/dev-python/WSME/WSME-0.11.0.ebuild b/dev-python/WSME/WSME-0.11.0.ebuild index 0e62785a0e..bb0df9a822 100644 --- a/dev-python/WSME/WSME-0.11.0.ebuild +++ b/dev-python/WSME/WSME-0.11.0.ebuild @@ -36,6 +36,8 @@ BDEPEND=" dev-python/flask[${PYTHON_USEDEP}] dev-python/flask-restful[${PYTHON_USEDEP}] dev-python/webtest[${PYTHON_USEDEP}] + + dev-python/sphinx[${PYTHON_USEDEP}] ) " diff --git a/dev-python/XenAPI/XenAPI-2.14-r1.ebuild b/dev-python/XenAPI/XenAPI-2.14-r1.ebuild index 261a2434d7..485fd3eb62 100644 --- a/dev-python/XenAPI/XenAPI-2.14-r1.ebuild +++ b/dev-python/XenAPI/XenAPI-2.14-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_8 ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 diff --git a/dev-python/font-v/Manifest b/dev-python/font-v/Manifest index 3fea12de96..cad3730c18 100644 --- a/dev-python/font-v/Manifest +++ b/dev-python/font-v/Manifest @@ -1,2 +1 @@ -DIST font-v-1.0.5.tar.gz 4270200 BLAKE2B b94c4e0bff4c07efd50803068e0fc061c910b24f8ed2e70ae1b92d06d69db9d707b6665fdc2179eb80ae814c3b2ad913f58b1c5d4a7b9f81b40269cbb505cfb7 SHA512 070415a72deb8a35804ee548f745edf399fe01ae279ea9ca88f0d1231af77a37f38456726db73e8df26d324bd8e0159b2978a668984d9f8cc24794e2a045cb73 -DIST font-v-2.1.0.tar.gz 4268916 BLAKE2B 596673c62cd29d8428f97d6c6e7cbd9591e9f4f94cc719ee438f59bfeaa81adae4dc2ebb04464cfa42ec4ff71019cf658acbfe05d748f6b98383484d1aaaba4e SHA512 a619971b32828eb026499a8fed67e2c8eca063d1a868be7586f4b8b2802ede5740bef009bf8f4e9891793bf78239d1c0329ebc3bc96cecef59666fe9635ce978 +DIST font-v-2.1.0.gh.tar.gz 4268916 BLAKE2B 596673c62cd29d8428f97d6c6e7cbd9591e9f4f94cc719ee438f59bfeaa81adae4dc2ebb04464cfa42ec4ff71019cf658acbfe05d748f6b98383484d1aaaba4e SHA512 a619971b32828eb026499a8fed67e2c8eca063d1a868be7586f4b8b2802ede5740bef009bf8f4e9891793bf78239d1c0329ebc3bc96cecef59666fe9635ce978 diff --git a/dev-python/font-v/font-v-1.0.5.ebuild b/dev-python/font-v/font-v-1.0.5.ebuild deleted file mode 100644 index 7f89b12adb..0000000000 --- a/dev-python/font-v/font-v-1.0.5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) - -inherit distutils-r1 - -SRC_URI="https://github.com/source-foundry/font-v/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64 ~x86" -DESCRIPTION="Font version string reporting and modification library" -HOMEPAGE="https://github.com/source-foundry/font-v" -LICENSE="MIT" -SLOT="0" - -RDEPEND=" - >=dev-python/fonttools-4.17[${PYTHON_USEDEP}] - >=dev-python/GitPython-3.1.11[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND="test? ( dev-vcs/git )" - -distutils_enable_tests pytest -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme - -python_test() { - #it want a git repo - git init || die - git config --global user.email "you@example.com" || die - git config --global user.name "Your Name" || die - git add . || die - git commit -m 'init' || die - - #pure madness - #https://github.com/source-foundry/font-v/blob/e6746e4a045c99e56af661918c96259b1f444ed4/tests/test_utilities.py#L34 - sed -e "s|\"font-v\"|\"${PWD##*/}\"|g" -i "tests/test_utilities.py" || die - epytest -vv -} diff --git a/dev-python/font-v/font-v-2.1.0.ebuild b/dev-python/font-v/font-v-2.1.0.ebuild index c53a816efb..6d6372a91d 100644 --- a/dev-python/font-v/font-v-2.1.0.ebuild +++ b/dev-python/font-v/font-v-2.1.0.ebuild @@ -9,7 +9,8 @@ inherit distutils-r1 DESCRIPTION="Font version string reporting and modification library" HOMEPAGE="https://github.com/source-foundry/font-v" -SRC_URI="https://github.com/source-foundry/font-v/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/source-foundry/font-v/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + KEYWORDS="~amd64" LICENSE="MIT" SLOT="0" @@ -21,10 +22,10 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="test? ( dev-vcs/git )" -distutils_enable_tests pytest +distutils_enable_tests --install pytest distutils_enable_sphinx docs dev-python/sphinx_rtd_theme -python_test() { +src_test() { #it want a git repo git init || die git config --global user.email "you@example.com" || die @@ -35,5 +36,6 @@ python_test() { #pure madness #https://github.com/source-foundry/font-v/blob/e6746e4a045c99e56af661918c96259b1f444ed4/tests/test_utilities.py#L34 sed -e "s|\"font-v\"|\"${PWD##*/}\"|g" -i "tests/test_utilities.py" || die - epytest -vv + + python_foreach_impl python_test } diff --git a/dev-python/pybeam/Manifest b/dev-python/pybeam/Manifest index 382848a9e3..eb001b4983 100644 --- a/dev-python/pybeam/Manifest +++ b/dev-python/pybeam/Manifest @@ -1 +1 @@ -DIST pybeam-0.7.tar.gz 12135 BLAKE2B 0eb5afcf087c7d0c559be5ca3466ed61b03451cc5b07a78ae595a2548ad5f8958a9724a44bf3730e96f6a211ba9d0b4fa1ac265fe3571c2962636e770226daa7 SHA512 d67af3941eef6a3fe18d3a0387431fd1df719079aa38f664a370ef700a31093281697ffbea46c8b87b7f3777db55b4b284530fe16e7395ba0f5bba2440d5ae4a +DIST pybeam-0.7.gh.tar.gz 12135 BLAKE2B 0eb5afcf087c7d0c559be5ca3466ed61b03451cc5b07a78ae595a2548ad5f8958a9724a44bf3730e96f6a211ba9d0b4fa1ac265fe3571c2962636e770226daa7 SHA512 d67af3941eef6a3fe18d3a0387431fd1df719079aa38f664a370ef700a31093281697ffbea46c8b87b7f3777db55b4b284530fe16e7395ba0f5bba2440d5ae4a diff --git a/dev-python/pybeam/pybeam-0.7.ebuild b/dev-python/pybeam/pybeam-0.7-r1.ebuild similarity index 81% rename from dev-python/pybeam/pybeam-0.7.ebuild rename to dev-python/pybeam/pybeam-0.7-r1.ebuild index d53adb0df5..e7c69ce435 100644 --- a/dev-python/pybeam/pybeam-0.7.ebuild +++ b/dev-python/pybeam/pybeam-0.7-r1.ebuild @@ -1,17 +1,17 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 DOCS_BUILDER="sphinx" DOCS_DIR="doc" -PYTHON_COMPAT=( python3_{8,9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 docs -SRC_URI="https://github.com/matwey/pybeam/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" DESCRIPTION="Python module to parse Erlang BEAM files" HOMEPAGE="https://github.com/matwey/pybeam" +SRC_URI="https://github.com/matwey/pybeam/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/dev-python/rstr/Manifest b/dev-python/rstr/Manifest index 3b57c5b997..1950f66ec1 100644 --- a/dev-python/rstr/Manifest +++ b/dev-python/rstr/Manifest @@ -1 +1 @@ -DIST rstr-3.1.0.tar.gz 12044 BLAKE2B 8b79b777d0b60f60c5e86be9521c5a08af72d5988e3b1ef871d29925a9b341e48668963e71972113655ea1ed2bc14060e09ec8068fbb30b7e7d27f1215810908 SHA512 3b5c8ed0039aa8e47ab777f273fdcc4158b6197646831908da66d2e5e6b313c6d12cfdb9832f131a79d47496ac200a8ba1ebb7cdfa03074c290d3c8442437216 +DIST rstr-3.2.0.tar.gz 12616 BLAKE2B d161fa291421cb56a7a5e05ef627e68b495ad2b3655483f46289780355bd3c312cbf44ad5710b17a1eb4f7e00f3695873f4677738a8d72aa4f2182051fffd182 SHA512 4e6613c68572c12755f3284baa97477843f39668f0753114a92b9d32c45cb7492fec299818ae4f7ea9bdf511ab715ef1dc0ef7d15af50bcb32fd9208f0e1af6e diff --git a/dev-python/rstr/rstr-3.1.0.ebuild b/dev-python/rstr/rstr-3.2.0.ebuild similarity index 89% rename from dev-python/rstr/rstr-3.1.0.ebuild rename to dev-python/rstr/rstr-3.2.0.ebuild index 8d112dacb3..8210226aa3 100644 --- a/dev-python/rstr/rstr-3.1.0.ebuild +++ b/dev-python/rstr/rstr-3.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{8..10} ) # pypy3 https://bugs.gentoo.org/835474 +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/types-python-dateutil/Manifest b/dev-python/types-python-dateutil/Manifest index cc0f4f8398..97b8c5ae9f 100644 --- a/dev-python/types-python-dateutil/Manifest +++ b/dev-python/types-python-dateutil/Manifest @@ -1 +1,2 @@ DIST types-python-dateutil-2.8.16.tar.gz 6973 BLAKE2B 2e883f73af0e79faf57f8469733ec742b9881e974a253ddd40e80628302ea29a9046a319088d75b9bc47792b0e225fe2c2f376ea4a5d794d710cf7aea7af7af3 SHA512 1d2927c6bd85fa8222c7519d3ac8ae6179da746ebb29ca4e9002ca410131e10445b8ebc2b70bb6df1b3e8ed90098827884bf5f928039d1627ca760c86cdcc113 +DIST types-python-dateutil-2.8.17.tar.gz 7018 BLAKE2B 261aa401e656a6524b96fd3c7ccf2cccf1dd8826c5597958ca1dde8b05ea656af7486b8487c57915b679c409befac004294e26a9fe401beefbe07060dfefc352 SHA512 ef33af71fd007175967b436a9115c1ce2defbb2a4d154c153e58ed72286e5090c73c959f3be0498a3613391b3b0519784a47678182d0d685007d386ae3005565 diff --git a/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild b/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild new file mode 100644 index 0000000000..5c6215e010 --- /dev/null +++ b/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Typing stubs for python-dateutil" +HOMEPAGE=" + https://pypi.org/project/types-python-dateutil/ + https://github.com/python/typeshed/tree/master/stubs/python-dateutil +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64" diff --git a/dev-python/types-requests/Manifest b/dev-python/types-requests/Manifest index 2799c749d0..90d6707a9c 100644 --- a/dev-python/types-requests/Manifest +++ b/dev-python/types-requests/Manifest @@ -1 +1,2 @@ DIST types-requests-2.27.27.tar.gz 11345 BLAKE2B 41239c8c64af3cae256f28b518f5ef89b1b3743730d382a3de5f0aa0b332358b3cee6e2acc3db0ecd2f52412ea4fbc0f648cbd1d856bf2d524a747c9d57fc8b8 SHA512 68bd04b7c7c0a712dbadb3f92f28547a95ddf3b03c372f4dff0f7ce45bfabe0f3f896cad65694adec13f6bbb20a5104eef98939ba0a5f8141812a5c16eda3347 +DIST types-requests-2.27.29.tar.gz 11366 BLAKE2B 4791fbcc95bbb16de6aa341afdf7b08d5f147628d3f2bc5b43c512e9df509a8fcdf95ac4f9c7f4f924aa5463040157730b33953a15144afd2d9b4adb7c16e48a SHA512 136acd5d1ae2334ecbe19c2dcac59d2c8d7c567bb5c4a0d15c279bcf61be1abebfb934743d5ad3c2792eaca6c6cc76756e9efa550448a831727de0846548f0a9 diff --git a/dev-python/types-requests/types-requests-2.27.29.ebuild b/dev-python/types-requests/types-requests-2.27.29.ebuild new file mode 100644 index 0000000000..0dde177cfe --- /dev/null +++ b/dev-python/types-requests/types-requests-2.27.29.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Typing stubs for requests" +HOMEPAGE=" + https://pypi.org/project/types-requests/ + https://github.com/python/typeshed/tree/master/stubs/requests +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64" + +RDEPEND="