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 06C43139085 for ; Sat, 4 Feb 2017 21:40:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53FCE21C104; Sat, 4 Feb 2017 21:40:41 +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 2EE2021C104 for ; Sat, 4 Feb 2017 21:40:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9D56034164E for ; Sat, 4 Feb 2017 21:40:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77F153DC9 for ; Sat, 4 Feb 2017 21:40:36 +0000 (UTC) From: "Alon Bar-Lev" 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" Message-ID: <1486244422.3b6798340022761b6bea47eb155fd5a29d4c00fe.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/openssl-tpm-engine/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/openssl-tpm-engine/openssl-tpm-engine-0.4.2.ebuild X-VCS-Directories: app-crypt/openssl-tpm-engine/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 3b6798340022761b6bea47eb155fd5a29d4c00fe X-VCS-Branch: master Date: Sat, 4 Feb 2017 21:40:36 +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: e6507fc5-177e-48f5-9a9c-0622b0c52ce3 X-Archives-Hash: 2df58c790e5d4834f9533dae9e2372ed commit: 3b6798340022761b6bea47eb155fd5a29d4c00fe Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Feb 4 21:13:00 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Feb 4 21:40:22 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b679834 app-crypt/openssl-tpm-engine: eapi bump Package-Manager: portage-2.3.3 .../openssl-tpm-engine/openssl-tpm-engine-0.4.2.ebuild | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/app-crypt/openssl-tpm-engine/openssl-tpm-engine-0.4.2.ebuild b/app-crypt/openssl-tpm-engine/openssl-tpm-engine-0.4.2.ebuild index 9539e90..377fb2d 100644 --- a/app-crypt/openssl-tpm-engine/openssl-tpm-engine-0.4.2.ebuild +++ b/app-crypt/openssl-tpm-engine/openssl-tpm-engine-0.4.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit autotools eutils @@ -21,15 +21,23 @@ RDEPEND=" >=app-crypt/trousers-0.2.8" DEPEND="${RDEPEND}" +DOCS=( + openssl.cnf.sample +) + +PATCHES=( + "${FILESDIR}/${P}-build.patch" +) + S="${WORKDIR}/${MY_P}" src_prepare() { + default mv configure.in configure.ac || die - epatch "${FILESDIR}/${P}-build.patch" eautoreconf } src_install() { default - dodoc openssl.cnf.sample + prune_libtool_files --modules }