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