diff options
author | Hans de Graaff <graaff@gentoo.org> | 2014-05-16 08:07:15 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2014-05-16 08:07:15 +0000 |
commit | 836304ba5582c212a914f4d657d1e5157b27305e (patch) | |
tree | 87f468cb65497b70d0b033f3f210303d7b11c417 /dev-ruby/patron | |
parent | Add ruby21. (diff) | |
download | gentoo-2-836304ba5582c212a914f4d657d1e5157b27305e.tar.gz gentoo-2-836304ba5582c212a914f4d657d1e5157b27305e.tar.bz2 gentoo-2-836304ba5582c212a914f4d657d1e5157b27305e.zip |
Add revision for ruby21.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/patron')
-rw-r--r-- | dev-ruby/patron/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/patron/patron-0.4.18-r2.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-ruby/patron/ChangeLog b/dev-ruby/patron/ChangeLog index 5992d4962cc8..cb88566a0603 100644 --- a/dev-ruby/patron/ChangeLog +++ b/dev-ruby/patron/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/patron # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v 1.30 2014/05/15 01:00:56 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/ChangeLog,v 1.31 2014/05/16 08:07:15 graaff Exp $ + +*patron-0.4.18-r2 (16 May 2014) + + 16 May 2014; Hans de Graaff <graaff@gentoo.org> +patron-0.4.18-r2.ebuild: + Add revision for ruby21. 15 May 2014; Manuel Rüger <mrueg@gentoo.org> patron-0.4.18-r1.ebuild: Remove ruby18. diff --git a/dev-ruby/patron/patron-0.4.18-r2.ebuild b/dev-ruby/patron/patron-0.4.18-r2.ebuild new file mode 100644 index 000000000000..53b808a0d431 --- /dev/null +++ b/dev-ruby/patron/patron-0.4.18-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/patron/patron-0.4.18-r2.ebuild,v 1.1 2014/05/16 08:07:15 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_TEST="spec" +RUBY_FAKEGEM_EXTRADOC="README.txt" + +inherit multilib ruby-fakegem + +DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl." +HOMEPAGE="http://toland.github.com/patron/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +#ruby_add_bdepend "test? ( dev-ruby/rspec:2 )" + +DEPEND+=" net-misc/curl" +RDEPEND+=" net-misc/curl" + +# Tests require a live web service that is not included in the distribution. +RESTRICT="test" + +all_ruby_prepare() { + # Fix rake deprecation + sed -i -e 's:rake/rdoctask:rdoc/task:' Rakefile || die +} + +each_ruby_configure() { + ${RUBY} -Cext/patron extconf.rb || die +} + +each_ruby_compile() { + emake -Cext/patron V=1 + cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to cp shared object file" +} |