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

ruby-changes:8450

From: yugui <ko1@a...>
Date: Tue, 28 Oct 2008 12:44:26 +0900 (JST)
Subject: [ruby-changes:8450] Ruby:r19982 (ruby_1_9_1): * tool/make-snapshot.rb (package): did not accept tagnames with the

yugui	2008-10-28 12:44:11 +0900 (Tue, 28 Oct 2008)

  New Revision: 19982

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

  Log:
    * tool/make-snapshot.rb (package): did not accept tagnames with the
      prefix "previewN"

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/tool/make-snapshot

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 19981)
+++ ruby_1_9_1/ChangeLog	(revision 19982)
@@ -1,3 +1,8 @@
+Tue Oct 28 12:42:28 2008   Yuki Sonoda  <yugui@y...>
+
+	* tool/make-snapshot.rb (package): did not accept tagnames with the
+	  prefix "previewN"
+
 Tue Oct 28 12:06:07 2008  Yuki Sonoda (Yugui)  <yugui@y...>
 
 	* test/rubygems/test_gem.rb (@default_dir_re): considers 
Index: ruby_1_9_1/tool/make-snapshot
===================================================================
--- ruby_1_9_1/tool/make-snapshot	(revision 19981)
+++ ruby_1_9_1/tool/make-snapshot	(revision 19982)
@@ -56,7 +56,7 @@
   when /\Astable\z/
     url = SVNURL + "branches/"
     url = url + `svn ls #{url}`[/.*^(ruby_\d+_\d+)\//m, 1]
-  when /\A(.*)\.(.*)\.(.*)-(p)?(.*)/
+  when /\A(.*)\.(.*)\.(.*)-((?!preview)p)?(.*)/
     patchlevel = !!$4
     tag = "#{$4}#{$5}"
     url = SVNURL + "tags/v#{$1}_#{$2}_#{$3}_#{$5}"

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

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