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/patron: patron-0.4.9-r1.ebuild ChangeLog
Date: Sun, 03 Oct 2010 08:27:52
Message-Id: 20101003082749.1EB9320051@flycatcher.gentoo.org
1 graaff 10/10/03 08:27:48
2
3 Modified: ChangeLog
4 Added: patron-0.4.9-r1.ebuild
5 Log:
6 Install VERSION.yml as some code depends on it.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-ruby/patron/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 19 Sep 2010 07:42:50 -0000 1.3
23 +++ ChangeLog 3 Oct 2010 08:27:48 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/patron
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v 1.3 2010/09/19 07:42:50 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v 1.4 2010/10/03 08:27:48 graaff Exp $
29 +
30 +*patron-0.4.9-r1 (03 Oct 2010)
31 +
32 + 03 Oct 2010; Hans de Graaff <graaff@g.o> +patron-0.4.9-r1.ebuild:
33 + Install VERSION.yml as some code depends on it.
34
35 *patron-0.4.9 (19 Sep 2010)
36
37
38
39
40 1.1 dev-ruby/patron/patron-0.4.9-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/patron-0.4.9-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/patron-0.4.9-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: patron-0.4.9-r1.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/patron/patron-0.4.9-r1.ebuild,v 1.1 2010/10/03 08:27:48 graaff Exp $
50
51 EAPI=2
52 USE_RUBY="ruby18"
53
54 RUBY_FAKEGEM_TASK_TEST="spec"
55 RUBY_FAKEGEM_EXTRADOC="README.txt"
56
57 RUBY_FAKEGEM_EXTRAINSTALL="VERSION.yml"
58
59 inherit multilib ruby-fakegem
60
61 DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl."
62 HOMEPAGE="http://toland.github.com/patron/"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64"
67 IUSE=""
68
69 ruby_add_bdepend "doc? ( dev-ruby/jeweler )"
70 #ruby_add_bdepend "test? ( dev-ruby/jeweler dev-ruby/rspec )"
71
72 DEPEND="${DEPEND} net-misc/curl"
73 RDEPEND="${RDEPEND} net-misc/curl"
74
75 # Tests require a live web service that is not included in the distribution.
76 RESTRICT="test"
77
78 each_ruby_configure() {
79 ${RUBY} -Cext/patron extconf.rb || die
80 }
81
82 each_ruby_compile() {
83 emake -Cext/patron || die
84 cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to cp shared object file"
85 }