Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/patron: patron-0.4.18-r1.ebuild ChangeLog
Date: Wed, 30 Oct 2013 03:39:53
Message-Id: 20131030033940.38A3F20035@flycatcher.gentoo.org
1 mrueg 13/10/30 03:39:40
2
3 Modified: ChangeLog
4 Added: patron-0.4.18-r1.ebuild
5 Log:
6 Add ruby20 target.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.26 dev-ruby/patron/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 1 Jan 2013 09:04:20 -0000 1.25
24 +++ ChangeLog 30 Oct 2013 03:39:40 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/patron
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v 1.25 2013/01/01 09:04:20 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v 1.26 2013/10/30 03:39:40 mrueg Exp $
30 +
31 +*patron-0.4.18-r1 (30 Oct 2013)
32 +
33 + 30 Oct 2013; Manuel RĂ¼ger <mrueg@g.o> +patron-0.4.18-r1.ebuild:
34 + Add ruby20 target.
35
36 01 Jan 2013; Agostino Sarubbo <ago@g.o> patron-0.4.18.ebuild:
37 Stable for x86, wrt bug #448672
38
39
40
41 1.1 dev-ruby/patron/patron-0.4.18-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/patron-0.4.18-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/patron/patron-0.4.18-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: patron-0.4.18-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/patron-0.4.18-r1.ebuild,v 1.1 2013/10/30 03:39:39 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20"
54
55 RUBY_FAKEGEM_TASK_TEST="spec"
56 RUBY_FAKEGEM_EXTRADOC="README.txt"
57
58 inherit multilib ruby-fakegem
59
60 DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl."
61 HOMEPAGE="http://toland.github.com/patron/"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 #ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
69
70 DEPEND+=" net-misc/curl"
71 RDEPEND+=" net-misc/curl"
72
73 # Tests require a live web service that is not included in the distribution.
74 RESTRICT="test"
75
76 each_ruby_configure() {
77 ${RUBY} -Cext/patron extconf.rb || die
78 }
79
80 each_ruby_compile() {
81 emake -Cext/patron V=1
82 cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to cp shared object file"
83 }