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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD854158094 for ; Sun, 10 Jul 2022 22:46:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE920E09F9; Sun, 10 Jul 2022 22:46:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEFF1E09F9 for ; Sun, 10 Jul 2022 22:46:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 046DD34108B for ; Sun, 10 Jul 2022 22:46:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D15E105 for ; Sun, 10 Jul 2022 22:46:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1657493160.99fd1024b5b5184cb3bed607b9cc65ef8e4f5b96.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libkpass/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libkpass/libkpass-6-r1.ebuild dev-libs/libkpass/libkpass-6-r2.ebuild X-VCS-Directories: dev-libs/libkpass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 99fd1024b5b5184cb3bed607b9cc65ef8e4f5b96 X-VCS-Branch: master Date: Sun, 10 Jul 2022 22:46:06 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 080a7bb2-2437-4814-9fd8-6bf1c3a8308f X-Archives-Hash: e05a199f8da38ffcb531dfad8d4d1bd1 commit: 99fd1024b5b5184cb3bed607b9cc65ef8e4f5b96 Author: Sam James gentoo org> AuthorDate: Sun Jul 10 22:45:14 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 10 22:46:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99fd1024 dev-libs/libkpass: EAPI 8 Signed-off-by: Sam James gentoo.org> dev-libs/libkpass/{libkpass-6-r1.ebuild => libkpass-6-r2.ebuild} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/libkpass/libkpass-6-r1.ebuild b/dev-libs/libkpass/libkpass-6-r2.ebuild similarity index 85% rename from dev-libs/libkpass/libkpass-6-r1.ebuild rename to dev-libs/libkpass/libkpass-6-r2.ebuild index 3a2ddb4fdc80..9dca22fc7264 100644 --- a/dev-libs/libkpass/libkpass-6-r1.ebuild +++ b/dev-libs/libkpass/libkpass-6-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Libkpass is a C implementation to access KeePass 1.x format password databases" HOMEPAGE="http://libkpass.sourceforge.net/" @@ -12,7 +12,7 @@ SLOT="0" KEYWORDS="~amd64" IUSE="static-libs" -RDEPEND=">=dev-libs/nettle-2.7.1" +RDEPEND=">=dev-libs/nettle-2.7.1:=" DEPEND="${RDEPEND}" src_configure() { @@ -21,5 +21,6 @@ src_configure() { src_install() { default + use static-libs || rm -f "${ED}"/usr/lib*/${PN}.la }