summaryrefslogtreecommitdiff
path: root/dev-cpp
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-05-27 13:37:46 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-05-27 13:37:46 +0000
commita5f7dd5fdaabc5d7e7d3e3b7b69bb37ae67919de (patch)
treecb9d94317b5567b93d5fc0580286df1cbb25fe84 /dev-cpp
parent4b2d3221bbd9baa6c4b176719b4513c592765867 (diff)
downloadbaldeagleos-repo-a5f7dd5fdaabc5d7e7d3e3b7b69bb37ae67919de.tar.gz
baldeagleos-repo-a5f7dd5fdaabc5d7e7d3e3b7b69bb37ae67919de.tar.xz
baldeagleos-repo-a5f7dd5fdaabc5d7e7d3e3b7b69bb37ae67919de.zip
Adding metadata
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/robin-hood-hashing/Manifest1
-rw-r--r--dev-cpp/robin-hood-hashing/metadata.xml16
-rw-r--r--dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild18
3 files changed, 35 insertions, 0 deletions
diff --git a/dev-cpp/robin-hood-hashing/Manifest b/dev-cpp/robin-hood-hashing/Manifest
new file mode 100644
index 000000000000..c20aed24881b
--- /dev/null
+++ b/dev-cpp/robin-hood-hashing/Manifest
@@ -0,0 +1 @@
+DIST robin-hood-hashing-3.11.2.tar.gz 170488 BLAKE2B 5fb688f5e21f989456e139b64447393816593ad2a1c3537d067d8ea1717aceaa879e27616657354f62e1466ca491f9d302448a73cddb53c7156a623eb375016b SHA512 5d55f054e29ae34d410eb0103f9f0aa1faf47e313b9f089c73b9c26fd9bedf132f6bb13b4bcd2664309c32fe7e859e346d0a6e7ab7f46b294f9b8db207577795
diff --git a/dev-cpp/robin-hood-hashing/metadata.xml b/dev-cpp/robin-hood-hashing/metadata.xml
new file mode 100644
index 000000000000..417bda1236dc
--- /dev/null
+++ b/dev-cpp/robin-hood-hashing/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>x11@gentoo.org</email>
+ <name>X11</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>sarnex@gentoo.org</email>
+ <name>Nick Sarnie</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">martinus/robin-hood-hashing</remote-id>
+ </upstream>
+ <origin>gentoo-staging</origin>
+</pkgmetadata> \ No newline at end of file
diff --git a/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild b/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
new file mode 100644
index 000000000000..618570c165d3
--- /dev/null
+++ b/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KEYWORDS="~amd64 ~ppc64"
+SRC_URI="https://github.com/martinus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+DESCRIPTION="Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20"
+HOMEPAGE="https://github.com/martinus/robin-hood-hashing"
+
+LICENSE="MIT"
+SLOT="0"
+
+src_install() {
+ insinto /usr/include
+ doins src/include/robin_hood.h
+}