Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/kramdown: kramdown-1.4.2.ebuild ChangeLog
Date: Sat, 04 Oct 2014 20:02:40
Message-Id: 20141004200233.1B07D6FA0@oystercatcher.gentoo.org
1 mrueg 14/10/04 20:02:33
2
3 Modified: ChangeLog
4 Added: kramdown-1.4.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.39 dev-ruby/kramdown/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/kramdown/ChangeLog?rev=1.39&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/kramdown/ChangeLog?rev=1.39&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/kramdown/ChangeLog?r1=1.38&r2=1.39
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/ChangeLog,v
20 retrieving revision 1.38
21 retrieving revision 1.39
22 diff -u -r1.38 -r1.39
23 --- ChangeLog 3 Sep 2014 12:41:39 -0000 1.38
24 +++ ChangeLog 4 Oct 2014 20:02:33 -0000 1.39
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/kramdown
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/ChangeLog,v 1.38 2014/09/03 12:41:39 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/ChangeLog,v 1.39 2014/10/04 20:02:33 mrueg Exp $
30 +
31 +*kramdown-1.4.2 (04 Oct 2014)
32 +
33 + 04 Oct 2014; Manuel Rüger <mrueg@g.o> +kramdown-1.4.2.ebuild:
34 + Version bump.
35
36 03 Sep 2014; Manuel Rüger <mrueg@g.o> -kramdown-0.14.2.ebuild,
37 -kramdown-1.2.0-r1.ebuild:
38
39
40
41 1.1 dev-ruby/kramdown/kramdown-1.4.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/kramdown/kramdown-1.4.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/kramdown/kramdown-1.4.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kramdown-1.4.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/kramdown-1.4.2.ebuild,v 1.1 2014/10/04 20:02:33 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21"
54
55 RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
56
57 RUBY_FAKEGEM_EXTRAINSTALL="data"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using a strict syntax definition"
62 HOMEPAGE="http://kramdown.rubyforge.org/"
63
64 LICENSE="MIT"
65
66 SLOT="0"
67 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
68 IUSE="latex"
69
70 LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra )"
71 RDEPEND+=" ${LATEX_DEPS}"
72 DEPEND+=" test? ( ${LATEX_DEPS} app-text/htmltidy )"
73
74 ruby_add_bdepend "doc? ( dev-ruby/rdoc )
75 test? ( >=dev-ruby/coderay-1.0.0
76 >=dev-ruby/prawn-1.3.0
77 dev-ruby/prawn-table
78 >=dev-ruby/stringex-1.5.1 )"
79
80 all_ruby_prepare() {
81 if ! use latex; then
82 # Remove latex tests. They will fail gracefully when latex isn't
83 # present at all, but not when components are missing (most
84 # notable ucs.sty).
85 sed -i -e '/latex -v/,/^ end/ s:^:#:' test/test_files.rb || die
86 fi
87 }
88
89 all_ruby_install() {
90 all_fakegem_install
91
92 doman man/man1/kramdown.1
93 }