From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 53321138350 for ; Mon, 16 Mar 2020 21:29:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 353E8E0B9F; Mon, 16 Mar 2020 21:29:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1094FE0B9F for ; Mon, 16 Mar 2020 21:29:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E56234F221 for ; Mon, 16 Mar 2020 21:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB899187 for ; Mon, 16 Mar 2020 21:29:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1584393943.f731f2b51e2ab8415bb3abf75b043bc1c1b91819.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mdds/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/mdds/mdds-9999.ebuild X-VCS-Directories: dev-util/mdds/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f731f2b51e2ab8415bb3abf75b043bc1c1b91819 X-VCS-Branch: master Date: Mon, 16 Mar 2020 21:29:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f77e9ee0-08d2-413d-9c51-2ab7bcc99637 X-Archives-Hash: ef9b37d9c5aa703952e020d5f9df52e6 commit: f731f2b51e2ab8415bb3abf75b043bc1c1b91819 Author: Nils Freydank posteo de> AuthorDate: Mon Mar 2 22:24:27 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Mar 16 21:25:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f731f2b5 dev-util/mdds: Update live ebuild Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Nils Freydank posteo.de> Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/mdds/mdds-9999.ebuild | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/dev-util/mdds/mdds-9999.ebuild b/dev-util/mdds/mdds-9999.ebuild index 2709004f063..37717bcfe9a 100644 --- a/dev-util/mdds/mdds-9999.ebuild +++ b/dev-util/mdds/mdds-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -if [[ ${PV} == 9999 ]]; then +if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://gitlab.com/mdds/mdds.git" inherit git-r3 else @@ -17,7 +17,8 @@ HOMEPAGE="https://gitlab.com/mdds/mdds" LICENSE="MIT" SLOT="1/${PV%.*}" -IUSE="doc valgrind" +IUSE="doc valgrind test" +RESTRICT="!test? ( test )" BDEPEND=" doc? ( @@ -29,22 +30,24 @@ BDEPEND=" DEPEND="dev-libs/boost:=" RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/${PN}-1.4.3-buildsystem.patch" ) +PATCHES=( "${FILESDIR}/${PN}-1.5.0-buildsystem.patch" ) src_prepare() { default + eautoreconf } src_configure() { - econf \ - $(use_enable doc docs) \ + local myeconfargs=( + $(use_enable doc docs) $(use_enable valgrind memory_tests) + ) + econf "${myeconfargs[@]}" } -src_compile() { :; } - src_test() { tc-export CXX + default }