Oops, fixed few remaining uses of '.' as separator for SWING repositories.
authorJan Vrany <jan.vrany@fit.cvut.cz>
Fri, 03 Jun 2016 12:05:02 +0100
changeset 31 2689201485d0
parent 30 c56583dd22c8
child 32 0872e75d5c5c
Oops, fixed few remaining uses of '.' as separator for SWING repositories. See commit c56583dd22c8. Thanks Patrik for spotting this.
rakelib/test.rake
specs/baseline.rbspec
specs/stx-jv.rbspec
--- a/rakelib/test.rake	Fri Jun 03 00:47:35 2016 +0100
+++ b/rakelib/test.rake	Fri Jun 03 12:05:02 2016 +0100
@@ -109,9 +109,9 @@
 
 task BUILD_DIR / 'stx' / 'goodies' / 'builder' / 'reports'  => BUILD_DIR do
   if File.exist?(BUILD_DIR / 'stx' / 'goodies' / 'builder' / 'reports')
-    update(:'swing:hg', 'stx/goodies/builder', :branch => 'jv')
+    update(:'swing:hg', 'stx/goodies/builder', :branch => 'jv', :separator => '-')
   else
-    checkout(:'swing:hg', 'stx/goodies/builder', :branch => 'jv')
+    checkout(:'swing:hg', 'stx/goodies/builder', :branch => 'jv', :separator => '-')
   end
 end
 
--- a/specs/baseline.rbspec	Fri Jun 03 00:47:35 2016 +0100
+++ b/specs/baseline.rbspec	Fri Jun 03 12:05:02 2016 +0100
@@ -37,7 +37,7 @@
     # use different usernames based on the machine being connected to. 
     # Therefore we have to embed the username in repository URI. 
     # Since my (JV's) username on a local machine is different then
-    # the one on Mercurial server, translate it here ti make it simple. 
+    # the one on Mercurial server, translate it here to make it simple. 
     user = ENV['USER'] || ENV['USERNAME'] 
     user = 'vranyj1' if user == 'jv'
     url "ssh://#{user}@192.168.12.2//hg"
--- a/specs/stx-jv.rbspec	Fri Jun 03 00:47:35 2016 +0100
+++ b/specs/stx-jv.rbspec	Fri Jun 03 12:05:02 2016 +0100
@@ -228,7 +228,7 @@
          Proc.new do | pkg, build_dir |
              repo = :'swing:hg'
              puts "Checking out #{pkg.name} from #{repo} (cache / staging repo)..."
-             checkout repo, pkg.directory, :branch => pkg.branch, :package => pkg, :separator => '.'
+             checkout repo, pkg.directory, :branch => pkg.branch, :package => pkg, :separator => '-'
              puts "Checking out #{pkg.name} from #{repo} (cache)...done"
 
              File.open(build_dir / 'stx' / 'libjava' / '.hg' / 'hgrc' , 'w') do | f |