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 AC564138334 for ; Fri, 10 May 2019 23:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C2A1E087B; Fri, 10 May 2019 23:50:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4DED1E087B for ; Fri, 10 May 2019 23:50:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 919F0343F81 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 0506657B 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: <1557531829.e9a9ac79a842c707793e063e2b285e59908b9178.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/minisign/Manifest app-crypt/minisign/metadata.xml app-crypt/minisign/minisign-0.8.ebuild X-VCS-Directories: app-crypt/minisign/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: e9a9ac79a842c707793e063e2b285e59908b9178 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: 80de4ce2-bd73-4a56-91b4-70252060a2fa X-Archives-Hash: 00ef01888e62e2724679adda0efb4099 commit: e9a9ac79a842c707793e063e2b285e59908b9178 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri May 10 23:42:21 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri May 10 23:43:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a9ac79 app-crypt/minisign: new package simple tool to sign files and verify signatures Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> app-crypt/minisign/Manifest | 1 + app-crypt/minisign/metadata.xml | 17 +++++++++++++++++ app-crypt/minisign/minisign-0.8.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/app-crypt/minisign/Manifest b/app-crypt/minisign/Manifest new file mode 100644 index 00000000000..ef15304c3b1 --- /dev/null +++ b/app-crypt/minisign/Manifest @@ -0,0 +1 @@ +DIST minisign-0.8.tar.gz 14045 BLAKE2B 3c0cb0ebaeeacee5f56c788a48eef8d0a324c2db2fe8f63fc16a197870c327ed2cacc618cb6422f8d7d7ef35860b58aa0a2769c851e8af9b1a7a7cd9d2ca3a07 SHA512 79bf626d0c15e39ce3bdf53600038028c0b22904b648074bf516a9ea6962c9486c41244e80637a5fbac090cce1ed9b4b3d57b8a02632646e01b43aa413cd8bd9 diff --git a/app-crypt/minisign/metadata.xml b/app-crypt/minisign/metadata.xml new file mode 100644 index 00000000000..974452080b5 --- /dev/null +++ b/app-crypt/minisign/metadata.xml @@ -0,0 +1,17 @@ + + + + + gyakovlev@gentoo.org + Georgy Yakovlev + + + Minisign is a dead simple tool to sign files and verify signatures. + It is portable, lightweight, and uses the highly secure Ed25519 public-key signature system. + Signature written by minisign can be verified using OpenBSD's signify tool: + public key files and signature files are compatible. + + + jedisct1/minisign + + diff --git a/app-crypt/minisign/minisign-0.8.ebuild b/app-crypt/minisign/minisign-0.8.ebuild new file mode 100644 index 00000000000..da90d6d5d3f --- /dev/null +++ b/app-crypt/minisign/minisign-0.8.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}"