From 42786d9a11710e40f96fd75351bb1ce41568ad4c Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Tue, 24 Jan 2023 00:56:21 +0000 Subject: Adding metadata --- .../google-pasta/google-pasta-0.2.0-r2.ebuild | 20 +++++++ dev-python/keyring/keyring-23.13.1-r1.ebuild | 62 ++++++++++++++++++++++ dev-python/keyring/keyring-23.13.1.ebuild | 55 ------------------- dev-python/numpy/numpy-1.24.0.ebuild | 2 +- dev-python/olm/metadata.xml | 1 + dev-python/opt-einsum/opt-einsum-3.3.0-r1.ebuild | 21 ++++++++ dev-python/wheel/metadata.xml | 4 +- 7 files changed, 108 insertions(+), 57 deletions(-) create mode 100644 dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild create mode 100644 dev-python/keyring/keyring-23.13.1-r1.ebuild delete mode 100644 dev-python/keyring/keyring-23.13.1.ebuild create mode 100644 dev-python/opt-einsum/opt-einsum-3.3.0-r1.ebuild (limited to 'dev-python') diff --git a/dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild b/dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild new file mode 100644 index 000000000000..9a3d5455ebc9 --- /dev/null +++ b/dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{7,8,9,10,11} ) +inherit distutils-r1 + +DESCRIPTION="AST-based Python refactoring library" +HOMEPAGE="https://pypi.org/project/google-pasta/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest diff --git a/dev-python/keyring/keyring-23.13.1-r1.ebuild b/dev-python/keyring/keyring-23.13.1-r1.ebuild new file mode 100644 index 000000000000..91f7cd3a24c9 --- /dev/null +++ b/dev-python/keyring/keyring-23.13.1-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{7,8,9,10,11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Provides access to the system keyring service" +HOMEPAGE=" + https://github.com/jaraco/keyring/ + https://pypi.org/project/keyring/ +" +SRC_URI=" + https://github.com/jaraco/keyring/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +SLOT="0" +LICENSE="PSF-2" +KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" + +RDEPEND=" + >=dev-python/secretstorage-3.2[${PYTHON_USEDEP}] + dev-python/jaraco-classes[${PYTHON_USEDEP}] + >=dev-python/jeepney-0.4.2[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/importlib_metadata-4.11.4[${PYTHON_USEDEP}] + ' 3.8 3.9 3.10 3.11) + $(python_gen_cond_dep ' + dev-python/importlib_resources + ' 3.8) +" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +EPYTEST_DESELECT=( + # this test fails if importlib-metadata returns more than one + # entry, i.e. when keyring is installed already + tests/test_packaging.py::test_entry_point +) + +EPYTEST_IGNORE=( + # apparently does not unlock the keyring properly + tests/backends/test_libsecret.py + # hangs + tests/backends/test_kwallet.py +) + +python_compile() { + distutils-r1_python_compile + # https://github.com/jaraco/keyring/issues/621 + python_moduleinto keyring + python_domodule keyring/{py.typed,*.zsh} +} diff --git a/dev-python/keyring/keyring-23.13.1.ebuild b/dev-python/keyring/keyring-23.13.1.ebuild deleted file mode 100644 index c0c0e657b584..000000000000 --- a/dev-python/keyring/keyring-23.13.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{7,8,9,10,11} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Provides access to the system keyring service" -HOMEPAGE=" - https://github.com/jaraco/keyring/ - https://pypi.org/project/keyring/ -" -SRC_URI=" - https://github.com/jaraco/keyring/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -SLOT="0" -LICENSE="PSF-2" -KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" - -RDEPEND=" - >=dev-python/secretstorage-3.2[${PYTHON_USEDEP}] - dev-python/jaraco-classes[${PYTHON_USEDEP}] - >=dev-python/jeepney-0.4.2[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/importlib_metadata-4.11.4[${PYTHON_USEDEP}] - ' 3.8 3.9 3.10 3.11) - $(python_gen_cond_dep ' - dev-python/importlib_resources - ' 3.8) -" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} - -EPYTEST_DESELECT=( - # this test fails if importlib-metadata returns more than one - # entry, i.e. when keyring is installed already - tests/test_packaging.py::test_entry_point -) - -EPYTEST_IGNORE=( - # apparently does not unlock the keyring properly - tests/backends/test_libsecret.py - # hangs - tests/backends/test_kwallet.py -) diff --git a/dev-python/numpy/numpy-1.24.0.ebuild b/dev-python/numpy/numpy-1.24.0.ebuild index 6729335a5ff8..0e6453ea20f0 100644 --- a/dev-python/numpy/numpy-1.24.0.ebuild +++ b/dev-python/numpy/numpy-1.24.0.ebuild @@ -22,7 +22,7 @@ SRC_URI=" " LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="lapack" RDEPEND=" diff --git a/dev-python/olm/metadata.xml b/dev-python/olm/metadata.xml index ecb14105e8e1..19d7686060c7 100644 --- a/dev-python/olm/metadata.xml +++ b/dev-python/olm/metadata.xml @@ -6,6 +6,7 @@ Julien Roy + cpe:/a:matrix:olm https://gitlab.matrix.org/matrix-org/olm/-/issues https://poljar.github.io/python-olm/html/index.html diff --git a/dev-python/opt-einsum/opt-einsum-3.3.0-r1.ebuild b/dev-python/opt-einsum/opt-einsum-3.3.0-r1.ebuild new file mode 100644 index 000000000000..89b4f92322ba --- /dev/null +++ b/dev-python/opt-einsum/opt-einsum-3.3.0-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{7,8,9,10,11} ) +inherit distutils-r1 + +DESCRIPTION="Optimized Einsum: A tensor contraction order optimizer" +HOMEPAGE="https://pypi.org/project/opt-einsum/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P/-/_}.tar.gz" +S="${WORKDIR}/${P/-/_}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest diff --git a/dev-python/wheel/metadata.xml b/dev-python/wheel/metadata.xml index ea8988e8af6a..76f8624de37a 100644 --- a/dev-python/wheel/metadata.xml +++ b/dev-python/wheel/metadata.xml @@ -5,7 +5,9 @@ python@gentoo.org Python - + + cpe:/a:wheel_project:wheel + gentoo-staging \ No newline at end of file -- cgit v1.3