From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-922929-garchives=archives.gentoo.org@lists.gentoo.org> 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 017E9139085 for <garchives@archives.gentoo.org>; Fri, 13 Jan 2017 23:32:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6721C21C0AB; Fri, 13 Jan 2017 23:32:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4614521C0A1 for <gentoo-commits@lists.gentoo.org>; Fri, 13 Jan 2017 23:32:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 734CD3417EF for <gentoo-commits@lists.gentoo.org>; Fri, 13 Jan 2017 23:32:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFAAC2634 for <gentoo-commits@lists.gentoo.org>; Fri, 13 Jan 2017 23:32:48 +0000 (UTC) From: "Alon Bar-Lev" <alonbl@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" <alonbl@gentoo.org> Message-ID: <1484350357.47fd579cdf5b02134c7a7465b3ea2004203a380d.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/nasty/files/, app-crypt/nasty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/nasty/files/nasty-0.6-flags.patch app-crypt/nasty/nasty-0.6-r1.ebuild X-VCS-Directories: app-crypt/nasty/ app-crypt/nasty/files/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 47fd579cdf5b02134c7a7465b3ea2004203a380d X-VCS-Branch: master Date: Fri, 13 Jan 2017 23:32:48 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cad3e6e3-38d3-4ad6-a0f0-bfffc3676c2d X-Archives-Hash: 62a0b4284b926688863de50cae13838a commit: 47fd579cdf5b02134c7a7465b3ea2004203a380d Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org> AuthorDate: Fri Jan 13 23:20:01 2017 +0000 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org> CommitDate: Fri Jan 13 23:32:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47fd579c app-crypt/nasty: eapi bump Package-Manager: portage-2.3.0 app-crypt/nasty/files/nasty-0.6-flags.patch | 4 ++-- app-crypt/nasty/nasty-0.6-r1.ebuild | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app-crypt/nasty/files/nasty-0.6-flags.patch b/app-crypt/nasty/files/nasty-0.6-flags.patch index 271bbaa..522e570a 100644 --- a/app-crypt/nasty/files/nasty-0.6-flags.patch +++ b/app-crypt/nasty/files/nasty-0.6-flags.patch @@ -1,5 +1,5 @@ ---- Makefile -+++ Makefile +--- a/Makefile ++++ b/Makefile @@ -1,15 +1,16 @@ VERSION=0.6 diff --git a/app-crypt/nasty/nasty-0.6-r1.ebuild b/app-crypt/nasty/nasty-0.6-r1.ebuild index 35c3375..8cea593 100644 --- a/app-crypt/nasty/nasty-0.6-r1.ebuild +++ b/app-crypt/nasty/nasty-0.6-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="2" +EAPI="6" -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Proof-of-concept GPG passphrase recovery tool" HOMEPAGE="http://www.vanheusden.com/nasty/" @@ -16,15 +16,15 @@ IUSE="" RDEPEND="app-crypt/gpgme" DEPEND="${RDEPEND}" -src_prepare() { - epatch "${FILESDIR}/${P}-flags.patch" -} +PATCHES=( + "${FILESDIR}/${P}-flags.patch" +) src_compile() { - emake CC="$(tc-getCC)" DEBUG= || die "emake failed" + emake CC="$(tc-getCC)" DEBUG= } src_install() { - dobin nasty || die "dobin nasty failed" + dobin nasty dodoc readme.txt }