summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules28
-rwxr-xr-xsync-all12
2 files changed, 20 insertions, 20 deletions
diff --git a/.gitmodules b/.gitmodules
index 8f86e8f653..2ad08541be 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 d53185efc2..24b8e734ab 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";