summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-08-15 18:05:43 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-08-15 18:05:43 +0000
commit8b2558bddbccbf95b5f853e3880e273cb110a397 (patch)
treef8b11b1828a0fac457768c07176bc3c4bd97a13e /dev-ruby/matchy
parentCleanup (diff)
downloadgentoo-2-8b2558bddbccbf95b5f853e3880e273cb110a397.tar.gz
gentoo-2-8b2558bddbccbf95b5f853e3880e273cb110a397.tar.bz2
gentoo-2-8b2558bddbccbf95b5f853e3880e273cb110a397.zip
Add a workaround for Ruby 1.9.2 (sent upstream a proper fix).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/matchy')
-rw-r--r--dev-ruby/matchy/ChangeLog5
-rw-r--r--dev-ruby/matchy/matchy-0.5.2.ebuild7
2 files changed, 10 insertions, 2 deletions
diff --git a/dev-ruby/matchy/ChangeLog b/dev-ruby/matchy/ChangeLog
index 8bf826994864..8c82e845d217 100644
--- a/dev-ruby/matchy/ChangeLog
+++ b/dev-ruby/matchy/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/matchy
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/matchy/ChangeLog,v 1.5 2010/05/28 15:26:07 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/matchy/ChangeLog,v 1.6 2010/08/15 18:05:43 flameeyes Exp $
+
+ 15 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org> matchy-0.5.2.ebuild:
+ Add a workaround for Ruby 1.9.2 (sent upstream a proper fix).
28 May 2010; Joseph Jezak <josejx@gentoo.org> matchy-0.5.2.ebuild:
Marked ~ppc for bug #302560.
diff --git a/dev-ruby/matchy/matchy-0.5.2.ebuild b/dev-ruby/matchy/matchy-0.5.2.ebuild
index 1b7a3cc339df..fe1f015dff52 100644
--- a/dev-ruby/matchy/matchy-0.5.2.ebuild
+++ b/dev-ruby/matchy/matchy-0.5.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/matchy/matchy-0.5.2.ebuild,v 1.3 2010/05/28 15:26:07 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/matchy/matchy-0.5.2.ebuild,v 1.4 2010/08/15 18:05:43 flameeyes Exp $
EAPI="2"
@@ -22,3 +22,8 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
+
+# workaround for ruby 1.9.2, sent upstream after 0.5.2
+each_ruby_test() {
+ RUBYLIB="$(pwd)${RUBYLIB+:${RUBYLIB}}" each_fakegem_test
+}