diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-04-07 12:42:05 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-04-07 12:42:05 +0000 |
commit | 023b434e8e0b8cbec05c1e6c7753e308f9b7895d (patch) | |
tree | ba25fff99aa11e715300fd60e0cbfcfada383945 /dev-ruby/storable | |
parent | Unbreak package after darwin patch broke it. (diff) | |
download | gentoo-2-023b434e8e0b8cbec05c1e6c7753e308f9b7895d.tar.gz gentoo-2-023b434e8e0b8cbec05c1e6c7753e308f9b7895d.tar.bz2 gentoo-2-023b434e8e0b8cbec05c1e6c7753e308f9b7895d.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/storable')
-rw-r--r-- | dev-ruby/storable/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ruby/storable/files/storable-0.7.1-emptysymbol.patch | 30 | ||||
-rw-r--r-- | dev-ruby/storable/storable-0.7.2.ebuild (renamed from dev-ruby/storable/storable-0.7.1-r1.ebuild) | 6 |
3 files changed, 10 insertions, 35 deletions
diff --git a/dev-ruby/storable/ChangeLog b/dev-ruby/storable/ChangeLog index f63bac5e5441..809ebe4641c4 100644 --- a/dev-ruby/storable/ChangeLog +++ b/dev-ruby/storable/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-ruby/storable # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.6 2010/04/06 08:48:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.7 2010/04/07 12:42:05 flameeyes Exp $ + +*storable-0.7.2 (07 Apr 2010) + + 07 Apr 2010; Diego E. Pettenò <flameeyes@gentoo.org> + -storable-0.7.1-r1.ebuild, -files/storable-0.7.1-emptysymbol.patch, + +storable-0.7.2.ebuild: + Version bump. *storable-0.7.1-r1 (06 Apr 2010) diff --git a/dev-ruby/storable/files/storable-0.7.1-emptysymbol.patch b/dev-ruby/storable/files/storable-0.7.1-emptysymbol.patch deleted file mode 100644 index eb036ecfb15c..000000000000 --- a/dev-ruby/storable/files/storable-0.7.1-emptysymbol.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 2e458688a077412bb1d050f5e9ca1edeb8d89bb0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Diego=20Elio=20'Flameeyes'=20Petten=C3=B2?= <flameeyes@gmail.com> -Date: Tue, 6 Apr 2010 10:31:24 +0200 -Subject: [PATCH] Handle empty symbols alike to the old Storable 0.6.4. - -Without this, rudy 0.9.8 aborts for me with: - -ERROR (ArgumentError): interning empty string - -because there it tries to create a symbol from an empty string. ---- - lib/storable.rb | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/lib/storable.rb b/lib/storable.rb -index 45a4d34..9d7c958 100644 ---- a/lib/storable.rb -+++ b/lib/storable.rb -@@ -178,7 +178,7 @@ class Storable - - next if value_orig.nil? - -- if ftype == String && value_orig.to_s.empty? -+ if ( ftype == String or ftype == Symbol ) && value_orig.to_s.empty? - value = '' - elsif ftype == Array - value = Array === value_orig ? value_orig : [value_orig] --- -1.7.0.4 - diff --git a/dev-ruby/storable/storable-0.7.1-r1.ebuild b/dev-ruby/storable/storable-0.7.2.ebuild index c0dffe37a701..67eae116b3a0 100644 --- a/dev-ruby/storable/storable-0.7.1-r1.ebuild +++ b/dev-ruby/storable/storable-0.7.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/storable/storable-0.7.1-r1.ebuild,v 1.1 2010/04/06 08:48:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/storable-0.7.2.ebuild,v 1.1 2010/04/07 12:42:05 flameeyes Exp $ EAPI=2 @@ -23,14 +23,12 @@ KEYWORDS="~amd64 ~x86" IUSE="" SRC_URI="http://github.com/delano/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz" -S="${WORKDIR}/delano-${PN}-a465c45" +S="${WORKDIR}/delano-${PN}-d582732" ruby_add_bdepend test dev-ruby/tryouts all_ruby_prepare() { mv bin examples || die - - epatch "${FILESDIR}"/${P}-emptysymbol.patch } each_ruby_test() { |