Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/grep/
Date: Wed, 17 Apr 2019 06:17:15
Message-Id: 1555481729.2faa807899b7f19b6c70cec2e943e02aa518a00a.polynomial-c@gentoo
1 commit: 2faa807899b7f19b6c70cec2e943e02aa518a00a
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 17 06:15:29 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 17 06:15:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2faa8078
7
8 sys-apps/grep: Removed old.
9
10 Package-Manager: Portage-2.3.63, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-apps/grep/Manifest | 1 -
14 sys-apps/grep/grep-3.0-r1.ebuild | 47 ----------------------------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/sys-apps/grep/Manifest b/sys-apps/grep/Manifest
18 index b515b01ef16..ba9d9a9bce9 100644
19 --- a/sys-apps/grep/Manifest
20 +++ b/sys-apps/grep/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST grep-3.0.tar.xz 1375156 BLAKE2B 19f5441ed3fe5bb16d9d8327e76f0beb7eb837b727f6da99844dc9c74eb4def9eab857059c527e651758fa224a6f4079ec5939806645806f2db341ed0cb727e4 SHA512 0e9a00df9d492f399230bae0264942edaf64bb926f93edb7922f27b075a86ba0a78698f54996cc522b6261aa01a8ecbeadeb68523d4470a9941f242c3ae24c58
23 DIST grep-3.1.tar.xz 1370880 BLAKE2B d71a09d8bfd2c15b6d393d3ca4e22a2b2724632034a6d35d6e269a3c639d76ecaa5ae989a3d8466ee4bcf45e5d08862b0ef19194d6ec7ac6c250e6f60fc61031 SHA512 05494381c7dd8aad7e2ee4c17450de8d7b969a99dcfe17747db60df3475bf02d5323d091e896e8343e4f3251c29dc7f0b7a9f93c575c9d58ee2a57014c2c9d26
24 DIST grep-3.3.tar.xz 1473056 BLAKE2B e1592b623d1f32d1b21d127b0d28f8f6501d4b854ff2de810d12d43292c00e6af887b038f22d0c4c45c314b6e9d73a82dec6d737519c674bb139c2ef70511aa0 SHA512 e4805dbddf7cd0f0faf412557d408509650c1ccf703bc450f10a3f727c690dbfaa1235aa81939a0e4b7ac6190f88c15ea1fcc562b343d4b4c7550f967aeb15db
25
26 diff --git a/sys-apps/grep/grep-3.0-r1.ebuild b/sys-apps/grep/grep-3.0-r1.ebuild
27 deleted file mode 100644
28 index 90ba1b04551..00000000000
29 --- a/sys-apps/grep/grep-3.0-r1.ebuild
30 +++ /dev/null
31 @@ -1,47 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit eutils flag-o-matic toolchain-funcs
38 -
39 -DESCRIPTION="GNU regular expression matcher"
40 -HOMEPAGE="https://www.gnu.org/software/grep/"
41 -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
42 - mirror://gentoo/${P}.tar.xz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 -IUSE="nls pcre static"
48 -
49 -LIB_DEPEND="pcre? ( >=dev-libs/libpcre-7.8-r1[static-libs(+)] )"
50 -RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
51 - nls? ( virtual/libintl )
52 - virtual/libiconv"
53 -DEPEND="${RDEPEND}
54 - virtual/pkgconfig
55 - nls? ( sys-devel/gettext )
56 - static? ( ${LIB_DEPEND} )"
57 -
58 -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
59 -
60 -src_prepare() {
61 - sed -i \
62 - -e "s:@SHELL@:${EPREFIX}/bin/sh:g" \
63 - src/egrep.sh || die #523898
64 -}
65 -
66 -src_configure() {
67 - use static && append-ldflags -static
68 - # don't link against libsigsegv even when available
69 - export ac_cv_libsigsegv=no
70 - # Always use pkg-config to get lib info for pcre.
71 - export ac_cv_search_pcre_compile=$(
72 - usex pcre "$($(tc-getPKG_CONFIG) --libs $(usex static --static '') libpcre)" ''
73 - )
74 - econf \
75 - --bindir="${EPREFIX}"/bin \
76 - $(use_enable nls) \
77 - $(use_enable pcre perl-regexp)
78 -}