Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/givaro/
Date: Tue, 02 Nov 2021 18:11:29
Message-Id: 1635876085.8cbd812f5514ae0b4a29ef5ab13b97bbdcd2a11b.mjo@gentoo
1 commit: 8cbd812f5514ae0b4a29ef5ab13b97bbdcd2a11b
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 2 18:01:25 2021 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 2 18:01:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cbd812f
7
8 sci-libs/givaro: remove old "unused" givaro-4.1.1-r1.ebuild.
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
12
13 sci-libs/givaro/givaro-4.1.1-r1.ebuild | 54 ----------------------------------
14 1 file changed, 54 deletions(-)
15
16 diff --git a/sci-libs/givaro/givaro-4.1.1-r1.ebuild b/sci-libs/givaro/givaro-4.1.1-r1.ebuild
17 deleted file mode 100644
18 index 6a3e28a1f14..00000000000
19 --- a/sci-libs/givaro/givaro-4.1.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,54 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -DESCRIPTION="C++ library for arithmetic and algebraic computations"
28 -HOMEPAGE="https://casys.gricad-pages.univ-grenoble-alpes.fr/givaro/"
29 -SRC_URI="https://github.com/linbox-team/givaro/releases/download/v${PV}/${P}.tar.gz"
30 -
31 -LICENSE="CeCILL-B"
32 -SLOT="0/9"
33 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
34 -IUSE="cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2 doc static-libs test"
35 -RESTRICT="!test? ( test )"
36 -
37 -BDEPEND="
38 - doc? (
39 - app-doc/doxygen[dot]
40 - dev-texlive/texlive-bibtexextra
41 - dev-texlive/texlive-fontsextra
42 - dev-texlive/texlive-fontutils
43 - dev-texlive/texlive-latex
44 - dev-texlive/texlive-latexextra
45 - )
46 -"
47 -DEPEND="dev-libs/gmp:0[cxx(+)]"
48 -RDEPEND="${DEPEND}"
49 -
50 -DOCS=( AUTHORS ChangeLog README.md )
51 -
52 -src_configure() {
53 - # Passing "--disable-doc" also accidentally enables building
54 - # the documentation, so we can't just $(use_enable doc) here.
55 - # https://github.com/linbox-team/givaro/issues/148
56 - econf \
57 - $(usex doc --enable-doc "" "" "") \
58 - --with-docdir="/usr/share/doc/${PF}/html" \
59 - $(use_enable static-libs static) \
60 - $(use_enable cpu_flags_x86_fma3 fma) \
61 - $(use_enable cpu_flags_x86_fma4 fma4) \
62 - $(use_enable cpu_flags_x86_sse sse) \
63 - $(use_enable cpu_flags_x86_sse2 sse2) \
64 - $(use_enable cpu_flags_x86_sse3 sse3) \
65 - $(use_enable cpu_flags_x86_ssse3 ssse3) \
66 - $(use_enable cpu_flags_x86_sse4_1 sse41) \
67 - $(use_enable cpu_flags_x86_sse4_2 sse42) \
68 - $(use_enable cpu_flags_x86_avx avx) \
69 - $(use_enable cpu_flags_x86_avx2 avx2)
70 -}
71 -
72 -src_install() {
73 - default
74 - find "${ED}" -name '*.la' -delete || die
75 -}