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