Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mdds/
Date: Thu, 15 Nov 2018 23:13:00
Message-Id: 1542323535.e8ff4dd730638d4a53cb03457908bd41eb5bbdce.asturm@gentoo
1 commit: e8ff4dd730638d4a53cb03457908bd41eb5bbdce
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 15 23:07:50 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 15 23:12:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8ff4dd7
7
8 dev-util/mdds: 1.4.3 version bump, still no keywords
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-util/mdds/Manifest | 1 +
14 dev-util/mdds/mdds-1.4.3.ebuild | 50 +++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 51 insertions(+)
16
17 diff --git a/dev-util/mdds/Manifest b/dev-util/mdds/Manifest
18 index d6c0c94d1f9..e9df7994d8c 100644
19 --- a/dev-util/mdds/Manifest
20 +++ b/dev-util/mdds/Manifest
21 @@ -1,2 +1,3 @@
22 DIST mdds-1.3.1.tar.bz2 287612 BLAKE2B 476f15bea2ab75ba322139834badaf372026a5e0ce67d5487acc61b38321a21dd6b25efacc91dbb0ebdef274338c909b1c7ac0ff6aaedd8dd899458319d94c30 SHA512 c7ed422c8e0bfb00debd43a12638efc6706d25f9aee0b7cfc15dc711693c4d555e262ae47ff00797c9601c12c0a7eced0f753b263b5f61623470f842814970a8
23 DIST mdds-1.4.2.tar.bz2 318164 BLAKE2B 322b53253cb8796f8def8d470bcbc61e787b25f687b6fbdca927de029f0f9813c863cdc57955e67e40124abccf4e77a16108669fd9a25473d952b7b7361fede9 SHA512 1d58d30c2c65167fda97c790739a2bf36802f72965007a141108320312316df9bf252c18ff84f867f3805eee4914fe748ae066d51b376791a723fd54ec21c3c3
24 +DIST mdds-1.4.3.tar.bz2 334515 BLAKE2B 3a42b7858346b2907040b8e42b1fae56626fc0881737ed04e20ffe4f9a23d2a2459c45e4244ac77745d2b1c7e3ff1642fe883b16def36e56c5c3d15077445793 SHA512 fd54a93fde89bff74a5ccf84ce5e2e002114297b165ded56a1bae92b28d70864775add140e165c7750f7dbe8ca1bfe83179cd9a835e53312c2e893c9e1f4434c
25
26 diff --git a/dev-util/mdds/mdds-1.4.3.ebuild b/dev-util/mdds/mdds-1.4.3.ebuild
27 new file mode 100644
28 index 00000000000..8ca6d8fc087
29 --- /dev/null
30 +++ b/dev-util/mdds/mdds-1.4.3.ebuild
31 @@ -0,0 +1,50 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +if [[ ${PV} == 9999 ]]; then
38 + EGIT_REPO_URI="https://gitlab.com/mdds/mdds.git"
39 + inherit git-r3
40 +else
41 + SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2"
42 +# KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
43 +fi
44 +inherit autotools toolchain-funcs
45 +
46 +DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm"
47 +HOMEPAGE="https://gitlab.com/mdds/mdds"
48 +
49 +LICENSE="MIT"
50 +SLOT="1/${PV%.*}"
51 +IUSE="doc valgrind"
52 +
53 +RDEPEND="dev-libs/boost:="
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="
56 + doc? (
57 + app-doc/doxygen
58 + dev-python/sphinx
59 + )
60 + valgrind? ( dev-util/valgrind )
61 +"
62 +
63 +PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
64 +
65 +src_prepare(){
66 + default
67 + eautoreconf
68 +}
69 +
70 +src_configure() {
71 + econf \
72 + $(use_enable doc docs) \
73 + $(use_enable valgrind memory_tests)
74 +}
75 +
76 +src_compile() { :; }
77 +
78 +src_test() {
79 + tc-export CXX
80 + default
81 +}