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>
This commit is contained in:
Michael Orlitzky
2021-11-02 14:12:57 -04:00
parent 01279c87f8
commit 11737e5334
3 changed files with 0 additions and 55 deletions

View File

@@ -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

View File

@@ -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);

View File

@@ -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
}