Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/libRocket/
Date: Tue, 03 Oct 2017 22:13:13
Message-Id: 1507068742.aab37023f705b100c60a118362ff20236970ad6e.mgorny@gentoo
1 commit: aab37023f705b100c60a118362ff20236970ad6e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 3 21:54:57 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 3 22:12:22 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab37023
7
8 dev-libs/libRocket: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/558698
11 Closes: https://bugs.gentoo.org/599224
12 Closes: https://bugs.gentoo.org/600680
13
14 dev-libs/libRocket/Manifest | 2 -
15 .../libRocket/libRocket-1.2.1_p20130110-r1.ebuild | 96 ---------------------
16 dev-libs/libRocket/libRocket-1.3.0.0.ebuild | 98 ----------------------
17 dev-libs/libRocket/libRocket-9999.ebuild | 97 ---------------------
18 dev-libs/libRocket/metadata.xml | 11 ---
19 profiles/package.mask | 5 --
20 6 files changed, 309 deletions(-)
21
22 diff --git a/dev-libs/libRocket/Manifest b/dev-libs/libRocket/Manifest
23 deleted file mode 100644
24 index a0c54f76284..00000000000
25 --- a/dev-libs/libRocket/Manifest
26 +++ /dev/null
27 @@ -1,2 +0,0 @@
28 -DIST libRocket-1.2.1_p20130110.tar.xz 845572 SHA256 5661f0d1b0a3e19b9f2856b9927ed7ec4ad6939e732230832cd701bf078a732b SHA512 1c474e0cad2e13ebe6102cd5d31c3fa61370d23062c31fd7703ec431f0da56f008c9711b49b73d8a9b32af0313e2cb3aa8c46888a36044fef05c15fe1cbc23b5 WHIRLPOOL 52ef88ebc35ac762c6b50fbaed8713b2568f80bc65390e696537f4935eaf1c4182a64b414fd6bfadb3e1a6cadb0589fcb20bc12c26e3ea87edaf342b5ff09bb6
29 -DIST libRocket-1.3.0.0.tar.gz 1858846 SHA256 574e992ac0bb62c1aa782114986d440ade69f4408971d0fb4ddc5922df761b75 SHA512 579fb5b9ca48b44999ca9c64e5fde3f28b83b12487928d34cf6e2834e60c4fff06c845832d38387f4ba639e2bd906b96940da4ce5e4c73625c48c6658726d3bd WHIRLPOOL a72c72c38780bc4dba9fbdb14365b675579e0a4d251c88bcf780fa076c16728c09c9ba7dff733d8f54da8064184e585ea568e12275f8e7ab86d55333a6242b0f
30
31 diff --git a/dev-libs/libRocket/libRocket-1.2.1_p20130110-r1.ebuild b/dev-libs/libRocket/libRocket-1.2.1_p20130110-r1.ebuild
32 deleted file mode 100644
33 index 9d21accbda4..00000000000
34 --- a/dev-libs/libRocket/libRocket-1.2.1_p20130110-r1.ebuild
35 +++ /dev/null
36 @@ -1,96 +0,0 @@
37 -# Copyright 1999-2017 Gentoo Foundation
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=5
41 -
42 -PYTHON_COMPAT=( python2_7 )
43 -inherit cmake-utils eutils python-r1 multilib-minimal
44 -
45 -DESCRIPTION="A HTML/CSS User Interface library"
46 -HOMEPAGE="https://librocket.com/"
47 -SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="amd64 x86"
52 -IUSE="python samples"
53 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
54 -
55 -RDEPEND="
56 - >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}]
57 - python? (
58 - ${PYTHON_DEPS}
59 - dev-libs/boost[${PYTHON_USEDEP}]
60 - )
61 - samples? (
62 - virtual/opengl
63 - x11-libs/libXext
64 - x11-libs/libX11
65 - )"
66 -DEPEND="${RDEPEND}"
67 -
68 -DOCS=( changelog.txt readme.md )
69 -
70 -python_BUILD_DIR=${WORKDIR}/${P}_build_python
71 -CMAKE_USE_DIR="${S}"/Build
72 -
73 -multilib_src_configure() {
74 - local mycmakeargs=(
75 - -DBUILD_PYTHON_BINDINGS=OFF
76 - -DSAMPLES_DIR=/usr/share/${PN}/samples
77 - )
78 -
79 - if multilib_is_native_abi ; then
80 - mycmakeargs+=( $(cmake-utils_use_build samples SAMPLES) )
81 - else
82 - mycmakeargs+=( -DBUILD_SAMPLES=OFF )
83 - fi
84 -
85 - cmake-utils_src_configure
86 -
87 - if multilib_is_native_abi ; then
88 - if use python ; then
89 - cfgpybind() {
90 - local mycmakeargs=(
91 - -DBUILD_PYTHON_BINDINGS=ON
92 - -DCMAKE_SKIP_RPATH=YES
93 - )
94 - BUILD_DIR="${python_BUILD_DIR}-${EPYTHON}" cmake-utils_src_configure
95 - }
96 - einfo "configuring python binding"
97 - python_foreach_impl cfgpybind
98 - fi
99 - fi
100 -}
101 -
102 -multilib_src_compile() {
103 - cmake-utils_src_compile
104 - local abi_build_dir=${BUILD_DIR}
105 -
106 - if multilib_is_native_abi ; then
107 - if use python ; then
108 - buildpybind() {
109 - cp "${abi_build_dir}"/{libRocketCore*,libRocketControls*} "${python_BUILD_DIR}-${EPYTHON}"/ || die
110 - BUILD_DIR="${python_BUILD_DIR}-${EPYTHON}" cmake-utils_src_make _rocketcontrols/fast _rocketcore/fast
111 - }
112 - einfo "compiling python binding"
113 - python_foreach_impl buildpybind
114 - fi
115 - fi
116 -}
117 -
118 -multilib_src_install() {
119 - cmake-utils_src_install
120 -
121 - if multilib_is_native_abi ; then
122 - if use python ; then
123 - instpybind() {
124 - python_domodule "${S}"/bin/rocket.py
125 - exeinto "$(python_get_sitedir)"
126 - doexe ${python_BUILD_DIR}-${EPYTHON}/_rocket{core,controls}.so
127 - }
128 - einfo "installing python binding"
129 - python_foreach_impl instpybind
130 - fi
131 - fi
132 -}
133
134 diff --git a/dev-libs/libRocket/libRocket-1.3.0.0.ebuild b/dev-libs/libRocket/libRocket-1.3.0.0.ebuild
135 deleted file mode 100644
136 index a99590e8399..00000000000
137 --- a/dev-libs/libRocket/libRocket-1.3.0.0.ebuild
138 +++ /dev/null
139 @@ -1,98 +0,0 @@
140 -# Copyright 1999-2017 Gentoo Foundation
141 -# Distributed under the terms of the GNU General Public License v2
142 -
143 -EAPI=5
144 -
145 -PYTHON_COMPAT=( python2_7 )
146 -inherit cmake-utils eutils python-r1 multilib-minimal
147 -
148 -DESCRIPTION="A HTML/CSS User Interface library"
149 -HOMEPAGE="https://librocket.com/"
150 -SRC_URI="https://github.com/libRocket/libRocket/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
151 -
152 -LICENSE="MIT"
153 -SLOT="0/1"
154 -KEYWORDS="~amd64 ~x86"
155 -IUSE="python samples"
156 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
157 -
158 -RDEPEND="
159 - >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}]
160 - python? (
161 - ${PYTHON_DEPS}
162 - dev-libs/boost[${PYTHON_USEDEP}]
163 - )
164 - samples? (
165 - virtual/opengl
166 - x11-libs/libXext
167 - x11-libs/libX11
168 - )"
169 -DEPEND="${RDEPEND}"
170 -
171 -S=${WORKDIR}/${PN}-release-${PV}
172 -
173 -DOCS=( changelog.txt readme.md )
174 -
175 -python_BUILD_DIR=${WORKDIR}/${P}_build_python
176 -CMAKE_USE_DIR="${S}"/Build
177 -
178 -multilib_src_configure() {
179 - local mycmakeargs=(
180 - -DBUILD_PYTHON_BINDINGS=OFF
181 - -DSAMPLES_DIR=/usr/share/${PN}/samples
182 - )
183 -
184 - if multilib_is_native_abi ; then
185 - mycmakeargs+=( $(cmake-utils_use_build samples SAMPLES) )
186 - else
187 - mycmakeargs+=( -DBUILD_SAMPLES=OFF )
188 - fi
189 -
190 - cmake-utils_src_configure
191 -
192 - if multilib_is_native_abi ; then
193 - if use python ; then
194 - cfgpybind() {
195 - local mycmakeargs=(
196 - -DBUILD_PYTHON_BINDINGS=ON
197 - -DCMAKE_SKIP_RPATH=YES
198 - )
199 - BUILD_DIR="${python_BUILD_DIR}-${EPYTHON}" cmake-utils_src_configure
200 - }
201 - einfo "configuring python binding"
202 - python_foreach_impl cfgpybind
203 - fi
204 - fi
205 -}
206 -
207 -multilib_src_compile() {
208 - cmake-utils_src_compile
209 - local abi_build_dir=${BUILD_DIR}
210 -
211 - if multilib_is_native_abi ; then
212 - if use python ; then
213 - buildpybind() {
214 - cp "${abi_build_dir}"/{libRocketCore*,libRocketControls*} "${python_BUILD_DIR}-${EPYTHON}"/ || die
215 - BUILD_DIR="${python_BUILD_DIR}-${EPYTHON}" cmake-utils_src_make _rocketcontrols/fast _rocketcore/fast
216 - }
217 - einfo "compiling python binding"
218 - python_foreach_impl buildpybind
219 - fi
220 - fi
221 -}
222 -
223 -multilib_src_install() {
224 - cmake-utils_src_install
225 -
226 - if multilib_is_native_abi ; then
227 - if use python ; then
228 - instpybind() {
229 - python_domodule "${S}"/bin/rocket.py
230 - exeinto "$(python_get_sitedir)"
231 - doexe ${python_BUILD_DIR}-${EPYTHON}/_rocket{core,controls}.so
232 - }
233 - einfo "installing python binding"
234 - python_foreach_impl instpybind
235 - fi
236 - fi
237 -}
238
239 diff --git a/dev-libs/libRocket/libRocket-9999.ebuild b/dev-libs/libRocket/libRocket-9999.ebuild
240 deleted file mode 100644
241 index 8612a41c005..00000000000
242 --- a/dev-libs/libRocket/libRocket-9999.ebuild
243 +++ /dev/null
244 @@ -1,97 +0,0 @@
245 -# Copyright 1999-2017 Gentoo Foundation
246 -# Distributed under the terms of the GNU General Public License v2
247 -
248 -EAPI=5
249 -
250 -PYTHON_COMPAT=( python2_7 )
251 -inherit cmake-utils git-2 python-r1 multilib-minimal
252 -
253 -DESCRIPTION="A HTML/CSS User Interface library"
254 -HOMEPAGE="https://librocket.com/"
255 -SRC_URI=""
256 -EGIT_REPO_URI="https://github.com/hasufell/libRocket.git"
257 -
258 -LICENSE="MIT"
259 -SLOT="0"
260 -KEYWORDS=""
261 -IUSE="python samples"
262 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
263 -
264 -RDEPEND="
265 - >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}]
266 - python? (
267 - ${PYTHON_DEPS}
268 - dev-libs/boost[${PYTHON_USEDEP}]
269 - )
270 - samples? (
271 - virtual/opengl
272 - x11-libs/libXext
273 - x11-libs/libX11
274 - )"
275 -DEPEND="${RDEPEND}"
276 -
277 -DOCS=( changelog.txt readme.md )
278 -
279 -python_BUILD_DIR=${WORKDIR}/${P}_build_python
280 -CMAKE_USE_DIR="${S}"/Build
281 -
282 -multilib_src_configure() {
283 - local mycmakeargs=(
284 - -DBUILD_PYTHON_BINDINGS=OFF
285 - -DSAMPLES_DIR=/usr/share/${PN}/samples
286 - )
287 -
288 - if multilib_is_native_abi ; then
289 - mycmakeargs+=( $(cmake-utils_use_build samples SAMPLES) )
290 - else
291 - mycmakeargs+=( -DBUILD_SAMPLES=OFF )
292 - fi
293 -
294 - cmake-utils_src_configure
295 -
296 - if multilib_is_native_abi ; then
297 - if use python ; then
298 - cfgpybind() {
299 - local mycmakeargs=(
300 - -DBUILD_PYTHON_BINDINGS=ON
301 - -DCMAKE_SKIP_RPATH=YES
302 - )
303 - BUILD_DIR="${python_BUILD_DIR}-${EPYTHON}" cmake-utils_src_configure
304 - }
305 - einfo "configuring python binding"
306 - python_foreach_impl cfgpybind
307 - fi
308 - fi
309 -}
310 -
311 -multilib_src_compile() {
312 - cmake-utils_src_compile
313 - local abi_build_dir=${BUILD_DIR}
314 -
315 - if multilib_is_native_abi ; then
316 - if use python ; then
317 - buildpybind() {
318 - cp "${abi_build_dir}"/{libRocketCore*,libRocketControls*} "${python_BUILD_DIR}-${EPYTHON}"/ || die
319 - BUILD_DIR="${python_BUILD_DIR}-${EPYTHON}" cmake-utils_src_make _rocketcontrols/fast _rocketcore/fast
320 - }
321 - einfo "compiling python binding"
322 - python_foreach_impl buildpybind
323 - fi
324 - fi
325 -}
326 -
327 -multilib_src_install() {
328 - cmake-utils_src_install
329 -
330 - if multilib_is_native_abi ; then
331 - if use python ; then
332 - instpybind() {
333 - python_domodule "${S}"/bin/rocket.py
334 - exeinto "$(python_get_sitedir)"
335 - doexe ${python_BUILD_DIR}-${EPYTHON}/_rocket{core,controls}.so
336 - }
337 - einfo "installing python binding"
338 - python_foreach_impl instpybind
339 - fi
340 - fi
341 -}
342
343 diff --git a/dev-libs/libRocket/metadata.xml b/dev-libs/libRocket/metadata.xml
344 deleted file mode 100644
345 index 00acc133577..00000000000
346 --- a/dev-libs/libRocket/metadata.xml
347 +++ /dev/null
348 @@ -1,11 +0,0 @@
349 -<?xml version="1.0" encoding="UTF-8"?>
350 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
351 -<pkgmetadata>
352 - <!-- maintainer-needed -->
353 - <use>
354 - <flag name="samples">Build samples</flag>
355 - </use>
356 - <upstream>
357 - <remote-id type="github">libRocket/libRocket</remote-id>
358 - </upstream>
359 -</pkgmetadata>
360
361 diff --git a/profiles/package.mask b/profiles/package.mask
362 index 23b81b422ee..31b495855c2 100644
363 --- a/profiles/package.mask
364 +++ b/profiles/package.mask
365 @@ -400,11 +400,6 @@ net-vpn/kvpnc
366 # Doesn't compile, upstream dead, removal in 2 months (#584296).
367 dev-util/mutrace
368
369 -# Pacho Ramos <pacho@g.o> (14 Jul 2017)
370 -# Multiple unresolved bugs (#600680), need major version bumps and a
371 -# maintainer, removal in 2 months.
372 -dev-libs/libRocket
373 -
374 # Lars Wendler <polynomial-c@g.o> (07 Jul 2017)
375 # Masked until >=net-fs/samba-4.7 is in the tree and
376 # unmasked. (bug #624106)