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