Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/patch/
Date: Thu, 11 Apr 2019 09:49:18
Message-Id: 1554976148.473392c657823d46c09f4c3e7d58bdde2f60ba54.zlogene@gentoo
1 commit: 473392c657823d46c09f4c3e7d58bdde2f60ba54
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 11 09:48:52 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 11 09:49:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=473392c6
7
8 sys-devel/patch: Security cleanup
9
10 Bug: https://bugs.gentoo.org/652710
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12 Package-Manager: Portage-2.3.62, Repoman-2.3.11
13
14 sys-devel/patch/patch-2.7.6-r2.ebuild | 36 -----------------------------------
15 1 file changed, 36 deletions(-)
16
17 diff --git a/sys-devel/patch/patch-2.7.6-r2.ebuild b/sys-devel/patch/patch-2.7.6-r2.ebuild
18 deleted file mode 100644
19 index a50f746ea05..00000000000
20 --- a/sys-devel/patch/patch-2.7.6-r2.ebuild
21 +++ /dev/null
22 @@ -1,36 +0,0 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="6"
27 -
28 -inherit flag-o-matic
29 -
30 -DESCRIPTION="Utility to apply diffs to files"
31 -HOMEPAGE="https://www.gnu.org/software/patch/patch.html"
32 -SRC_URI="mirror://gnu/patch/${P}.tar.xz"
33 -
34 -LICENSE="GPL-3+"
35 -SLOT="0"
36 -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"
37 -IUSE="static test xattr"
38 -
39 -RDEPEND="xattr? ( sys-apps/attr )"
40 -DEPEND="${RDEPEND}
41 - test? ( sys-apps/ed )"
42 -
43 -PATCHES=(
44 - "${FILESDIR}"/${P}-fix-test-suite.patch
45 - "${FILESDIR}"/${PN}-2.7.6-fix-error-handling-with-git-style-patches.patch
46 -)
47 -
48 -src_configure() {
49 - use static && append-ldflags -static
50 -
51 - local myeconfargs=(
52 - $(use_enable xattr)
53 - --program-prefix="$(use userland_BSD && echo g)"
54 - )
55 - # Do not let $ED mess up the search for `ed` 470210.
56 - ac_cv_path_ED=$(type -P ed) \
57 - econf "${myeconfargs[@]}"
58 -}