Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/oniguruma/
Date: Tue, 01 Oct 2019 19:45:28
Message-Id: 1569959060.119b31eb4f2cfe8eca1198e20c9fe2034fc4bc93.whissi@gentoo
1 commit: 119b31eb4f2cfe8eca1198e20c9fe2034fc4bc93
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 1 19:44:20 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 1 19:44:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=119b31eb
7
8 dev-libs/oniguruma: security cleanup
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-libs/oniguruma/oniguruma-6.9.3.ebuild | 32 -------------------------------
14 1 file changed, 32 deletions(-)
15
16 diff --git a/dev-libs/oniguruma/oniguruma-6.9.3.ebuild b/dev-libs/oniguruma/oniguruma-6.9.3.ebuild
17 deleted file mode 100644
18 index a8f178b9c38..00000000000
19 --- a/dev-libs/oniguruma/oniguruma-6.9.3.ebuild
20 +++ /dev/null
21 @@ -1,32 +0,0 @@
22 -# Copyright 2003-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="7"
26 -
27 -inherit multilib-minimal
28 -
29 -MY_P="onig-${PV}"
30 -
31 -DESCRIPTION="Regular expression library for different character encodings"
32 -HOMEPAGE="https://github.com/kkos/oniguruma"
33 -SRC_URI="https://github.com/kkos/${PN}/releases/download/v${PV}/${MY_P}.tar.gz"
34 -
35 -LICENSE="BSD-2"
36 -SLOT="0/5"
37 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
38 -IUSE="crnl-as-line-terminator static-libs"
39 -
40 -S="${WORKDIR}/${MY_P}"
41 -
42 -DOCS=(AUTHORS HISTORY README{,_japanese} doc/{API,CALLOUTS.API,CALLOUTS.BUILTIN,FAQ,RE}{,.ja} doc/{SYNTAX.md,UNICODE_PROPERTIES})
43 -
44 -multilib_src_configure() {
45 - ECONF_SOURCE="${S}" econf \
46 - $(use_enable crnl-as-line-terminator) \
47 - $(use_enable static-libs static)
48 -}
49 -
50 -multilib_src_install_all() {
51 - einstalldocs
52 - find "${D}" -name "*.la" -type f -delete || die
53 -}