From f8f9f5c7fd0e187ec51acf456eb23cde07b5e834 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 19 May 2026 22:22:53 -0400 Subject: [PATCH] sci-libs/libhomfly: add 1.04 Signed-off-by: Michael Orlitzky --- sci-libs/libhomfly/Manifest | 1 + sci-libs/libhomfly/libhomfly-1.04.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 sci-libs/libhomfly/libhomfly-1.04.ebuild diff --git a/sci-libs/libhomfly/Manifest b/sci-libs/libhomfly/Manifest index e40e3f0519c7c..54c9c41eb7a90 100644 --- a/sci-libs/libhomfly/Manifest +++ b/sci-libs/libhomfly/Manifest @@ -1 +1,2 @@ DIST libhomfly-1.02r6.tar.gz 359354 BLAKE2B 7b60c54e56777dc4b81240cbdd63726591323dc6d841f8d56d641ea304d9a4c1c3ffb3078fc54861f22b5007b36bd32c5f397e2fe8d40f10362eca8d08ba4915 SHA512 44f81815a0ba4c0358d433eb9769944af2ee02790d78aaa08e791d03ba68ba3dcf0389b4287f687211e6a7ba84e1bea3d2ebe69fc8bb4f12d677b7f54872d618 +DIST libhomfly-1.04.tar.gz 385799 BLAKE2B b02542b76af139473c3ee0e5e4b2f2fb6f34e3af24d918e278eab31d7b92f0df32c8ebf6bc2b49691bfbf80dfa38b19bff424735e324899ab15f97d3d788075d SHA512 e62b0997d3ff9ceb04c54b8226fb4ecee579e45f4c339b28871d90894c267d495a695de8e62a85da64d99a97dfb894c375a54e7cba3bf95a709f270f4be7912d diff --git a/sci-libs/libhomfly/libhomfly-1.04.ebuild b/sci-libs/libhomfly/libhomfly-1.04.ebuild new file mode 100644 index 0000000000000..04b659b71dbc7 --- /dev/null +++ b/sci-libs/libhomfly/libhomfly-1.04.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV=$(ver_rs 2 r) +MY_P="${PN}-${MY_PV}" +DESCRIPTION="Library to compute the homfly polynomial of a link" +HOMEPAGE="https://github.com/miguelmarco/libhomfly" +SRC_URI="https://github.com/miguelmarco/${PN}/releases/download/${MY_PV}/${MY_P}.tar.gz" + +S="${WORKDIR}/${MY_P}" + +LICENSE="Unlicense" +SLOT="0" +KEYWORDS="~amd64 ~riscv" + +DEPEND="dev-libs/boehm-gc" +RDEPEND="${DEPEND}" + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}