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/bluecloth: ChangeLog bluecloth-2.2.0-r2.ebuild
Date: Tue, 01 Apr 2014 19:28:44
Message-Id: 20140401192838.D9BF62005C@flycatcher.gentoo.org
1 graaff 14/04/01 19:28:38
2
3 Modified: ChangeLog
4 Added: bluecloth-2.2.0-r2.ebuild
5 Log:
6 Add ruby21. Drop alpha, sparc keywords: bug 465948.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.75 dev-ruby/bluecloth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 2 Jan 2014 07:45:09 -0000 1.74
24 +++ ChangeLog 1 Apr 2014 19:28:38 -0000 1.75
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bluecloth
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v 1.74 2014/01/02 07:45:09 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v 1.75 2014/04/01 19:28:38 graaff Exp $
30 +
31 +*bluecloth-2.2.0-r2 (01 Apr 2014)
32 +
33 + 01 Apr 2014; Hans de Graaff <graaff@g.o> +bluecloth-2.2.0-r2.ebuild:
34 + Add ruby21. Drop alpha, sparc keywords: bug 465948.
35
36 02 Jan 2014; Hans de Graaff <graaff@g.o> bluecloth-2.2.0.ebuild,
37 bluecloth-2.2.0-r1.ebuild:
38
39
40
41 1.1 dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/bluecloth-2.2.0-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bluecloth-2.2.0-r2.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/bluecloth/bluecloth-2.2.0-r2.ebuild,v 1.1 2014/04/01 19:28:38 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20 ruby21"
54
55 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
56 RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
57
58 RUBY_FAKEGEM_TASK_TEST="spec"
59
60 inherit ruby-fakegem eutils
61
62 DESCRIPTION="A Ruby implementation of Markdown"
63 HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
68 IUSE="test"
69
70 DEPEND+=" doc? ( dev-lang/perl )"
71
72 ruby_add_bdepend "
73 dev-ruby/rake-compiler
74 test? (
75 dev-ruby/hoe
76 dev-ruby/diff-lcs
77 dev-ruby/tidy-ext
78 )"
79
80 all_ruby_prepare() {
81 # for Ruby 1.9.2 compatibility
82 sed -i -e '1i $: << "."' Rakefile || die
83 }
84
85 all_ruby_compile() {
86 rake man/man1/bluecloth.1 || die
87
88 all_fakegem_compile
89 }
90
91 each_ruby_compile() {
92 ${RUBY} -S rake compile || die "extension build failed"
93 }
94
95 all_ruby_install() {
96 doman man/man1/bluecloth.1
97
98 all_fakegem_install
99 }