summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2021-11-02 14:12:57 -0400
committerMichael Orlitzky <mjo@gentoo.org>2021-11-02 14:12:57 -0400
commit11737e5334643be95b3b3249cc128175a02c46eb (patch)
tree1d4d06eaf2ec007a6449e85ee5d38182d999f537
parentsci-mathematics/cliquer: remove old "unused" cliquer-1.21.ebuild. (diff)
downloadgentoo-11737e5334643be95b3b3249cc128175a02c46eb.tar.gz
gentoo-11737e5334643be95b3b3249cc128175a02c46eb.tar.bz2
gentoo-11737e5334643be95b3b3249cc128175a02c46eb.zip
sci-mathematics/planarity: remove old "unused" planarity-3.0.0.5.ebuild.
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
-rw-r--r--sci-mathematics/planarity/Manifest1
-rw-r--r--sci-mathematics/planarity/files/planarity-3.0.0.5-extern.patch21
-rw-r--r--sci-mathematics/planarity/planarity-3.0.0.5.ebuild33
3 files changed, 0 insertions, 55 deletions
diff --git a/sci-mathematics/planarity/Manifest b/sci-mathematics/planarity/Manifest
index 7ffcc279bbf9..576593fd2f71 100644
--- a/sci-mathematics/planarity/Manifest
+++ b/sci-mathematics/planarity/Manifest
@@ -1,2 +1 @@
-DIST planarity-3.0.0.5.tar.gz 492644 BLAKE2B d183bc07cab7246b62cc7340956206e3f6c5999aa92b223e7665ebd8ae1bc0c354011c078ea4f42d2e45efa2ae5e83e082e4c8d80e3391a4f20be1020ebf8188 SHA512 dfeb7e024e1f5758e5abbd854c4ca963b4f5d45433b2c5eb00ce85c154b5407ebccd1ace0db167488dee757db2c23367101a2aa568941a3664bac9058ea24328
DIST planarity-3.0.1.1.tar.gz 456236 BLAKE2B 60040c8e205dbd9eb67667c6554836a9545bab74ccfb51e319edb191425f1b74403916e7887d06cb2d570eb17694338819ee5fd9828d6636ebecbade8915cdfa SHA512 50d2b6905d20252a6d482aae15984673972508540416a3e9396ff67923bf3bfb5668ef00309d42e540e5c8dd3ac4636ef54da2e5ee334075e87d2f3af6488035
diff --git a/sci-mathematics/planarity/files/planarity-3.0.0.5-extern.patch b/sci-mathematics/planarity/files/planarity-3.0.0.5-extern.patch
deleted file mode 100644
index c1b2a27e55c6..000000000000
--- a/sci-mathematics/planarity/files/planarity-3.0.0.5-extern.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Naur planarity-2.2.0.orig/c/planarity.h planarity-2.2.0/c/planarity.h
---- planarity-2.2.0.orig/c/planarity.h 2015-06-04 22:24:57.753965370 +1200
-+++ planarity-2.2.0/c/planarity.h 2015-06-04 23:02:38.138973933 +1200
-@@ -77,7 +77,7 @@
- int legacyCommandLine(int argc, char *argv[]);
- int menu();
-
--char Mode,
-+extern char Mode,
- OrigOut,
- EmbeddableOut,
- ObstructedOut,
-@@ -88,7 +88,7 @@
-
- /* Low-level Utilities */
- #define MAXLINE 1024
--char Line[MAXLINE];
-+extern char Line[MAXLINE];
-
- void Message(char *message);
- void ErrorMessage(char *message);
diff --git a/sci-mathematics/planarity/planarity-3.0.0.5.ebuild b/sci-mathematics/planarity/planarity-3.0.0.5.ebuild
deleted file mode 100644
index e9cb127f19fd..000000000000
--- a/sci-mathematics/planarity/planarity-3.0.0.5.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="edge-addition-planarity-suite-Version"
-DESCRIPTION="The edge addition planarity suite of graph algorithms"
-HOMEPAGE="https://github.com/graph-algorithms/edge-addition-planarity-suite/"
-
-# Use the tarball from sage because the github release doesn't
-# contain the generated autotools files (like ./configure).
-SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
-IUSE="examples static-libs"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-# https://github.com/graph-algorithms/edge-addition-planarity-suite/issues/4
-# https://github.com/graph-algorithms/edge-addition-planarity-suite/pull/3
-PATCHES=( "${FILESDIR}/${P}-extern.patch" )
-
-S="${WORKDIR}/${MY_PN}_${PV}"
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
- use examples && dodoc -r c/samples
-}