summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-01 06:43:34 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-01 06:43:34 +0000
commit1241c49c067a4968b7c7320b3bed30951ce63bd8 (patch)
tree127762036cb27f6fa13bf8b93dc667d2e0e31126
parent8773751012160f65af99c104b7850755e7120a71 (diff)
* tool/flie2lastrev.rb: supports git repositories which are cloned
from a git-svn gateway. Patch by Hongli Lai. [ruby-core:21020] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--tool/file2lastrev.rb7
2 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e79b984c5..c24cde98da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jan 1 15:08:46 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
+
+ * tool/flie2lastrev.rb: supports git repositories which are cloned
+ from a git-svn gateway.
+ Patch by Hongli Lai. [ruby-core:21020]
+
Thu Jan 1 07:42:36 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/singleton.rb: fix indentation of RDoc text. [ruby-core:21029]
diff --git a/tool/file2lastrev.rb b/tool/file2lastrev.rb
index 37b27b2b88..cacd76eb60 100644
--- a/tool/file2lastrev.rb
+++ b/tool/file2lastrev.rb
@@ -12,6 +12,7 @@ class VCSNotFoundError < RuntimeError; end
def detect_vcs(path)
path = SRCDIR
return :svn, path.relative_path_from(SRCDIR) if File.directory?("#{path}/.svn")
+ return :git_svn, path.relative_path_from(SRCDIR) if File.directory?("#{path}/.git/svn")
return :git, path.relative_path_from(SRCDIR) if File.directory?("#{path}/.git")
raise VCSNotFoundError, "does not seem to be under a vcs"
end
@@ -22,8 +23,12 @@ def get_revisions(path)
info = case vcs
when :svn
`cd "#{SRCDIR}" && svn info "#{path}"`
- when :git
+ when :git_svn
`cd "#{SRCDIR}" && git svn info "#{path}"`
+ when :git
+ git_log = `cd "#{SRCDIR}" && git log HEAD~1..HEAD "#{path}"`
+ git_log =~ /git-svn-id: .*?@(\d+)/
+ "Revision: #{$1}\nLast Changed Rev: #{$1}\n"
end
if /^Revision: (\d+)/ =~ info