commit: 4801712e36d96a048add09f87d41fcfd22b098b9 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Thu Mar 27 11:47:33 2025 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Thu Mar 27 11:49:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4801712e
sci-mathematics/planarity: add 4.0.0.0 Closes: https://bugs.gentoo.org/944844 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> sci-mathematics/planarity/Manifest | 1 + sci-mathematics/planarity/planarity-4.0.0.0.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/sci-mathematics/planarity/Manifest b/sci-mathematics/planarity/Manifest index ae71bab8f8ac..6be08a56105a 100644 --- a/sci-mathematics/planarity/Manifest +++ b/sci-mathematics/planarity/Manifest @@ -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 diff --git a/sci-mathematics/planarity/planarity-4.0.0.0.ebuild b/sci-mathematics/planarity/planarity-4.0.0.0.ebuild new file mode 100644 index 000000000000..32d28874261a --- /dev/null +++ b/sci-mathematics/planarity/planarity-4.0.0.0.ebuild @@ -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 +}
