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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3BE06138334 for ; Fri, 10 May 2019 23:50:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F708E07DF; Fri, 10 May 2019 23:50:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 22D1DE07DF for ; Fri, 10 May 2019 23:50:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8615343F86 for ; Fri, 10 May 2019 23:50:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 197215D9 for ; Fri, 10 May 2019 23:50:07 +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: <1557531830.c144ca1941706b0b897a09253fa9c68fa0f3882e.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/minisign/minisign-9999.ebuild X-VCS-Directories: app-crypt/minisign/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: c144ca1941706b0b897a09253fa9c68fa0f3882e X-VCS-Branch: master Date: Fri, 10 May 2019 23:50:07 +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: db32bfcf-ee56-418a-a1f9-aee957d1eac2 X-Archives-Hash: eba46fab5fe7bec203d9dfffd63136fa commit: c144ca1941706b0b897a09253fa9c68fa0f3882e Author: Georgy Yakovlev gentoo org> AuthorDate: Fri May 10 23:43:02 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri May 10 23:43:50 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c144ca19 app-crypt/minisign: add live ebuild Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> app-crypt/minisign/minisign-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-crypt/minisign/minisign-9999.ebuild b/app-crypt/minisign/minisign-9999.ebuild new file mode 100644 index 00000000000..da90d6d5d3f --- /dev/null +++ b/app-crypt/minisign/minisign-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils + +DESCRIPTION="Dead simple tool to sign files and verify signatures" +HOMEPAGE="https://github.com/jedisct1/minisign" + +if [[ ${PV} == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jedisct1/${PN}.git" +else + SRC_URI="https://github.com/jedisct1/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="ISC" +SLOT="0" + +IUSE="" + +DEPEND=">=dev-libs/libsodium-1.0.16:=[-minimal]" +RDEPEND="${DEPEND}"