From: "Denis Reva" <denis7774@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/parallel-hashmap/
Date: Tue, 28 Feb 2023 15:32:43 +0000 (UTC) [thread overview]
Message-ID: <1677598325.8bde7c44ed1390cc3f2ae2a7d4ce3a6c8c49e6da.RarogCmex@gentoo> (raw)
commit: 8bde7c44ed1390cc3f2ae2a7d4ce3a6c8c49e6da
Author: Denis Reva <denis7774 <AT> gmail <DOT> com>
AuthorDate: Tue Feb 28 15:32:05 2023 +0000
Commit: Denis Reva <denis7774 <AT> gmail <DOT> com>
CommitDate: Tue Feb 28 15:32:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8bde7c44
dev-cpp/parallel-hashmap: updated to 1.3.8
project accidently switched to semver
Signed-off-by: Denis Reva <denis7774 <AT> gmail.com>
dev-cpp/parallel-hashmap/Manifest | 1 +
dev-cpp/parallel-hashmap/metadata.xml | 4 ++
.../parallel-hashmap/parallel-hashmap-1.3.8.ebuild | 46 ++++++++++++++++++++++
3 files changed, 51 insertions(+)
diff --git a/dev-cpp/parallel-hashmap/Manifest b/dev-cpp/parallel-hashmap/Manifest
index f947d04bd..4d6cffc56 100644
--- a/dev-cpp/parallel-hashmap/Manifest
+++ b/dev-cpp/parallel-hashmap/Manifest
@@ -1 +1,2 @@
+DIST parallel-hashmap-1.3.8.tar.gz 2047306 BLAKE2B b56bd2a8f958f69c400e8b736669f7bbe875823ca28370a6ce0f25a6de995a81b4ff8269f84eea3bbdcd62ec96d2a7613d8d414abcf2da6215e476f81927d4ad SHA512 499f132aa1513942762ae5214e9a37915529d60142439d32276d9e68a446c93ecea66caa32ac00bea683e2c932101cd999c8839a89211e91032f777f236181f7
DIST parallel-hashmap-1.35.gh.tar.gz 2044770 BLAKE2B 18c4843ebd2ca046e1597a7fc0341440d888c4b39d2355e45b36e02b9f5dcf39baec1826434d70b591e6713fe2ff043a9ec8a68b7b43e0fbb2af176507b738ba SHA512 ffa70a6691784caa8acc6e191b3db4ffdbbc51db86c91118267fac96c178d434f890f773c9b31932eaed15b2cecbd74dcaddacefd0ef9771da0833c90d0f104c
diff --git a/dev-cpp/parallel-hashmap/metadata.xml b/dev-cpp/parallel-hashmap/metadata.xml
index 3183d009f..c7a8c6eea 100644
--- a/dev-cpp/parallel-hashmap/metadata.xml
+++ b/dev-cpp/parallel-hashmap/metadata.xml
@@ -5,6 +5,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
+ <maintainer type="person">
+ <email>denis7774@gmail.com</email>
+ <name>Denis Reva</name>
+ </maintainer>
<longdescription lang="en">
Overview
diff --git a/dev-cpp/parallel-hashmap/parallel-hashmap-1.3.8.ebuild b/dev-cpp/parallel-hashmap/parallel-hashmap-1.3.8.ebuild
new file mode 100644
index 000000000..35fd6b2d7
--- /dev/null
+++ b/dev-cpp/parallel-hashmap/parallel-hashmap-1.3.8.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_MAKEFILE_GENERATOR=emake
+
+inherit cmake
+
+DESCRIPTION="Family of header-only, fast and memory-friendly hashmap and btree containers"
+HOMEPAGE="
+ https://greg7mdp.github.io/parallel-hashmap/
+ https://github.com/greg7mdp/parallel-hashmap
+"
+SRC_URI="https://github.com/greg7mdp/parallel-hashmap/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="examples test"
+
+CDEPEND="dev-libs/cereal"
+DEPEND="${CDEPEND} test? ( dev-cpp/gtest )"
+RDEPEND="${CDEPEND}"
+
+# tests will download gtest, not trivial to use the system one
+# https://github.com/greg7mdp/parallel-hashmap/issues/154
+RESTRICT="!test? ( test )"
+src_configure() {
+ local mycmakeargs=(
+ -DPHMAP_BUILD_EXAMPLES=$(usex examples)
+ -DPHMAP_BUILD_TESTS=$(usex test)
+ )
+ if use test; then
+ mycmakeargs+=( -DPHMAP_GTEST_LIBS="gmock -lgmock_main -lgtest -lgtest_main" )
+ fi
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ if use examples ; then
+ dodoc -r examples
+ docompress -x "/usr/share/doc/${PF}/examples"
+ fi
+}
next reply other threads:[~2023-02-28 15:32 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-28 15:32 Denis Reva [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-02-28 15:32 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/parallel-hashmap/ Denis Reva
2022-07-07 16:17 Alessandro Barbieri
2022-06-30 15:13 Alessandro Barbieri
2022-06-28 15:51 Alessandro Barbieri
2022-03-26 7:36 Alessandro Barbieri
2021-05-05 7:32 Alessandro Barbieri
2021-05-03 9:48 Andrew Ammerlaan
2021-05-02 9:27 Alessandro Barbieri
2021-05-02 1:51 Alessandro Barbieri
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1677598325.8bde7c44ed1390cc3f2ae2a7d4ce3a6c8c49e6da.RarogCmex@gentoo \
--to=denis7774@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox