From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AC456158042 for ; Sun, 27 Oct 2024 02:38:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD730E07F1; Sun, 27 Oct 2024 02:38:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3374E07F1 for ; Sun, 27 Oct 2024 02:38:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B967D343127 for ; Sun, 27 Oct 2024 02:38:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51F06F32 for ; Sun, 27 Oct 2024 02:38:52 +0000 (UTC) From: "Michael Orlitzky" 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" Message-ID: <1729996722.74208bcb75230f2d3e95c2fc5bffd3faa1132abe.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/lrslib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/lrslib/lrslib-071b.ebuild X-VCS-Directories: sci-libs/lrslib/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 74208bcb75230f2d3e95c2fc5bffd3faa1132abe X-VCS-Branch: master Date: Sun, 27 Oct 2024 02:38:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7721be02-3922-49b8-8258-07184a1d9295 X-Archives-Hash: bf7f6cf792592ddc044851f6a061bc26 commit: 74208bcb75230f2d3e95c2fc5bffd3faa1132abe Author: Michael Orlitzky gentoo org> AuthorDate: Sat Oct 26 20:20:34 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Oct 27 02:38:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74208bcb sci-libs/lrslib: drop 071b Signed-off-by: Michael Orlitzky gentoo.org> sci-libs/lrslib/lrslib-071b.ebuild | 58 -------------------------------------- 1 file changed, 58 deletions(-) diff --git a/sci-libs/lrslib/lrslib-071b.ebuild b/sci-libs/lrslib/lrslib-071b.ebuild deleted file mode 100644 index dce7bc19ece6..000000000000 --- a/sci-libs/lrslib/lrslib-071b.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Reverse-search algorithm for vertex enumeration problems" -HOMEPAGE="http://cgm.cs.mcgill.ca/~avis/C/lrs.html" -SRC_URI="http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/${P}.tar.gz" - -# COPYING is GPL-2, but e.g. lrslib.h says "or ... any later version." -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux" -IUSE="gmp mpi" - -BDEPEND="" -RDEPEND=" - gmp? ( - dev-libs/gmp:0= - mpi? ( virtual/mpi ) - )" -DEPEND="${RDEPEND}" - -src_prepare() { - default - tc-export CC - - # The "makefile" sort-of supports CFLAGS as of lrslib-071b, but - # "-O3" is still included verbatim in many targets. Likewise, a - # LIBDIR variable exists but "lib" remains hard-coded in the install - # targets. - sed -e "s/-O3/${CFLAGS}/g" \ - -e 's/$(CC) -shared/$(CC) $(LDFLAGS) -shared/' \ - -e "s,/usr/local,${EPREFIX}/usr,g" \ - -e "s,/lib,/$(get_libdir),g" \ - -i makefile || die -} - -src_compile() { - if use gmp ; then - emake - emake all-shared - use mpi && emake mplrs - else - emake allmp - fi -} - -src_install() { - emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-common - if use gmp; then - emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install - use mpi && dobin mplrs - fi - dodoc README -}