specs/repositories.rbspec
changeset 67 75b6eb7b781c
parent 62 de0e8016c2d5
child 88 112075e99cef
--- a/specs/repositories.rbspec	Sat Oct 29 23:54:12 2016 +0000
+++ b/specs/repositories.rbspec	Wed Nov 02 00:18:25 2016 +0000
@@ -14,10 +14,12 @@
 #    This is the default if no REPOSITORYSET value is set. 
 #
 #
-#  2.*ci-swing*: for use on SWING CI [1]. Uses local mirrors.
+#  2.*ci-swing*: for use on SWING CI [1]. Uses local staging repositories hosted
+#    on https://swing.fit.cvut.cz/hg in addition to canonical on hosted on 
+#    BitBucket.
 #
-#  3."ci-jv": for use on Jan Vrany's private CI. Uses local mirrors.
-#
+#  3."ci-jv": for use on Jan Vrany's private CI. Uses local staging repositories 
+#    in addition to canonical on hosted on BitBucket.
 #
 REPOSITORYSET = (ENV['REPOSITORYSET'] || 'default') if not defined? REPOSITORYSET
 
@@ -25,19 +27,19 @@
 when 'default'
   repository :'exept:public' do
     type :cvs    
-    url ":pserver:cvs@cvs.smalltalk-x.de:/cvs/stx"
+    canonical ":pserver:cvs@cvs.smalltalk-x.de:/cvs/stx"
   end
 
   repository :'bitbucket:janvrany' do
     type :hg
-    url "https://bitbucket.org/janvrany"
+    canonical "https://bitbucket.org/janvrany"
     separator '-'
   end
 
   if core_developer?
     repository :'swing:private:hg' do
       type :hg
-      url "ssh://192.168.12.2//hg"
+      canonical "ssh://192.168.12.2//hg"
       separator '.'
     end
   end
@@ -45,19 +47,19 @@
 when 'ci-swing'
   repository :'exept:public' do
     type :cvs    
-    url ":ext:swing.fit.cvut.cz/var/local/cvs"
+    canonical ":ext:swing.fit.cvut.cz/var/local/cvs"
   end
 
   repository :'bitbucket:janvrany' do
     type :hg
-    url "https://bitbucket.org/janvrany"
-    mirror "ssh://swing.fit.cvut.cz//var/local/hg"
+    canonical "https://bitbucket.org/janvrany"
+    staging "ssh://swing.fit.cvut.cz//var/local/hg"
     separator '-'
   end
 
   repository :'swing:private:hg' do
     type :hg
-    url "ssh://192.168.12.2//hg"
+    canonical "ssh://192.168.12.2//hg"
     separator '.'
   end
 
@@ -65,22 +67,19 @@
 when 'ci-jv'
   repository :'exept:public' do
     type :cvs    
-    url ":pserver:cvs@cvs.smalltalk-x.de:/cvs/stx"
+    canonical ":pserver:cvs@cvs.smalltalk-x.de:/cvs/stx"
   end
 
   repository :'bitbucket:janvrany' do
     type :hg
-    url "ssh://hg@192.168.0.250"
+    canonical "https://bitbucket.org/janvrany"
+    staging "ssh://hg@192.168.0.250"
     separator '-'
   end
 
   repository :'swing:private:hg' do
     type :hg
-    url "ssh://hg@192.168.0.250"
+    canonical "ssh://hg@192.168.0.250"
     separator '-'
   end
-
-end
-  
-#    
-# 
+end
\ No newline at end of file