public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mdds/
Date: Sat, 11 Nov 2017 21:17:21 +0000 (UTC)	[thread overview]
Message-ID: <1510435013.438f404256dce3f97236a46329ad928e0ee27f9f.asturm@gentoo> (raw)

commit:     438f404256dce3f97236a46329ad928e0ee27f9f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 11 21:10:24 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 11 21:16:53 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=438f4042

dev-util/mdds: 1.3.1 version bump

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-util/mdds/Manifest          |  1 +
 dev-util/mdds/mdds-1.3.1.ebuild | 44 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/mdds/Manifest b/dev-util/mdds/Manifest
index 0a647f59a2b..304acfbdb3e 100644
--- a/dev-util/mdds/Manifest
+++ b/dev-util/mdds/Manifest
@@ -1,3 +1,4 @@
 DIST mdds-1.2.2.tar.bz2 286185 SHA256 141e730b39110434b02cd844c5ad3442103f7c35f7e9a4d6a9f8af813594cc9d SHA512 552cb1b65c03cd18eb679c95821e47c1151e1b3015043de4b3a7bc14d27734772fa4d80fd90ab48998d0bc75385a3d29c4dd7ce826cf84b012685573c623bf01 WHIRLPOOL f0b24a886ad6b275267603b73a95c3b83ce14808f90daa0e680babec966a52de19349ac0991d76b9279818897f783d1768ece74f5f1be1157fa8bff94e5e8a5a
 DIST mdds-1.2.3.tar.bz2 287079 SHA256 402fec18256f95b89517d54d85f00bce1faa6e517cb3d7c98a720fddd063354f SHA512 e5935fd99a53df124532cfc8e46349b2ef9ca79f5f184ca2da941c9a77e66ee40e11478e520bf9cb62e1bcea4b69deab5088265e1b89fda04417130aab227c3d WHIRLPOOL 88e154f3e1141d09736a8a9d5b4adf3612cea95a82773f59053d8e83f7fec3a0c292f5453df92627f31ac7e12b2f702dc281c959e7f219de91f2a1acc15cc7b4
 DIST mdds-1.3.0.tar.bz2 287367 SHA256 00aa92a28af9f1168a8e5c38e46f311abb65ef5b113ef56078ff104b94211460 SHA512 9d2c3a69686ce3101fbdeeeb2d1e54ee62bbb26db9e67517d22d5dd13bcb2c3797c813195f81f7f970fe0be4509f55338b69730596f387f364ecbfee0bedf427 WHIRLPOOL 0019a406e81af9a2b7c0eb7a0361eb5c95eed77a4bf701eb834cf515328d5385d20603396d122405061e4dafb7e225a6140819dd21929cef778f96d6f2728e01
+DIST mdds-1.3.1.tar.bz2 287612 SHA256 dcb8cd2425567a5a5ec164afea475bce57784bca3e352ad4cbdd3d1a7e08e5a1 SHA512 c7ed422c8e0bfb00debd43a12638efc6706d25f9aee0b7cfc15dc711693c4d555e262ae47ff00797c9601c12c0a7eced0f753b263b5f61623470f842814970a8 WHIRLPOOL 3ac7d8b74ee05e68816c4437f7bc25bd306a07cf6f570340c8ce96ff3ec7c232fa3403aa27af49af835f0dd760c4c68cd1c3a5cd27611282ec8ce96260a6bb20

