diff options
author | David Seifert <soap@gentoo.org> | 2023-04-30 12:06:10 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-04-30 12:06:10 +0200 |
commit | 3f8b37bcc2fa62a29b40c199bc2d5ac9e33451dc (patch) | |
tree | 3f75eb5df7c93afaee9d89932b9e353098d6d243 /app-text/ronn | |
parent | dev-ruby/hpricot: treeclean (diff) | |
download | gentoo-3f8b37bcc2fa62a29b40c199bc2d5ac9e33451dc.tar.gz gentoo-3f8b37bcc2fa62a29b40c199bc2d5ac9e33451dc.tar.bz2 gentoo-3f8b37bcc2fa62a29b40c199bc2d5ac9e33451dc.zip |
app-text/ronn: treeclean
Closes: https://bugs.gentoo.org/628838
Closes: https://bugs.gentoo.org/743956
Closes: https://bugs.gentoo.org/770907
Closes: https://bugs.gentoo.org/863965
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-text/ronn')
-rw-r--r-- | app-text/ronn/Manifest | 1 | ||||
-rw-r--r-- | app-text/ronn/metadata.xml | 11 | ||||
-rw-r--r-- | app-text/ronn/ronn-0.7.3-r4.ebuild | 51 |
3 files changed, 0 insertions, 63 deletions
diff --git a/app-text/ronn/Manifest b/app-text/ronn/Manifest deleted file mode 100644 index fe5035bfa679..000000000000 --- a/app-text/ronn/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ronn-0.7.3.gem 61440 BLAKE2B 3ff0a1752d7a972b7d8319cac2b1287e7d21207e22b9eb288694172eb9b30b2198e4378eb02df8418585a44d3d2c89b4695675933dc5ef5d9ba63c78e71f4e7c SHA512 885418c88d5a1073f9457ea11e29d82d3bb40ad12506589ccfab83ad447445e41282c9688aba5646082ae5ecc6a047fa9439ffae14561152fc61a136474f611c diff --git a/app-text/ronn/metadata.xml b/app-text/ronn/metadata.xml deleted file mode 100644 index 62ac5e34fda8..000000000000 --- a/app-text/ronn/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>ruby@gentoo.org</email> - <name>Gentoo Ruby Project</name> - </maintainer> - <upstream> - <remote-id type="github">rtomayko/ronn</remote-id> - </upstream> -</pkgmetadata> diff --git a/app-text/ronn/ronn-0.7.3-r4.ebuild b/app-text/ronn/ronn-0.7.3-r4.ebuild deleted file mode 100644 index 7822285c4841..000000000000 --- a/app-text/ronn/ronn-0.7.3-r4.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md" - -inherit ruby-fakegem - -DESCRIPTION="Converts simple, human readable textfiles to roff for terminal display, and HTML" -HOMEPAGE="https://github.com/rtomayko/ronn/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" - -IUSE="" - -RDEPEND+=" !app-text/ronn-ng" - -DEPS=" - >=dev-ruby/hpricot-0.8.2 - >=dev-ruby/mustache-0.7.0 - >=dev-ruby/rdiscount-1.5.8" - -ruby_add_rdepend "${DEPS}" - -ruby_add_bdepend "${DEPS}" - -all_ruby_prepare() { - # Avoid test failing due to changes in hash handling in ruby 1.8.7: - # https://github.com/rtomayko/ronn/issues/56 - sed -i -e '81 s:^:#:' test/test_ronn.rb || die -} - -each_ruby_prepare() { - # Make sure that we always use the right interpreter during tests. - sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb -} - -all_ruby_compile() { - PATH="${S}/bin:${PATH}" rake man || die -} - -all_ruby_install() { - all_fakegem_install - - doman man/ronn.1 man/ronn-format.7 -} |