Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sed/
Date: Fri, 14 May 2021 22:14:12
Message-Id: 1621030390.a138f048734323dea3666f37976e129f1c76f9c1.soap@gentoo
1 commit: a138f048734323dea3666f37976e129f1c76f9c1
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 22:13:10 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 22:13:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a138f048
7
8 sys-apps/sed: drop 4.7
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sys-apps/sed/Manifest | 1 -
13 sys-apps/sed/sed-4.7.ebuild | 49 ---------------------------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/sys-apps/sed/Manifest b/sys-apps/sed/Manifest
17 index 5e6667e5cd2..526fe0062a1 100644
18 --- a/sys-apps/sed/Manifest
19 +++ b/sys-apps/sed/Manifest
20 @@ -1,2 +1 @@
21 -DIST sed-4.7.tar.xz 1298316 BLAKE2B 752bc2e942b6f041710c6811518147c5fa4b143b33ae842ec1f142ec914bfaf4d7e8a94a2b1a5b345789944e5426f7946997f2ccbc43ee5034351a95ce3a677e SHA512 e0be5db4cdf8226b34aaa9071bc5ae0eafde1c52227cee3512eea7fe2520d6c5cebf15266aa5c4adffbb51bf125c140a15644e28d57759893c12823ea9bbf4fb
22 DIST sed-4.8.tar.xz 1348048 BLAKE2B 62f6b6500cc9a20a35cafc2b09b12bb7da67fa0afb0b1b26153babc0023424b3126f44d29eba14c25fc4490996c90738b191c9440c66da6c120bbb9bc6f6df65 SHA512 7de25d9bc2981c63321c2223f3fbcab61d7b0df4fcf7d4394b72400b91993e1288d8bf53948ed5fffcf5a98c75265726a68ad4fb98e1d571bf768603a108c1c8
23
24 diff --git a/sys-apps/sed/sed-4.7.ebuild b/sys-apps/sed/sed-4.7.ebuild
25 deleted file mode 100644
26 index c319f8bf409..00000000000
27 --- a/sys-apps/sed/sed-4.7.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit flag-o-matic
36 -
37 -DESCRIPTION="Super-useful stream editor"
38 -HOMEPAGE="http://sed.sourceforge.net/"
39 -SRC_URI="mirror://gnu/sed/${P}.tar.xz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
44 -IUSE="acl nls selinux static"
45 -
46 -RDEPEND="
47 - !static? (
48 - acl? ( virtual/acl )
49 - nls? ( virtual/libintl )
50 - selinux? ( sys-libs/libselinux )
51 - )
52 -"
53 -DEPEND="${RDEPEND}
54 - nls? ( sys-devel/gettext )
55 - static? (
56 - acl? ( virtual/acl[static-libs(+)] )
57 - nls? ( virtual/libintl[static-libs(+)] )
58 - selinux? ( sys-libs/libselinux[static-libs(+)] )
59 - )
60 -"
61 -
62 -src_configure() {
63 - local myconf=()
64 - if use userland_GNU; then
65 - myconf+=( --exec-prefix="${EPREFIX}" )
66 - else
67 - myconf+=( --program-prefix=g )
68 - fi
69 -
70 - export ac_cv_search_setfilecon=$(usex selinux -lselinux)
71 - export ac_cv_header_selinux_{context,selinux}_h=$(usex selinux)
72 - use static && append-ldflags -static
73 - myconf+=(
74 - $(use_enable acl)
75 - $(use_enable nls)
76 - )
77 - econf "${myconf[@]}"
78 -}