diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-06-28 15:45:53 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-06-28 15:45:53 +0000 |
| commit | 1f57ad414f4ba7dcaae4e7bafdb7aae74d3ed1eb (patch) | |
| tree | 73b1f43be70060ed0eafe7ec90a3a2060e4671f6 /dev-python | |
| parent | 0f18b73fc7ac6ef5671b7bf05ef45097d76ff18d (diff) | |
| download | baldeagleos-repo-1f57ad414f4ba7dcaae4e7bafdb7aae74d3ed1eb.tar.gz baldeagleos-repo-1f57ad414f4ba7dcaae4e7bafdb7aae74d3ed1eb.tar.xz baldeagleos-repo-1f57ad414f4ba7dcaae4e7bafdb7aae74d3ed1eb.zip | |
Adding metadata
Diffstat (limited to 'dev-python')
11 files changed, 53 insertions, 86 deletions
diff --git a/dev-python/beniget/beniget-0.4.1-r1.ebuild b/dev-python/beniget/beniget-0.4.1-r1.ebuild index baec4f4f8820..3ae19ba0f795 100644 --- a/dev-python/beniget/beniget-0.4.1-r1.ebuild +++ b/dev-python/beniget/beniget-0.4.1-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86" RDEPEND="=dev-python/gast-0.5*[${PYTHON_USEDEP}]" diff --git a/dev-python/beniget/beniget-0.4.1.ebuild b/dev-python/beniget/beniget-0.4.1.ebuild deleted file mode 100644 index 01eebfabbf61..000000000000 --- a/dev-python/beniget/beniget-0.4.1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9,10} ) -inherit distutils-r1 - -DESCRIPTION="Extract semantic information about static Python code" -HOMEPAGE=" - https://pypi.org/project/beniget/ - https://github.com/serge-sans-paille/beniget/" -SRC_URI=" - https://github.com/serge-sans-paille/beniget/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86" - -RDEPEND="=dev-python/gast-0.5*[${PYTHON_USEDEP}]" - -distutils_enable_tests setup.py diff --git a/dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch b/dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch new file mode 100644 index 000000000000..22b2910d4d10 --- /dev/null +++ b/dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch @@ -0,0 +1,46 @@ +https://bugs.gentoo.org/834198 + +diff --git a/ipyparallel/tests/test_view.py b/ipyparallel/tests/test_view.py +index 5b5ca41..4c04d02 100644 +--- a/ipyparallel/tests/test_view.py ++++ b/ipyparallel/tests/test_view.py +@@ -628,7 +628,7 @@ class TestView(ClusterTestCase): + """exceptions in execute requests raise appropriately""" + view = self.client[-1] + ar = view.execute("1/0") +- self.assertRaisesRemote(ZeroDivisionError, ar.get, 2) ++ self.assertRaisesRemote(ZeroDivisionError, ar.get, 20) + + def test_remoteerror_render_exception(self): + """RemoteErrors get nice tracebacks""" +@@ -637,7 +637,7 @@ class TestView(ClusterTestCase): + ip = get_ipython() + ip.user_ns['ar'] = ar + with capture_output() as io: +- ip.run_cell("ar.get(2)") ++ ip.run_cell("ar.get(20)") + + self.assertTrue('ZeroDivisionError' in io.stdout, io.stdout) + +@@ -649,7 +649,7 @@ class TestView(ClusterTestCase): + ip.user_ns['ar'] = ar + + with capture_output() as io: +- ip.run_cell("ar.get(2)") ++ ip.run_cell("ar.get(20)") + + count = min(error.CompositeError.tb_limit, len(view)) + +@@ -689,10 +689,10 @@ class TestView(ClusterTestCase): + view = self.client[-1] + ar = view.execute("%pylab inline") + # at least check if this raised: +- reply = ar.get(5) ++ reply = ar.get(50) + # include imports, in case user config + ar = view.execute("plot(rand(100))", silent=False) +- reply = ar.get(5) ++ reply = ar.get(50) + assert ar.wait_for_output(5) + self.assertEqual(len(reply.outputs), 1) + output = reply.outputs[0] diff --git a/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild b/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild index 37d9025ec8d7..a69bc99277fb 100644 --- a/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild +++ b/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild @@ -48,6 +48,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${PN}-7.1.0-test-timeouts.patch + "${FILESDIR}"/${PN}-8.3.0-additional-test-timeouts.patch ) src_configure() { diff --git a/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild b/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild index 3873df34d306..2a1c3c830e05 100644 --- a/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild +++ b/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild @@ -52,6 +52,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${PN}-7.1.0-test-timeouts.patch + "${FILESDIR}"/${PN}-8.3.0-additional-test-timeouts.patch ) src_configure() { diff --git a/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild b/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild index 3873df34d306..2a1c3c830e05 100644 --- a/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild +++ b/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild @@ -52,6 +52,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${PN}-7.1.0-test-timeouts.patch + "${FILESDIR}"/${PN}-8.3.0-additional-test-timeouts.patch ) src_configure() { diff --git a/dev-python/scikit-build/scikit-build-0.14.1.ebuild b/dev-python/scikit-build/scikit-build-0.14.1.ebuild index c83e594b4e1f..6043f554b3cf 100644 --- a/dev-python/scikit-build/scikit-build-0.14.1.ebuild +++ b/dev-python/scikit-build/scikit-build-0.14.1.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86" RDEPEND=" dev-python/distro[${PYTHON_USEDEP}] diff --git a/dev-python/testresources/testresources-2.0.1-r2.ebuild b/dev-python/testresources/testresources-2.0.1-r2.ebuild index 933338dcf266..f025ad6888ec 100644 --- a/dev-python/testresources/testresources-2.0.1-r2.ebuild +++ b/dev-python/testresources/testresources-2.0.1-r2.ebuild @@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" RDEPEND=" dev-python/pbr[${PYTHON_USEDEP}] diff --git a/dev-python/testresources/testresources-2.0.1.ebuild b/dev-python/testresources/testresources-2.0.1.ebuild deleted file mode 100644 index a76c1861ca98..000000000000 --- a/dev-python/testresources/testresources-2.0.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{7,8,9,10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="A pyunit extension for managing expensive test resources" -HOMEPAGE="https://launchpad.net/testresources" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -BDEPEND=" - dev-python/pbr[${PYTHON_USEDEP}] - test? ( - dev-python/testtools[${PYTHON_USEDEP}] - dev-python/fixtures[${PYTHON_USEDEP}] - )" - -distutils_enable_tests nose - -python_prepare_all() { - sed \ - -e 's:testBasicSortTests:_&:g' \ - -i testresources/tests/test_optimising_test_suite.py || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/testscenarios/testscenarios-0.5.0-r1.ebuild b/dev-python/testscenarios/testscenarios-0.5.0-r1.ebuild deleted file mode 100644 index 1b8b3e08b794..000000000000 --- a/dev-python/testscenarios/testscenarios-0.5.0-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{7,8,9,10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="A pyunit extension for dependency injection" -HOMEPAGE="https://launchpad.net/testscenarios" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" - -RDEPEND=" - dev-python/testtools[${PYTHON_USEDEP}]" - -# using pytest for tests since unittest loader fails with py3.5+ -BDEPEND=" - >=dev-python/pbr-0.11[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_test() { - epytest --deselect testscenarios/tests/test_testcase.py -} diff --git a/dev-python/testscenarios/testscenarios-0.5.0-r3.ebuild b/dev-python/testscenarios/testscenarios-0.5.0-r3.ebuild index c1f6cfc7b9f6..14852c8b4ff6 100644 --- a/dev-python/testscenarios/testscenarios-0.5.0-r3.ebuild +++ b/dev-python/testscenarios/testscenarios-0.5.0-r3.ebuild @@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" RDEPEND=" dev-python/testtools[${PYTHON_USEDEP}] |
