From 61030998b572fe72948a5b00ef176d3f5bc3d613 Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Sat, 23 Sep 2023 06:18:19 +0000 Subject: Adding metadata --- dev-python/importlib-resources/Manifest | 2 - .../importlib-resources-5.12.0.ebuild | 46 --------------------- .../importlib-resources-6.0.0.ebuild | 46 --------------------- dev-python/importlib-resources/metadata.xml | 20 --------- dev-python/langdetect/Manifest | 2 + dev-python/langdetect/metadata.xml | 10 +++-- dev-python/lrcalc/Manifest | 1 + dev-python/lrcalc/lrcalc-2.1.ebuild | 31 ++++++++++++++ dev-python/lrcalc/metadata.xml | 21 ++++++++++ dev-python/nptyping/Manifest | 2 - dev-python/nptyping/metadata.xml | 11 ----- dev-python/nptyping/nptyping-2.3.1.ebuild | 47 ---------------------- dev-python/nptyping/nptyping-2.5.0.ebuild | 47 ---------------------- dev-python/sphinx_ansible_theme/Manifest | 1 - dev-python/sphinx_ansible_theme/metadata.xml | 15 ------- .../sphinx_ansible_theme-0.10.2.ebuild | 32 --------------- dev-python/urwid/Manifest | 1 + dev-python/urwid/urwid-2.2.1.ebuild | 33 +++++++++++++++ 18 files changed, 95 insertions(+), 273 deletions(-) delete mode 100644 dev-python/importlib-resources/Manifest delete mode 100644 dev-python/importlib-resources/importlib-resources-5.12.0.ebuild delete mode 100644 dev-python/importlib-resources/importlib-resources-6.0.0.ebuild delete mode 100644 dev-python/importlib-resources/metadata.xml create mode 100644 dev-python/lrcalc/Manifest create mode 100644 dev-python/lrcalc/lrcalc-2.1.ebuild create mode 100644 dev-python/lrcalc/metadata.xml delete mode 100644 dev-python/nptyping/Manifest delete mode 100644 dev-python/nptyping/metadata.xml delete mode 100644 dev-python/nptyping/nptyping-2.3.1.ebuild delete mode 100644 dev-python/nptyping/nptyping-2.5.0.ebuild delete mode 100644 dev-python/sphinx_ansible_theme/Manifest delete mode 100644 dev-python/sphinx_ansible_theme/metadata.xml delete mode 100644 dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.10.2.ebuild create mode 100644 dev-python/urwid/urwid-2.2.1.ebuild (limited to 'dev-python') diff --git a/dev-python/importlib-resources/Manifest b/dev-python/importlib-resources/Manifest deleted file mode 100644 index 75ff8b79c797..000000000000 --- a/dev-python/importlib-resources/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST importlib_resources-5.12.0.tar.gz 39894 BLAKE2B bbae92bd62b54afc0093f8daa8f0fabaf18da7b2c9c578a2e6b6b7cc3207384e4fd037762c4ac8bc862900ac2da112a3b8ae236b1d3ca072c739f2d1ad3edd36 SHA512 00875d82cf3d2103872079ee2882c4000cc65141d97988265721cc6861a64dfe480e5c2191a2b22d0b9b9e42de1fc06d54f6d8eb4f37aaf91a819ee9306dc06f -DIST importlib_resources-6.0.0.tar.gz 35570 BLAKE2B c71f0dbfe49eebd63c0e56e25f019cb30d9fbddd6e4db8fa739bd44d5c00f429bf732a1e2f2be74ebc051c020c0fc0a678cf8eb6c2b9b52e340abe1a62144aae SHA512 c7475b0be67bf8655998df78d2683a733f20e85eb4b03f04508b3408a8751e0b4a8fcbe695feb83144c9b6de6e4ba93dd3419647d1db2ad8d92ff7dbbf6970c4 diff --git a/dev-python/importlib-resources/importlib-resources-5.12.0.ebuild b/dev-python/importlib-resources/importlib-resources-5.12.0.ebuild deleted file mode 100644 index 746d8b1111bc..000000000000 --- a/dev-python/importlib-resources/importlib-resources-5.12.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_PEP517=flit -# This is a backport of importlib.resources that's present since py3.9. -# However, the version in 3.9 is buggy, so matplotlib needs it on 3.9 -# as well. -PYTHON_COMPAT=( python3_{8,9,10,11} pypy3 ) - -inherit distutils-r1 pypi - -DESCRIPTION="Read resources from Python packages" -HOMEPAGE=" - https://github.com/python/importlib_resources/ - https://pypi.org/project/importlib-resources/ -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos ~x64-solaris" - -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/zipp-3.7.0-r1[${PYTHON_USEDEP}] - ' 3.8 3.9) -" - -distutils_enable_tests unittest - -src_configure() { - grep -q 'build-backend = "setuptools' pyproject.toml || - die "Upstream changed build-backend, recheck" - # write a custom pyproject.toml to ease setuptools bootstrap - cat > pyproject.toml <<-EOF || die - [build-system] - requires = ["flit_core >=3.2,<4"] - build-backend = "flit_core.buildapi" - - [project] - name = "importlib_resources" - version = "${PV}" - description = "Read resources from Python packages" - EOF -} diff --git a/dev-python/importlib-resources/importlib-resources-6.0.0.ebuild b/dev-python/importlib-resources/importlib-resources-6.0.0.ebuild deleted file mode 100644 index 2324ee2ae4eb..000000000000 --- a/dev-python/importlib-resources/importlib-resources-6.0.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_PEP517=flit -# This is a backport of importlib.resources that's present since py3.9. -# However, the version in 3.9 is buggy, so matplotlib needs it on 3.9 -# as well. -PYTHON_COMPAT=( python3_{8,9,10,11} pypy3 ) - -inherit distutils-r1 pypi - -DESCRIPTION="Read resources from Python packages" -HOMEPAGE=" - https://github.com/python/importlib_resources/ - https://pypi.org/project/importlib-resources/ -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris" - -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/zipp-3.7.0-r1[${PYTHON_USEDEP}] - ' 3.8 3.9) -" - -distutils_enable_tests unittest - -src_configure() { - grep -q 'build-backend = "setuptools' pyproject.toml || - die "Upstream changed build-backend, recheck" - # write a custom pyproject.toml to ease setuptools bootstrap - cat > pyproject.toml <<-EOF || die - [build-system] - requires = ["flit_core >=3.2,<4"] - build-backend = "flit_core.buildapi" - - [project] - name = "importlib_resources" - version = "${PV}" - description = "Read resources from Python packages" - EOF -} diff --git a/dev-python/importlib-resources/metadata.xml b/dev-python/importlib-resources/metadata.xml deleted file mode 100644 index d4420b4c6c1f..000000000000 --- a/dev-python/importlib-resources/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - python@gentoo.org - Python - - - Backport of Python standard library importlib.resources module - for Python 2.7, and 3.4 through 3.8. Users of Python 3.9 and beyond - should use the standard library module, since for these versions, - importlib_resources just delegates to that module. - - - https://github.com/python/importlib_resources/issues - https://importlib-resources.readthedocs.io/ - - gentoo-staging - - \ No newline at end of file diff --git a/dev-python/langdetect/Manifest b/dev-python/langdetect/Manifest index a11d7c268c91..e9da2ac43cac 100644 --- a/dev-python/langdetect/Manifest +++ b/dev-python/langdetect/Manifest @@ -1 +1,3 @@ DIST langdetect-1.0.9.tar.gz 981474 BLAKE2B ea8a9c3f16a2987c080742473bff4f2c1503f53fb3c2b40b0b1d6212bb6133ea22dce7864ffcfb8968c3a46b157d45cb3e2cf6f84bdbed0266cc716a853b032c SHA512 7558d674c47b080c79e43a00a25d2c7f77188cf60bea2cecb3bebb803d75e1aa42b43c74bd26ea1b541f4cb927421908882cbec01a91f0913984217e71ccc8db +EBUILD langdetect-1.0.9.ebuild 493 BLAKE2B 0df8bce19bc80f79f8e76bcef5a4c2caf333365fe0cb9a3c076b7858bceded5a3e58921474f866a2709dd657b7ed330c1ec4a7f9d7bab0fcf1bc92d77cabc32d SHA512 ea2a1adcb133ac5fc951ba1aa90ef1ce3dfcc424e59727591763d4875aa044a74188be2d15fd89c6b2e83ed6ea04ec3d9851ed584ae79d2c2c127bde7d994b48 +MISC metadata.xml 457 BLAKE2B 630128a3e982b6d60cc7b9f74c79fcb5ee47a71a02c73a50af9da8cedb6fad8e20a7f74b881e5b25c6483b92c9edbd56552cd38b2d9cbfa8b3eb4530facea969 SHA512 674f4f5cd809c6c77bc14e0f5687fa972bef14bdfa0b3343c5d66b7163eef1906eb87d060c8288732f825de71dce291ad0b841a5f2f0dd230f957b5687e45d45 diff --git a/dev-python/langdetect/metadata.xml b/dev-python/langdetect/metadata.xml index ddb5b0f1787e..020e07f2a3dd 100644 --- a/dev-python/langdetect/metadata.xml +++ b/dev-python/langdetect/metadata.xml @@ -2,9 +2,11 @@ - cyber+gentoo@sysrq.in - Anna + marcin.deranek@slonko.net + Marcin Deranek - - gentoo-guru-overlay + + https://github.com/Mimino666/langdetect/issues + + slonko-overlay \ No newline at end of file diff --git a/dev-python/lrcalc/Manifest b/dev-python/lrcalc/Manifest new file mode 100644 index 000000000000..087604119042 --- /dev/null +++ b/dev-python/lrcalc/Manifest @@ -0,0 +1 @@ +DIST lrcalc_python-2.1.tar.gz 16452 BLAKE2B 9abdb23834e136f10d960695751bc6569f248abf72a7e89f7feafe4ce046bea47faed299e4ecf5e99ab419e6cb02bb861736006c20de2e328321b9bacb96845d SHA512 b6d3bc61be1fe478bef74d1c51d7072521ef8d43bf64323cce0985582e2981c02382fa38a2501f5c9537349573721a1de8e166149ee4df31ed13bf0f0fb5d2a8 diff --git a/dev-python/lrcalc/lrcalc-2.1.ebuild b/dev-python/lrcalc/lrcalc-2.1.ebuild new file mode 100644 index 000000000000..0e92c18d8ade --- /dev/null +++ b/dev-python/lrcalc/lrcalc-2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8,9,10,11} ) +DISTUTILS_USE_PEP517=setuptools +DISTUTILS_EXT=1 +inherit distutils-r1 pypi + +DESCRIPTION="Python bindings for sci-mathematics/lrcalc" +HOMEPAGE="https://bitbucket.org/asbuch/lrcalc" +# Avoid a name clash with the sci-mathematics/lrcalc tarball +SRC_URI="$(pypi_sdist_url) -> ${PN}_python-${PV}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +BDEPEND="dev-python/cython[${PYTHON_USEDEP}]" +DEPEND="~sci-mathematics/lrcalc-${PV}" +RDEPEND="${DEPEND}" + +src_prepare() { + # Fix this typo in setup.py to avoid a QA warning + sed -i setup.py \ + -e 's/long_description_type/long_description_content_type/' \ + || die + default +} diff --git a/dev-python/lrcalc/metadata.xml b/dev-python/lrcalc/metadata.xml new file mode 100644 index 000000000000..4e4fe7df26d0 --- /dev/null +++ b/dev-python/lrcalc/metadata.xml @@ -0,0 +1,21 @@ + + + + + mjo@gentoo.org + + + frp.bissey@gmail.com + François Bissey + + + proxy-maint@gentoo.org + Proxy Maintainers + + + sci-mathematics@gentoo.org + Gentoo Mathematics Project + + + gentoo-staging + \ No newline at end of file diff --git a/dev-python/nptyping/Manifest b/dev-python/nptyping/Manifest deleted file mode 100644 index 6db23cb31d5f..000000000000 --- a/dev-python/nptyping/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST nptyping-2.3.1.gh.tar.gz 66951 BLAKE2B 781e2e84b7d89337c4753a050e95f3f9cad3a1aca22ea235e203ebe231bfc7dc4e91f5455603c4f7fe833b7b97ea9e8e561eea62eef4d0b2dce4ade077b8526d SHA512 a80df18cba3d427668be0f44f3ca315cf80daf7e3aed90d76b159479de069054cb4a2442abf7b658ddc853736fc7c3be2b0d1db2d7c9e54938cb1883eb0cb2c9 -DIST nptyping-2.5.0.gh.tar.gz 72870 BLAKE2B 16c6cb90c36bbf0b97da5ff74cee7030c641ef76d055cc5691b9d83adab2714d6e3515fd4e8616fece74606e109e6b115348964614b408df06b4f5c3cbccce37 SHA512 2cde9c5f7694d4f916b85c93b86df7f72709a70b2ffa91b7bbc98c5884236f5b36bb545a89c37e8c02a9b460065c97151d77c64f8d93b92fd93bcff406f039d9 diff --git a/dev-python/nptyping/metadata.xml b/dev-python/nptyping/metadata.xml deleted file mode 100644 index bd3ed5539e0e..000000000000 --- a/dev-python/nptyping/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - python@gentoo.org - Gentoo Python Project - - - gentoo-staging - - \ No newline at end of file diff --git a/dev-python/nptyping/nptyping-2.3.1.ebuild b/dev-python/nptyping/nptyping-2.3.1.ebuild deleted file mode 100644 index ec8f4bc6becc..000000000000 --- a/dev-python/nptyping/nptyping-2.3.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8,9,10,11} ) - -inherit distutils-r1 - -DESCRIPTION="Type hints for Numpy" -HOMEPAGE=" - https://pypi.org/project/nptyping/ - https://github.com/ramonhagenaars/nptyping/ -" -SRC_URI=" - https://github.com/ramonhagenaars/nptyping/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mypy[${PYTHON_USEDEP}] - dev-python/typeguard[${PYTHON_USEDEP}] - ) -" - -EPYTEST_IGNORE=( - # TODO: package beartype? - tests/test_beartype.py - # TODO: package pyright? - tests/test_pyright.py - # test for... whether the release is on pypi? - # requires Internet + feedparser, meaningless for users - tests/test_package_info.py - # relies on Internet access to fetch packages for pip - tests/test_wheel.py -) - -distutils_enable_tests pytest diff --git a/dev-python/nptyping/nptyping-2.5.0.ebuild b/dev-python/nptyping/nptyping-2.5.0.ebuild deleted file mode 100644 index a2e74c94db5a..000000000000 --- a/dev-python/nptyping/nptyping-2.5.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8,9,10,11} ) - -inherit distutils-r1 - -DESCRIPTION="Type hints for Numpy" -HOMEPAGE=" - https://pypi.org/project/nptyping/ - https://github.com/ramonhagenaars/nptyping/ -" -SRC_URI=" - https://github.com/ramonhagenaars/nptyping/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mypy[${PYTHON_USEDEP}] - dev-python/typeguard[${PYTHON_USEDEP}] - ) -" - -EPYTEST_IGNORE=( - # TODO: package beartype? - tests/test_beartype.py - # TODO: package pyright? - tests/test_pyright.py - # test for... whether the release is on pypi? - # requires Internet + feedparser, meaningless for users - tests/test_package_info.py - # relies on Internet access to fetch packages for pip - tests/test_wheel.py -) - -distutils_enable_tests pytest diff --git a/dev-python/sphinx_ansible_theme/Manifest b/dev-python/sphinx_ansible_theme/Manifest deleted file mode 100644 index 554ed5d4edf3..000000000000 --- a/dev-python/sphinx_ansible_theme/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sphinx-ansible-theme-0.10.2.tar.gz 49652 BLAKE2B 76f91af09976c16550e8257698f2ffdd1d6e477eea7ed1bad2413693a006e7aa2d83c83bffaa2a0a5a6d2a62bb401828211faf1295980ffd8f00cf836fe5c8bb SHA512 ea991533cac674869a838c89f16d287910dfa528e63fbe1c4803a1797bf8fc11836299af4da1952da2be0fcc5da8d69abb7412157a9bdcada7295a1688b45614 diff --git a/dev-python/sphinx_ansible_theme/metadata.xml b/dev-python/sphinx_ansible_theme/metadata.xml deleted file mode 100644 index 6a8c7329d653..000000000000 --- a/dev-python/sphinx_ansible_theme/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - marecki@gentoo.org - Marek Szuba - - - python@gentoo.org - Python - - - gentoo-staging - - \ No newline at end of file diff --git a/dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.10.2.ebuild b/dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.10.2.ebuild deleted file mode 100644 index 5adae0dbcc08..000000000000 --- a/dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.10.2.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYPI_NO_NORMALIZE=1 -PYPI_PN="sphinx-ansible-theme" -PYTHON_COMPAT=( python3_{8,9,10,11} ) - -inherit distutils-r1 pypi - -DESCRIPTION="A reusable Ansible Sphinx theme" -HOMEPAGE=" - https://github.com/ansible-community/sphinx_ansible_theme/ - https://pypi.org/project/sphinx-ansible-theme/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~riscv" - -RDEPEND=" - dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/setuptools-scm-7.0.5[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs \ - 'dev-python/ansible-pygments' \ - 'dev-python/sphinx-notfound-page' diff --git a/dev-python/urwid/Manifest b/dev-python/urwid/Manifest index e64309d4c658..995cdbdf1c45 100644 --- a/dev-python/urwid/Manifest +++ b/dev-python/urwid/Manifest @@ -1,2 +1,3 @@ DIST urwid-2.1.2.tar.gz 634621 BLAKE2B ce274820c27708fd0b10f22359923316576b895f6888c9b174b42dedcd551353b6c3ba797c68d61a082ecf23b8f0108a58454bdb44806e33b74d9e6e5bd28537 SHA512 f102bdde5f5d39d4bce455020bbe4f18290589da0750a3b15b1e2bc8acf8a405f02295d7efa3009877801a36bfbfade92ec963086122e9b133db137d816a1ea5 DIST urwid-2.2.0.tar.gz 671888 BLAKE2B 456217f81d7a42a0ac19f55f2a886fac172bdf0951d3d0660f1273a8450acf3b15372f2087b29c118a8c557f475589bf856f58b69a60a05901629cbfa1cb8f51 SHA512 f4bc8f06f72f23499eddc8dbd15566a39a2129a10c2b685410144e4aa25f9c314b72162020e3d626f77ab4e113fe4a08a7fd9bc372142be799d06abc520cbb7e +DIST urwid-2.2.1.tar.gz 676199 BLAKE2B 4a73d36a715dd47a1f67b7c826ff27c0c69fe2df2159b2429cac1dcef4bfbbff1b1bec60135b14f6213426321b2c703c3e9542e6ace657cd140507e6f01f88b5 SHA512 dc7aa526292af84315deb8c839bd4694f19a3263a89c66a0ea70c3c6642c9b0e7902393ab66872b2cbdd2861c90317e4cbb91e64eee066e68f41c8dac245623f diff --git a/dev-python/urwid/urwid-2.2.1.ebuild b/dev-python/urwid/urwid-2.2.1.ebuild new file mode 100644 index 000000000000..9c83128eb930 --- /dev/null +++ b/dev-python/urwid/urwid-2.2.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2023 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +PYTHON_COMPAT=( python3_{8,9,10,11} ) +PYTHON_REQ_USE="ncurses" + +inherit distutils-r1 + +DESCRIPTION="Curses-based user interface library for Python" +HOMEPAGE="http://urwid.org/ https://pypi.org/project/urwid/ https://github.com/urwid/urwid/" +SRC_URI="https://files.pythonhosted.org/packages/88/2b/88ed2915a1219c5543a97e761dd1fa46402025f64e57c571795f8ee1afab/urwid-2.2.1.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +distutils_enable_sphinx docs +distutils_enable_tests setup.py + +src_prepare() { + # optional tests broken by modern tornado versions + sed -e 's:import tornado:&_broken:' \ + -i urwid/tests/test_event_loops.py || die + distutils-r1_src_prepare +} + +python_install_all() { + use examples && dodoc -r examples + distutils-r1_python_install_all + python_optimize +} -- cgit v1.3