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 81D27138350 for ; Mon, 10 Feb 2020 17:46:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41C41E08ED; Mon, 10 Feb 2020 17:46:27 +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 2AE85E08ED for ; Mon, 10 Feb 2020 17:46:27 +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 DC65B34E999 for ; Mon, 10 Feb 2020 17:46:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3DA912D for ; Mon, 10 Feb 2020 17:46:23 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1581356712.f5a8c3aa18df93f3297fbf9757ffa2cd8979db8b.anarchy@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: dev-libs/nss-pem/ X-VCS-Repository: proj/mozilla X-VCS-Files: dev-libs/nss-pem/Manifest dev-libs/nss-pem/metadata.xml dev-libs/nss-pem/nss-pem-1.0.5.ebuild X-VCS-Directories: dev-libs/nss-pem/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: f5a8c3aa18df93f3297fbf9757ffa2cd8979db8b X-VCS-Branch: master Date: Mon, 10 Feb 2020 17:46:23 +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: 04c946da-56b0-41b9-8905-f4aab36a0905 X-Archives-Hash: bd5dd53444d575955e46d72a37ce52f7 commit: f5a8c3aa18df93f3297fbf9757ffa2cd8979db8b Author: Jory Pratt gentoo org> AuthorDate: Mon Feb 10 17:44:45 2020 +0000 Commit: Jory Pratt gentoo org> CommitDate: Mon Feb 10 17:45:12 2020 +0000 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=f5a8c3aa dev-libs/nss-pem: initial ebuild Signed-off-by: Jory Pratt gentoo.org> dev-libs/nss-pem/Manifest | 1 + dev-libs/nss-pem/metadata.xml | 11 +++++++++++ dev-libs/nss-pem/nss-pem-1.0.5.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-libs/nss-pem/Manifest b/dev-libs/nss-pem/Manifest new file mode 100644 index 0000000..5a3fe75 --- /dev/null +++ b/dev-libs/nss-pem/Manifest @@ -0,0 +1 @@ +DIST nss-pem-1.0.5.tar.xz 36320 BLAKE2B c2294595d95a2de2bf6d9e68dc10955297fb6ef27c9e85dbabc7854b900942070f70a8e4c1abef618e7265daa75f5bd2a2fca3fe923973345f9c1b64a3da8ff5 SHA512 8dabebf114ac94441caf6d279f810de4124a3ffc05ae66777496b3e66f8b8148d535cb438a165d84f53111c468d595f3b16651cd7a990eeedca9d413aad65b2b diff --git a/dev-libs/nss-pem/metadata.xml b/dev-libs/nss-pem/metadata.xml new file mode 100644 index 0000000..013b4ad --- /dev/null +++ b/dev-libs/nss-pem/metadata.xml @@ -0,0 +1,11 @@ + + + + + anarchy@gentoo.org + Jory A. Pratt + + + kdudka/nss-pem + + diff --git a/dev-libs/nss-pem/nss-pem-1.0.5.ebuild b/dev-libs/nss-pem/nss-pem-1.0.5.ebuild new file mode 100644 index 0000000..e538a00 --- /dev/null +++ b/dev-libs/nss-pem/nss-pem-1.0.5.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-multilib + +DESCRIPTION="PEM file reader for Network Security Services (NSS), implemented as a PKCS#11 module " +HOMEPAGE="https://github.com/kdudka/nss-pem" +SRC_URI="https://github.com/kdudka/${PN}/releases/download/${P}/${P}.tar.xz" + +LICENSE="MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="" + +BDEPEND=" dev-libs/nss " +RDEPEND="${BDEPEND}" + +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${P}/src"