public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/lrslib/
Date: Fri,  3 Jan 2020 19:08:13 +0000 (UTC)	[thread overview]
Message-ID: <1578077617.a59687d166c949d5a50e59f7292a7f8327d1b2da.asturm@gentoo> (raw)

commit:     a59687d166c949d5a50e59f7292a7f8327d1b2da
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 18:46:37 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 18:53:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a59687d1

sci-libs/lrslib: Drop 042c-r2 and 051

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-libs/lrslib/Manifest              |  2 --
 sci-libs/lrslib/lrslib-042c-r2.ebuild | 60 -----------------------------------
 sci-libs/lrslib/lrslib-051.ebuild     | 44 -------------------------
 3 files changed, 106 deletions(-)

diff --git a/sci-libs/lrslib/Manifest b/sci-libs/lrslib/Manifest
index 7a3ea7bd1f8..e6fd1344b66 100644
--- a/sci-libs/lrslib/Manifest
+++ b/sci-libs/lrslib/Manifest
@@ -1,3 +1 @@
-DIST lrslib-042c.tar.gz 168765 BLAKE2B d9ac0d59e4ca356f4cf76fa4f3756b6badd79a8c8546b7bd3a2dc65d211af30d354b9829395e68d79bb5acf24ba2087ca4d8a390a7c7d98e6cad86d0f9a27eac SHA512 a5fdd65b2c4e4cadd5fb9679e0e94ddc6b3564cdb9bdfcb7304351fec943527d2dccf117148d8d418ad8bd4577c9f69dabd6ca07107c1c1555c8c6d17f38fa60
-DIST lrslib-051.tar.gz 179396 BLAKE2B 22697dc4e99bf9ae528328c1a03e87f5101b1e0c74cbee9c7dafb5e1c897ad07587e9664abd9710094a6fe78cba0cff48c0489f687bedb616886101286153cc6 SHA512 65e4752ae75f06bccb74b0e12e0b03943654cba048d54dbcf93a36bea7f73b32826babe066d5fe20d3c6609548dc957063558633affe64d795c240c1fe748927
 DIST lrslib-062.tar.gz 292745 BLAKE2B 1a2c0e264d590c38d83ee35616b1ec36d8a093b5c7f08179019261d8b321d5b95d8889ca6555ae69853f919d6d66358a865a8a2002516dfd560bec6658f3913d SHA512 1d644a7798580457ff266730f42f6fac317ec8cdf2509ad6028e7a838e5c4c948bd0f9499b840c227bad4269f7144ff72b87fe3a19bdb9ad0925ebe4a7bc4f9f

diff --git a/sci-libs/lrslib/lrslib-042c-r2.ebuild b/sci-libs/lrslib/lrslib-042c-r2.ebuild
deleted file mode 100644
index 8fafdff0cba..00000000000
--- a/sci-libs/lrslib/lrslib-042c-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit toolchain-funcs
-
-DESCRIPTION="self-contained ANSI C implementation of the reverse search algorithm"
-HOMEPAGE="http://cgm.cs.mcgill.ca/~avis/C/lrs.html"
-SRC_URI="http://cgm.cs.mcgill.ca/~avis/C/lrslib/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gmp"
-
-DEPEND="gmp? ( dev-libs/gmp )"
-RDEPEND="${DEPEND}"
-
-src_prepare(){
-	sed -i "s/gcc/$(tc-getCC)/g" makefile || die
-	sed -i "s/-O3/${CFLAGS} ${LDFLAGS}/g" makefile || die
-	# We don't like static linking to gmp or anywhere.
-	if use amd64 ; then
-		# This macro may only change messages that the
-		# binary outputs, but just in case... (Bug 384195)
-		sed -i "s/-static/-DB64/g" makefile || die
-	else
-		sed -i "s/-static//g" makefile || die
-	fi
-}
-
-src_compile () {
-	if use amd64 ; then
-		emake all64
-	else
-		emake
-	fi
-	if use gmp ; then
-		emake gmp
-	fi
-}
-
-src_install() {
-	dobin lrs redund redund1
-	# Collides with sys-block/buffer
-	newbin buffer lrsbuffer
-	if use x86; then
-		dobin nash setupnash setupnash2 2nash
-		# Prevent clash with cddlib:
-		newbin fourier lrsfourier
-	fi
-	if use gmp; then
-		dobin glrs gredund gfourier
-		# Clash with www-plugins/gnash
-		newbin gnash lrsgnash
-	fi
-	dodoc readme
-	dohtml lrslib.html
-}

diff --git a/sci-libs/lrslib/lrslib-051.ebuild b/sci-libs/lrslib/lrslib-051.ebuild
deleted file mode 100644
index 8c8e791b794..00000000000
--- a/sci-libs/lrslib/lrslib-051.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="self-contained ANSI C implementation of the reverse search algorithm"
-HOMEPAGE="http://cgm.cs.mcgill.ca/~avis/C/lrs.html"
-SRC_URI="http://cgm.cs.mcgill.ca/~avis/C/lrslib/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="gmp"
-
-DEPEND="gmp? ( dev-libs/gmp:0= )"
-RDEPEND="${DEPEND}"
-
-src_prepare(){
-	sed -i "s/gcc/$(tc-getCC)/g" makefile || die
-	sed -i "s/-O3/${CFLAGS} ${LDFLAGS}/g" makefile || die
-	# Prefix for install
-	sed -i "s,/usr/local,/usr,g" makefile || die
-}
-
-src_compile () {
-	if use gmp ; then
-		emake all
-		emake all-shared
-	else
-		emake allmp
-	fi
-}
-
-src_install() {
-	dodoc readme
-	# Library
-	if use gmp ; then
-		emake DESTDIR="${D}" install-shared
-	fi
-	# Install default set of binaries
-	emake DESTDIR="${D}" install-common
-}


             reply	other threads:[~2020-01-03 19:08 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-03 19:08 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-12-29 13:46 [gentoo-commits] repo/gentoo:master commit in: sci-libs/lrslib/ Yixun Lan
2021-12-05  4:00 Sam James
2021-11-06  1:01 Michael Orlitzky
2021-11-01  0:21 Michael Orlitzky
2021-10-23 13:51 Sam James
2021-10-23  0:17 Michael Orlitzky
2021-01-27  6:58 Sam James
2021-01-12 10:49 David Seifert
2020-01-03 14:30 Agostino Sarubbo
2020-01-01 15:30 Agostino Sarubbo
2018-06-01 14:05 Aaron Bauman
2017-07-31 18:12 Sebastien Fabbro
2017-07-31 18:12 Sebastien Fabbro
2016-03-02 19:28 Markus Meier

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=1578077617.a59687d166c949d5a50e59f7292a7f8327d1b2da.asturm@gentoo \
    --to=asturm@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