diff --git a/dev-util/mdds/mdds-1.3.1.ebuild b/dev-util/mdds/mdds-1.3.1.ebuild
new file mode 100644
index 00000000000..ac7784206be
--- /dev/null
+++ b/dev-util/mdds/mdds-1.3.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://gitlab.com/mdds/mdds.git"
+[[ ${PV} == 9999 ]] && GITECLASS="git-r3"
+
+inherit autotools toolchain-funcs ${GITECLASS}
+
+DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm"
+HOMEPAGE="https://gitlab.com/mdds/mdds"
+[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="1/1.2"
+IUSE="valgrind"
+
+[[ ${PV} == 9999 ]] || \
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="dev-libs/boost:="
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-1.2.3-buildsystem.patch" )
+
+src_prepare(){
+	default
+	eautoreconf
+}
+
+src_configure() {
+	# docs require dev-python/breathe etc., bug #602026
+	econf \
+		--disable-docs \
+		$(use_enable valgrind memory_tests)
+}
+
+src_compile() { :; }
+
+src_test() {
+	tc-export CXX
+	default
+}


             reply	other threads:[~2017-11-11 21:17 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-11 21:17 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-20 20:49 [gentoo-commits] repo/gentoo:master commit in: dev-util/mdds/ Andreas Sturmlechner
2024-02-20  5:56 Sam James
2024-02-17  9:55 Arthur Zamarin
2024-02-12 10:31 Sam James
2024-01-27  0:48 Andreas Sturmlechner
2024-01-27  0:48 Andreas Sturmlechner
2023-08-30 23:52 Sam James
2023-05-14 17:11 Sam James
2023-02-25 10:27 Andreas Sturmlechner
2022-08-12 12:26 WANG Xuerui
2022-08-12 12:26 WANG Xuerui
2022-06-14  7:21 Agostino Sarubbo
2022-05-18 11:13 Andreas Sturmlechner
2022-05-15 10:55 Andreas Sturmlechner
2022-05-14 21:30 David Seifert
2022-04-27 21:57 Sam James
2022-04-10 10:46 Sam James
2022-03-12 15:53 Andreas Sturmlechner
2022-02-08 23:53 Andreas K. Hüttel
2021-12-29 13:46 Yixun Lan
2021-11-14  5:25 Sam James
2020-11-23  9:47 Sam James
2020-11-23  4:52 Sam James
2020-11-23  3:58 Sam James
2020-05-31 15:40 Mikle Kolyada
2020-05-28 17:09 Andreas Sturmlechner
2020-05-20 13:35 Mikle Kolyada
2020-05-19 19:36 Mikle Kolyada
2020-04-10 13:48 Andreas Sturmlechner
2020-03-16 21:29 Andreas Sturmlechner
2019-07-31 21:11 Aaron Bauman
2019-06-18 18:24 Thomas Deutschmann
2019-06-09 20:16 Mikle Kolyada
2019-03-12  7:10 Andreas Sturmlechner
2018-11-15 23:12 Andreas Sturmlechner
2018-09-16 22:34 Andreas Sturmlechner
2018-09-16 22:34 Andreas Sturmlechner
2018-09-12 20:56 Andreas Sturmlechner
2017-12-29 23:06 Andreas Sturmlechner
2017-12-29 18:03 Mikle Kolyada
2017-12-28 19:35 Andreas Sturmlechner
2017-12-26  0:59 Thomas Deutschmann
2017-11-19 23:49 Andreas Sturmlechner
2017-11-14 14:13 Manuel Rüger
2017-11-11 21:17 Andreas Sturmlechner
2017-11-10 19:20 Andreas Sturmlechner
2017-11-10 19:20 Andreas Sturmlechner
2017-11-08  8:55 Andreas Sturmlechner
2016-12-17 15:57 Andreas Hüttel
2016-12-03 23:00 Andreas Hüttel
2016-11-29 18:41 Agostino Sarubbo
2016-11-29 18:40 Agostino Sarubbo
2016-09-17 21:32 Andreas Hüttel
2016-09-17 21:32 Andreas Hüttel
2016-06-03 12:50 Lars Wendler
2016-06-03 12:50 Lars Wendler
2016-06-03 12:50 Lars Wendler
2016-02-22 17:07 Andreas Hüttel

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=1510435013.438f404256dce3f97236a46329ad928e0ee27f9f.asturm@gentoo \
    --to=asturm@gentoo.org \
    --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