commit:     4e88a6eb606751f0997b7c44bde70fac7172a764
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 13:57:59 2024 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed May 29 13:57:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e88a6eb

sci-mathematics/singular: drop 4.3.2_p10

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sci-mathematics/singular/Manifest                  |   1 -
 sci-mathematics/singular/singular-4.3.2_p10.ebuild | 114 ---------------------
 2 files changed, 115 deletions(-)

diff --git a/sci-mathematics/singular/Manifest 
b/sci-mathematics/singular/Manifest
index c9cacfd68ac2..47b4b29f7af8 100644
--- a/sci-mathematics/singular/Manifest
+++ b/sci-mathematics/singular/Manifest
@@ -1,2 +1 @@
-DIST singular-4.3.2p10.tar.gz 20848377 BLAKE2B 
2487eb40c70dca516eca94585c59be0ebfeb43edce87dd16a2874bbefbe502fadcfda1164922ab7738a257e59f9e6b6535b7447702d325b36f1358ed5048c7dd
 SHA512 
9b914e8db2c4936184594200b07d37fc952a1399c3accb1ed30ec4a4b450afd3e3c174343e1169520d0d1ed6ac2e6d261fbbb731082e07b7caced4b5790f295e
 DIST singular-4.3.2p16.tar.gz 20880476 BLAKE2B 
ce226a6867b764e593ddbf2c71220d9ea14ccdfd956046d5a94dfb768a97927ca3cf961a9ea808cb77028f2c65d989032202d3a0bde555ace945df1e987077a8
 SHA512 
1dae0e229e124db03e5e240c3ab2f1049c9f77cf369f701c4a2d0767ba9c23baab2d5d14271e415a3ccbf7b9a9297fcf324b8ccc2841a5156d6ee846cb409de2

diff --git a/sci-mathematics/singular/singular-4.3.2_p10.ebuild 
b/sci-mathematics/singular/singular-4.3.2_p10.ebuild
deleted file mode 100644
index 7a31bdc8b895..000000000000
--- a/sci-mathematics/singular/singular-4.3.2_p10.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp-common flag-o-matic
-
-MY_PN=Singular
-MY_PV=$(ver_rs 3 '')
-# Consistency is different...
-MY_DIR2=$(ver_cut 1-3 ${PV})
-MY_DIR=$(ver_rs 1- '-' ${MY_DIR2})
-
-DESCRIPTION="Computer algebra system for polynomial computations"
-HOMEPAGE="https://www.singular.uni-kl.de/ https://github.com/Singular/Singular";
-SRC_URI="https://www.singular.uni-kl.de/ftp/pub/Math/${MY_PN}/SOURCES/${MY_DIR}/${PN}-${MY_PV}.tar.gz";
-S="${WORKDIR}/${PN}-${MY_DIR2}"
-
-# Most files say "version 2 or version 3 of the License," which is not
-# quite GPL-2+, and is why we have listed GPL-2 below. But AFAIK there
-# are no GPL-2-only files.
-LICENSE="BSD GPL-2 GPL-2+ GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~riscv ~x86 ~x86-linux"
-IUSE="emacs examples polymake +readline"
-
-# The interactive help uses "info" from sys-apps/texinfo.
-RDEPEND="
-       dev-lang/perl
-       dev-libs/gmp:0
-       dev-libs/ntl:=
-       sci-libs/cddlib
-       sci-mathematics/flint
-       sys-apps/texinfo
-       emacs? ( app-editors/emacs:* )
-       polymake? ( sci-mathematics/polymake )
-       readline? ( sys-libs/readline )
-"
-DEPEND="${RDEPEND}"
-
-SITEFILE=60${PN}-gentoo.el
-
-src_configure() {
-       # -Werror=strict-aliasing
-       # https://bugs.gentoo.org/927675
-       # https://github.com/Singular/Singular/issues/1212
-       #
-       # Do not trust with LTO either.
-       append-flags -fno-strict-aliasing
-       filter-lto
-
-       local myconf=(
-               --disable-debug
-               --disable-doc
-               --disable-optimizationflags
-               --disable-pyobject-module
-               --disable-python
-               --disable-python-module
-               --disable-python_module
-               --enable-factory
-               --enable-gfanlib
-               --enable-libfac
-               --with-flint
-               --with-gmp
-               --with-libparse
-               --with-ntl
-               --without-python
-               --without-pythonmodule
-               $(use_enable emacs)
-               $(use_enable polymake polymake-module)
-               $(use_with readline)
-       )
-       econf "${myconf[@]}"
-}
-
-src_compile() {
-       default
-
-       if use emacs; then
-               pushd "${S}"/emacs
-               elisp-compile *.el || die "elisp-compile failed"
-               popd
-       fi
-}
-
-src_install() {
-       # Do not compress singular's info file (singular.hlp)
-       # some consumer of that file do not know how to deal with compression
-       docompress -x /usr/share/info
-
-       default
-
-       dosym Singular /usr/bin/"${PN}"
-
-       find "${ED}" -type f -name '*.la' -delete || die
-}
-
-src_test() {
-       # SINGULAR_PROCS_DIR need to be set to "" otherwise plugins from
-       # an already installed version of singular may be used and cause 
segfault
-       # See https://github.com/Singular/Sources/issues/980
-       SINGULAR_PROCS_DIR="" emake check
-}
-
-pkg_postinst() {
-       einfo "Additional functionality can be enabled by installing"
-       einfo "sci-mathematics/4ti2"
-
-       use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-       use emacs && elisp-site-regen
-}

Reply via email to