Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/maruku/
Date: Fri, 26 Nov 2021 08:17:08
Message-Id: 1637914613.5fa61b719b9a409c447c81ab293cf0a2bbbfaeda.graaff@gentoo
1 commit: 5fa61b719b9a409c447c81ab293cf0a2bbbfaeda
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 07:07:42 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 08:16:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa61b71
7
8 dev-ruby/maruku: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/maruku/maruku-0.7.3.ebuild | 42 -------------------------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/dev-ruby/maruku/maruku-0.7.3.ebuild b/dev-ruby/maruku/maruku-0.7.3.ebuild
17 deleted file mode 100644
18 index 50fb594b6afc..000000000000
19 --- a/dev-ruby/maruku/maruku-0.7.3.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
28 -
29 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
30 -
31 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
32 -RUBY_FAKEGEM_DOCDIR="doc"
33 -RUBY_FAKEGEM_EXTRADOC="docs/div_syntax.md docs/entity_test.md
34 - docs/markdown_syntax.md docs/maruku.md docs/math.md docs/other_stuff.md
35 - docs/proposal.md"
36 -RUBY_FAKEGEM_EXTRAINSTALL="data"
37 -
38 -inherit ruby-fakegem
39 -
40 -DESCRIPTION="A Markdown-superset interpreter written in Ruby"
41 -HOMEPAGE="https://github.com/bhollis/maruku"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86 ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 -IUSE="highlight test"
47 -
48 -ruby_add_bdepend "test? ( dev-ruby/nokogiri-diff dev-ruby/syntax )"
49 -ruby_add_rdepend "highlight? ( dev-ruby/syntax )"
50 -
51 -DEPEND+=" test? ( app-text/blahtexml )"
52 -
53 -all_ruby_prepare() {
54 - sed -i -e '/[Ss]imple[Cc]ov/ s:^:#:' spec/spec_helper.rb || die
55 -}
56 -
57 -pkg_postinst() {
58 - elog
59 - elog "You need to emerge app-text/texlive and dev-texlive/texlive-latexextra if"
60 - elog "you want to use --pdf with Maruku. You may also want to emerge"
61 - elog "dev-texlive/texlive-latexrecommended to enable LaTeX syntax highlighting."
62 - elog
63 -}