From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 755D113800E for ; Wed, 1 Aug 2012 01:42:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E6F9E0603; Wed, 1 Aug 2012 01:42:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6959AE0603 for ; Wed, 1 Aug 2012 01:42:04 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D019E1B401A for ; Wed, 1 Aug 2012 01:42:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8705BE543B for ; Wed, 1 Aug 2012 01:42:02 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1343785245.70a3f06c6c66e62cebbd1145d252b9b8ef407d93.anarchy@gentoo> Subject: [gentoo-commits] dev/anarchy:master commit in: sys-devel/patch/ X-VCS-Repository: dev/anarchy X-VCS-Files: sys-devel/patch/Manifest sys-devel/patch/patch-2.6.1.169.ebuild X-VCS-Directories: sys-devel/patch/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: 70a3f06c6c66e62cebbd1145d252b9b8ef407d93 X-VCS-Branch: master Date: Wed, 1 Aug 2012 01:42:02 +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-Archives-Salt: 5d76b312-af6b-4332-a06f-12cca161ec58 X-Archives-Hash: 810afd15eb6d1bb71e0359db0770e14f commit: 70a3f06c6c66e62cebbd1145d252b9b8ef407d93 Author: Jory A. Pratt gentoo org> AuthorDate: Wed Aug 1 01:40:45 2012 +0000 Commit: Jory Pratt gentoo org> CommitDate: Wed Aug 1 01:40:45 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/anarchy.git;a=commit;h=70a3f06c Provide a patch snapshot for modern day use --- sys-devel/patch/Manifest | 2 + sys-devel/patch/patch-2.6.1.169.ebuild | 35 ++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 0 deletions(-) diff --git a/sys-devel/patch/Manifest b/sys-devel/patch/Manifest new file mode 100644 index 0000000..bcf1fa4 --- /dev/null +++ b/sys-devel/patch/Manifest @@ -0,0 +1,2 @@ +DIST patch-2.6.1.169-7096.tar.gz 989655 SHA256 c37d57581e2f7dd0d7641966cee7f6fb089ffdaf55a3e5f3dd55648c2355f04d SHA512 e58d934ff22b3f9c2186cdcd856f551dc402aef471f7fb57d11eca345380bf52e5d20ee066ba87816378772323869620746949c9ca42d3cfd8a342abf5bb1ca0 WHIRLPOOL dff72d7222626da3d814f63f34db840e0381047e8895d44a6cc15095c2e378ca761f1bfa64af9aba0cc2ab407311a6b528bb0141a6e77ccc47f5366ca41b43d5 +EBUILD patch-2.6.1.169.ebuild 792 SHA256 6c2d76ad29aa46a86b319b7ec2b17c222bb4c489ac72da314c7c8e69eb7e7181 SHA512 431646d8fdec429e889377dfb7741dc7f9b65133d19c1b55c58bb25a99850a6f255b441423cd1ed04be496abeb8f6cf2829eb9ffbe52bd1e3b49110b3ac49800 WHIRLPOOL 7ba3649bf7c86b2538214d31a7dbc67f8940c42ed2aa6566c4794a187311f4d0a4f97d074221bb7c2764d659253dd77119e5936029615ee6de9148de9314b0d9 diff --git a/sys-devel/patch/patch-2.6.1.169.ebuild b/sys-devel/patch/patch-2.6.1.169.ebuild new file mode 100644 index 0000000..4d7cfb2 --- /dev/null +++ b/sys-devel/patch/patch-2.6.1.169.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit flag-o-matic + +DESCRIPTION="Utility to apply diffs to files" +HOMEPAGE="http://www.gnu.org/software/patch/patch.html" +SRC_URI="mirror://gnu-alpha/patch/${P}-7096.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="static test" + +RDEPEND="" +DEPEND="${RDEPEND} + test? ( sys-apps/ed )" + +S="${WORKDIR}/${P}-7096" + +src_compile() { + use static && append-ldflags -static + + local myconf="" + [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g" + econf ${myconf} + + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README +}