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, 28 Feb 2023 23:55:41
Message-Id: 1677628228.fbc06c775668ff6afe506db297c9524f532def7a.mjo@gentoo
1 commit: fbc06c775668ff6afe506db297c9524f532def7a
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 23:49:52 2023 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 23:50:28 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc06c77
7
8 sci-libs/libbraiding: add 1.2
9
10 Closes: https://bugs.gentoo.org/898286
11 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
12
13 sci-libs/libbraiding/Manifest | 1 +
14 sci-libs/libbraiding/libbraiding-1.2.ebuild | 21 +++++++++++++++++++++
15 2 files changed, 22 insertions(+)
16
17 diff --git a/sci-libs/libbraiding/Manifest b/sci-libs/libbraiding/Manifest
18 index 2f557e15f07c..d60254a6ef32 100644
19 --- a/sci-libs/libbraiding/Manifest
20 +++ b/sci-libs/libbraiding/Manifest
21 @@ -1 +1,2 @@
22 DIST libbraiding-1.1.tar.gz 377161 BLAKE2B 48a80823f15920fce17c7d67cdc0a7e851855a4d6dfa5e9e461c8ce408c9c73d8aeeeacd27ac1c5f33c4436e8174c6ae9be275a71187d3a9887d37cf3bc8b8db SHA512 3032a290d0c7c0c13519136e111500a9e22f36ae7f9cc36df5a22670f18ebbce03a01e72c81e556ef4f6eea1ccf10e90ba6a9343be4a229e420e2f7da6289115
23 +DIST libbraiding-1.2.tar.gz 380852 BLAKE2B 8d88861879e7566fa88f3a269c20efa4f37a692da6fd32736b695628a414cec0e03a01cb7a0cfcf20bd233fd21c15b070d9df3e0ee4951c9511949962b012f61 SHA512 f3dcfa77d5313ecfa91c0b9a61988eb2048dd27ed77f46a5c34fc57adb9eee53b250946a7158918b3198559bd016c723dba98465036d01c482b5c6000ab59d8a
24
25 diff --git a/sci-libs/libbraiding/libbraiding-1.2.ebuild b/sci-libs/libbraiding/libbraiding-1.2.ebuild
26 new file mode 100644
27 index 000000000000..36538840bff4
28 --- /dev/null
29 +++ b/sci-libs/libbraiding/libbraiding-1.2.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="Expose the functionality of cbraid as a shared library"
37 +HOMEPAGE="https://github.com/miguelmarco/libbraiding"
38 +
39 +SRC_URI="https://github.com/miguelmarco/${PN}/releases/download/${PV}/${P}.tar.gz"
40 +
41 +# A few source headers still say GPLv2, but I believe that to be an
42 +# oversight: https://github.com/jeanluct/cbraid/issues/4
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +
48 +src_install() {
49 + default
50 + find "${ED}" -name '*.la' -delete || die
51 +}