Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/rw/
Date: Wed, 26 May 2021 10:42:22
Message-Id: 1622025657.6e63814cbcbbc5c2345219c7de00366e51a71067.mjo@gentoo
1 commit: 6e63814cbcbbc5c2345219c7de00366e51a71067
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 10:40:57 2021 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 10:40:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e63814c
7
8 sci-mathematics/rw: remove old "unused" rw-0.8-r3.ebuild.
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
12
13 sci-mathematics/rw/Manifest | 1 -
14 sci-mathematics/rw/rw-0.8-r3.ebuild | 40 -------------------------------------
15 2 files changed, 41 deletions(-)
16
17 diff --git a/sci-mathematics/rw/Manifest b/sci-mathematics/rw/Manifest
18 index 03f8a2f53d1..78105a50908 100644
19 --- a/sci-mathematics/rw/Manifest
20 +++ b/sci-mathematics/rw/Manifest
21 @@ -1,2 +1 @@
22 -DIST rw-0.8.tar.gz 217215 BLAKE2B e6f379ce7cde0fafb0c6e234e8958018c0682ad47e60da3755a891b7eee4c910e84556252a333a12fe0cf2eac88863a272cb8fa6d2cfa4c9f1e93bd88bc6a2d2 SHA512 609d46fd3c76e2eb1724cc3e3ff9354d13b3c15ce23b96bef9f73f02b490e1d8713146230db079fcc87f45f5acc0e04130dac04e27589836e20891c63219f3ec
23 DIST rw-0.9.tar.gz 340385 BLAKE2B 2eba540146094eea7adb26874ed6f7982e46a863c786bf6f4a55af2d1d3167641e10c324f2b0e0e366bb8f83503b5da5fb02447abf46ae955da78ac8fe6149b6 SHA512 f4f1910506cbdb557ca50bac6f63cfca3271a5df8d13c67d2d9bba79b9cdb03196a679e6091554175decbee0871888de71bed5746662c9a75418f0f5dd9bd609
24
25 diff --git a/sci-mathematics/rw/rw-0.8-r3.ebuild b/sci-mathematics/rw/rw-0.8-r3.ebuild
26 deleted file mode 100644
27 index 3daf3404e45..00000000000
28 --- a/sci-mathematics/rw/rw-0.8-r3.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Compute rank-width decompositions of graphs"
39 -HOMEPAGE="https://sourceforge.net/projects/rankwidth/"
40 -SRC_URI="https://downloads.sourceforge.net/project/rankwidth/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2+"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
45 -IUSE=""
46 -
47 -# We have a file collision (librw.so) with xpaint, bug 560210.
48 -RDEPEND="!media-gfx/xpaint"
49 -
50 -src_prepare() {
51 - # The upstream tarball for v0.8 contains SYMLINKS to ar-lib,
52 - # compile, install-sh, ltmain.sh, etc. And those symlinks don't
53 - # always point to a working location for us, so we have to
54 - # (re)generate actual files for that stuff. Bug 696986.
55 - default
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - # The executable depends on igraph, which has gone off the rails
61 - # upstream and has copy/pasted ~10 libraries into its src/ directory.
62 - econf --disable-executable --disable-static
63 -}
64 -
65 -src_install() {
66 - default
67 -
68 - find "${ED}" -name '*.la' -delete \
69 - || die 'failed to delete libtool archives'
70 -}