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: Fri, 10 Nov 2017 19:21:03
Message-Id: 1510341609.cb0d6a07c5b4c7274c614a0491722949ff86c8ee.asturm@gentoo
1 commit: cb0d6a07c5b4c7274c614a0491722949ff86c8ee
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 9 23:41:48 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 10 19:20:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb0d6a07
7
8 dev-util/mdds: --disable-docs, sync ebuilds
9
10 Thanks-to: Chris Mayo <aklhfex <AT> gmail.com>
11 Closes: https://bugs.gentoo.org/602026
12 Package-Manager: Portage-2.3.13, Repoman-2.3.4
13
14 dev-util/mdds/mdds-1.2.2.ebuild | 16 ++++++----------
15 dev-util/mdds/mdds-1.2.3.ebuild | 14 +++++---------
16 dev-util/mdds/mdds-1.3.0.ebuild | 12 ++++--------
17 3 files changed, 15 insertions(+), 27 deletions(-)
18
19 diff --git a/dev-util/mdds/mdds-1.2.2.ebuild b/dev-util/mdds/mdds-1.2.2.ebuild
20 index 87734073a01..a734248ea26 100644
21 --- a/dev-util/mdds/mdds-1.2.2.ebuild
22 +++ b/dev-util/mdds/mdds-1.2.2.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 +# Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=6
29 @@ -10,22 +10,17 @@ inherit toolchain-funcs ${GITECLASS}
30
31 DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm"
32 HOMEPAGE="https://gitlab.com/mdds/mdds"
33 -[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/${PN}/src/${P}.tar.bz2"
34 +[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2"
35
36 LICENSE="MIT"
37 SLOT="1/${PV%.*}"
38 -IUSE="doc valgrind"
39 +IUSE="valgrind"
40
41 [[ ${PV} == 9999 ]] || \
42 KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
43
44 RDEPEND="dev-libs/boost:="
45 -DEPEND="${RDEPEND}
46 - doc? (
47 - app-doc/doxygen
48 - dev-python/sphinx
49 - )
50 -"
51 +DEPEND="${RDEPEND}"
52
53 DOCS=() # buildsystem installs docs
54
55 @@ -35,8 +30,9 @@ src_prepare(){
56 }
57
58 src_configure() {
59 + # docs require dev-python/breathe etc., bug #602026
60 econf \
61 - $(use_enable doc docs) \
62 + --disable-docs \
63 $(use_enable valgrind memory_tests)
64 }
65
66
67 diff --git a/dev-util/mdds/mdds-1.2.3.ebuild b/dev-util/mdds/mdds-1.2.3.ebuild
68 index 7106902e218..07ad63789d1 100644
69 --- a/dev-util/mdds/mdds-1.2.3.ebuild
70 +++ b/dev-util/mdds/mdds-1.2.3.ebuild
71 @@ -10,22 +10,17 @@ inherit autotools toolchain-funcs ${GITECLASS}
72
73 DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm"
74 HOMEPAGE="https://gitlab.com/mdds/mdds"
75 -[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/${PN}/src/${P}.tar.bz2"
76 +[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2"
77
78 LICENSE="MIT"
79 SLOT="1/${PV%.*}"
80 -IUSE="doc valgrind"
81 +IUSE="valgrind"
82
83 [[ ${PV} == 9999 ]] || \
84 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
85
86 RDEPEND="dev-libs/boost:="
87 -DEPEND="${RDEPEND}
88 - doc? (
89 - app-doc/doxygen
90 - dev-python/sphinx
91 - )
92 -"
93 +DEPEND="${RDEPEND}"
94
95 PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
96
97 @@ -35,8 +30,9 @@ src_prepare(){
98 }
99
100 src_configure() {
101 + # docs require dev-python/breathe etc., bug #602026
102 econf \
103 - $(use_enable doc docs) \
104 + --disable-docs \
105 $(use_enable valgrind memory_tests)
106 }
107
108
109 diff --git a/dev-util/mdds/mdds-1.3.0.ebuild b/dev-util/mdds/mdds-1.3.0.ebuild
110 index f4087575fc9..ac7784206be 100644
111 --- a/dev-util/mdds/mdds-1.3.0.ebuild
112 +++ b/dev-util/mdds/mdds-1.3.0.ebuild
113 @@ -14,18 +14,13 @@ HOMEPAGE="https://gitlab.com/mdds/mdds"
114
115 LICENSE="MIT"
116 SLOT="1/1.2"
117 -IUSE="doc valgrind"
118 +IUSE="valgrind"
119
120 [[ ${PV} == 9999 ]] || \
121 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
122
123 RDEPEND="dev-libs/boost:="
124 -DEPEND="${RDEPEND}
125 - doc? (
126 - app-doc/doxygen
127 - dev-python/sphinx
128 - )
129 -"
130 +DEPEND="${RDEPEND}"
131
132 PATCHES=( "${FILESDIR}/${PN}-1.2.3-buildsystem.patch" )
133
134 @@ -35,8 +30,9 @@ src_prepare(){
135 }
136
137 src_configure() {
138 + # docs require dev-python/breathe etc., bug #602026
139 econf \
140 - $(use_enable doc docs) \
141 + --disable-docs \
142 $(use_enable valgrind memory_tests)
143 }