[commit: ghc] master: Replace occurences of darcs.haskell.org by git.haskell.org (4eeccc1)

git at git.haskell.org git at git.haskell.org
Mon Aug 19 23:24:34 CEST 2013


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/4eeccc1ce80df7cc96bf72a5cd8a2397b03e2b35/ghc

>---------------------------------------------------------------

commit 4eeccc1ce80df7cc96bf72a5cd8a2397b03e2b35
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Mon Aug 19 23:20:32 2013 +0200

    Replace occurences of darcs.haskell.org by git.haskell.org
    
    ...as the new `git.haskell.org` CNAME has been activated
    (see also GitolitePlan and #8121 for more details)


>---------------------------------------------------------------

4eeccc1ce80df7cc96bf72a5cd8a2397b03e2b35
 .gitmodules |   28 ++++++++++++++--------------
 sync-all    |   12 ++++++------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/.gitmodules b/.gitmodules
index 8f86e8f..2ad0854 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,42 +1,42 @@
 [submodule "libraries/binary"]
 	path = libraries/binary
-	url = http://darcs.haskell.org/packages/binary.git
+	url = http://git.haskell.org/packages/binary.git
 [submodule "libraries/bytestring"]
 	path = libraries/bytestring
-	url = http://darcs.haskell.org/packages/bytestring.git
+	url = http://git.haskell.org/packages/bytestring.git
 [submodule "libraries/Cabal"]
 	path = libraries/Cabal
-	url = http://darcs.haskell.org/packages/Cabal.git
+	url = http://git.haskell.org/packages/Cabal.git
 [submodule "libraries/containers"]
 	path = libraries/containers
-	url = http://darcs.haskell.org/packages/containers.git
+	url = http://git.haskell.org/packages/containers.git
 [submodule "libraries/haskeline"]
 	path = libraries/haskeline
-	url = http://darcs.haskell.org/packages/haskeline.git
+	url = http://git.haskell.org/packages/haskeline.git
 [submodule "libraries/pretty"]
 	path = libraries/pretty
-	url = http://darcs.haskell.org/packages/pretty.git
+	url = http://git.haskell.org/packages/pretty.git
 [submodule "libraries/terminfo"]
 	path = libraries/terminfo
-	url = http://darcs.haskell.org/packages/terminfo.git
+	url = http://git.haskell.org/packages/terminfo.git
 [submodule "libraries/transformers"]
 	path = libraries/transformers
-	url = http://darcs.haskell.org/packages/transformers.git
+	url = http://git.haskell.org/packages/transformers.git
 [submodule "libraries/xhtml"]
 	path = libraries/xhtml
-	url = http://darcs.haskell.org/packages/xhtml.git
+	url = http://git.haskell.org/packages/xhtml.git
 [submodule "libraries/Win32"]
 	path = libraries/Win32
-	url = http://darcs.haskell.org/packages/Win32.git
+	url = http://git.haskell.org/packages/Win32.git
 [submodule "libraries/primitive"]
 	path = libraries/primitive
-	url = http://darcs.haskell.org/packages/primitive.git
+	url = http://git.haskell.org/packages/primitive.git
 [submodule "libraries/vector"]
 	path = libraries/vector
-	url = http://darcs.haskell.org/packages/vector.git
+	url = http://git.haskell.org/packages/vector.git
 [submodule "libraries/time"]
 	path = libraries/time
-	url = http://darcs.haskell.org/packages/time.git
+	url = http://git.haskell.org/packages/time.git
 [submodule "libraries/random"]
 	path = libraries/random
-	url = http://darcs.haskell.org/packages/random.git
+	url = http://git.haskell.org/packages/random.git
diff --git a/sync-all b/sync-all
index d53185e..24b8e73 100755
--- a/sync-all
+++ b/sync-all
@@ -193,11 +193,11 @@ sub getrepo {
         # Don't drop the last part of the path if specified with -r, as
         # it expects repos of the form:
         #
-        #   http://darcs.haskell.org
+        #   http://git.haskell.org
         #
         # rather than
         #
-        #   http://darcs.haskell.org/ghc
+        #   http://git.haskell.org/ghc
         #
         if (!$defaultrepo) {
             $repo_base =~ s#/[^/]+/?$##;
@@ -597,7 +597,7 @@ Applies the command "cmd" to each repository in the tree.
 A full repository tree is obtained by first cloning the ghc
 repository, then getting the subrepositories with "sync-all get":
 
-  \$ git clone http://darcs.haskell.org/ghc.git
+  \$ git clone http://git.haskell.org/ghc.git
   \$ cd ghc
   \$ ./sync-all get
 
@@ -637,7 +637,7 @@ remote set-url [--push] <remote-name>
     repository location in each case appropriately. For example, to
     add a new remote pointing to the upstream repositories:
 
-    ./sync-all -r http://darcs.haskell.org remote add upstream
+    ./sync-all -r http://git.haskell.org remote add upstream
 
     The -r flag points to the root of the repository tree (see "which
     repos to use" below). For a repository on the local filesystem it
@@ -745,7 +745,7 @@ otherwise sync-all works on repos of form:
   <repo_base>/<remote-path>
 
 This logic lets you say
-  both    sync-all -r http://darcs.haskell.org/ghc-6.12 remote add ghc-6.12
+  both    sync-all -r http://example.org/ghc-6.12 remote add ghc-6.12
   and     sync-all -r ../working remote add working
 The latter is called a "checked-out tree".
 
@@ -852,7 +852,7 @@ sub main {
     if ($bare_flag && ! $bare_found && ! $defaultrepo) {
         die "error: bare repository ghc.git not found.\n"
           . "       Either clone a bare ghc repo first or specify the repo location. E.g.:\n"
-          . "       ./sync-all --bare [--testsuite --nofib --extra] -r http://darcs.haskell.org get\n"
+          . "       ./sync-all --bare [--testsuite --nofib --extra] -r http://git.haskell.org get\n"
     }
     elsif ($bare_found) {
         $bare_flag = "--bare";





More information about the ghc-commits mailing list