dev-nim/nimbus: add 0.2.3

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2022-07-02 05:51:42 +05:00
parent b2bfe344eb
commit 28a61740c2
2 changed files with 41 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST nimbus-0.1.4.tar.gz 24797 BLAKE2B 79efed84fc0e592e3c8275cfc468a041ae460413772a754ea86e97fbb471b2aa49ae1f11d6aa2085853a12381ac9d4b04bff1c8ac9022c2d9e9145e4d2144743 SHA512 6b946d8354f6719eb3ae65aad316cee74f4ddeb275e3de704907f70c7e01df41fa50016b4f444688d72047dd7137e10bb22c5d7fa25f867ecb4300da992e8035
DIST nimbus-0.2.3.tar.gz 25325 BLAKE2B ede807e0d115f2de05956f739939a939c3492410ee5f62b40bbb88f1b7aebb3f5b3ed44d44ee3d1c4ed585f5d51388015a64609c97aa315b30b9cbf62f9b2e58 SHA512 2296de44960570fb371a7a90a50207c2c6cc0ba54e29e324bbe4f8a43b59c356b897e033dafab1eced9d7e76833e351aeb86252ed236a5d15c03a3f8639347c7

View File

@@ -0,0 +1,40 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nim-utils
DESCRIPTION="A Nim build system"
HOMEPAGE="https://git.sysrq.in/nimbus/about/"
SRC_URI="https://git.sysrq.in/${PN}/snapshot/${P}.tar.gz"
LICENSE="Apache-2.0 BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-lang/nim"
BDEPEND="${RDEPEND}"
ETESTAMENT_DESELECT=(
tests/installerscript/test_{binary,source,source_whitelist}.nim
)
src_configure() {
nim_gen_config
}
src_compile() {
enim c src/${PN}
}
src_test() {
etestament all
}
src_install() {
dobin src/${PN}
doman ${PN}.1
einstalldocs
}