diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-01-22 18:46:11 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-01-22 18:46:11 +0000 |
| commit | c533fb7424e8af44dff4de9f241a68d5152d090a (patch) | |
| tree | 2e314c8c9c126b85209538621caeb7b8700b486f /dev-gap/datastructures | |
| parent | 00d0c2fa170bc487caec4c414cf21711b2cb4afb (diff) | |
| download | baldeagleos-repo-c533fb7424e8af44dff4de9f241a68d5152d090a.tar.gz baldeagleos-repo-c533fb7424e8af44dff4de9f241a68d5152d090a.tar.xz baldeagleos-repo-c533fb7424e8af44dff4de9f241a68d5152d090a.zip | |
Adding metadata
Diffstat (limited to 'dev-gap/datastructures')
| -rw-r--r-- | dev-gap/datastructures/Manifest | 1 | ||||
| -rw-r--r-- | dev-gap/datastructures/datastructures-0.3.0.ebuild | 25 | ||||
| -rw-r--r-- | dev-gap/datastructures/metadata.xml | 44 |
3 files changed, 70 insertions, 0 deletions
diff --git a/dev-gap/datastructures/Manifest b/dev-gap/datastructures/Manifest new file mode 100644 index 000000000000..88857b977d5d --- /dev/null +++ b/dev-gap/datastructures/Manifest @@ -0,0 +1 @@ +DIST datastructures-0.3.0.tar.gz 410109 BLAKE2B dbc620686ea28c48b2b87b134044b35a13083cbad884ff07b0c3f266f55a661377800ef0f575287b3e08da6e7a2a9fe700eee6f41d7e6082c579792a13342e6d SHA512 8b680a006cd6c0adbe256abe0f3ae5c566aa9b4852f1bcb7f02c4512ea1b9f15b7597ab29d86508a7fd71e8dc5d64794895a22eb45ca74e52a4de1ce9f7d8612 diff --git a/dev-gap/datastructures/datastructures-0.3.0.ebuild b/dev-gap/datastructures/datastructures-0.3.0.ebuild new file mode 100644 index 000000000000..41d0e97f24c7 --- /dev/null +++ b/dev-gap/datastructures/datastructures-0.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic gap-pkg + +DESCRIPTION="Collection of standard data structures for GAP" +SLOT="0" +SRC_URI="https://github.com/gap-packages/datastructures/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-2+" +KEYWORDS="~amd64" + +DEPEND="sci-mathematics/gap" + +DOCS=( CHANGES.md README.md ) + +gap-pkg_enable_tests + +src_compile() { + # https://github.com/gap-packages/datastructures/issues/151 + append-cflags -Wno-error=strict-prototypes + gap-pkg_src_compile +} diff --git a/dev-gap/datastructures/metadata.xml b/dev-gap/datastructures/metadata.xml new file mode 100644 index 000000000000..0a01f06c50ba --- /dev/null +++ b/dev-gap/datastructures/metadata.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/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"> + <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"> + The datastructures package aims at providing standard + datastructures, consolidating existing code and improving on it, in + particular in view of HPC-GAP. + + The datastructures package consists of two parts: interface + declarations and implementations. The goal of interface declarations + is to define standard interfaces for datastructures and decouple + them from the implementations. This enables easy exchangability of + implementations, for example for more efficient implementations, or + implementations more suited for parallelisation or sequential use. + + The datastructures package declares interfaces for the following + datastructures: + + * queues + * doubly linked lists + * heaps + * priority queues + * hash tables + * dictionaries + + </longdescription> + + <origin>gentoo-staging</origin> +</pkgmetadata>
\ No newline at end of file |
