From ef596bcaa32d9c69d88a3451193cb242da803db1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 25 Feb 2023 21:55:01 +0000 Subject: gentoo auto-resync : 25:02:2023 - 21:55:01 --- sci-mathematics/Manifest.gz | Bin 18368 -> 18364 bytes sci-mathematics/dunshire/Manifest | 2 +- sci-mathematics/dunshire/dunshire-0.1.1-r2.ebuild | 39 ---------------------- sci-mathematics/dunshire/dunshire-0.1.1-r3.ebuild | 39 ++++++++++++++++++++++ 4 files changed, 40 insertions(+), 40 deletions(-) delete mode 100644 sci-mathematics/dunshire/dunshire-0.1.1-r2.ebuild create mode 100644 sci-mathematics/dunshire/dunshire-0.1.1-r3.ebuild (limited to 'sci-mathematics') diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index f78a17f6ca9a..2eb827534077 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/dunshire/Manifest b/sci-mathematics/dunshire/Manifest index 43e32319ae96..9e709e2820ac 100644 --- a/sci-mathematics/dunshire/Manifest +++ b/sci-mathematics/dunshire/Manifest @@ -1,3 +1,3 @@ DIST dunshire-0.1.1.tar.gz 300878 BLAKE2B b0ed57e535313fbc653fdc7c8fd32fb98382db71dfe419e315f4b82fc4630e47757d74b9105e846b2eefaa7dcd93b12886eee341b11d0e8b562a52e480478e9a SHA512 5cdf8125d7fc1f76a483009392360e9e9088f9b58ca3f123d14e366421e831e4e7c8e17d367ba0430fb3cd61873cae7a004c903ff5417bfc9adecb7831681081 -EBUILD dunshire-0.1.1-r2.ebuild 959 BLAKE2B 87b6bfaf8311890110c699a5b9dd283bb6b34e5dfb9e4fb0bbbdb2c9cd6bd9ba04e7ec1dcf6e3f3519ce5b0642d4ee3660371186c66f3e2e7b2f53f588d92c6a SHA512 5ebfb31d9feed2df28a75f0c798800d79a1fda06d9b54f3742075d3ea772137d52847004e5b1c8ad429c64f358fac699d95e9674b8374bd31af61d1dea6258a8 +EBUILD dunshire-0.1.1-r3.ebuild 990 BLAKE2B 53032e91bc4e6ae20df8286664336e431b448a0282f85cb264ce8c205fcc44bd4ab2123e617e6369dae0435dfdc03cc7ef59a77c30b485163f2cf2f8f78c8724 SHA512 b63023dc2489d1cdd836982cc54b4fa778018a95ced53e4faf110ca1125110615c13724cbeefcc8fd9656a6d79090ae1a5dfd07ea338a75480fc2f9511371efe MISC metadata.xml 329 BLAKE2B e9cf64a4fd7f360e350a97ca0a9efe8e64ce485f2b025e456271c8e3d8bbf3f6950750a157eaa66e0639a800285351f84abd07789697acfbaf5422b9cb725ec6 SHA512 f8f757c9f662dfba3c0717720a7d2fe6e2c2bea517d6811cf9785d39cef92714c0ddddf3c56eecb6be37fc97fcd6ebdeba0412108b41ffc0c9cdde34c3e8a74a diff --git a/sci-mathematics/dunshire/dunshire-0.1.1-r2.ebuild b/sci-mathematics/dunshire/dunshire-0.1.1-r2.ebuild deleted file mode 100644 index 07433b5d2252..000000000000 --- a/sci-mathematics/dunshire/dunshire-0.1.1-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python library to solve linear games over symmetric cones" -HOMEPAGE="http://michael.orlitzky.com/code/dunshire/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="AGPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/cvxopt[${PYTHON_USEDEP}]" - -# Tests run on the build host? Bug #693916. There's one doctest that -# uses a numpy matrix, sorry. That will be fixed in the next release. -# Otherwise numpy is not needed; the required interfaces are provided -# through cvxopt. -BDEPEND="test? ( - ${RDEPEND} - dev-python/numpy[${PYTHON_USEDEP}] -)" - -python_install_all() { - use doc && local HTML_DOCS=( doc/build/html/. ) - local DOCS=( doc/README.rst ) - distutils-r1_python_install_all -} - -python_test() { - esetup.py test -} diff --git a/sci-mathematics/dunshire/dunshire-0.1.1-r3.ebuild b/sci-mathematics/dunshire/dunshire-0.1.1-r3.ebuild new file mode 100644 index 000000000000..f90e22df1022 --- /dev/null +++ b/sci-mathematics/dunshire/dunshire-0.1.1-r3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Python library to solve linear games over symmetric cones" +HOMEPAGE="http://michael.orlitzky.com/code/dunshire/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="AGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-python/cvxopt[${PYTHON_USEDEP}]" + +# Tests run on the build host? Bug #693916. There's one doctest that +# uses a numpy matrix, sorry. That will be fixed in the next release. +# Otherwise numpy is not needed; the required interfaces are provided +# through cvxopt. +BDEPEND="test? ( + ${RDEPEND} + dev-python/numpy[${PYTHON_USEDEP}] +)" + +python_install_all() { + use doc && local HTML_DOCS=( doc/build/html/. ) + local DOCS=( doc/README.rst ) + distutils-r1_python_install_all +} + +python_test() { + esetup.py test +} -- cgit v1.2.3