Matt Domsch <[email protected]> wrote: ... > If you could, on the above server, please run git update-server-info > (or rename .git/hooks/post-update.sample so it executes on every push) > so this can be fetched over http.
You can't use the git:// URI? What failure do you see when fetching over http? I see that the hook in question (hooks/post-update) has been executable for 18 months, and I've just confirmed that the following works for me: git clone http://git.debian.org/git/parted/parted.git > Furthermore, the bootstrap currently fails: ... > cmp: gnulib-tests/Makefile.am: No such file or directory > ./bootstrap: Copying ._bootmp/gnulib-tests/Makefile.am to > gnulib-tests/Makefile.am ... > ./bootstrap: line 590: gnulib-tests/Makefile.am: No such file or directory Thanks for reporting that. I've just fixed it: >From ea9cb0048bd633ff2043a3af2265d2544da345e7 Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Tue, 27 Jan 2009 10:58:09 +0100 Subject: [PATCH] avoid bootstrap failure * bootstrap.conf: Ensure the gnulib-tests/ exists. Reported by Matt Domsch. --- bootstrap.conf | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index e983dc8..91bbe6e 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -108,6 +108,7 @@ if test $gettext_external = 1; then fi gnulib_tool_option_extras="--tests-base=$bt/gnulib-tests --with-tests" +mkdir -p gnulib-tests # Build prerequisites buildreq="\ -- 1.6.1.1.363.g2a3bd _______________________________________________ parted-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/parted-devel

