diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-02-23 18:00:15 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-02-23 18:00:15 +0000 |
commit | 492c06989719ddce59bb026d51fc296eaf572bac (patch) | |
tree | 34d26e1b24878f69ecbf853171b80895badc5e42 /dev-ruby | |
parent | [sci-chemistry/vmd] add tachyon raytracer as rdep (diff) | |
download | gentoo-2-492c06989719ddce59bb026d51fc296eaf572bac.tar.gz gentoo-2-492c06989719ddce59bb026d51fc296eaf572bac.tar.bz2 gentoo-2-492c06989719ddce59bb026d51fc296eaf572bac.zip |
Resurrected crack-0.1.6 because httparty explicitly depends on it.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/crack/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/crack/crack-0.1.6.ebuild | 31 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-ruby/crack/ChangeLog b/dev-ruby/crack/ChangeLog index 6a504731a428..c02f4f3ef534 100644 --- a/dev-ruby/crack/ChangeLog +++ b/dev-ruby/crack/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/crack # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/ChangeLog,v 1.10 2010/02/21 15:44:43 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/ChangeLog,v 1.11 2010/02/23 18:00:15 graaff Exp $ + + 22 Feb 2010; Hans de Graaff <graaff@gentoo.org> +crack-0.1.6.ebuild: + Resurrected crack-0.1.6 because httparty explicitly depends on it. *crack-0.1.7 (21 Feb 2010) diff --git a/dev-ruby/crack/crack-0.1.6.ebuild b/dev-ruby/crack/crack-0.1.6.ebuild new file mode 100644 index 000000000000..d3981d0f133b --- /dev/null +++ b/dev-ruby/crack/crack-0.1.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/crack-0.1.6.ebuild,v 1.3 2010/02/23 18:00:15 graaff Exp $ + +EAPI="2" + +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_DOCDIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.rdoc History" + +inherit ruby-fakegem + +DESCRIPTION="Really simple JSON and XML parsing, ripped from Merb and Rails." +HOMEPAGE="http://rubyforge.org/projects/crack" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend test "dev-ruby/shoulda dev-ruby/matchy" + +all_ruby_prepare() { + # By default this gem wants to use the fork of matchy from the + # same author of itself, but we don't package that (as it's + # neither released on gemcutter nor tagged). On the other hand it + # works fine with the mcmire gem that we package as + # dev-ruby/matchy. + sed -i -e 's:jnunemaker-matchy:mcmire-matchy:' test/test_helper.rb || die +} |