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: bluecloth-2.2.0.ebuild ChangeLog
Date: Wed, 02 Nov 2011 06:47:35
Message-Id: 20111102064726.663152004B@flycatcher.gentoo.org
1 graaff 11/11/02 06:47:26
2
3 Modified: ChangeLog
4 Added: bluecloth-2.2.0.ebuild
5 Log:
6 Version bump. Install new man page.
7
8 (Portage version: 2.1.10.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.54 dev-ruby/bluecloth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/ChangeLog?rev=1.54&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/ChangeLog?rev=1.54&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/ChangeLog?r1=1.53&r2=1.54
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v
20 retrieving revision 1.53
21 retrieving revision 1.54
22 diff -u -r1.53 -r1.54
23 --- ChangeLog 20 Aug 2011 12:40:25 -0000 1.53
24 +++ ChangeLog 2 Nov 2011 06:47:26 -0000 1.54
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bluecloth
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v 1.53 2011/08/20 12:40:25 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v 1.54 2011/11/02 06:47:26 graaff Exp $
30 +
31 +*bluecloth-2.2.0 (02 Nov 2011)
32 +
33 + 02 Nov 2011; Hans de Graaff <graaff@g.o> +bluecloth-2.2.0.ebuild:
34 + Version bump. Install new man page.
35
36 20 Aug 2011; Hans de Graaff <graaff@g.o> -bluecloth-2.0.5.ebuild,
37 -bluecloth-2.0.11.ebuild:
38
39
40
41 1.1 dev-ruby/bluecloth/bluecloth-2.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/bluecloth-2.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bluecloth/bluecloth-2.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bluecloth-2.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.ebuild,v 1.1 2011/11/02 06:47:26 graaff Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18 ruby19 ree18"
54
55 RUBY_FAKEGEM_TASK_DOC="docs"
56 RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
57 RUBY_FAKEGEM_DOCDIR="doc"
58
59 RUBY_FAKEGEM_TASK_TEST=""
60
61 inherit ruby-fakegem eutils
62
63 DESCRIPTION="A Ruby implementation of Markdown"
64 HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
65
66 LICENSE="BSD"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
69 IUSE="test"
70
71 DEPEND="${DEPEND} doc? ( dev-lang/perl )"
72 RDEPEND="${RDEPEND}"
73
74 ruby_add_bdepend "
75 dev-ruby/hoe
76 dev-ruby/rake-compiler
77 test? (
78 >=dev-ruby/rspec-2.4:2
79 dev-ruby/diff-lcs
80 dev-ruby/tidy-ext
81 )"
82
83 all_ruby_prepare() {
84 # for Ruby 1.9.2 compatibility
85 sed -i -e '1i $: << "."' Rakefile || die
86 }
87
88 all_ruby_compile() {
89 rake man/man1/bluecloth.1
90
91 all_fakegem_compile
92 }
93
94 each_ruby_compile() {
95 ${RUBY} -S rake compile || die "extension build failed"
96 }
97
98 each_ruby_test() {
99 ${RUBY} -S rspec spec || die "tests failed"
100 }
101
102 all_ruby_install() {
103 doman man/man1/bluecloth.1
104
105 all_fakegem_install
106 }