diff options
author | Julien Roy <julien@jroy.ca> | 2024-05-14 18:42:22 -0400 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2024-05-14 18:42:22 -0400 |
commit | 0f6c4b3ad254f94146800510f7f641816db37e2b (patch) | |
tree | 0146e28822b07ae90a05189cbd515b095abab9c9 /dev-python/pygsl | |
parent | dev-python/mastodon-py: drop 1.8.0 (diff) | |
download | guru-0f6c4b3ad254f94146800510f7f641816db37e2b.tar.gz guru-0f6c4b3ad254f94146800510f7f641816db37e2b.tar.bz2 guru-0f6c4b3ad254f94146800510f7f641816db37e2b.zip |
dev-python/pygsl: add 2.3.4
Closes: https://bugs.gentoo.org/931408
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'dev-python/pygsl')
-rw-r--r-- | dev-python/pygsl/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pygsl/pygsl-2.3.4.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/pygsl/Manifest b/dev-python/pygsl/Manifest index b941fbd47..be7ef21bf 100644 --- a/dev-python/pygsl/Manifest +++ b/dev-python/pygsl/Manifest @@ -1 +1,2 @@ DIST pygsl-2.3.3.gh.tar.gz 1110939 BLAKE2B 9da5e35a6367a8cc03f836cab5e41d8d6e7c0c3d5bca995e01cf83e308f1922e6fce677977830920bc1184c6ac531f79da21d3941a63a72e16eb13b0faeabe0e SHA512 289713c2ac5d1adb1f5dd4379b704fbcfa56227b0bdbd19166a4c218d7eb9b41cb4927c265862996ae668486733510e56b6a6a0e0046d1040c88e8e854ce4a48 +DIST pygsl-2.3.4.gh.tar.gz 1100233 BLAKE2B 0d59062ae7a6193225ac731a9a12a7c32df9c309a90e358fd77f7c957f8d27269e97634022036aa7b1d99e2c3703a7c45387c97557c4e28762310009626cb465 SHA512 4b510426bafc06c79742f0ef0ad07e31a7aa74c14bab88bd2f0a2acb125569ecf38aeab0eaf01590bd052474a4aa7f8b39a66f853e4bc4a392e126dcf4bfb359 diff --git a/dev-python/pygsl/pygsl-2.3.4.ebuild b/dev-python/pygsl/pygsl-2.3.4.ebuild new file mode 100644 index 000000000..0674001ef --- /dev/null +++ b/dev-python/pygsl/pygsl-2.3.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Python interface for the GNU scientific library (gsl)" +HOMEPAGE="https://github.com/pygsl/pygsl" +SRC_URI="https://github.com/pygsl/pygsl/archive/v.${PV}.tar.gz -> ${P}.gh.tar.gz" +S="${WORKDIR}/${PN}-v.${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="examples" +# Tests are also failing upstream +# https://github.com/pygsl/pygsl/issues/15 +RESTRICT="test" + +DEPEND=" + sci-libs/gsl + dev-python/numpy[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx doc dev-python/sphinx-rtd-theme +distutils_enable_tests pytest + +src_install() { + use examples && dodoc -r examples + distutils-r1_src_install +} |