[DRE-commits] r5785 - in trunk/libfacets-ruby/debian: . patches

Marc Dequènes duck at alioth.debian.org
Fri Aug 20 09:18:27 UTC 2010


Author: duck
Date: 2010-08-20 09:18:18 +0000 (Fri, 20 Aug 2010)
New Revision: 5785

Added:
   trunk/libfacets-ruby/debian/patches/
   trunk/libfacets-ruby/debian/patches/series
   trunk/libfacets-ruby/debian/patches/string_method_alias_fix
Modified:
   trunk/libfacets-ruby/debian/changelog
Log:
[fix] small bug in the program, see #593077

Modified: trunk/libfacets-ruby/debian/changelog
===================================================================
--- trunk/libfacets-ruby/debian/changelog	2010-08-20 09:15:26 UTC (rev 5784)
+++ trunk/libfacets-ruby/debian/changelog	2010-08-20 09:18:18 UTC (rev 5785)
@@ -1,5 +1,7 @@
 libfacets-ruby (2.7.0-2) unstable; urgency=high
 
+  * Added patch to fix a broken method aliasing for String (Closes:
+    593077).
   * Fixed merge of components (core, lore) installation, causing problem
     for 'lib/core/facets/module'.
 

Added: trunk/libfacets-ruby/debian/patches/series
===================================================================
--- trunk/libfacets-ruby/debian/patches/series	                        (rev 0)
+++ trunk/libfacets-ruby/debian/patches/series	2010-08-20 09:18:18 UTC (rev 5785)
@@ -0,0 +1 @@
+string_method_alias_fix

Added: trunk/libfacets-ruby/debian/patches/string_method_alias_fix
===================================================================
--- trunk/libfacets-ruby/debian/patches/string_method_alias_fix	                        (rev 0)
+++ trunk/libfacets-ruby/debian/patches/string_method_alias_fix	2010-08-20 09:18:18 UTC (rev 5785)
@@ -0,0 +1,13 @@
+Index: libfacets-ruby-2.7.0/lib/core/facets/string/start_with.rb
+===================================================================
+--- libfacets-ruby-2.7.0.orig/lib/core/facets/string/start_with.rb	2010-08-20 10:46:12.883840897 +0200
++++ libfacets-ruby-2.7.0/lib/core/facets/string/start_with.rb	2010-08-20 10:49:00.187855432 +0200
+@@ -31,7 +31,7 @@
+   end
+ 
+   alias_method :starts_with?, :start_with?
+-  alias_method :ends_with?  , :ends_with?
++  alias_method :ends_with?  , :end_with?
+ 
+ end
+ 




More information about the Pkg-ruby-extras-commits mailing list