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: Wed, 12 Sep 2018 20:56:40
Message-Id: 1536785782.5b213e8d8b7ca23118e298b0f5af1f737a26a904.asturm@gentoo
1 commit: 5b213e8d8b7ca23118e298b0f5af1f737a26a904
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 12 18:37:49 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 12 20:56:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b213e8d
7
8 dev-util/mdds: 1.4.1 version bump without keywords
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-util/mdds/Manifest | 1 +
13 dev-util/mdds/mdds-1.4.1.ebuild | 50 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-util/mdds/Manifest b/dev-util/mdds/Manifest
17 index 257d6fc3b19..f5956e59e3a 100644
18 --- a/dev-util/mdds/Manifest
19 +++ b/dev-util/mdds/Manifest
20 @@ -1 +1,2 @@
21 DIST mdds-1.3.1.tar.bz2 287612 BLAKE2B 476f15bea2ab75ba322139834badaf372026a5e0ce67d5487acc61b38321a21dd6b25efacc91dbb0ebdef274338c909b1c7ac0ff6aaedd8dd899458319d94c30 SHA512 c7ed422c8e0bfb00debd43a12638efc6706d25f9aee0b7cfc15dc711693c4d555e262ae47ff00797c9601c12c0a7eced0f753b263b5f61623470f842814970a8
22 +DIST mdds-1.4.1.tar.bz2 317460 BLAKE2B 7d76d56448aeb917a0c2afbf76a7f7ae83b2f03569a458f7de257a3facc22dcc9da66fbe1ce40a2f03e38488933a8a054c007374ed84b8fe1e5bd3f3f67c1a85 SHA512 3ad7cf821cd1a0a4b632c5d11cc3bd7bd6da2b14069e142e087dd81c1dfa817a961edbde1d59021a5bd4859eb252d8c461341070406b952a5b46b00eb7444384
23
24 diff --git a/dev-util/mdds/mdds-1.4.1.ebuild b/dev-util/mdds/mdds-1.4.1.ebuild
25 new file mode 100644
26 index 00000000000..f825185f165
27 --- /dev/null
28 +++ b/dev-util/mdds/mdds-1.4.1.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +EGIT_REPO_URI="https://gitlab.com/mdds/mdds.git"
36 +[[ ${PV} == 9999 ]] && GITECLASS="git-r3"
37 +
38 +inherit autotools toolchain-funcs ${GITECLASS}
39 +
40 +DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm"
41 +HOMEPAGE="https://gitlab.com/mdds/mdds"
42 +[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2"
43 +
44 +LICENSE="MIT"
45 +SLOT="1/${PV%.*}"
46 +IUSE="doc valgrind"
47 +
48 +[[ ${PV} == 9999 ]] || \
49 +KEYWORDS=""
50 +#KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
51 +
52 +RDEPEND="dev-libs/boost:="
53 +DEPEND="${RDEPEND}
54 + doc? (
55 + app-doc/doxygen
56 + dev-python/sphinx
57 + )
58 + valgrind? ( dev-util/valgrind )
59 +"
60 +
61 +PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
62 +
63 +src_prepare(){
64 + default
65 + eautoreconf
66 +}
67 +
68 +src_configure() {
69 + econf \
70 + $(use_enable doc docs) \
71 + $(use_enable valgrind memory_tests)
72 +}
73 +
74 +src_compile() { :; }
75 +
76 +src_test() {
77 + tc-export CXX
78 + default
79 +}