Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/robin-hood-hashing/
Date: Thu, 27 May 2021 02:33:26
Message-Id: 1622082774.3b50668e76037642ea4f36ba82776a50dcff664e.sarnex@gentoo
1 commit: 3b50668e76037642ea4f36ba82776a50dcff664e
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 27 02:05:00 2021 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Thu May 27 02:32:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b50668e
7
8 dev-util/robin-hood-hashing: Initial version
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 dev-util/robin-hood-hashing/Manifest | 1 +
14 dev-util/robin-hood-hashing/metadata.xml | 15 +++++++++++++++
15 .../robin-hood-hashing-3.11.2.ebuild | 18 ++++++++++++++++++
16 3 files changed, 34 insertions(+)
17
18 diff --git a/dev-util/robin-hood-hashing/Manifest b/dev-util/robin-hood-hashing/Manifest
19 new file mode 100644
20 index 00000000000..c20aed24881
21 --- /dev/null
22 +++ b/dev-util/robin-hood-hashing/Manifest
23 @@ -0,0 +1 @@
24 +DIST robin-hood-hashing-3.11.2.tar.gz 170488 BLAKE2B 5fb688f5e21f989456e139b64447393816593ad2a1c3537d067d8ea1717aceaa879e27616657354f62e1466ca491f9d302448a73cddb53c7156a623eb375016b SHA512 5d55f054e29ae34d410eb0103f9f0aa1faf47e313b9f089c73b9c26fd9bedf132f6bb13b4bcd2664309c32fe7e859e346d0a6e7ab7f46b294f9b8db207577795
25
26 diff --git a/dev-util/robin-hood-hashing/metadata.xml b/dev-util/robin-hood-hashing/metadata.xml
27 new file mode 100644
28 index 00000000000..c64c3ac674d
29 --- /dev/null
30 +++ b/dev-util/robin-hood-hashing/metadata.xml
31 @@ -0,0 +1,15 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="project">
36 + <email>x11@g.o</email>
37 + <name>X11</name>
38 + </maintainer>
39 + <maintainer type="person">
40 + <email>sarnex@g.o</email>
41 + <name>Nick Sarnie</name>
42 + </maintainer>
43 + <upstream>
44 + <remote-id type="github">martinus/robin-hood-hashing</remote-id>
45 + </upstream>
46 +</pkgmetadata>
47
48 diff --git a/dev-util/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild b/dev-util/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
49 new file mode 100644
50 index 00000000000..c45e9662148
51 --- /dev/null
52 +++ b/dev-util/robin-hood-hashing/robin-hood-hashing-3.11.2.ebuild
53 @@ -0,0 +1,18 @@
54 +# Copyright 1999-2021 Gentoo Authors
55 +# Distributed under the terms of the GNU General Public License v2
56 +
57 +EAPI=7
58 +
59 +KEYWORDS="~amd64"
60 +SRC_URI="https://github.com/martinus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
61 +
62 +DESCRIPTION="Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20"
63 +HOMEPAGE="https://github.com/martinus/robin-hood-hashing"
64 +
65 +LICENSE="MIT"
66 +SLOT="0"
67 +
68 +src_install() {
69 + insinto /usr/include
70 + doins src/include/robin_hood.h
71 +}