Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/
Date: Wed, 05 Jun 2019 08:37:24
Message-Id: 1559723811.c9514e9f01b8888b09da6062a42256fe2e156208.grobian@gentoo
1 commit: c9514e9f01b8888b09da6062a42256fe2e156208
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 5 08:35:48 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 5 08:36:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9514e9f
7
8 app-crypt/libb2: move away from ltprune.eclass
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 app-crypt/libb2/libb2-0.98.1.ebuild | 4 ++--
14 app-crypt/libb2/libb2-0.98.ebuild | 6 +++---
15 2 files changed, 5 insertions(+), 5 deletions(-)
16
17 diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1.ebuild
18 index 3212a3234b0..33493fbb9ef 100644
19 --- a/app-crypt/libb2/libb2-0.98.1.ebuild
20 +++ b/app-crypt/libb2/libb2-0.98.1.ebuild
21 @@ -3,7 +3,7 @@
22
23 EAPI=6
24
25 -inherit autotools ltprune toolchain-funcs
26 +inherit autotools toolchain-funcs
27
28 DESCRIPTION="C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp"
29 HOMEPAGE="https://github.com/BLAKE2/libb2"
30 @@ -53,5 +53,5 @@ src_compile() {
31
32 src_install() {
33 default
34 - prune_libtool_files
35 + use static || find "${ED}" -name '*.la' -type f -delete || die
36 }
37
38 diff --git a/app-crypt/libb2/libb2-0.98.ebuild b/app-crypt/libb2/libb2-0.98.ebuild
39 index 3ca37501441..64ec18c1de9 100644
40 --- a/app-crypt/libb2/libb2-0.98.ebuild
41 +++ b/app-crypt/libb2/libb2-0.98.ebuild
42 @@ -1,9 +1,9 @@
43 -# Copyright 1999-2018 Gentoo Foundation
44 +# Copyright 1999-2019 Gentoo Authors
45 # Distributed under the terms of the GNU General Public License v2
46
47 EAPI=6
48
49 -inherit autotools ltprune
50 +inherit autotools
51
52 DESCRIPTION="C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp"
53 HOMEPAGE="https://github.com/BLAKE2/libb2"
54 @@ -40,5 +40,5 @@ src_compile() {
55
56 src_install() {
57 default
58 - prune_libtool_files
59 + use static || find "${ED}" -name '*.la' -type f -delete || die
60 }