From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B23B138334 for ; Thu, 11 Apr 2019 09:49:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 182DFE088C; Thu, 11 Apr 2019 09:49:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6C75E088C for ; Thu, 11 Apr 2019 09:49:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97BB0340CE2 for ; Thu, 11 Apr 2019 09:49:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3922D570 for ; Thu, 11 Apr 2019 09:49:14 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1554976148.473392c657823d46c09f4c3e7d58bdde2f60ba54.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/patch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/patch/patch-2.7.6-r2.ebuild X-VCS-Directories: sys-devel/patch/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 473392c657823d46c09f4c3e7d58bdde2f60ba54 X-VCS-Branch: master Date: Thu, 11 Apr 2019 09:49:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9a204f5e-5a9c-49d6-acc2-3e9b9b7858a2 X-Archives-Hash: a4bcf0084aa5a4f87f5a849d652fe453 commit: 473392c657823d46c09f4c3e7d58bdde2f60ba54 Author: Mikle Kolyada gentoo org> AuthorDate: Thu Apr 11 09:48:52 2019 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Apr 11 09:49:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=473392c6 sys-devel/patch: Security cleanup Bug: https://bugs.gentoo.org/652710 Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 sys-devel/patch/patch-2.7.6-r2.ebuild | 36 ----------------------------------- 1 file changed, 36 deletions(-) diff --git a/sys-devel/patch/patch-2.7.6-r2.ebuild b/sys-devel/patch/patch-2.7.6-r2.ebuild deleted file mode 100644 index a50f746ea05..00000000000 --- a/sys-devel/patch/patch-2.7.6-r2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit flag-o-matic - -DESCRIPTION="Utility to apply diffs to files" -HOMEPAGE="https://www.gnu.org/software/patch/patch.html" -SRC_URI="mirror://gnu/patch/${P}.tar.xz" - -LICENSE="GPL-3+" -SLOT="0" -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" -IUSE="static test xattr" - -RDEPEND="xattr? ( sys-apps/attr )" -DEPEND="${RDEPEND} - test? ( sys-apps/ed )" - -PATCHES=( - "${FILESDIR}"/${P}-fix-test-suite.patch - "${FILESDIR}"/${PN}-2.7.6-fix-error-handling-with-git-style-patches.patch -) - -src_configure() { - use static && append-ldflags -static - - local myeconfargs=( - $(use_enable xattr) - --program-prefix="$(use userland_BSD && echo g)" - ) - # Do not let $ED mess up the search for `ed` 470210. - ac_cv_path_ED=$(type -P ed) \ - econf "${myeconfargs[@]}" -}