dev-nim/nimbus: drop 1.1.2

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2024-04-14 21:11:57 +05:00
parent 942a29376a
commit 6bf0b6e42e
2 changed files with 0 additions and 70 deletions

View File

@@ -1,2 +1 @@
DIST nimbus-1.1.2.tar.bz2 28432 BLAKE2B b8680872ccd748ad575e5d9698ad0fde121a974ec6de7717347e58dec0add545d52d750f65d1a4e996de216c276d5acd37c66bb092ed72ff96415f4439793aa7 SHA512 df082ef06d0ee51feb0cba6dbc9cd255b353ad72f28d9a366d436119813f20e35f5e5fddfec3f8304c85e840397b05b4e8d59ce2f00c72c4d713adf554cc7668
DIST nimbus-1.1.3.tar.xz 28336 BLAKE2B 86ed5129de463748de56438a65ba003416920968ceb92fecadc94895040d09a5901bedd650143f29d3c27d310872ccffb7a5731e9775210774179c7f86306752 SHA512 8416473df6b16ee76a8c9ca6be78f268f4d4c6f575e2479c92374fc260d502aaad82abd74bc6a89b1e8c5bbe42d22ac43081ac732437787ad530a6fb0a7216af

View File

@@ -1,69 +0,0 @@
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DOCS_BUILDER="sphinx"
DOCS_AUTODOC=0
DOCS_DIR="docs"
DOCS_DEPEND=(
)
PYTHON_COMPAT=( python3_{10..11} )
inherit python-any-r1 docs nim-utils
DESCRIPTION="A Nim build system"
HOMEPAGE="
https://nimbus.sysrq.in/
https://git.sysrq.in/nimbus/about/
"
SRC_URI="https://git.sysrq.in/${PN}/snapshot/${P}.tar.bz2"
LICENSE="Apache-2.0 BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug"
RDEPEND="dev-lang/nim"
BDEPEND="
${RDEPEND}
doc? (
$(python_gen_any_dep '
dev-python/insipid-sphinx-theme[${PYTHON_USEDEP}]
dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
dev-python/sphinx-prompt[${PYTHON_USEDEP}]
dev-python/sphinx-sitemap[${PYTHON_USEDEP}]
')
)
"
python_check_deps() {
use doc || return 0
python_has_version "dev-python/insipid-sphinx-theme[${PYTHON_USEDEP}]" &&
python_has_version "dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]" &&
python_has_version "dev-python/sphinx-prompt[${PYTHON_USEDEP}]" &&
python_has_version "dev-python/sphinx-sitemap[${PYTHON_USEDEP}]"
}
src_configure() {
nim_gen_config
}
src_compile() {
enim c src/nimbus
enim c src/txt2deps
docs_compile
}
src_test() {
etestament all
}
src_install() {
dobin src/nimbus
dobin src/txt2deps
doman man/*.1
einstalldocs
}