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/haml: haml-3.0.19.ebuild ChangeLog
Date: Wed, 29 Sep 2010 18:15:33
Message-Id: 20100929181529.F164120051@flycatcher.gentoo.org
1 graaff 10/09/29 18:15:29
2
3 Modified: ChangeLog
4 Added: haml-3.0.19.ebuild
5 Log:
6 Add missing dependency on ruby_parser, used in lib/haml/html/erb.rb which is included in tests. Thanks to ranger for reporting in bug 326353.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.50 dev-ruby/haml/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?rev=1.50&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?rev=1.50&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?r1=1.49&r2=1.50
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v
19 retrieving revision 1.49
20 retrieving revision 1.50
21 diff -u -r1.49 -r1.50
22 --- ChangeLog 28 Sep 2010 23:48:12 -0000 1.49
23 +++ ChangeLog 29 Sep 2010 18:15:29 -0000 1.50
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/haml
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v 1.49 2010/09/28 23:48:12 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v 1.50 2010/09/29 18:15:29 graaff Exp $
29 +
30 +*haml-3.0.19 (29 Sep 2010)
31 +
32 + 29 Sep 2010; Hans de Graaff <graaff@g.o> +haml-3.0.19.ebuild:
33 + Add missing dependency on ruby_parser, used in lib/haml/html/erb.rb which
34 + is included in tests. Thanks to ranger for reporting in bug 326353.
35
36 28 Sep 2010; Brent Baude <ranger@g.o> haml-3.0.17.ebuild:
37 Marking haml-3.0.17 ~ppc for bug 326353
38
39
40
41 1.1 dev-ruby/haml/haml-3.0.19.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/haml-3.0.19.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/haml-3.0.19.ebuild?rev=1.1&content-type=text/plain
45
46 Index: haml-3.0.19.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-3.0.19.ebuild,v 1.1 2010/09/29 18:15:29 graaff Exp $
51
52 EAPI=2
53
54 USE_RUBY="ruby18"
55
56 RUBY_FAKEGEM_TASK_DOC="doc"
57
58 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING README.md"
59 RUBY_FAKEGEM_DOCDIR="doc"
60
61 RUBY_FAKEGEM_EXTRAINSTALL="init.rb VERSION VERSION_NAME"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="HAML - a ruby web page templating engine"
66 HOMEPAGE="http://haml.hamptoncatlin.com/"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~x86"
71
72 # TODO: haml has some emacs modes that it could be installing, in case
73 IUSE=""
74
75 # The html engine requires hpricot
76 ruby_add_rdepend dev-ruby/hpricot
77
78 # It could use merb during testing as well, but it's not mandatory
79 ruby_add_bdepend "
80 test? (
81 virtual/ruby-test-unit
82 dev-ruby/erubis
83 dev-ruby/rails
84 dev-ruby/ruby_parser
85 )
86 doc? (
87 dev-ruby/yard
88 dev-ruby/maruku
89 )"