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/rdiscount: rdiscount-2.1.8.ebuild ChangeLog
Date: Tue, 03 Feb 2015 21:54:30
Message-Id: 20150203215423.663AB10FE0@oystercatcher.gentoo.org
1 mrueg 15/02/03 21:54:23
2
3 Modified: ChangeLog
4 Added: rdiscount-2.1.8.ebuild
5 Log:
6 Version bump. Add ruby22.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.44 dev-ruby/rdiscount/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 17 Jan 2015 19:53:53 -0000 1.43
24 +++ ChangeLog 3 Feb 2015 21:54:23 -0000 1.44
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/rdiscount
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/ChangeLog,v 1.43 2015/01/17 19:53:53 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/ChangeLog,v 1.44 2015/02/03 21:54:23 mrueg Exp $
30 +
31 +*rdiscount-2.1.8 (03 Feb 2015)
32 +
33 + 03 Feb 2015; Manuel Rüger <mrueg@g.o> +rdiscount-2.1.8.ebuild:
34 + Version bump. Add ruby22.
35
36 17 Jan 2015; Manuel Rüger <mrueg@g.o> -rdiscount-1.6.8-r1.ebuild:
37 Remove old.
38
39
40
41 1.1 dev-ruby/rdiscount/rdiscount-2.1.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/rdiscount-2.1.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rdiscount/rdiscount-2.1.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rdiscount-2.1.8.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.8.ebuild,v 1.1 2015/02/03 21:54:23 mrueg Exp $
51
52 EAPI=5
53
54 # Has a native extension without jruby support.
55 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
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 all_ruby_prepare() {
73 # Hanna is broken for us and therefore we don't have it in portage.
74 sed -i -e 's/hanna/rdoc/' Rakefile || die
75
76 # Remove rule that will force a rebuild when running tests.
77 sed -i -e "/task 'test:unit' => \[:build\]/d" Rakefile || die
78
79 # Provide RUBY variable no longer provided by rake.
80 sed -i -e "1 iRUBY=${RUBY}" Rakefile || die
81 }
82
83 each_ruby_configure() {
84 ${RUBY} -Cext extconf.rb || die
85 }
86
87 each_ruby_compile() {
88 emake V=1 -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 }