Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-crypt/pinentry-bemenu/
Date: Thu, 08 Sep 2022 01:46:49
Message-Id: 1662580295.c540963c06c824aa6f88bcd974d05c8af051d1a6.tastytea@gentoo
1 commit: c540963c06c824aa6f88bcd974d05c8af051d1a6
2 Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr>
3 AuthorDate: Wed Sep 7 19:41:40 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Wed Sep 7 19:51:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c540963c
7
8 app-crypt/pinentry-bemenu: new package, add 0.11.0
9
10 Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr>
11
12 app-crypt/pinentry-bemenu/Manifest | 1 +
13 .../pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/app-crypt/pinentry-bemenu/Manifest b/app-crypt/pinentry-bemenu/Manifest
17 new file mode 100644
18 index 000000000..16bc37b2e
19 --- /dev/null
20 +++ b/app-crypt/pinentry-bemenu/Manifest
21 @@ -0,0 +1 @@
22 +DIST pinentry-bemenu-0.11.0.tar.gz 34352 BLAKE2B 54059a506fbc3e5034af7ffdf6fdac8f131abbac94662a35d487072f292b380a8b81d5a2916a8ef85ac3ae0c4f479119fadac541eb6bd32eb3033ce762ea5679 SHA512 3c35733b52d1b096904585ee0f37b0a2c7390158a94b2f13fe387fd738c004a2f1f474e3ca66d35f364ad057dc6b4520700d2a71f4d1c431bb428b6de513313a
23
24 diff --git a/app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild b/app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild
25 new file mode 100644
26 index 000000000..e2b75bf1b
27 --- /dev/null
28 +++ b/app-crypt/pinentry-bemenu/pinentry-bemenu-0.11.0.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit meson
36 +
37 +DESCRIPTION="Pinentry based on bemenu"
38 +HOMEPAGE="https://github.com/t-8ch/pinentry-bemenu"
39 +SRC_URI="https://github.com/t-8ch/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +
45 +DEPEND="
46 + dev-libs/bemenu
47 + dev-libs/libgpg-error
48 + dev-libs/libassuan
49 + dev-libs/popt
50 +"
51 +RDEPEND="${DEPEND}"
52 +BDEPEND=""
53 +
54 +pkg_postinst() {
55 + elog "To use pinentry-bemenu, edit your gpg-agent.conf file to include:"
56 + elog "pinentry-program /usr/bin/pinentry-bemenu"
57 +}