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: dev-libs/blitz/files/, profiles/, dev-libs/blitz/
Date: Sun, 05 May 2019 07:18:53
Message-Id: 1557040616.2e861d08f6a001bff9270126150010f0c362f65e.mgorny@gentoo
1 commit: 2e861d08f6a001bff9270126150010f0c362f65e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 5 07:16:56 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 5 07:16:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e861d08
7
8 dev-libs/blitz: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/682402
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-libs/blitz/Manifest | 1 -
14 dev-libs/blitz/blitz-0.10-r1.ebuild | 65 -------------
15 dev-libs/blitz/blitz-0.10.ebuild | 61 ------------
16 dev-libs/blitz/files/blitz-0.10-docs.patch | 88 -----------------
17 dev-libs/blitz/files/blitz-0.10-gcc47.patch | 33 -------
18 .../files/blitz-0.10-set-default-arg-value.patch | 107 ---------------------
19 dev-libs/blitz/metadata.xml | 21 ----
20 profiles/package.mask | 7 --
21 8 files changed, 383 deletions(-)
22
23 diff --git a/dev-libs/blitz/Manifest b/dev-libs/blitz/Manifest
24 deleted file mode 100644
25 index e8bf73c0688..00000000000
26 --- a/dev-libs/blitz/Manifest
27 +++ /dev/null
28 @@ -1 +0,0 @@
29 -DIST blitz-0.10.tar.gz 3777276 BLAKE2B 0817a5189c0967c073a3da8fecef6159d53c058e93222bf03f9b33a51bc9b5a6a1976f94d8a6ca6f33ddcefe222eece011443fb2f29555ee2e156c24749249ba SHA512 04fb0c8735d8ae173e6e907bd04fd739c482b7816c25b7dfe58c8641b90c17321e9a6849ced73a04ca9cc55439070de1a1e395497887317b553b0550fa0a2462
30
31 diff --git a/dev-libs/blitz/blitz-0.10-r1.ebuild b/dev-libs/blitz/blitz-0.10-r1.ebuild
32 deleted file mode 100644
33 index 212bf840809..00000000000
34 --- a/dev-libs/blitz/blitz-0.10-r1.ebuild
35 +++ /dev/null
36 @@ -1,65 +0,0 @@
37 -# Copyright 1999-2013 Gentoo Foundation
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=5
41 -
42 -AUTOTOOLS_AUTORECONF=1
43 -inherit autotools-utils
44 -
45 -DESCRIPTION="High-performance C++ numeric library"
46 -HOMEPAGE="http://blitz.sourceforge.net"
47 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
48 -
49 -LICENSE="|| ( LGPL-3 Artistic-2 BSD )"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~ppc-macos ~x86-linux ~x86-macos"
52 -
53 -IUSE="boost debug doc examples static-libs"
54 -
55 -RDEPEND="boost? ( >=dev-libs/boost-1.40 )"
56 -DEPEND="${RDEPEND}
57 - doc? ( app-doc/doxygen[dot] )"
58 -
59 -PATCHES=(
60 - "${FILESDIR}/${P}-docs.patch"
61 - "${FILESDIR}/${P}-gcc47.patch"
62 - "${FILESDIR}/${P}-set-default-arg-value.patch"
63 -)
64 -
65 -src_configure() {
66 - # blas / fortran only needed for benchmarks
67 - use doc && doxygen -u doc/doxygen/Doxyfile.in
68 - local myeconfargs=(
69 - --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
70 - --enable-shared
71 - --disable-cxx-flags-preset
72 - --disable-fortran
73 - --without-blas
74 - $(use_enable boost serialization)
75 - $(use_enable debug)
76 - $(use_enable doc doxygen)
77 - $(use_enable doc html-docs)
78 - $(use_with boost boost "${EPREFIX}/usr")
79 - $(use_with boost boost-serialization)
80 - )
81 - autotools-utils_src_configure
82 -}
83 -
84 -src_compile() {
85 - autotools-utils_src_compile LDFLAGS="${LDFLAGS}" lib
86 - use doc && autotools-utils_src_compile info html pdf
87 -}
88 -
89 -src_test() {
90 - pushd ${AUTOTOOLS_BUILD_DIR} > /dev/null
91 - emake check-testsuite check-examples
92 - popd > /dev/null
93 -}
94 -
95 -src_install () {
96 - autotools-utils_src_install $(use doc && echo install-html install-pdf)
97 - if use examples; then
98 - insinto /usr/share/doc/${PF}/examples
99 - doins examples/*.{cpp,f}
100 - fi
101 -}
102
103 diff --git a/dev-libs/blitz/blitz-0.10.ebuild b/dev-libs/blitz/blitz-0.10.ebuild
104 deleted file mode 100644
105 index 02744f2ceeb..00000000000
106 --- a/dev-libs/blitz/blitz-0.10.ebuild
107 +++ /dev/null
108 @@ -1,61 +0,0 @@
109 -# Copyright 1999-2012 Gentoo Foundation
110 -# Distributed under the terms of the GNU General Public License v2
111 -
112 -EAPI=4
113 -
114 -AUTOTOOLS_AUTORECONF=1
115 -
116 -inherit autotools-utils multilib
117 -
118 -DESCRIPTION="High-performance C++ numeric library"
119 -HOMEPAGE="http://blitz.sourceforge.net"
120 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
121 -
122 -SLOT="0"
123 -LICENSE="|| ( LGPL-3 Artistic-2 BSD )"
124 -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~ppc-macos ~x86-linux ~x86-macos"
125 -IUSE="boost debug doc examples static-libs"
126 -
127 -RDEPEND="boost? ( >=dev-libs/boost-1.40 )"
128 -DEPEND="${RDEPEND}
129 - doc? ( app-doc/doxygen[dot] )"
130 -
131 -PATCHES=( "${FILESDIR}"/${P}-{docs,gcc47,set-default-arg-value}.patch )
132 -
133 -src_configure() {
134 - # blas / fortran only needed for benchmarks
135 - use doc && doxygen -u doc/doxygen/Doxyfile.in
136 - local myeconfargs=(
137 - --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
138 - --enable-shared
139 - --disable-cxx-flags-preset
140 - --disable-fortran
141 - --without-blas
142 - $(use_enable boost serialization)
143 - $(use_enable debug)
144 - $(use_enable doc doxygen)
145 - $(use_enable doc html-docs)
146 - $(use_with boost boost "${EPREFIX}/usr")
147 - $(use_with boost boost-serialization)
148 - )
149 - autotools-utils_src_configure
150 -}
151 -
152 -src_compile() {
153 - autotools-utils_src_compile lib
154 - use doc && autotools-utils_src_compile info html pdf
155 -}
156 -
157 -src_test() {
158 - pushd ${AUTOTOOLS_BUILD_DIR} > /dev/null
159 - emake check-testsuite check-examples
160 - popd > /dev/null
161 -}
162 -
163 -src_install () {
164 - autotools-utils_src_install $(use doc&& echo install-html install-pdf)
165 - if use examples; then
166 - insinto /usr/share/doc/${PF}/examples
167 - doins examples/*.{cpp,f}
168 - fi
169 -}
170
171 diff --git a/dev-libs/blitz/files/blitz-0.10-docs.patch b/dev-libs/blitz/files/blitz-0.10-docs.patch
172 deleted file mode 100644
173 index dd0dca77af3..00000000000
174 --- a/dev-libs/blitz/files/blitz-0.10-docs.patch
175 +++ /dev/null
176 @@ -1,88 +0,0 @@
177 -* respect user's docdir,htmldir,pdfdir at configuration time
178 -* install recursive for doxygen generated
179 -* works for out-of-source directory installation
180 -
181 -bicatali@g.o Aug 2012
182 -
183 -diff -Nur doc.orig/doxygen/Makefile.am doc/doxygen/Makefile.am
184 ---- doc.orig/doxygen/Makefile.am 2012-05-11 13:11:13.000000000 -0700
185 -+++ doc/doxygen/Makefile.am 2012-08-13 13:44:27.616583722 -0700
186 -@@ -2,7 +2,6 @@
187 -
188 - # Support doxygen documentation ?
189 -
190 --docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/doxygen
191 -
192 - DISTCLEANFILES = Doxyfile doxygen-warning
193 -
194 -@@ -84,29 +83,27 @@
195 - $(RM) -rf latex; \
196 - fi
197 -
198 --# Install hooks
199 --make-install-dirs:
200 -- @if test '!' -d $(DESTDIR)$(docdir) ; \
201 -- then mkdir -p $(DESTDIR)$(docdir) ; \
202 -- fi
203 -
204 --install-data-hook: make-install-dirs
205 -+install-data-hook:
206 - @if test -d html; then \
207 -- echo Installing HTML documentation into $(DESTDIR)$(docdir) ; \
208 -- $(INSTALL_DATA) html/* $(DESTDIR)$(docdir) ; \
209 -+ echo Installing HTML documentation into $(DESTDIR)$(htmldir) ; \
210 -+ $(MKDIR_P) $(DESTDIR)$(htmldir) ; \
211 -+ cp -r html/* $(DESTDIR)$(htmldir) ; \
212 - fi
213 - @if test -f $(PACKAGE).pdf; then \
214 -- echo Installing PDF manual into $(DESTDIR)$(docdir) ; \
215 -- $(INSTALL_DATA) $(PACKAGE).pdf $(DESTDIR)$(docdir) ; \
216 -+ echo Installing PDF manual into $(DESTDIR)$(pdfdir) ; \
217 -+ $(MKDIR_P) $(DESTDIR)$(pdfdir) ; \
218 -+ $(INSTALL_DATA) $(PACKAGE).pdf $(DESTDIR)$(pdfdir) ; \
219 - fi
220 - @if test -f $(PACKAGE).ps; then \
221 -- echo Installing PS manual into $(DESTDIR)$(docdir) ; \
222 -- $(INSTALL_DATA) $(PACKAGE).ps $(DESTDIR)$(docdir) ; \
223 -+ echo Installing PS manual into $(DESTDIR)$(psdir) ; \
224 -+ $(MKDIR_P) $(DESTDIR)$(psdir) ; \
225 -+ $(INSTALL_DATA) $(PACKAGE).ps $(DESTDIR)$(psdir) ; \
226 - fi
227 -
228 - uninstall-hook:
229 - @echo Uninstalling doxygen documentation directory ; \
230 -- rm -rf "$(DESTDIR)$(docdir)";
231 -+ rm -rf "$(DESTDIR)$(htmldir)" "$(DESTDIR)$(psdir)" "$(DESTDIR)$(pdfdir)" ;
232 -
233 -
234 -
235 -diff -Nur doc.orig/Makefile.am doc/Makefile.am
236 ---- doc.orig/Makefile.am 2012-05-11 13:11:13.000000000 -0700
237 -+++ doc/Makefile.am 2012-08-13 13:54:04.490647132 -0700
238 -@@ -4,8 +4,6 @@
239 -
240 - SUBDIRS = examples stencils doxygen
241 -
242 --# docdir directory to install the doc (pdf ps html)
243 --docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
244 -
245 - DVIPS=export TEXPICTS=$(srcdir); dvips
246 - AM_MAKEINFOFLAGS = --no-split -I$(srcdir)
247 -@@ -78,7 +76,7 @@
248 - # Install also the images into the directory html
249 - install-html-local:
250 - test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
251 -- $(INSTALL_DATA) *.gif *.jpg $(DESTDIR)$(htmldir)
252 -+ $(INSTALL_DATA) $(srcdir)/*.gif $(srcdir)/*.jpg $(DESTDIR)$(htmldir)
253 -
254 - .PHONY: html
255 -
256 -@@ -86,7 +84,7 @@
257 -
258 - # Install also the images into the directory containing the html files
259 - install-html-local:
260 -- $(INSTALL_DATA) *.gif *.jpg blitz.html
261 -+ $(INSTALL_DATA) $(srcdir)/*.gif $(srcdir)/*.jpg $(top_builddir)/doc/blitz.html
262 -
263 - endif
264 -
265
266 diff --git a/dev-libs/blitz/files/blitz-0.10-gcc47.patch b/dev-libs/blitz/files/blitz-0.10-gcc47.patch
267 deleted file mode 100644
268 index d0b35665567..00000000000
269 --- a/dev-libs/blitz/files/blitz-0.10-gcc47.patch
270 +++ /dev/null
271 @@ -1,33 +0,0 @@
272 -diff -ur blitz-0.10/blitz/bzdebug.h blitz-0.10.new/blitz/bzdebug.h
273 ---- blitz-0.10/blitz/bzdebug.h 2012-05-11 22:11:13.000000000 +0200
274 -+++ blitz-0.10.new/blitz/bzdebug.h 2012-06-28 15:42:38.060656045 +0200
275 -@@ -117,15 +117,15 @@
276 - }
277 - }
278 -
279 -- #define BZASSERT(X) checkAssert(X, __FILE__, __LINE__)
280 -- #define BZPRECONDITION(X) checkAssert(X, __FILE__, __LINE__)
281 -- #define BZPOSTCONDITION(X) checkAssert(X, __FILE__, __LINE__)
282 -- #define BZSTATECHECK(X,Y) checkAssert(X == Y, __FILE__, __LINE__)
283 -+ #define BZASSERT(X) blitz::checkAssert(X, __FILE__, __LINE__)
284 -+ #define BZPRECONDITION(X) blitz::checkAssert(X, __FILE__, __LINE__)
285 -+ #define BZPOSTCONDITION(X) blitz::checkAssert(X, __FILE__, __LINE__)
286 -+ #define BZSTATECHECK(X,Y) blitz::checkAssert(X == Y, __FILE__, __LINE__)
287 - #define BZPRECHECK(X,Y) \
288 - { \
289 - if ((assertFailMode == false) && (!(X))) \
290 - BZ_STD_SCOPE(cerr) << Y << BZ_STD_SCOPE(endl); \
291 -- checkAssert(X, __FILE__, __LINE__); \
292 -+ blitz::checkAssert(X, __FILE__, __LINE__); \
293 - }
294 -
295 - #define BZ_DEBUG_MESSAGE(X) \
296 -@@ -138,7 +138,7 @@
297 - }
298 -
299 - #define BZ_DEBUG_PARAM(X) X
300 -- #define BZ_PRE_FAIL checkAssert(0)
301 -+ #define BZ_PRE_FAIL blitz::checkAssert(0)
302 - #define BZ_ASM_DEBUG_MARKER
303 -
304 - #elif defined(BZ_DEBUG)
305
306 diff --git a/dev-libs/blitz/files/blitz-0.10-set-default-arg-value.patch b/dev-libs/blitz/files/blitz-0.10-set-default-arg-value.patch
307 deleted file mode 100644
308 index 6d10b399a1a..00000000000
309 --- a/dev-libs/blitz/files/blitz-0.10-set-default-arg-value.patch
310 +++ /dev/null
311 @@ -1,107 +0,0 @@
312 -Set default variable to allow both --enable-x/--disable-x and
313 - --with-x/--without-x to work as expected.
314 -
315 -bicatali@g.o 08/2012
316 -
317 ---- configure.ac.orig 2012-08-20 17:46:41.000000000 +0100
318 -+++ configure.ac 2012-08-20 17:56:23.000000000 +0100
319 -@@ -37,7 +37,7 @@
320 - # Option to disable Fortran (benchmarks will not compile)
321 - AC_MSG_CHECKING([whether to enable Fortran compilation for benchmark codes])
322 - AC_ARG_ENABLE(fortran,
323 -- AS_HELP_STRING([--enable-fortran],[Enable Fortran compilation]),,[
324 -+ AS_HELP_STRING([--enable-fortran],[Enable Fortran compilation]),enable_fortran=$enableval,[
325 - enable_fortran="yes"])
326 - AC_MSG_RESULT([$enable_fortran])
327 - AM_CONDITIONAL(FORTRAN_ENABLED, [test $enable_fortran = yes])
328 -@@ -96,7 +96,7 @@
329 - # Option to enable thread-safety (requires thread support or OpenMP)
330 - AC_MSG_CHECKING([whether to enable Blitz thread-safety features])
331 - AC_ARG_ENABLE(threadsafe,
332 -- AS_HELP_STRING([--enable-threadsafe],[Enable thread-safety features]),,[
333 -+ AS_HELP_STRING([--enable-threadsafe],[Enable thread-safety features]),enable_threadsafe=$enableval,[
334 - enable_threadsafe="no"])
335 - AC_MSG_RESULT([$enable_threadsafe])
336 - if test "$enable_threadsafe" = yes; then
337 -@@ -106,17 +106,22 @@
338 - AC_MSG_CHECKING([if we are using Intel Threading Building Blocks])
339 - AC_ARG_WITH([tbb],
340 - AS_HELP_STRING([--with-tbb],[Use Intel Threading Building Blocks atomic types]),
341 -- [
342 -+ [if test x$withval != xno; then
343 - AC_MSG_RESULT([yes])
344 - AC_CHECK_HEADERS([tbb/atomic.h],,AC_MSG_ERROR([tbb/atomic.h not found]))
345 - AC_DEFINE([THREADSAFE_USE_TBB],[1],[Use TBB atomic types])
346 -+ else
347 -+ AC_MSG_RESULT([no])
348 -+ fi
349 - ],AC_MSG_RESULT([no]))
350 -
351 - AC_MSG_CHECKING([for SIMD instruction width])
352 - AC_ARG_ENABLE([simd-width],
353 - AS_HELP_STRING([--enable-simd-width=n],[Facilitate compiler vectorization optimizations for SIMD instruction width of n bytes.]),
354 -- [ AC_ALIGNMENT_DIRECTIVE
355 -- AC_DEFINE([USE_ALIGNMENT_PRAGMAS],[1],[Specifies whether compiler alignment pragmas should be used]) ],
356 -+ [if test x$enableval != xno; then
357 -+ AC_ALIGNMENT_DIRECTIVE
358 -+ AC_DEFINE([USE_ALIGNMENT_PRAGMAS],[1],[Specifies whether compiler alignment pragmas should be used])
359 -+ fi ],
360 - [enable_simd_width=no]
361 - )
362 - AC_MSG_RESULT([$enable_simd_width])
363 -@@ -130,12 +135,15 @@
364 - AC_MSG_CHECKING([whether to pad array lengths to SIMD instruction width])
365 - AC_ARG_ENABLE([array-length-padding],
366 - AS_HELP_STRING([--enable-array-length-padding],[Sets the default array padding policy to pad all lowest-rank lengths to nearest larger SIMD width. Caution: This means that arrays will in general be non-contiguous.]),
367 -- [
368 -+ [if test x$enableval != xno; then
369 - AC_MSG_RESULT([yes])
370 - if test "$enable_simd_width" == [1] ; then
371 - AC_MSG_WARN([This option is useless without a SIMD width >1.])
372 - fi
373 - AC_DEFINE([PAD_ARRAYS],1,[Pad array lengths to SIMD width.])
374 -+ else
375 -+ AC_MSG_RESULT([no])
376 -+ fi
377 - ],AC_MSG_RESULT([no]))
378 -
379 - AC_MSG_CHECKING([whether to enable Blitz 64-bit dimensions])
380 -@@ -147,10 +155,14 @@
381 - AC_MSG_CHECKING([whether to enable serialization support])
382 - AC_ARG_ENABLE([serialization],
383 - AS_HELP_STRING([--enable-serialization],[Enable serialization support using Boost::Serialization]), [
384 -+ if test x$enableval != xno; then
385 - AC_MSG_RESULT([yes])
386 - AX_BOOST_BASE([1.40.0])
387 - AX_BOOST_SERIALIZATION
388 - AC_CHECK_HEADERS([boost/mpi.hpp])
389 -+ else
390 -+ AC_MSG_RESULT([no])
391 -+ fi
392 - ], AC_MSG_RESULT([no]))
393 -
394 - # check for PAPI library
395 -diff -Nur m4.orig/ac_prog_doxygen.m4 m4/ac_prog_doxygen.m4
396 ---- m4.orig/ac_prog_doxygen.m4 2012-08-20 18:03:12.000000000 +0100
397 -+++ m4/ac_prog_doxygen.m4 2012-08-20 18:00:46.000000000 +0100
398 -@@ -3,16 +3,16 @@
399 - AC_DEFUN([AC_PROG_DOXYGEN],
400 - [
401 - AC_ARG_ENABLE(doxygen,
402 --AS_HELP_STRING([--enable-doxygen],[enable documentation generation with doxygen (no)]),[],[enable_doxygen=no])
403 -+AS_HELP_STRING([--enable-doxygen],[enable documentation generation with doxygen (no)]),[enable_doxygen=$enableval],[enable_doxygen=no])
404 -
405 - AC_ARG_ENABLE(dot,
406 --AS_HELP_STRING([--enable-dot],[use 'dot' to generate graphs in doxygen (no)]),[],[enable_dot=no])
407 -+AS_HELP_STRING([--enable-dot],[use 'dot' to generate graphs in doxygen (no)]),[enable_dot=$enableval],[enable_dot=no])
408 - AC_ARG_ENABLE(html-docs,
409 - AS_HELP_STRING([--enable-html-docs],[enable HTML generation with doxygen (no)]),
410 --[],[ enable_html_docs=no])
411 -+[enable_html_docs=$enableval],[ enable_html_docs=no])
412 - AC_ARG_ENABLE(latex-docs,
413 - AS_HELP_STRING([--enable-latex-docs],
414 --[enable LaTeX documentation generation with doxygen (no)]),[],[enable_latex_docs=no])
415 -+[enable LaTeX documentation generation with doxygen (no)]),[enable_latex_docs=$enableval],[enable_latex_docs=no])
416 -
417 - if test "x$enable_doxygen" = xno; then
418 - enable_doc=no
419
420 diff --git a/dev-libs/blitz/metadata.xml b/dev-libs/blitz/metadata.xml
421 deleted file mode 100644
422 index 6234be90a17..00000000000
423 --- a/dev-libs/blitz/metadata.xml
424 +++ /dev/null
425 @@ -1,21 +0,0 @@
426 -<?xml version="1.0" encoding="UTF-8"?>
427 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
428 -<pkgmetadata>
429 - <!-- maintainer-needed -->
430 - <longdescription lang="en">
431 - Blitz++ is a meta-template library for array
432 - manipulation in C++ with a speed comparable to Fortran
433 - implementations, while preserving an object-oriented
434 - interface. These results are being obtained not through better
435 - optimizing compilers, preprocessors, or language extensions, but
436 - through the use of template techniques. By using templates cleverly,
437 - optimizations such as loop fusion, unrolling, tiling, and algorithm
438 - specialization can be performed automatically at compile time.
439 - </longdescription>
440 - <use>
441 - <flag name="boost">Enable usage of boost::serialization</flag>
442 - </use>
443 - <upstream>
444 - <remote-id type="sourceforge">blitz</remote-id>
445 - </upstream>
446 -</pkgmetadata>
447
448 diff --git a/profiles/package.mask b/profiles/package.mask
449 index f6bb9a66a39..40f304618f0 100644
450 --- a/profiles/package.mask
451 +++ b/profiles/package.mask
452 @@ -592,13 +592,6 @@ dev-ruby/did_you_mean:1
453 # Removal in 30 days. Bug #656972.
454 dev-go/go-resiliency
455
456 -# Michał Górny <mgorny@g.o> (03 Apr 2019)
457 -# Unmaintained. Multiple unresolved build failures (#630280, #638618,
458 -# #639648). The current version was added in 2012, and haven't been
459 -# bumped since. Upstream has released 1.0.0 in 2016 (#638464).
460 -# Removal in 30 days. Bug #682402.
461 -dev-libs/blitz
462 -
463 # Requires >=dev-lang/lua-5.3 which is masked
464 sys-apps/likwid