diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2023-01-13 10:48:23 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2023-01-13 10:50:29 -0500 |
commit | e1f4a1b59870f7268a79346b693a7d97db490900 (patch) | |
tree | c613f16f13ec946b15484c8126a59d8e4e253c6f /sci-libs | |
parent | sci-mathematics/btor2tools: remove unused patch (diff) | |
download | gentoo-e1f4a1b59870f7268a79346b693a7d97db490900.tar.gz gentoo-e1f4a1b59870f7268a79346b693a7d97db490900.tar.bz2 gentoo-e1f4a1b59870f7268a79346b693a7d97db490900.zip |
sci-libs/symmetrica: update EAPI 7 -> 8
Closes: https://bugs.gentoo.org/890668
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/symmetrica/symmetrica-3.0.1-r1.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sci-libs/symmetrica/symmetrica-3.0.1-r1.ebuild b/sci-libs/symmetrica/symmetrica-3.0.1-r1.ebuild new file mode 100644 index 000000000000..20eb9928c0f0 --- /dev/null +++ b/sci-libs/symmetrica/symmetrica-3.0.1-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 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/sagemath/symmetrica/uploads/b3d8e1ad5ab2449c30bbc3147e7a5e53/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0/2" +KEYWORDS="~amd64" +IUSE="doc" + +DOCS=( README.md ) + +src_configure() { + econf $(use_enable doc) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} |