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/kramdown/
Date: Mon, 30 Apr 2018 20:11:35
Message-Id: 1525119041.9a91c9a17d666c11167fd26a4842efb67dabd6ab.graaff@gentoo
1 commit: 9a91c9a17d666c11167fd26a4842efb67dabd6ab
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 30 18:42:13 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 30 20:10:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a91c9a1
7
8 dev-ruby/kramdown: cleanup
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/kramdown/Manifest | 1 -
13 dev-ruby/kramdown/kramdown-1.13.2-r1.ebuild | 54 -----------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-ruby/kramdown/Manifest b/dev-ruby/kramdown/Manifest
17 index 2f5dcbd8201..2344005f8d7 100644
18 --- a/dev-ruby/kramdown/Manifest
19 +++ b/dev-ruby/kramdown/Manifest
20 @@ -1,2 +1 @@
21 -DIST kramdown-1.13.2.gem 249856 BLAKE2B 33aacadc09a1f720cf9876690647d2005272c571e861f9f69852e7bbfaa2cbd36802def1f732e9762e9c5c417f85a4eaa63d72a70e37cd9a6b6dd6bed5a099e0 SHA512 dd2194184a7761bc490535a9d5631b78441b83f040e37dafc25b956dd680fe398d19ae75aff06dc2ec6a7573ac198169e175ef78a95743f0f7b4874bf28cebf8
22 DIST kramdown-1.14.0.gem 250368 BLAKE2B 78d3638ec58a5c237a9350cad1edabf2d4fa0307013a0ced18f6835c4a8cdd623e4825b06670d5c588147013b191912f93e51e74ab1fe007761c117334f378aa SHA512 bd6295db2fe0d3a7dca936d47f0aaf7f939a86361dfdd3203a52683a9eb11a68075cad7d068cc56a315db3c14e73cf5aebb87531ba3086301a7521c5a86f9905
23
24 diff --git a/dev-ruby/kramdown/kramdown-1.13.2-r1.ebuild b/dev-ruby/kramdown/kramdown-1.13.2-r1.ebuild
25 deleted file mode 100644
26 index fbc6f81f1a4..00000000000
27 --- a/dev-ruby/kramdown/kramdown-1.13.2-r1.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -USE_RUBY="ruby21 ruby22 ruby23"
35 -
36 -RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
37 -
38 -RUBY_FAKEGEM_EXTRAINSTALL="data"
39 -
40 -inherit ruby-fakegem
41 -
42 -DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using strict syntax definition"
43 -HOMEPAGE="https://kramdown.gettalong.org/"
44 -
45 -LICENSE="MIT"
46 -
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
49 -IUSE="latex"
50 -
51 -LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra )"
52 -RDEPEND+=" ${LATEX_DEPS}"
53 -DEPEND+=" test? ( ${LATEX_DEPS} app-text/htmltidy )"
54 -
55 -ruby_add_rdepend "dev-ruby/prawn:2
56 - >=dev-ruby/prawn-table-0.2.2 =dev-ruby/prawn-table-0.2*
57 - >=dev-ruby/rouge-1.8:0
58 - >=dev-ruby/itextomml-1.5
59 - >=dev-ruby/coderay-1.0.0
60 - >=dev-ruby/ritex-1.0
61 - >=dev-ruby/stringex-1.5.1"
62 -
63 -ruby_add_bdepend "doc? ( dev-ruby/rdoc )
64 - test? ( >=dev-ruby/minitest-5.0 )"
65 -
66 -all_ruby_prepare() {
67 - if ! use latex; then
68 - # Remove latex tests. They will fail gracefully when latex isn't
69 - # present at all, but not when components are missing (most
70 - # notable ucs.sty).
71 - sed -i -e '/latex -v/,/^ end/ s:^:#:' test/test_files.rb || die
72 - fi
73 -
74 - # Avoid tests requiring node to be installed with mathjaxnode.
75 - rm -f test/testcases/span/math/mathjaxnode* \
76 - test/testcases/block/15_math/mathjaxnode* || die
77 -}
78 -
79 -all_ruby_install() {
80 - all_fakegem_install
81 -
82 - doman man/man1/kramdown.1
83 -}