sci-mathematics/planarity: add 4.0.0.0

Closes: https://bugs.gentoo.org/944844
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
Michael Orlitzky
2025-03-27 07:47:33 -04:00
parent b5d708b0ac
commit 4801712e36
2 changed files with 25 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST planarity-3.0.2.0.tar.gz 462194 BLAKE2B 7927b04cb7c9839637fe13228da50cee581ef7fd7fdaaa9ff2dc62348ba10c7f42ba88a75801034fedc973cf86fca6396ba2fb0b1f71407d850b73b8a9fc4fd0 SHA512 dbbc97cd9cf0a5497fbca76f3b0741d3bcfca110c7022150750e73179a0a0441428c854479831395b8f6340d0554b1c0e7cf7eaa63f7fe40d2a59365488c7013
DIST planarity-4.0.0.0.tar.gz 536133 BLAKE2B d67c5926e90505193aec55e30dd94d4d02c9f238773ee7951d354ffd9253de166faa465444b881ffd86407c6b5178dbfb41a5d07653c1f3bc73ed001b47d18ea SHA512 6154cf7f40eb75b7728c3a61ed4304e2e227b8d660c28e4dfd88c80bad333d61daa4555d418e4e04881aa88247724092210ddd442d9aae221a8eb857af29635a

View File

@@ -0,0 +1,24 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="The edge addition planarity suite of graph algorithms"
HOMEPAGE="https://github.com/graph-algorithms/edge-addition-planarity-suite/"
SRC_URI="https://github.com/graph-algorithms/edge-addition-planarity-suite/releases/download/Version_${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~riscv ~x86"
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
src_test() {
# "make check" usually works but the test script has
# non-UNIX line endings in 4.0.0.0.
./planarity -test c/samples || die
}