From: "Michael Orlitzky" <mjo@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/linbox/
Date: Fri, 04 Jul 2025 04:07:21 +0000 (UTC) [thread overview]
Message-ID: <1751602014.4f6d1d7956b110a5b77a61c02628fed7ef1dc788.mjo@gentoo> (raw)
commit: 4f6d1d7956b110a5b77a61c02628fed7ef1dc788
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 4 03:04:07 2025 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Jul 4 04:06:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f6d1d79
sci-libs/linbox: drop 1.7.0-r2
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-libs/linbox/linbox-1.7.0-r2.ebuild | 115 ---------------------------------
1 file changed, 115 deletions(-)
diff --git a/sci-libs/linbox/linbox-1.7.0-r2.ebuild b/sci-libs/linbox/linbox-1.7.0-r2.ebuild
deleted file mode 100644
index c636b8406738..000000000000
--- a/sci-libs/linbox/linbox-1.7.0-r2.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="C++ template library for integer and finite-field linear algebra"
-HOMEPAGE="https://linalg.org/"
-SRC_URI="https://github.com/linbox-team/${PN}/releases/download/v${PV}/${P}.tar.gz"
-
-# I think only macros/libtool.m4 (and COPYING) is GPL-2+; the source
-# headers all say LGPL-2.1
-LICENSE="GPL-2+ LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="doc opencl openmp"
-
-BDEPEND="doc? ( app-text/doxygen )"
-
-# The project README says that gmp, givaro, and blas/lapack are required
-# transitively via fflas-ffpack, but that's not true. The build system
-# checks for them, and `git grep` shows that they're used directly.
-DEPEND="dev-libs/gmp[cxx(+)]
- =sci-libs/givaro-4.2*
- =sci-libs/fflas-ffpack-2.5*
- virtual/cblas
- virtual/lapack
- opencl? ( virtual/opencl )
- dev-libs/ntl:=
- sci-libs/iml
- dev-libs/mpfr:=
- sci-mathematics/flint"
-
-# Use mathjax to render inline latex rather than requiring a working latex
-# installation to generate bitmaps.
-RDEPEND="${DEPEND}
- doc? ( >=dev-libs/mathjax-3 )
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.7.0-hardened-testfails.patch
- "${FILESDIR}"/${PN}-1.7.0-gcc14.patch
- "${FILESDIR}"/${PN}-1.7.0-gcc15.patch
-)
-
-# The --enable-openmp flag has been removed upstream, but we don't want
-# openmp support to disappear after the package has been compiled with
-# it, so we retain the USE flag and the toolchain check.
-pkg_pretend() {
- [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-pkg_setup() {
- [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_prepare() {
- default
-
- if use doc; then
- # Avoid the need for a working LaTeX installation. MathJax does
- # slow down the browser a bit but it also renders much more
- # nicely than the latex-generated bitmaps would.
- echo "
- USE_MATHJAX = YES
- MATHJAX_VERSION = MathJax_3
- MATHJAX_RELPATH = \"${EPREFIX}/usr/share/mathjax\"
- MATHJAX_EXTENSIONS = ams
- " >> doc/Doxyfile.mod || die
- fi
-
- eautoreconf
-}
-
-src_configure() {
- #
- # The --with-all flag includes,
- #
- # --with-givaro: used for finite fields, integer, etc. (required)
- # --with-fflas-ffpack: small field dense linear algebra (required)
- # --with-ntl: used for finite field, polynomial arithmetic (optional)
- # --with-iml: used for fast integer/rational linear algebra (optional)
- # --with-mpfr: not sure, doesn't seem to be used? (optional)
- # --with-flint: used in algorithms/matrix-blas3 once (optional)
- # --with-fplll: an fplll interface not directly used (optional)
- # --with-doxygen: needed with --enable-doc to build them (optional)
- #
- # Some of these could be behind USE flags, but the ./configure output
- # says that they're "not yet mandatory," which makes me think we might
- # be overcomplicating things to make them optional right now.
- #
- econf \
- --with-docdir="${EPREFIX}/usr/share/doc/${PF}" \
- --with-all="${EPREFIX}"/usr \
- --without-fplll \
- --without-archnative \
- $(use_enable doc) \
- $(use_with opencl ocl)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
- if use doc; then
- # These files are used for incremental doxygen builds but aren't
- # part of the final output. Check on
- #
- # https://github.com/linbox-team/linbox/issues/252
- #
- # periodically to see if this is pointless.
- find "${ED}/usr/share/doc/${PF}" -type f -name '*.md5' -delete || die
- find "${ED}/usr/share/doc/${PF}" -type f -name '*.map' -delete || die
- fi
-}
next reply other threads:[~2025-07-04 4:07 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-04 4:07 Michael Orlitzky [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-07-04 4:07 [gentoo-commits] repo/gentoo:master commit in: sci-libs/linbox/ Michael Orlitzky
2025-07-04 4:07 Michael Orlitzky
2024-08-25 21:36 Michael Orlitzky
2024-07-15 0:36 Michael Orlitzky
2024-07-14 23:56 Sam James
2024-04-09 17:32 Arthur Zamarin
2023-09-30 18:26 Michael Orlitzky
2023-09-30 18:26 Michael Orlitzky
2023-08-31 3:11 Michael Orlitzky
2022-05-16 8:12 David Seifert
2021-11-02 18:11 Michael Orlitzky
2021-06-18 13:15 David Seifert
2021-05-04 19:10 Sam James
2021-01-06 15:17 Fabian Groffen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1751602014.4f6d1d7956b110a5b77a61c02628fed7ef1dc788.mjo@gentoo \
--to=mjo@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox