[前][次][番号順一覧][スレッド一覧]

ruby-changes:31508

From: nobu <ko1@a...>
Date: Sat, 9 Nov 2013 06:11:37 +0900 (JST)
Subject: [ruby-changes:31508] nobu:r43587 (trunk): rbinstall.rb: make stable files in .gemspec

nobu	2013-11-09 06:11:27 +0900 (Sat, 09 Nov 2013)

  New Revision: 43587

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43587

  Log:
    rbinstall.rb: make stable files in .gemspec
    
    * tool/rbinstall.rb (Gem::Specification#collect): make stable
      Gem::Specification.files in default .gemspecs the different order of
      "files" in .gemspec files makes them different therefore possibly
      conflicting in multilib scenario.  patch by vo.x (Vit Ondruch) at
      [ruby-core:57544] [Bug #8623].

  Modified files:
    trunk/ChangeLog
    trunk/tool/rbinstall.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 43586)
+++ ChangeLog	(revision 43587)
@@ -1,3 +1,11 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sat Nov  9 06:11:14 2013  vo.x (Vit Ondruch)  <vondruch@r...>
+
+	* tool/rbinstall.rb (Gem::Specification#collect): make stable
+	  Gem::Specification.files in default .gemspecs the different order of
+	  "files" in .gemspec files makes them different therefore possibly
+	  conflicting in multilib scenario.  patch by vo.x (Vit Ondruch) at
+	  [ruby-core:57544] [Bug #8623].
+
 Sat Nov  9 01:59:18 2013  Aman Gupta <ruby@t...>
 
 	* ext/objspace/object_tracing.c: Add experimental methods to
Index: tool/rbinstall.rb
===================================================================
--- tool/rbinstall.rb	(revision 43586)
+++ tool/rbinstall.rb	(revision 43587)
@@ -599,7 +599,7 @@ module RbInstall https://github.com/ruby/ruby/blob/trunk/tool/rbinstall.rb#L599
       end
 
       def collect
-        ruby_libraries + built_libraries
+        (ruby_libraries + built_libraries).sort
       end
 
       private

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]