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 AE2C9158096 for ; Thu, 8 Sep 2022 01:46:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F144BE0AFA; Thu, 8 Sep 2022 01:46:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 DDD27E0AFA for ; Thu, 8 Sep 2022 01:46:46 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34AA9340CE1 for ; Thu, 8 Sep 2022 01:46:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 991B45DE for ; Thu, 8 Sep 2022 01:46:42 +0000 (UTC) From: "Ronny Gutbrod" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ronny Gutbrod" Message-ID: <1662580295.c540963c06c824aa6f88bcd974d05c8af051d1a6.tastytea@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-crypt/pinentry-bemenu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-crypt/pinentry-bemenu/Manifest app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild X-VCS-Directories: app-crypt/pinentry-bemenu/ X-VCS-Committer: tastytea X-VCS-Committer-Name: Ronny Gutbrod X-VCS-Revision: c540963c06c824aa6f88bcd974d05c8af051d1a6 X-VCS-Branch: master Date: Thu, 8 Sep 2022 01:46:42 +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: fa1828a3-3384-4973-972b-71ee6b3bb2ca X-Archives-Hash: 0617ab09b9730b026f85d6025868c79f commit: c540963c06c824aa6f88bcd974d05c8af051d1a6 Author: Efe İzbudak metu edu tr> AuthorDate: Wed Sep 7 19:41:40 2022 +0000 Commit: Ronny Gutbrod tastytea de> CommitDate: Wed Sep 7 19:51:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c540963c app-crypt/pinentry-bemenu: new package, add 0.11.0 Signed-off-by: Efe İzbudak metu.edu.tr> app-crypt/pinentry-bemenu/Manifest | 1 + .../pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild | 28 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-crypt/pinentry-bemenu/Manifest b/app-crypt/pinentry-bemenu/Manifest new file mode 100644 index 000000000..16bc37b2e --- /dev/null +++ b/app-crypt/pinentry-bemenu/Manifest @@ -0,0 +1 @@ +DIST pinentry-bemenu-0.11.0.tar.gz 34352 BLAKE2B 54059a506fbc3e5034af7ffdf6fdac8f131abbac94662a35d487072f292b380a8b81d5a2916a8ef85ac3ae0c4f479119fadac541eb6bd32eb3033ce762ea5679 SHA512 3c35733b52d1b096904585ee0f37b0a2c7390158a94b2f13fe387fd738c004a2f1f474e3ca66d35f364ad057dc6b4520700d2a71f4d1c431bb428b6de513313a diff --git a/app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild b/app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild new file mode 100644 index 000000000..e2b75bf1b --- /dev/null +++ b/app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Pinentry based on bemenu" +HOMEPAGE="https://github.com/t-8ch/pinentry-bemenu" +SRC_URI="https://github.com/t-8ch/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-libs/bemenu + dev-libs/libgpg-error + dev-libs/libassuan + dev-libs/popt +" +RDEPEND="${DEPEND}" +BDEPEND="" + +pkg_postinst() { + elog "To use pinentry-bemenu, edit your gpg-agent.conf file to include:" + elog "pinentry-program /usr/bin/pinentry-bemenu" +}