dev-nim/npeg: new package, add 0.26.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova 2022-06-29 13:24:32 +05:00
parent 56b12ae84d
commit 84b45a69d7
No known key found for this signature in database
GPG Key ID: E7B76EDC50864BB1
3 changed files with 36 additions and 0 deletions

1
dev-nim/npeg/Manifest Normal file
View File

@ -0,0 +1 @@
DIST npeg-0.26.0.tar.gz 8455023 BLAKE2B 2ae848d08442d9a165905c7918f0cf5b593c3bccfc825357428df4a04db4d1f4c79a89a47f2a5c7fbde44e77b1af502d7bda4505fe9221006eb8c7d668f00944 SHA512 e19fc1ea8f43f8b0c8cd169622671609d0d93b51f83de05c06ab8fbc666c45da4d3364148f48746f980f6a0d2888a5fb71f4678f2af30629b7e3502ca43a5143

13
dev-nim/npeg/metadata.xml Normal file
View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>cyber+gentoo@sysrq.in</email>
<name>Anna</name>
</maintainer>
<upstream>
<remote-id type="github">zevv/npeg</remote-id>
<bugs-to>https://github.com/zevv/npeg/issues</bugs-to>
<doc>https://nimble.directory/docs/npeg</doc>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,22 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nimble
DESCRIPTION="a PEG library for Nim"
HOMEPAGE="https://github.com/zevv/npeg https://nimble.directory/pkg/npeg"
SRC_URI="https://github.com/zevv/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="${PV}"
KEYWORDS="~amd64"
DOCS=( {Changelog,INTERNALS,README}.md )
set_package_url "https://github.com/zevv/npeg"
src_test() {
nimble_build testc
}