aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>2024-04-14 21:11:57 +0500
committerAnna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>2024-04-14 21:11:57 +0500
commit6bf0b6e42e58049bb96d85ff5bb1e1c5d97e182b (patch)
tree19cb8e45111ccd694accaa6a2b65bd995f5295ab /dev-nim
parentprofiles: for removal. baby deps. never used (diff)
downloadguru-6bf0b6e42e58049bb96d85ff5bb1e1c5d97e182b.tar.gz
guru-6bf0b6e42e58049bb96d85ff5bb1e1c5d97e182b.tar.bz2
guru-6bf0b6e42e58049bb96d85ff5bb1e1c5d97e182b.zip
dev-nim/nimbus: drop 1.1.2
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
Diffstat (limited to 'dev-nim')
-rw-r--r--dev-nim/nimbus/Manifest1
-rw-r--r--dev-nim/nimbus/nimbus-1.1.2.ebuild69
2 files changed, 0 insertions, 70 deletions
diff --git a/dev-nim/nimbus/Manifest b/dev-nim/nimbus/Manifest
index 744a95308..933404781 100644
--- a/dev-nim/nimbus/Manifest
+++ b/dev-nim/nimbus/Manifest
@@ -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
diff --git a/dev-nim/nimbus/nimbus-1.1.2.ebuild b/dev-nim/nimbus/nimbus-1.1.2.ebuild
deleted file mode 100644
index 4929ba7cf..000000000
--- a/dev-nim/nimbus/nimbus-1.1.2.ebuild
+++ /dev/null
@@ -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
-}