summaryrefslogtreecommitdiff
path: root/sci-mathematics
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-24 03:04:33 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-24 03:04:33 -0500
commit719f5679cb7b1141529b574349239e0640bae1ca (patch)
tree50e50c55d988644908338c57bfe99cf9b7e00a01 /sci-mathematics
parent262287a0872daa2bb1ff43d4b8484c17babc2f51 (diff)
downloadbaldeagleos-repo-719f5679cb7b1141529b574349239e0640bae1ca.tar.gz
baldeagleos-repo-719f5679cb7b1141529b574349239e0640bae1ca.tar.xz
baldeagleos-repo-719f5679cb7b1141529b574349239e0640bae1ca.zip
Adding metadata
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/planarity/Manifest2
-rw-r--r--sci-mathematics/planarity/planarity-5.0.0.0.ebuild (renamed from sci-mathematics/planarity/planarity-3.0.2.0.ebuild)15
2 files changed, 13 insertions, 4 deletions
diff --git a/sci-mathematics/planarity/Manifest b/sci-mathematics/planarity/Manifest
index 6be08a56105a..c680e759ba1b 100644
--- a/sci-mathematics/planarity/Manifest
+++ b/sci-mathematics/planarity/Manifest
@@ -1,2 +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
+DIST planarity-5.0.0.0.tar.gz 613040 BLAKE2B 9b6928c171710e6860a9ef65eb9490f01c72cba92c0082aaca7d501553b6d9a3642ee36f54060842bd707fb4d0fbd739140002ce6ac9350074de8f2982b83abe SHA512 12bf48b968404c94ff46662e1486604681f7af49307f665ff0e9c621e445aab2fff657e6b76fa85f156ea9e441c55b76b54e062ed0297a613b9cb1f4fa9173be
diff --git a/sci-mathematics/planarity/planarity-3.0.2.0.ebuild b/sci-mathematics/planarity/planarity-5.0.0.0.ebuild
index 499d8a63eeb7..feb22c1f313e 100644
--- a/sci-mathematics/planarity/planarity-3.0.2.0.ebuild
+++ b/sci-mathematics/planarity/planarity-5.0.0.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=8
+EAPI=9
DESCRIPTION="The edge addition planarity suite of graph algorithms"
HOMEPAGE="https://github.com/graph-algorithms/edge-addition-planarity-suite/"
@@ -10,9 +10,18 @@ SRC_URI="https://github.com/graph-algorithms/edge-addition-planarity-suite/relea
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~riscv ~x86"
+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 the release tarball:
+ #
+ # https://github.com/graph-algorithms/edge-addition-planarity-suite/issues/255
+ #
+ ./planarity -test c/samples || die
+}