commit: dafbdbfb119d5dca7e5a95e85ce3be4cb88c486b Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Thu Jan 9 04:11:38 2025 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Thu Jan 9 15:59:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dafbdbfb
sci-libs/symmetrica: add 3.1.0 Closes: https://bugs.gentoo.org/944853 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> sci-libs/symmetrica/Manifest | 1 + sci-libs/symmetrica/symmetrica-3.1.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/sci-libs/symmetrica/Manifest b/sci-libs/symmetrica/Manifest index 9370fd11f54e..3ad3c7b8bf30 100644 --- a/sci-libs/symmetrica/Manifest +++ b/sci-libs/symmetrica/Manifest @@ -1 +1,2 @@ DIST symmetrica-3.0.1.tar.xz 789336 BLAKE2B 88521356bdc006413e0922b49b23f345da96bbe8cb2a4a6ae12bf53fe46150078f086e6d1f6e514817453f2a868b6eb578b716c05f5459397ed8d766d321ec24 SHA512 1e4c42e1ae9fcdf246dff1c1f01522d6cd416c12302363f82356018847df2f64d2f5ea6256459832d195e8e333ae14743794d5a53346e92d8ba1bb1c0949c271 +DIST symmetrica-3.1.0.tar.xz 765568 BLAKE2B 9b4f81ef4e135af5552417b66829ca3a99f3ad039cdc936108dc587d5971364db6fe822679fa110ac0f3e8cc30b0856e27efff4ba9ab3f79ee9a706047bba5c7 SHA512 7bc45802907b4eb82b89e440d628143fc4bbebadbb221711dcdcb4daf6587f1042f0fb701c369434151e5c1a83eeda2eb7d0c8f96ee00afcdc79a6600ff96983 diff --git a/sci-libs/symmetrica/symmetrica-3.1.0.ebuild b/sci-libs/symmetrica/symmetrica-3.1.0.ebuild new file mode 100644 index 000000000000..eea38fdc5830 --- /dev/null +++ b/sci-libs/symmetrica/symmetrica-3.1.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="C library for representation theory, combinatorics, and more" +HOMEPAGE="https://gitlab.com/sagemath/symmetrica" +SRC_URI="https://gitlab.com/-/project/16178617/uploads/b24da56820651687cafb611809a4b1b0/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0/3" +KEYWORDS="~amd64 ~riscv" +IUSE="doc" + +DOCS=( README.md ) + +src_configure() { + econf $(use_enable doc) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}