summaryrefslogtreecommitdiff
path: root/dev-libs/unordered_dense
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-libs/unordered_dense
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-libs/unordered_dense')
-rw-r--r--dev-libs/unordered_dense/Manifest3
-rw-r--r--dev-libs/unordered_dense/metadata.xml20
-rw-r--r--dev-libs/unordered_dense/unordered_dense-4.0.1.ebuild35
-rw-r--r--dev-libs/unordered_dense/unordered_dense-4.4.0.ebuild30
-rw-r--r--dev-libs/unordered_dense/unordered_dense-4.8.1.ebuild30
-rw-r--r--dev-libs/unordered_dense/unordered_dense-9999.ebuild30
6 files changed, 0 insertions, 148 deletions
diff --git a/dev-libs/unordered_dense/Manifest b/dev-libs/unordered_dense/Manifest
deleted file mode 100644
index 0b55e2651613..000000000000
--- a/dev-libs/unordered_dense/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST unordered_dense-4.0.1.tar.gz 364688 BLAKE2B 190ecdf53c2e476702e362e474dc2f692fd6dd6b15e9313a59710dce3f520aa3f53304e52a00f5d81194a6dbff7346c145be3ab0b083246df018e1bbedadb736 SHA512 105eb88deeb89c9424973d2b5425a6e176f3f66a45f11cf6ed520cce177918cd5345e840d10561f6f790b6cc11b7b6e1357bd2fc4d199254a360de88ce553fe0
-DIST unordered_dense-4.4.0.tar.gz 900081 BLAKE2B cffac8fa38ec4779a5d05e212d185a54e0d3014c894efaf0bd76bdc8408fed6b9cb8e01b0d2fd7cefbe1abe34cdff00c7f1df1f5627379afa1e2f830f2527c83 SHA512 82724dd3651f520a240b131fa7cac209d844b9f3a54ea36c8cbb125cb42fdbf5f38d96935f2999e5bf04c447b2b9fde4ebc740decfd7d3d4b7d45177d4f26b58
-DIST unordered_dense-4.8.1.tar.gz 915251 BLAKE2B 6830cfc922fcd681118a5eb4900cc3c94f28505999e39392fa69ae77e03f381155c28a83c7bd04d2191693fc8b81e29c313ab6c0a2d1887ed6849dcff7dda78f SHA512 b98b5d4d96f8e0081b184d6c4c1181fae4e41723b54bed4296717d7f417348b48fad0bbcc664cac142b8c8a47e95aa57c1eb1cf6caa855fd782fad3e3ab99e5e
diff --git a/dev-libs/unordered_dense/metadata.xml b/dev-libs/unordered_dense/metadata.xml
deleted file mode 100644
index 552890653e5f..000000000000
--- a/dev-libs/unordered_dense/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>vowstar@gmail.com</email>
- <name>Huang Rui</name>
- </maintainer>
- <upstream>
- <remote-id type="github">martinus/unordered_dense</remote-id>
- </upstream>
- <longdescription lang="en">
- A fast and densely stored hashmap and hashset based on robin-hood
- backward shift deletion.
- The classes ankerl::unordered_dense::map and
- ankerl::unordered_dense::set are (almost) drop-in replacements of
- std::unordered_map and std::unordered_set. While they don't have as
- strong iterator / reference stability guaranties, they are typically
- much faster.
- </longdescription>
-</pkgmetadata>
diff --git a/dev-libs/unordered_dense/unordered_dense-4.0.1.ebuild b/dev-libs/unordered_dense/unordered_dense-4.0.1.ebuild
deleted file mode 100644
index 1226dc2040b9..000000000000
--- a/dev-libs/unordered_dense/unordered_dense-4.0.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit cmake
-
-DESCRIPTION="A fast and densely stored hashmap and hashset"
-HOMEPAGE="https://github.com/martinus/unordered_dense"
-
-if [[ "${PV}" == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/martinus/${PN}.git"
-else
- SRC_URI="https://github.com/martinus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
- S="${WORKDIR}/${P}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- ${RDEPEND}
-"
-
-src_configure() {
- local mycmakeargs=(
- -D CMAKE_INSTALL_LIBDIR="${EPREFIX}/usr/$(get_libdir)"
- -D BUILD_SHARED_LIBS=ON
- )
- cmake_src_configure
-}
diff --git a/dev-libs/unordered_dense/unordered_dense-4.4.0.ebuild b/dev-libs/unordered_dense/unordered_dense-4.4.0.ebuild
deleted file mode 100644
index 66ca8f18edb1..000000000000
--- a/dev-libs/unordered_dense/unordered_dense-4.4.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A fast and densely stored hashmap and hashset"
-HOMEPAGE="https://github.com/martinus/unordered_dense"
-
-if [[ "${PV}" == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/martinus/${PN}.git"
-else
- SRC_URI="https://github.com/martinus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
- S="${WORKDIR}/${P}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-RESTRICT="test"
-
-src_configure() {
- local mycmakeargs=(
- -D CMAKE_INSTALL_LIBDIR="${EPREFIX}/usr/$(get_libdir)"
- -D BUILD_SHARED_LIBS=ON
- )
- cmake_src_configure
-}
diff --git a/dev-libs/unordered_dense/unordered_dense-4.8.1.ebuild b/dev-libs/unordered_dense/unordered_dense-4.8.1.ebuild
deleted file mode 100644
index 48a540b3b02f..000000000000
--- a/dev-libs/unordered_dense/unordered_dense-4.8.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A fast and densely stored hashmap and hashset"
-HOMEPAGE="https://github.com/martinus/unordered_dense"
-
-if [[ "${PV}" == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/martinus/${PN}.git"
-else
- SRC_URI="https://github.com/martinus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
- S="${WORKDIR}/${P}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-RESTRICT="test"
-
-src_configure() {
- local mycmakeargs=(
- -D CMAKE_INSTALL_LIBDIR="${EPREFIX}/usr/$(get_libdir)"
- -D BUILD_SHARED_LIBS=ON
- )
- cmake_src_configure
-}
diff --git a/dev-libs/unordered_dense/unordered_dense-9999.ebuild b/dev-libs/unordered_dense/unordered_dense-9999.ebuild
deleted file mode 100644
index 48a540b3b02f..000000000000
--- a/dev-libs/unordered_dense/unordered_dense-9999.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A fast and densely stored hashmap and hashset"
-HOMEPAGE="https://github.com/martinus/unordered_dense"
-
-if [[ "${PV}" == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/martinus/${PN}.git"
-else
- SRC_URI="https://github.com/martinus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
- S="${WORKDIR}/${P}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-RESTRICT="test"
-
-src_configure() {
- local mycmakeargs=(
- -D CMAKE_INSTALL_LIBDIR="${EPREFIX}/usr/$(get_libdir)"
- -D BUILD_SHARED_LIBS=ON
- )
- cmake_src_configure
-}