commit: 6bf0b6e42e58049bb96d85ff5bb1e1c5d97e182b
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Apr 14 16:11:57 2024 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Apr 14 16:11:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6bf0b6e4
dev-nim/nimbus: drop 1.1.2
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-nim/nimbus/Manifest | 1 -
dev-nim/nimbus/nimbus-1.1.2.ebuild | 69 --------------------------------------
2 files changed, 70 deletions(-)
diff --git a/dev-nim/nimbus/Manifest b/dev-nim/nimbus/Manifest
index 744a953084..9334047811 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 4929ba7cf1..0000000000
--- 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
-}