From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E97CF59CB2 for ; Sun, 17 Apr 2016 11:08:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8748421C005; Sun, 17 Apr 2016 11:08:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 064B921C005 for ; Sun, 17 Apr 2016 11:08:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90A77340AE0 for ; Sun, 17 Apr 2016 11:08:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 481047E for ; Sun, 17 Apr 2016 11:08:28 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1460891170.f328257f9ee78ae2103a69ac079845cbc738a6bc.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/signify/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/signify/Manifest app-crypt/signify/metadata.xml app-crypt/signify/signify-17.ebuild X-VCS-Directories: app-crypt/signify/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: f328257f9ee78ae2103a69ac079845cbc738a6bc X-VCS-Branch: master Date: Sun, 17 Apr 2016 11:08:28 +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-Archives-Salt: cdced43d-da7d-4066-b0d6-06a6133df869 X-Archives-Hash: 12a1f21db0582082ee4870a9c9f0e482 commit: f328257f9ee78ae2103a69ac079845cbc738a6bc Author: Patrick Lauer gentoo org> AuthorDate: Sun Apr 17 11:03:21 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Apr 17 11:06:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f328257f app-crypt/signify: Initial import, ebuild by me. Linux port that diverges slightly from upstream so that it compiles nicely. Since there are no upstream releases to be found versioning is mildly random. Package-Manager: portage-2.2.28 app-crypt/signify/Manifest | 1 + app-crypt/signify/metadata.xml | 8 ++++++++ app-crypt/signify/signify-17.ebuild | 17 +++++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/app-crypt/signify/Manifest b/app-crypt/signify/Manifest new file mode 100644 index 0000000..980110e --- /dev/null +++ b/app-crypt/signify/Manifest @@ -0,0 +1 @@ +DIST signify-17.tar.gz 92347 SHA256 275fccb9197d8a8efe47f2b49f9aa2319002c1da8a454bf90e6332ecc214db4d SHA512 2b20e2c2d073c1ff695b6ec0b9b90e0870c6bd60dc107b428090f3c66f8e215473779d824fcd5c3b0ade429071b99336ce066c3254e286be2aa4e4a312742404 WHIRLPOOL 3124c499cc1bb234272b8f4dba206729cf89a1b821615dce8039bd1d225d87c0d9e8dc1902e305d7d47cfdad12286a9562007446205a15672721ad67477a57fd diff --git a/app-crypt/signify/metadata.xml b/app-crypt/signify/metadata.xml new file mode 100644 index 0000000..582e37e --- /dev/null +++ b/app-crypt/signify/metadata.xml @@ -0,0 +1,8 @@ + + + + + patrick@gentoo.org + Patrick Lauer + + diff --git a/app-crypt/signify/signify-17.ebuild b/app-crypt/signify/signify-17.ebuild new file mode 100644 index 0000000..6315b12 --- /dev/null +++ b/app-crypt/signify/signify-17.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Cryptographically sign and verify files" +HOMEPAGE="http://www.openbsd.org/ https://github.com/aperezdc/signify" +SRC_URI="https://github.com/aperezdc/signify/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="" +DEPEND=""