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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 141D8158094 for ; Mon, 11 Jul 2022 06:42:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39A32E097A; Mon, 11 Jul 2022 06:42:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9489E0968 for ; Mon, 11 Jul 2022 06:42:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A3B23410A5 for ; Mon, 11 Jul 2022 06:42:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDEF052D for ; Mon, 11 Jul 2022 06:42:23 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1657521730.de688186ef9b2404ff161091b32259872a8bc638.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-nim/noise/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-nim/noise/Manifest dev-nim/noise/metadata.xml dev-nim/noise/noise-0.1.14.ebuild X-VCS-Directories: dev-nim/noise/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: de688186ef9b2404ff161091b32259872a8bc638 X-VCS-Branch: dev Date: Mon, 11 Jul 2022 06:42: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: 74ff6a7b-12f1-487e-9486-6edefd55587a X-Archives-Hash: 06c465fde5b21e0b7594dd748a240ee1 commit: de688186ef9b2404ff161091b32259872a8bc638 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Mon Jul 11 00:58:12 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon Jul 11 06:42:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=de688186 dev-nim/noise: new package, add 0.1.14 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-nim/noise/Manifest | 1 + dev-nim/noise/metadata.xml | 11 +++++++++++ dev-nim/noise/noise-0.1.14.ebuild | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-nim/noise/Manifest b/dev-nim/noise/Manifest new file mode 100644 index 000000000..d449089a3 --- /dev/null +++ b/dev-nim/noise/Manifest @@ -0,0 +1 @@ +DIST noise-0.1.14.tar.gz 30737 BLAKE2B c0b09ccfe55f3acad827af22def439d8bf00a9c14b8976a8681ed1aa8067c0f9f794ce68987384df2ccb4de3ffd3cc18d3aae73561b4576af47f299f5e4a9c2e SHA512 590c08e7fefdc95b5e3ed36e86467e999b479b4a38b80df56cbd9c0a5c3fb6f2d667f35bb3dcd6c44cae53d8fd77481f6534879fbd1e6230a61fa452eb296d0a diff --git a/dev-nim/noise/metadata.xml b/dev-nim/noise/metadata.xml new file mode 100644 index 000000000..6e93cb96a --- /dev/null +++ b/dev-nim/noise/metadata.xml @@ -0,0 +1,11 @@ + + + + + cyber+gentoo@sysrq.in + Anna + + + jangko/nim-noise + + diff --git a/dev-nim/noise/noise-0.1.14.ebuild b/dev-nim/noise/noise-0.1.14.ebuild new file mode 100644 index 000000000..5f3eec9cb --- /dev/null +++ b/dev-nim/noise/noise-0.1.14.ebuild @@ -0,0 +1,32 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit nimble + +DESCRIPTION="a Nim implementation of linenoise" +HOMEPAGE=" + https://github.com/jangko/nim-noise + https://nimble.directory/pkg/noise +" +SRC_URI="https://github.com/jangko/nim-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/nim-${P}" + +LICENSE="MIT" +SLOT="0.1.4" +KEYWORDS="~amd64" + +DOCS=( examples readme.md ) + +set_package_url "https://github.com/jangko/nim-noise" + +src_test() { + nimble_src_test + rm examples/{primitives,test} || die +} + +src_install() { + docompress -x /usr/share/doc/${PF}/examples + nimble_src_install +}