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/libbraiding/
Date: Tue, 02 Nov 2021 12:51:42
Message-Id: 1635857325.66e2e1a11660a5e8543e74acffbf4ab60315993d.mjo@gentoo
1 commit: 66e2e1a11660a5e8543e74acffbf4ab60315993d
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 2 12:48:45 2021 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 2 12:48:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e2e1a1
7
8 sci-libs/libbraiding: remove old "unused" libbraiding-1.0.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/libbraiding/Manifest | 1 -
14 sci-libs/libbraiding/libbraiding-1.0.ebuild | 28 ----------------------------
15 2 files changed, 29 deletions(-)
16
17 diff --git a/sci-libs/libbraiding/Manifest b/sci-libs/libbraiding/Manifest
18 index 5e80600f3d9..2f557e15f07 100644
19 --- a/sci-libs/libbraiding/Manifest
20 +++ b/sci-libs/libbraiding/Manifest
21 @@ -1,2 +1 @@
22 -DIST libbraiding-1.0.tar.gz 377140 BLAKE2B 93520ca1af05dfe77028d3a8d94e94fb4b387662c0f71048db5aa8b1dcc4115996be2ac95108c01a574095cdaba97db1997a65e98a64f87230dda4ae1b6bd8cb SHA512 0fb389d4483b665165bf9ef8dc770b51884eb4ab576c4ca06944080d87ddae806bcf4ebee1fd586f97de171d2ec79c89aeef86ffdeac10eed49ffd0541989ee6
23 DIST libbraiding-1.1.tar.gz 377161 BLAKE2B 48a80823f15920fce17c7d67cdc0a7e851855a4d6dfa5e9e461c8ce408c9c73d8aeeeacd27ac1c5f33c4436e8174c6ae9be275a71187d3a9887d37cf3bc8b8db SHA512 3032a290d0c7c0c13519136e111500a9e22f36ae7f9cc36df5a22670f18ebbce03a01e72c81e556ef4f6eea1ccf10e90ba6a9343be4a229e420e2f7da6289115
24
25 diff --git a/sci-libs/libbraiding/libbraiding-1.0.ebuild b/sci-libs/libbraiding/libbraiding-1.0.ebuild
26 deleted file mode 100644
27 index c2f848f1a9b..00000000000
28 --- a/sci-libs/libbraiding/libbraiding-1.0.ebuild
29 +++ /dev/null
30 @@ -1,28 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DESCRIPTION="Expose the functionality of cbraid as a shared library"
37 -HOMEPAGE="https://github.com/miguelmarco/libbraiding"
38 -
39 -# The github release is missing the generated autotools files, like the
40 -# ./configure script. Rather than involve autotools.eclass, let's just
41 -# get it from sage.
42 -SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
43 -
44 -# A few source headers still say GPLv2, but I believe that to be an
45 -# oversight: https://github.com/jeanluct/cbraid/issues/4
46 -LICENSE="GPL-3+"
47 -SLOT="0"
48 -KEYWORDS="amd64"
49 -IUSE="static-libs"
50 -
51 -src_configure() {
52 - econf $(use_enable static-libs static)
53 -}
54 -
55 -src_install() {
56 - default
57 - find "${ED}" -name '*.la' -delete || die
58 -}