dev-gap/nq: new package, add 2.5.10

Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
Michael Orlitzky
2023-12-21 13:58:59 -05:00
parent 56e6fd8465
commit 4f8f7dddb8
3 changed files with 54 additions and 0 deletions

1
dev-gap/nq/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST nq-2.5.10.tar.bz2 549787 BLAKE2B cc7c6a96772c4a81daa9c563ed11af01a6b9c17668a17015251fd8e1cacc4b0d54cfff4ddd671652d1a07d8106e886d95ba6c850c6ce8ff795b9ed82e7adb3b9 SHA512 8ed509a649b49f64668bb329abaf14dd179ed9437f6b9e4cd652a52402fbf136ec4e36c4096fb711c3be7df8fd2ab01d08fe15889351a9820223ec8994e4e3db

26
dev-gap/nq/metadata.xml Normal file
View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>mjo@gentoo.org</email>
</maintainer>
<maintainer type="person">
<email>frp.bissey@gmail.com</email>
<name>François Bissey</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<maintainer type="project">
<email>sci-mathematics@gentoo.org</email>
<name>Gentoo Mathematics Project</name>
</maintainer>
<longdescription lang="en">
This package provides access to the ANU nilpotent quotient program
for computing nilpotent factor groups of finitely presented groups.
</longdescription>
<upstream>
<remote-id type="github">gap-packages/nq</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gap-pkg
DESCRIPTION="Nilpotent Quotients of finitely-presented groups"
SLOT="0"
SRC_URI="https://github.com/gap-packages/${PN}/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="GPL-2+"
KEYWORDS="~amd64"
IUSE="examples"
DEPEND="sci-mathematics/gap:=
dev-libs/gmp:0="
RDEPEND="${DEPEND}
dev-gap/polycyclic"
gap-pkg_enable_tests
src_install() {
gap-pkg_src_install
emake DESTDIR="${D}" install
use examples && dodoc -r examples
}