Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rdiscount: ChangeLog rdiscount-2.1.6.ebuild
Date: Wed, 29 May 2013 18:38:48
Message-Id: 20130529183845.041F72171D@flycatcher.gentoo.org
1 graaff 13/05/29 18:38:44
2
3 Modified: ChangeLog
4 Added: rdiscount-2.1.6.ebuild
5 Log:
6 Version bump, thanks to mrueg in the ruby overlay.
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.18 dev-ruby/rdiscount/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 15 Jan 2013 05:02:19 -0000 1.17
24 +++ ChangeLog 29 May 2013 18:38:44 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/rdiscount
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/ChangeLog,v 1.17 2013/01/15 05:02:19 zerochaos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/ChangeLog,v 1.18 2013/05/29 18:38:44 graaff Exp $
30 +
31 +*rdiscount-2.1.6 (29 May 2013)
32 +
33 + 29 May 2013; Hans de Graaff <graaff@g.o> +rdiscount-2.1.6.ebuild:
34 + Version bump, thanks to mrueg in the ruby overlay.
35
36 15 Jan 2013; Rick Farina <zerochaos@g.o> rdiscount-1.6.8-r1.ebuild:
37 adding ~arm keywords to net-analyzer/metasploit rdeps
38
39
40
41 1.1 dev-ruby/rdiscount/rdiscount-2.1.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/rdiscount-2.1.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/rdiscount-2.1.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rdiscount-2.1.6.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/rdiscount-2.1.6.ebuild,v 1.1 2013/05/29 18:38:44 graaff Exp $
51
52 EAPI=5
53
54 # Has a native extension without jruby support.
55 USE_RUBY="ruby18 ruby19"
56
57 RUBY_FAKEGEM_TASK_TEST="test:unit"
58
59 RUBY_FAKEGEM_TASK_DOC="doc man"
60 RUBY_FAKEGEM_EXTRADOC="README.markdown"
61
62 inherit multilib ruby-fakegem
63
64 DESCRIPTION="Implementation of John Gruber's Markdown"
65 HOMEPAGE="http://github.com/rtomayko/rdiscount"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
70 IUSE=""
71
72 ruby_add_bdepend "doc? ( app-text/ronn )"
73
74 all_ruby_prepare() {
75 # Hanna is broken for us and therefore we don't have it in portage.
76 sed -i -e 's/hanna/rdoc/' Rakefile || die
77
78 # Remove rule that will force a rebuild when running tests.
79 sed -i -e "/task 'test:unit' => \[:build\]/d" Rakefile || die
80
81 # Provide RUBY variable no longer provided by rake.
82 sed -i -e "1 iRUBY=${RUBY}" Rakefile || die
83 }
84
85 each_ruby_configure() {
86 ${RUBY} -Cext extconf.rb || die
87 }
88
89 each_ruby_compile() {
90 emake V=1 -Cext || die
91 cp ext/*$(get_modname) lib/ || die
92 }
93
94 all_ruby_install() {
95 all_fakegem_install
96
97 doman man/rdiscount.1
98 }