summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2021-10-17 14:22:30 +0200
committerHans de Graaff <graaff@gentoo.org>2021-10-18 07:52:03 +0200
commit9699bffeea8f0fc7af936f9a7aceb498c57edae6 (patch)
tree78621e6cb31e3896a1d52e0a6f5234d99aa23d10
parent62ff1bc276577517184ac5c15b8f2d8ce5a4ee97 (diff)
downloadgentoo-9699bffeea8f0fc7af936f9a7aceb498c57edae6.tar.gz
gentoo-9699bffeea8f0fc7af936f9a7aceb498c57edae6.tar.bz2
gentoo-9699bffeea8f0fc7af936f9a7aceb498c57edae6.zip
app-editors/diakonos: cleanup
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
-rw-r--r--app-editors/diakonos/diakonos-0.9.4.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/app-editors/diakonos/diakonos-0.9.4.ebuild b/app-editors/diakonos/diakonos-0.9.4.ebuild
deleted file mode 100644
index d769980e0233..000000000000
--- a/app-editors/diakonos/diakonos-0.9.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-inherit ruby-ng
-
-DESCRIPTION="A Linux editor for the masses"
-HOMEPAGE="http://diakonos.pist0s.ca"
-SRC_URI="http://diakonos.pist0s.ca/archives/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-
-ruby_add_rdepend "dev-ruby/curses"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard )
- test? ( dev-ruby/bacon )"
-
-each_ruby_install() {
- ${RUBY} install.rb --dest-dir "${D}" --doc-dir /usr/share/doc/${P} || die "install failed"
-}
-
-all_ruby_install() {
- if use doc; then
- rake docs || die
- dodoc -r doc/*
- fi
-}
-
-each_ruby_test() {
- ${RUBY} -S bacon -Ilib spec/*.rb spec/*/*.rb || die
-}