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 462ED1396DA for ; Fri, 10 Nov 2017 19:21:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E686E0F1F; Fri, 10 Nov 2017 19:21:02 +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 2C904E0F1F for ; Fri, 10 Nov 2017 19:21:01 +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 983CA33BE2E for ; Fri, 10 Nov 2017 19:21:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C041989B for ; Fri, 10 Nov 2017 19:20:59 +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: <1510341609.cb0d6a07c5b4c7274c614a0491722949ff86c8ee.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-1.2.2.ebuild dev-util/mdds/mdds-1.2.3.ebuild dev-util/mdds/mdds-1.3.0.ebuild X-VCS-Directories: dev-util/mdds/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cb0d6a07c5b4c7274c614a0491722949ff86c8ee X-VCS-Branch: master Date: Fri, 10 Nov 2017 19:20:59 +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-Archives-Salt: a6d2997b-cd7e-4233-9363-2bc49b9167be X-Archives-Hash: fc40de500750905564b682b407829168 commit: cb0d6a07c5b4c7274c614a0491722949ff86c8ee Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Nov 9 23:41:48 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 10 19:20:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb0d6a07 dev-util/mdds: --disable-docs, sync ebuilds Thanks-to: Chris Mayo gmail.com> Closes: https://bugs.gentoo.org/602026 Package-Manager: Portage-2.3.13, Repoman-2.3.4 dev-util/mdds/mdds-1.2.2.ebuild | 16 ++++++---------- dev-util/mdds/mdds-1.2.3.ebuild | 14 +++++--------- dev-util/mdds/mdds-1.3.0.ebuild | 12 ++++-------- 3 files changed, 15 insertions(+), 27 deletions(-) diff --git a/dev-util/mdds/mdds-1.2.2.ebuild b/dev-util/mdds/mdds-1.2.2.ebuild index 87734073a01..a734248ea26 100644 --- a/dev-util/mdds/mdds-1.2.2.ebuild +++ b/dev-util/mdds/mdds-1.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -10,22 +10,17 @@ inherit toolchain-funcs ${GITECLASS} DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm" HOMEPAGE="https://gitlab.com/mdds/mdds" -[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/${PN}/src/${P}.tar.bz2" +[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2" LICENSE="MIT" SLOT="1/${PV%.*}" -IUSE="doc valgrind" +IUSE="valgrind" [[ ${PV} == 9999 ]] || \ KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" RDEPEND="dev-libs/boost:=" -DEPEND="${RDEPEND} - doc? ( - app-doc/doxygen - dev-python/sphinx - ) -" +DEPEND="${RDEPEND}" DOCS=() # buildsystem installs docs @@ -35,8 +30,9 @@ src_prepare(){ } src_configure() { + # docs require dev-python/breathe etc., bug #602026 econf \ - $(use_enable doc docs) \ + --disable-docs \ $(use_enable valgrind memory_tests) } diff --git a/dev-util/mdds/mdds-1.2.3.ebuild b/dev-util/mdds/mdds-1.2.3.ebuild index 7106902e218..07ad63789d1 100644 --- a/dev-util/mdds/mdds-1.2.3.ebuild +++ b/dev-util/mdds/mdds-1.2.3.ebuild @@ -10,22 +10,17 @@ 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="http://kohei.us/files/${PN}/src/${P}.tar.bz2" +[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2" LICENSE="MIT" SLOT="1/${PV%.*}" -IUSE="doc valgrind" +IUSE="valgrind" [[ ${PV} == 9999 ]] || \ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" RDEPEND="dev-libs/boost:=" -DEPEND="${RDEPEND} - doc? ( - app-doc/doxygen - dev-python/sphinx - ) -" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" ) @@ -35,8 +30,9 @@ src_prepare(){ } src_configure() { + # docs require dev-python/breathe etc., bug #602026 econf \ - $(use_enable doc docs) \ + --disable-docs \ $(use_enable valgrind memory_tests) } diff --git a/dev-util/mdds/mdds-1.3.0.ebuild b/dev-util/mdds/mdds-1.3.0.ebuild index f4087575fc9..ac7784206be 100644 --- a/dev-util/mdds/mdds-1.3.0.ebuild +++ b/dev-util/mdds/mdds-1.3.0.ebuild @@ -14,18 +14,13 @@ HOMEPAGE="https://gitlab.com/mdds/mdds" LICENSE="MIT" SLOT="1/1.2" -IUSE="doc valgrind" +IUSE="valgrind" [[ ${PV} == 9999 ]] || \ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" RDEPEND="dev-libs/boost:=" -DEPEND="${RDEPEND} - doc? ( - app-doc/doxygen - dev-python/sphinx - ) -" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}/${PN}-1.2.3-buildsystem.patch" ) @@ -35,8 +30,9 @@ src_prepare(){ } src_configure() { + # docs require dev-python/breathe etc., bug #602026 econf \ - $(use_enable doc docs) \ + --disable-docs \ $(use_enable valgrind memory_tests) }