Gentoo Archives: gentoo-commits

From: Denis Reva <denis7774@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/parallel-hashmap/
Date: Tue, 28 Feb 2023 15:32:47
Message-Id: 1677598357.484bc1f8f5aef26b13ba15aedd5ab89b384a8f42.RarogCmex@gentoo
1 commit: 484bc1f8f5aef26b13ba15aedd5ab89b384a8f42
2 Author: Denis Reva <denis7774 <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 28 15:32:37 2023 +0000
4 Commit: Denis Reva <denis7774 <AT> gmail <DOT> com>
5 CommitDate: Tue Feb 28 15:32:37 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=484bc1f8
7
8 dev-cpp/parallel-hashmap: deleted obsolete version
9
10 Signed-off-by: Denis Reva <denis7774 <AT> gmail.com>
11
12 dev-cpp/parallel-hashmap/Manifest | 1 -
13 .../parallel-hashmap/parallel-hashmap-1.35.ebuild | 45 ----------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-cpp/parallel-hashmap/Manifest b/dev-cpp/parallel-hashmap/Manifest
17 index 4d6cffc56..38c813229 100644
18 --- a/dev-cpp/parallel-hashmap/Manifest
19 +++ b/dev-cpp/parallel-hashmap/Manifest
20 @@ -1,2 +1 @@
21 DIST parallel-hashmap-1.3.8.tar.gz 2047306 BLAKE2B b56bd2a8f958f69c400e8b736669f7bbe875823ca28370a6ce0f25a6de995a81b4ff8269f84eea3bbdcd62ec96d2a7613d8d414abcf2da6215e476f81927d4ad SHA512 499f132aa1513942762ae5214e9a37915529d60142439d32276d9e68a446c93ecea66caa32ac00bea683e2c932101cd999c8839a89211e91032f777f236181f7
22 -DIST parallel-hashmap-1.35.gh.tar.gz 2044770 BLAKE2B 18c4843ebd2ca046e1597a7fc0341440d888c4b39d2355e45b36e02b9f5dcf39baec1826434d70b591e6713fe2ff043a9ec8a68b7b43e0fbb2af176507b738ba SHA512 ffa70a6691784caa8acc6e191b3db4ffdbbc51db86c91118267fac96c178d434f890f773c9b31932eaed15b2cecbd74dcaddacefd0ef9771da0833c90d0f104c
23
24 diff --git a/dev-cpp/parallel-hashmap/parallel-hashmap-1.35.ebuild b/dev-cpp/parallel-hashmap/parallel-hashmap-1.35.ebuild
25 deleted file mode 100644
26 index 2e46da2b8..000000000
27 --- a/dev-cpp/parallel-hashmap/parallel-hashmap-1.35.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -CMAKE_MAKEFILE_GENERATOR=emake
36 -
37 -inherit cmake
38 -
39 -DESCRIPTION="Family of header-only, fast and memory-friendly hashmap and btree containers"
40 -HOMEPAGE="
41 - https://greg7mdp.github.io/parallel-hashmap/
42 - https://github.com/greg7mdp/parallel-hashmap
43 -"
44 -SRC_URI="https://github.com/greg7mdp/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
45 -
46 -LICENSE="Apache-2.0"
47 -SLOT="0/${PV}"
48 -KEYWORDS="~amd64"
49 -IUSE="examples test"
50 -
51 -CDEPEND="dev-libs/cereal"
52 -DEPEND="test? ( ${CDEPEND} )"
53 -RDEPEND="${CDEPEND}"
54 -
55 -# tests will download gtest, not trivial to use the system one
56 -# https://github.com/greg7mdp/parallel-hashmap/issues/154
57 -RESTRICT="test"
58 -
59 -src_configure() {
60 - local mycmakeargs=(
61 - -DPHMAP_BUILD_EXAMPLES=$(usex examples)
62 - -DPHMAP_BUILD_TESTS=$(usex test)
63 - )
64 -
65 - cmake_src_configure
66 -}
67 -
68 -src_install() {
69 - cmake_src_install
70 - if use examples ; then
71 - dodoc -r examples
72 - docompress -x "/usr/share/doc/${PF}/examples"
73 - fi
74 -}