dev-nim/noise: add 0.1.8

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2022-12-09 14:48:11 +05:00
parent 6075101fbe
commit 90993a08de
2 changed files with 33 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST noise-0.1.6.tar.gz 32616 BLAKE2B 376e577d7d224df1756b1105f609678fda3955561fbefc405834d4fdf09f20da9a729efd7ff4280656924f4d770c23b275fc1fb894cf64d985fa8a373cdef5d5 SHA512 27f212cc9080de1bcb244c6adf9f938516779b641984bd5d3885e79c6c3ee2e983a4c7c611e7b09bec89659892f2cd2a6089e17c5eb7be0f8b5f074d7f5a3184
DIST noise-0.1.8.tar.gz 32613 BLAKE2B 3b823bb10d58804d935b8464d5be41b821888415d5141d0e1cbb3b17975e87a5c6fd71036260d109ea19f99e2643dd7b65f0ca0b9bcdca3d880cb01e433c4d6e SHA512 915b89e55b5bebc9c749c5870d509735617c9b431a6c34af2d6241910accd92a97bd84c706d0f1b7777531fe121515b664aa83d4abbd3ac6390cd8a3bf513475

View File

@@ -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
}