diff options
author | Pacho Ramos <pacho@gentoo.org> | 2024-07-31 09:58:16 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2024-07-31 11:23:07 +0200 |
commit | 674cfc81bf05db1f99609cdf3eb0b6e22f59873d (patch) | |
tree | 34db4884b4aaf94dff5dba33fe05941b45828d2c /sci-mathematics | |
parent | sci-mathematics/gsl-shell: enable py3.12 (diff) | |
download | gentoo-674cfc81bf05db1f99609cdf3eb0b6e22f59873d.tar.gz gentoo-674cfc81bf05db1f99609cdf3eb0b6e22f59873d.tar.bz2 gentoo-674cfc81bf05db1f99609cdf3eb0b6e22f59873d.zip |
sci-mathematics/gsl-shell: drop 2.3.2
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/gsl-shell/Manifest | 1 | ||||
-rw-r--r-- | sci-mathematics/gsl-shell/gsl-shell-2.3.2.ebuild | 62 |
2 files changed, 0 insertions, 63 deletions
diff --git a/sci-mathematics/gsl-shell/Manifest b/sci-mathematics/gsl-shell/Manifest index 3c8d0e70418b..5afff48f17b9 100644 --- a/sci-mathematics/gsl-shell/Manifest +++ b/sci-mathematics/gsl-shell/Manifest @@ -1,2 +1 @@ -DIST gsl-shell-2.3.2.tar.gz 3400376 BLAKE2B 8218b4d3232048fe7575631c7acc66d313520ee4d41a1dd2c267f021c8271a427673a575cc00f8f55a4868b8ec5e9626c0cbaa6ea9fa76662a726e436a527cf3 SHA512 6379380ab15a7ec477d67d36305ce76c551d32e88d8611447eeb6deaf9877c362392bce45599a2b2988331064c22626260c41f8548624c23e2c4e3c59c87c291 DIST gsl-shell-2.3.5.tar.gz 2533145 BLAKE2B 9eec5ee0676429a08b628766450f366b6998c4fc14e6b3108c49a9bf2ef4019c9b7671edbb0def295849155676df6c2bc8975aacb4ff906befc243bed147d80c SHA512 9712714a6cce249b007e475916d870eb2ce8bbc4ab2f0e49b8644378243723c9a386c285eacf5a8c54e27e22bab63fb0cd74d4641652230a8682c201b7e63da8 diff --git a/sci-mathematics/gsl-shell/gsl-shell-2.3.2.ebuild b/sci-mathematics/gsl-shell/gsl-shell-2.3.2.ebuild deleted file mode 100644 index 1531e0e47cb0..000000000000 --- a/sci-mathematics/gsl-shell/gsl-shell-2.3.2.ebuild +++ /dev/null @@ -1,62 +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} ) -DOCS_BUILDER="sphinx" -DOCS_DIR="doc/user-manual" -DOCS_AUTODOC=0 -inherit toolchain-funcs python-any-r1 docs - -MY_P=${P/_/-} -DESCRIPTION="Lua interactive shell for sci-libs/gsl" -HOMEPAGE="https://www.nongnu.org/gsl-shell/" -SRC_URI="https://github.com/franko/gsl-shell/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -SLOT="0" -LICENSE="GPL-3" -KEYWORDS="~amd64 ~x86" -IUSE="fox" - -RDEPEND=" - >=sci-libs/gsl-1.14:= - virtual/blas - >=x11-libs/agg-2.5 - >=media-libs/freetype-2.4.10 - sys-libs/readline:0= - || ( media-fonts/ubuntu-font-family media-fonts/freefont media-fonts/dejavu ) - fox? ( x11-libs/fox:1.6 ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-lang/luajit - virtual/pkgconfig - doc? ( virtual/latex-base ) -" - -PATCHES=( - "${FILESDIR}/${P}-no-compile-in-install.patch" - "${FILESDIR}/${P}-sphinx-extmath-to-imgmath.patch" -) - -src_prepare() { - tc-export PKG_CONFIG - default -} - -src_compile() { - local BLAS=$($(tc-getPKG_CONFIG) --libs blas) - local GSL=$($(tc-getPKG_CONFIG) --libs gsl) - emake -j1 gsl-shell CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" \ - GSL_LIBS="$($(tc-getPKG_CONFIG) --libs gsl) ${BLAS}" - if use fox; then - local FOX_INCLUDES="$(WANT_FOX=1.6 fox-config --cflags)" - local FOX_LIBS="$(WANT_FOX=1.6 fox-config --libs)" - emake -j1 gsl-shell-gui CC="$(tc-getCC)" CXX="$(tc-getCXX)" \ - CFLAGS="${CFLAGS}" FOX_INCLUDES="${FOX_INCLUDES}" FOX_LIBS="${FOX_LIBS}" \ - GSL_LIBS="$($(tc-getPKG_CONFIG) --libs gsl) ${BLAS}" - fi - docs_compile -} |