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: Fri, 23 Aug 2019 10:26:59
Message-Id: 1566556000.8fdd2174f51fb6a7ac9c39c8f2de4573c82e2f25.zlogene@gentoo
1 commit: 8fdd2174f51fb6a7ac9c39c8f2de4573c82e2f25
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 23 10:26:40 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 23 10:26:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdd2174
7
8 sys-devel/patch: Drop old
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 sys-devel/patch/patch-2.7.6-r3.ebuild | 40 -----------------------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/sys-devel/patch/patch-2.7.6-r3.ebuild b/sys-devel/patch/patch-2.7.6-r3.ebuild
17 deleted file mode 100644
18 index 6efd8634870..00000000000
19 --- a/sys-devel/patch/patch-2.7.6-r3.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -
27 -inherit flag-o-matic
28 -
29 -DESCRIPTION="Utility to apply diffs to files"
30 -HOMEPAGE="https://www.gnu.org/software/patch/patch.html"
31 -SRC_URI="mirror://gnu/patch/${P}.tar.xz"
32 -
33 -LICENSE="GPL-3+"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv 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"
36 -IUSE="static test xattr"
37 -
38 -RDEPEND="xattr? ( sys-apps/attr )"
39 -DEPEND="${RDEPEND}
40 - test? ( sys-apps/ed )"
41 -
42 -PATCHES=(
43 - "${FILESDIR}"/${P}-fix-test-suite.patch
44 - "${FILESDIR}"/${PN}-2.7.6-fix-error-handling-with-git-style-patches.patch
45 - "${FILESDIR}"/${PN}-2.7.6-CVE-2018-6951.patch
46 - "${FILESDIR}"/${PN}-2.7.6-allow-input-files-to-be-missing-for-ed-style-patches.patch
47 - "${FILESDIR}"/${PN}-2.7.6-CVE-2018-1000156.patch
48 - "${FILESDIR}"/${PN}-2.7.6-CVE-2018-6952.patch
49 -)
50 -
51 -src_configure() {
52 - use static && append-ldflags -static
53 -
54 - local myeconfargs=(
55 - $(use_enable xattr)
56 - --program-prefix="$(use userland_BSD && echo g)"
57 - )
58 - # Do not let $ED mess up the search for `ed` 470210.
59 - ac_cv_path_ED=$(type -P ed) \
60 - econf "${myeconfargs[@]}"
61 -}