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 C88CE1384AE for ; Sun, 20 Sep 2015 10:43:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 610A021C048; Sun, 20 Sep 2015 10:43:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF31421C033 for ; Sun, 20 Sep 2015 10:43:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1374340739 for ; Sun, 20 Sep 2015 10:43:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 564FC202 for ; Sun, 20 Sep 2015 10:43:24 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1442745467.bab7be93dcd0d04118100bc7d305d3aedc100eec.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/wiggle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/wiggle/wiggle-0.9.ebuild X-VCS-Directories: dev-util/wiggle/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: bab7be93dcd0d04118100bc7d305d3aedc100eec X-VCS-Branch: master Date: Sun, 20 Sep 2015 10:43:24 +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: a4f87e71-ecf8-4b86-9a69-cf8ec6a534cf X-Archives-Hash: 85dcf1128302bdf9c856f49499cdb12d commit: bab7be93dcd0d04118100bc7d305d3aedc100eec Author: Justin Lecher gentoo org> AuthorDate: Sun Sep 20 10:37:47 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Sep 20 10:37:47 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bab7be93 dev-util/wiggle: Clean old Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-util/wiggle/wiggle-0.9.ebuild | 65 --------------------------------------- 1 file changed, 65 deletions(-) diff --git a/dev-util/wiggle/wiggle-0.9.ebuild b/dev-util/wiggle/wiggle-0.9.ebuild deleted file mode 100644 index 58f69bd..0000000 --- a/dev-util/wiggle/wiggle-0.9.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils fixheadtails flag-o-matic toolchain-funcs - -DESCRIPTION="program for applying patches that patch cannot apply because of conflicting changes" -HOMEPAGE="http://neil.brown.name/wiggle http://neil.brown.name/git?p=wiggle" -SRC_URI="http://neil.brown.name/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="test" - -# The 'p' tool does support bitkeeper, but I'm against just dumping it in here -# due to it's size. I've explictly listed every other dependancy here due to -# the nature of the shell program 'p' -RDEPEND=" - dev-util/diffstat - dev-util/patchutils - sys-apps/diffutils - sys-apps/findutils - virtual/awk - sys-apps/grep - sys-apps/less - sys-apps/sed - sys-apps/coreutils - sys-devel/patch" -DEPEND="${RDEPEND} - sys-apps/groff - test? ( sys-process/time )" - -src_prepare() { - # Fix the reference to the help file so `p help' works - sed -i "s:\$0.help:${EPREFIX}/usr/share/wiggle/p.help:" p || die "sed failed on p" - - # Don't add Neil Brown's default sign off line to every patch - sed -i '/$CERT/,+4s,^,#,' p || die "sed failed on p" - - # Use prefixed time binary - sed -i "s:/usr/bin/time:${EPREFIX}/usr/bin/time:" dotest || die "sed failed on dotest" - - sed \ - -e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \ - -i Makefile || die - - ht_fix_file p - - append-cppflags -I. -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" ${PN} -} - -src_install() { - dobin wiggle p - doman wiggle.1 - dodoc ANNOUNCE INSTALL TODO DOC/diff.ps notes - insinto /usr/share/wiggle - doins p.help -}