Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
Date: Fri, 09 Sep 2022 07:59:44
Message-Id: 1662710346.607d4633779554b5b8dba6c7db163b3710234556.soap@gentoo
1 commit: 607d4633779554b5b8dba6c7db163b3710234556
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 9 07:59:06 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 9 07:59:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607d4633
7
8 dev-libs/onigmo: drop multilib, static-libs
9
10 No multilib or static-libs reverse dependencies.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 dev-libs/onigmo/onigmo-6.2.0-r1.ebuild | 35 ++++++++++++++++++++++++++++++++++
16 dev-libs/onigmo/onigmo-6.2.0.ebuild | 34 ---------------------------------
17 2 files changed, 35 insertions(+), 34 deletions(-)
18
19 diff --git a/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild b/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild
20 new file mode 100644
21 index 000000000000..66151a7a8e68
22 --- /dev/null
23 +++ b/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild
24 @@ -0,0 +1,35 @@
25 +# Copyright 1999-2022 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=8
29 +
30 +inherit autotools
31 +
32 +DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
33 +HOMEPAGE="https://github.com/k-takata/Onigmo"
34 +SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
35 +
36 +LICENSE="BSD-2"
37 +SLOT="0/6"
38 +KEYWORDS="amd64 x86"
39 +IUSE="combination-explosion-check crnl-as-line-terminator"
40 +
41 +src_prepare() {
42 + default
43 +
44 + eautoreconf
45 +}
46 +
47 +src_configure() {
48 + econf \
49 + $(use_enable combination-explosion-check) \
50 + $(use_enable crnl-as-line-terminator)
51 +}
52 +
53 +src_install() {
54 + default
55 +
56 + dodoc doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt
57 +
58 + find "${ED}" -name "*.la" -delete || die
59 +}
60
61 diff --git a/dev-libs/onigmo/onigmo-6.2.0.ebuild b/dev-libs/onigmo/onigmo-6.2.0.ebuild
62 deleted file mode 100644
63 index 21ef5b828dbc..000000000000
64 --- a/dev-libs/onigmo/onigmo-6.2.0.ebuild
65 +++ /dev/null
66 @@ -1,34 +0,0 @@
67 -# Copyright 1999-2021 Gentoo Authors
68 -# Distributed under the terms of the GNU General Public License v2
69 -
70 -EAPI="7"
71 -
72 -inherit autotools multilib-minimal
73 -
74 -DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
75 -HOMEPAGE="https://github.com/k-takata/Onigmo"
76 -SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
77 -
78 -LICENSE="BSD-2"
79 -SLOT="0/6"
80 -KEYWORDS="amd64 x86"
81 -IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
82 -
83 -DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )
84 -
85 -src_prepare() {
86 - default
87 - eautoreconf
88 -}
89 -
90 -multilib_src_configure() {
91 - ECONF_SOURCE="${S}" econf \
92 - $(use_enable combination-explosion-check) \
93 - $(use_enable crnl-as-line-terminator) \
94 - $(use_enable static-libs static)
95 -}
96 -
97 -multilib_src_install_all() {
98 - einstalldocs
99 - find "${D}" -name "*.la" -delete || die
100 -}