Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libuninameslist/
Date: Wed, 31 Mar 2021 23:13:38
Message-Id: 1617232396.b14723d22aabedfec516ca0fe742b4a6942f77ab.sam@gentoo
1 commit: b14723d22aabedfec516ca0fe742b4a6942f77ab
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 31 22:38:42 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 31 23:13:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b14723d2
7
8 media-libs/libuninameslist: update EAPI 6 -> 7
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 .../libuninameslist/libuninameslist-20091231-r1.ebuild | 13 +++++--------
13 1 file changed, 5 insertions(+), 8 deletions(-)
14
15 diff --git a/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild b/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild
16 index 4b87f6978b1..5b94c812b36 100644
17 --- a/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild
18 +++ b/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild
19 @@ -1,25 +1,22 @@
20 -# Copyright 1999-2020 Gentoo Authors
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 DESCRIPTION="Library of unicode annotation data"
28 HOMEPAGE="http://libuninameslist.sourceforge.net/"
29 SRC_URI="mirror://sourceforge/libuninameslist/${P}.tar.bz2"
30 +S="${WORKDIR}/${PN}"
31
32 LICENSE="BSD"
33 SLOT="0"
34 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
35 -IUSE=""
36 -
37 -S="${WORKDIR}/${PN}"
38
39 src_configure() {
40 - econf \
41 - --disable-static
42 + econf --disable-static
43 }
44
45 src_install() {
46 default
47 - find "${ED%/}"/usr -name '*.la' -delete || die
48 + find "${ED}"/usr -name '*.la' -delete || die
49 }