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-cpp/robin-hood-hashing/
Date: Sun, 20 Feb 2022 02:09:53
Message-Id: 1645322816.70406c7f568144c86fb9d45d3796db88651d336f.sarnex@gentoo
1 commit: 70406c7f568144c86fb9d45d3796db88651d336f
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 19 21:49:31 2022 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 02:06:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70406c7f
7
8 dev-cpp/robin-hood-hashing: Version bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 dev-cpp/robin-hood-hashing/Manifest | 1 +
14 .../robin-hood-hashing-3.11.5.ebuild | 23 ++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-cpp/robin-hood-hashing/Manifest b/dev-cpp/robin-hood-hashing/Manifest
18 index c20aed24881b..721c9b323e71 100644
19 --- a/dev-cpp/robin-hood-hashing/Manifest
20 +++ b/dev-cpp/robin-hood-hashing/Manifest
21 @@ -1 +1,2 @@
22 DIST robin-hood-hashing-3.11.2.tar.gz 170488 BLAKE2B 5fb688f5e21f989456e139b64447393816593ad2a1c3537d067d8ea1717aceaa879e27616657354f62e1466ca491f9d302448a73cddb53c7156a623eb375016b SHA512 5d55f054e29ae34d410eb0103f9f0aa1faf47e313b9f089c73b9c26fd9bedf132f6bb13b4bcd2664309c32fe7e859e346d0a6e7ab7f46b294f9b8db207577795
23 +DIST robin-hood-hashing-3.11.5.tar.gz 177134 BLAKE2B b114c1d68ff2eae4cdb526e67def750a11056c2b5c400eab0870fda7c81dde5cf3bb168ea13ed3d34f2e57edffea5c58cb79ffb5328ecf839c723c71f54676d3 SHA512 5f73e089b1e8ec41a9bedded22bc64a789d3a3d04873a2ad9f8cc2970797a473b0f4d3436c2324b3ced85a0d983998a75b1dfaf2b7f3b77235b29806ff2fd489
24
25 diff --git a/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.5.ebuild b/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.5.ebuild
26 new file mode 100644
27 index 000000000000..4fff4a53f17e
28 --- /dev/null
29 +++ b/dev-cpp/robin-hood-hashing/robin-hood-hashing-3.11.5.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake
37 +
38 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
39 +SRC_URI="https://github.com/martinus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +DESCRIPTION="Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20"
42 +HOMEPAGE="https://github.com/martinus/robin-hood-hashing"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +
47 +src_configure() {
48 + local mycmakeargs=(
49 + -DRH_STANDALONE_PROJECT=OFF
50 + -DCMAKE_INSTALL_LIBDIR="${ESYSROOT}/usr/share/"
51 + )
52 + cmake_src_configure
53 +}