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 D9498139085 for ; Sat, 4 Feb 2017 20:07:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4528A21C0C9; Sat, 4 Feb 2017 20:07:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0E57E21C0C9 for ; Sat, 4 Feb 2017 20:07:27 +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 1AC0D341648 for ; Sat, 4 Feb 2017 20:07:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C6343DCA for ; Sat, 4 Feb 2017 20:07:23 +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: <1486238800.8fd46698f07ff3a4159b50d6f20e3403b6efb985.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/asekey/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/asekey/asekey-3.7.ebuild X-VCS-Directories: app-crypt/asekey/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 8fd46698f07ff3a4159b50d6f20e3403b6efb985 X-VCS-Branch: master Date: Sat, 4 Feb 2017 20:07:23 +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: b3c42913-f72c-40c3-9d38-ed2614c96076 X-Archives-Hash: e764a11422a410177519a044da8e79c6 commit: 8fd46698f07ff3a4159b50d6f20e3403b6efb985 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Feb 4 19:50:08 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Feb 4 20:06:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd46698 app-crypt/asekey: eapi bump Package-Manager: portage-2.3.3 app-crypt/asekey/asekey-3.7.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/app-crypt/asekey/asekey-3.7.ebuild b/app-crypt/asekey/asekey-3.7.ebuild index d546b09..9b32c32 100644 --- a/app-crypt/asekey/asekey-3.7.ebuild +++ b/app-crypt/asekey/asekey-3.7.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="4" +EAPI="6" -inherit eutils udev +inherit udev DESCRIPTION="ASEKey USB SIM Card Reader" HOMEPAGE="http://www.athena-scs.com/" @@ -21,16 +21,15 @@ RDEPEND="${RDEPEND} DEPEND="${RDEPEND} virtual/pkgconfig" +PATCHES=( + "${FILESDIR}/${P}-bundle.patch" +) + src_prepare() { - epatch "${FILESDIR}/${P}-bundle.patch" + default sed -i -e 's/GROUP="pcscd"/ENV{PCSCD}="1"/' "92_pcscd_${PN}.rules" || die } src_configure() { econf --with-udev-rules-dir="$(get_udevdir)/rules.d" } - -src_install() { - default - dodoc ChangeLog README -}