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 B0E63158087 for ; Fri, 31 Dec 2021 12:12:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17BC1E07A5; Fri, 31 Dec 2021 12:12:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEF6DE07A5 for ; Fri, 31 Dec 2021 12:12:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2682C342F64 for ; Fri, 31 Dec 2021 12:12:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81CED266 for ; Fri, 31 Dec 2021 12:12:24 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1640952669.4456c756e6e3f911e06a4ff26dd890d8370e1d95.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-plugins/passff-host/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-plugins/passff-host/passff-host-1.2.3-r1.ebuild www-plugins/passff-host/passff-host-1.2.3.ebuild X-VCS-Directories: www-plugins/passff-host/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 4456c756e6e3f911e06a4ff26dd890d8370e1d95 X-VCS-Branch: master Date: Fri, 31 Dec 2021 12:12: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c87bc688-2e8a-4e79-a435-725290a98b6a X-Archives-Hash: e26641b1fd23b4302969d479def700d0 commit: 4456c756e6e3f911e06a4ff26dd890d8370e1d95 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Dec 31 12:10:39 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Dec 31 12:11:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4456c756 www-plugins/passff-host: add pinentry to rdepend Signed-off-by: Georgy Yakovlev gentoo.org> .../{passff-host-1.2.3.ebuild => passff-host-1.2.3-r1.ebuild} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/www-plugins/passff-host/passff-host-1.2.3.ebuild b/www-plugins/passff-host/passff-host-1.2.3-r1.ebuild similarity index 85% rename from www-plugins/passff-host/passff-host-1.2.3.ebuild rename to www-plugins/passff-host/passff-host-1.2.3-r1.ebuild index 3c481e7e23ec..0f40d6776d69 100644 --- a/www-plugins/passff-host/passff-host-1.2.3.ebuild +++ b/www-plugins/passff-host/passff-host-1.2.3-r1.ebuild @@ -24,7 +24,10 @@ REQUIRED_USE=" || ( chrome chromium firefox vivaldi ) " -RDEPEND="${PYTHON_DEPS}" +RDEPEND=" + ${PYTHON_DEPS} + app-crypt/pinentry +" S="${WORKDIR}" @@ -57,3 +60,9 @@ src_install() { newexe "${P}.py" passff.py done } + +pkg_postinst() { + elog "Make sure to use graphical version of pinentry for ${PN} to work properly" + elog "Run 'eselect pinentry list'" + elog "And select 'pinentry-qt5' or 'pinentry-gnome'. efl might work too." +}