From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1298287-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 625DE13933E for <garchives@archives.gentoo.org>; Fri, 2 Jul 2021 01:03:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A27EDE0874; Fri, 2 Jul 2021 01:03:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A667E0871 for <gentoo-commits@lists.gentoo.org>; Fri, 2 Jul 2021 01:03:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88E753408DD for <gentoo-commits@lists.gentoo.org>; Fri, 2 Jul 2021 01:03:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 412757C1 for <gentoo-commits@lists.gentoo.org>; Fri, 2 Jul 2021 01:03:28 +0000 (UTC) From: "Michael Orlitzky" <mjo@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" <mjo@gentoo.org> Message-ID: <1625186643.41189d01594600473dfe79e54b18cfababd7ed69.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/singular/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/singular/singular-4.2.0_p3.ebuild X-VCS-Directories: sci-mathematics/singular/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 41189d01594600473dfe79e54b18cfababd7ed69 X-VCS-Branch: master Date: Fri, 2 Jul 2021 01:03:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 352f79b3-e220-4f42-8479-cd9309d4f08f X-Archives-Hash: ee61ab0f83925a020ed238416538a394 commit: 41189d01594600473dfe79e54b18cfababd7ed69 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Fri Jul 2 00:44:03 2021 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Fri Jul 2 00:44:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41189d01 sci-mathematics/singular: remove old "unused" singular-4.2.0_p3.ebuild. Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> sci-mathematics/singular/singular-4.2.0_p3.ebuild | 105 ---------------------- 1 file changed, 105 deletions(-) diff --git a/sci-mathematics/singular/singular-4.2.0_p3.ebuild b/sci-mathematics/singular/singular-4.2.0_p3.ebuild deleted file mode 100644 index 2e0528d5512..00000000000 --- a/sci-mathematics/singular/singular-4.2.0_p3.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools 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/Sources" -SRC_URI="ftp://jim.mathematik.uni-kl.de/pub/Math/${MY_PN}/SOURCES/${MY_DIR}/${PN}-${MY_PV}.tar.gz" - -LICENSE="BSD GPL-2 GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux" -IUSE="emacs examples +readline static-libs" - -RDEPEND="dev-libs/gmp:0 - dev-libs/ntl:= - emacs? ( >=app-editors/emacs-23.1:* ) - sci-mathematics/flint - sci-libs/cddlib - dev-lang/perl - readline? ( sys-libs/readline )" - -DEPEND="${RDEPEND}" - -SITEFILE=60${PN}-gentoo.el - -S="${WORKDIR}/${PN}-${MY_DIR2}" - -PATCHES=( - "${FILESDIR}/${PN}-4.2.0-gfan_linking.patch" - "${FILESDIR}/${PN}-4.2.0-doc_install.patch" - "${FILESDIR}/${PN}-4.2.0-no-static.patch" -) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - econf --with-gmp \ - --with-ntl="${EPREFIX}"/usr \ - --with-flint \ - --enable-gfanlib \ - --disable-debug \ - --disable-doc \ - --enable-factory \ - --enable-libfac \ - --enable-IntegerProgramming \ - --disable-polymake \ - --disable-optimizationflags \ - $(use_enable static-libs static) \ - $(use_enable emacs) \ - $(use_with readline) -} - -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 -}