Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/erfa/
Date: Sun, 31 Jan 2021 19:07:05
Message-Id: 1612120010.dc57380f3de5b1e35a3c5ce5f7e5f2d3e5782691.asturm@gentoo
1 commit: dc57380f3de5b1e35a3c5ce5f7e5f2d3e5782691
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 31 19:03:38 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 31 19:06:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc57380f
7
8 sci-astronomy/erfa: EAPI-7 bump, drop eutils/ltprune and static-libs
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-astronomy/erfa/erfa-1.4.0.ebuild | 11 +++++------
14 1 file changed, 5 insertions(+), 6 deletions(-)
15
16 diff --git a/sci-astronomy/erfa/erfa-1.4.0.ebuild b/sci-astronomy/erfa/erfa-1.4.0.ebuild
17 index e9480bda206..0d4dc784609 100644
18 --- a/sci-astronomy/erfa/erfa-1.4.0.ebuild
19 +++ b/sci-astronomy/erfa/erfa-1.4.0.ebuild
20 @@ -1,9 +1,9 @@
21 # Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=7
26
27 -inherit autotools eutils ltprune
28 +inherit autotools
29
30 DESCRIPTION="Essential Routines for Fundamental Astronomy"
31 HOMEPAGE="https://github.com/liberfa/erfa"
32 @@ -12,8 +12,7 @@ SRC_URI="https://github.com/liberfa/erfa/releases/download/v${PV}/${P}.tar.gz"
33 LICENSE="BSD"
34 SLOT="0/1"
35 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
36 -
37 -IUSE="static-libs"
38 +IUSE=""
39
40 src_prepare() {
41 default
42 @@ -21,10 +20,10 @@ src_prepare() {
43 }
44
45 src_configure() {
46 - econf $(use_enable static-libs static)
47 + econf --disable-static
48 }
49
50 src_install() {
51 default
52 - prune_libtool_files --all
53 + find "${ED}" -name '*.la' -delete || die
54 }