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/hpricot: ChangeLog hpricot-0.8.4.ebuild
Date: Tue, 01 Mar 2011 07:16:57
Message-Id: 20110301071648.917E120054@flycatcher.gentoo.org
1 graaff 11/03/01 07:16:48
2
3 Modified: ChangeLog
4 Added: hpricot-0.8.4.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.28 dev-ruby/hpricot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hpricot/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hpricot/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hpricot/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/hpricot/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 15 Jan 2011 12:11:47 -0000 1.27
24 +++ ChangeLog 1 Mar 2011 07:16:48 -0000 1.28
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/hpricot
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hpricot/ChangeLog,v 1.27 2011/01/15 12:11:47 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hpricot/ChangeLog,v 1.28 2011/03/01 07:16:48 graaff Exp $
30 +
31 +*hpricot-0.8.4 (01 Mar 2011)
32 +
33 + 01 Mar 2011; Hans de Graaff <graaff@g.o> +hpricot-0.8.4.ebuild:
34 + Version bump.
35
36 15 Jan 2011; Hans de Graaff <graaff@g.o> -hpricot-0.8.2-r1.ebuild,
37 -hpricot-0.8.2-r2.ebuild:
38
39
40
41 1.1 dev-ruby/hpricot/hpricot-0.8.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hpricot/hpricot-0.8.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hpricot/hpricot-0.8.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hpricot-0.8.4.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/hpricot/hpricot-0.8.4.ebuild,v 1.1 2011/03/01 07:16:48 graaff Exp $
51
52 EAPI=2
53
54 USE_RUBY="ruby18 ree18 ruby19 jruby"
55
56 RUBY_FAKEGEM_DOCDIR="doc"
57 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
58
59 inherit ruby-fakegem eutils
60
61 DESCRIPTION="A fast and liberal HTML parser for Ruby."
62 HOMEPAGE="http://wiki.github.com/hpricot/hpricot"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
67 IUSE=""
68
69 # Probably needs the same jdk as JRuby but I'm not sure how to express
70 # that just yet.
71 DEPEND="${DEPEND}
72 dev-util/ragel
73 ruby_targets_jruby? ( >=virtual/jdk-1.5 )"
74
75 ruby_add_bdepend "dev-ruby/rake
76 dev-ruby/rake-compiler
77 test? ( virtual/ruby-test-unit )"
78
79 each_ruby_compile() {
80 case $(basename ${RUBY}) in
81 jruby)
82 ${RUBY} -S rake compile_java || die "rake compile failed"
83 ;;
84 *)
85 ${RUBY} -S rake compile || die "rake compile failed"
86 ;;
87 esac
88 }