From: "Michael Orlitzky" <mjo@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/singular/
Date: Mon, 22 Jan 2024 17:01:45 +0000 (UTC) [thread overview]
Message-ID: <1705942810.7b06c014c78ba720e48ce8205c25fdaaf083fbb6.mjo@gentoo> (raw)
commit: 7b06c014c78ba720e48ce8205c25fdaaf083fbb6
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 17:00:10 2024 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 17:00:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b06c014
sci-mathematics/singular: drop 4.3.2_p1
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/singular/Manifest | 1 -
sci-mathematics/singular/singular-4.3.2_p1.ebuild | 108 ----------------------
2 files changed, 109 deletions(-)
diff --git a/sci-mathematics/singular/Manifest b/sci-mathematics/singular/Manifest
index f08c117bbdb9..d567474d3cb1 100644
--- a/sci-mathematics/singular/Manifest
+++ b/sci-mathematics/singular/Manifest
@@ -1,2 +1 @@
-DIST singular-4.3.2p1.tar.gz 15013729 BLAKE2B 00276f2417cd9e2b71afcae66c2aeb7f9d4f434f5a90deeee56dded66e6d5e0020ab0b06b6561e41f5b196262993732ffeb9196f59315f1b6a081b0029fc99a1 SHA512 451054a0bf33b9d1c94a63f0946e1eb7b3e7b92bc025b6aa4f64e65183aeebd6354bac5f87f6e8b35cb713b30e97af5c66f92f02683144bb426f5e3a828db616
DIST singular-4.3.2p10.tar.gz 20848377 BLAKE2B 2487eb40c70dca516eca94585c59be0ebfeb43edce87dd16a2874bbefbe502fadcfda1164922ab7738a257e59f9e6b6535b7447702d325b36f1358ed5048c7dd SHA512 9b914e8db2c4936184594200b07d37fc952a1399c3accb1ed30ec4a4b450afd3e3c174343e1169520d0d1ed6ac2e6d261fbbb731082e07b7caced4b5790f295e
diff --git a/sci-mathematics/singular/singular-4.3.2_p1.ebuild b/sci-mathematics/singular/singular-4.3.2_p1.ebuild
deleted file mode 100644
index 9538852d6efb..000000000000
--- a/sci-mathematics/singular/singular-4.3.2_p1.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp-common
-
-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 static-libs"
-
-# 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-23.1:* )
- polymake? ( sci-mathematics/polymake )
- readline? ( sys-libs/readline )
-"
-DEPEND="${RDEPEND}"
-
-SITEFILE=60${PN}-gentoo.el
-
-src_configure() {
- 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_enable static-libs static)
- $(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}"
-
- # purge .la file
- find "${ED}" -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
-}
next reply other threads:[~2024-01-22 17:01 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-22 17:01 Michael Orlitzky [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-05 3:36 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/singular/ Michael Orlitzky
2024-08-23 17:22 Michael Orlitzky
2024-06-02 12:30 Michael Orlitzky
2024-05-29 14:01 Michael Orlitzky
2024-05-29 14:01 Michael Orlitzky
2024-03-31 23:37 Sam James
2024-01-22 5:53 Sam James
2023-12-07 2:32 Michael Orlitzky
2023-12-07 2:32 Michael Orlitzky
2023-11-27 13:23 Michael Orlitzky
2023-07-15 22:46 Michael Orlitzky
2023-06-08 11:14 Michael Orlitzky
2023-06-08 7:57 Joonas Niilola
2023-06-05 9:38 Joonas Niilola
2023-06-04 23:22 Michael Orlitzky
2023-01-23 21:02 Michael Orlitzky
2023-01-10 22:43 Michael Orlitzky
2022-12-23 23:35 Michael Orlitzky
2022-12-23 20:49 Arthur Zamarin
2022-12-21 3:00 Michael Orlitzky
2022-12-21 3:00 Michael Orlitzky
2022-10-25 11:12 Sam James
2022-07-16 14:05 Michael Orlitzky
2022-07-15 8:38 Joonas Niilola
2022-07-15 8:38 Joonas Niilola
2022-05-27 12:23 Michael Orlitzky
2022-05-27 12:23 Michael Orlitzky
2022-04-22 0:50 Sam James
2022-02-07 10:26 Jakov Smolić
2022-02-07 9:33 Jakov Smolić
2022-02-04 14:16 Michael Orlitzky
2021-12-31 16:37 Arthur Zamarin
2021-12-29 13:46 Yixun Lan
2021-12-25 19:08 Michael Orlitzky
2021-12-15 11:28 Andrew Ammerlaan
2021-11-22 3:07 Yixun Lan
2021-11-18 23:50 Georgy Yakovlev
2021-07-18 19:12 Michael Orlitzky
2021-07-02 1:03 Michael Orlitzky
2021-07-02 1:03 Michael Orlitzky
2021-07-02 1:03 Michael Orlitzky
2021-06-01 11:51 Michael Orlitzky
2021-05-30 5:15 Sam James
2021-05-28 19:40 Agostino Sarubbo
2021-05-28 19:37 Agostino Sarubbo
2021-01-06 15:19 Fabian Groffen
2020-06-27 20:45 Andreas K. Hüttel
2019-12-21 11:41 Ulrich Müller
2019-12-20 22:49 Ulrich Müller
2017-04-20 16:41 David Seifert
2015-11-12 10:11 Agostino Sarubbo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1705942810.7b06c014c78ba720e48ce8205c25fdaaf083fbb6.mjo@gentoo \
--to=mjo@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox