Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/
Date: Fri, 10 May 2019 23:50:21
Message-Id: 1557531830.c144ca1941706b0b897a09253fa9c68fa0f3882e.gyakovlev@gentoo
1 commit: c144ca1941706b0b897a09253fa9c68fa0f3882e
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 10 23:43:02 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri May 10 23:43:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c144ca19
7
8 app-crypt/minisign: add live ebuild
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 app-crypt/minisign/minisign-9999.ebuild | 25 +++++++++++++++++++++++++
14 1 file changed, 25 insertions(+)
15
16 diff --git a/app-crypt/minisign/minisign-9999.ebuild b/app-crypt/minisign/minisign-9999.ebuild
17 new file mode 100644
18 index 00000000000..da90d6d5d3f
19 --- /dev/null
20 +++ b/app-crypt/minisign/minisign-9999.ebuild
21 @@ -0,0 +1,25 @@
22 +# Copyright 2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit cmake-utils
28 +
29 +DESCRIPTION="Dead simple tool to sign files and verify signatures"
30 +HOMEPAGE="https://github.com/jedisct1/minisign"
31 +
32 +if [[ ${PV} == "9999" ]]; then
33 + inherit git-r3
34 + EGIT_REPO_URI="https://github.com/jedisct1/${PN}.git"
35 +else
36 + SRC_URI="https://github.com/jedisct1/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
37 + KEYWORDS="~amd64"
38 +fi
39 +
40 +LICENSE="ISC"
41 +SLOT="0"
42 +
43 +IUSE=""
44 +
45 +DEPEND=">=dev-libs/libsodium-1.0.16:=[-minimal]"
46 +RDEPEND="${DEPEND}"