git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: "Jay Soffian" <jaysoffian@gmail.com>
To: "Vladimir Pouzanov" <farcaller@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: git-svn fails to fetch repository
Date: Tue, 13 Jan 2009 16:20:46 -0500	[thread overview]
Message-ID: <76718490901131320y6e3312f1o96b99407f318fafd@mail.gmail.com> (raw)
In-Reply-To: <76718490901131312j28f8283bi94f55000e70c532e@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

On Tue, Jan 13, 2009 at 4:12 PM, Jay Soffian <jaysoffian@gmail.com> wrote:
> Your original email doesn't appear to provide the complete error
> message. I'm on OS X 10.5.6 (Intel), git 1.6.1.77.g81ea1, system perl
> (/usr/bin/perl - 5.8.8) and I'm able to clone okay:

BTW, since it's the system perl, it's also the system Perl subversion
bindings, which means 1.4.4.

IOW, even though I have MacPorts installed, I define NO_DARWIN_PORTS=1
during install. I've attached the script I use for compiling &
installing git for reference.

j.

[-- Attachment #2: gitmake --]
[-- Type: application/octet-stream, Size: 1033 bytes --]

#!/bin/sh -ex

export PATH=.:$PATH

SUDO=
export ASCIIDOC8=1
export DOCBOOK_XSL_172=1

makecmd () {
	$SUDO make prefix="/opt/git" \
	CFLAGS="-Wall -O2 -I/usr/include" \
	LDFLAGS="-L/usr/lib" \
	CURLDIR="/usr" \
	OPENSSLDIR="/usr" \
	ICONVDIR="/usr" \
	PERL_PATH="/usr/bin/perl" \
	THREADED_DELTA_SEARCH=1 \
	NO_FINK=1 NO_DARWIN_PORTS=1 \
	"$@"
}

build () {
	(cd git-gui && sudo make clean)
	makecmd all doc gitweb/gitweb.cgi
}

test () {
	makecmd test
}

install () {
	build
	sudo rm -rf /opt/git
	SUDO=sudo makecmd install install-man install-html
	sudo rm -rf /opt/git/System
	sudo mkdir /opt/git/share/gitweb || true
	sudo cp -f gitweb/git* /opt/git/share/gitweb/
	sudo rm -f /opt/git/share/gitweb/gitweb.perl
	sudo cp contrib/gitview/gitview /opt/git/bin/gitview
	sudo chmod 755 /opt/git/bin/gitview
	sudo cp contrib/completion/git-completion.bash /opt/git/share/git-core/
    	sudo chmod 644 /opt/git/share/git-core/git-completion.bash
}

case "$1" in
  test) test ;;
  build) build ;;
  install) install ;;
  *) build ;;
esac

  parent reply	other threads:[~2009-01-13 21:22 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-13 14:53 git-svn fails to fetch repository Vladimir Pouzanov
2009-01-13 15:03 ` Vladimir Pouzanov
2009-01-13 17:51   ` Michael J Gruber
2009-01-13 19:01     ` Vladimir Pouzanov
2009-01-13 20:39       ` Björn Steinbrink
2009-01-13 20:46         ` Vladimir Pouzanov
2009-01-13 21:12           ` Jay Soffian
2009-01-13 21:16             ` Vladimir Pouzanov
2009-01-13 21:28               ` Jay Soffian
2009-01-13 21:34                 ` Vladimir Pouzanov
2009-01-13 21:46                   ` Jay Soffian
2009-01-14  0:58                   ` Jay Soffian
2009-01-14  8:32                     ` Vladimir Pouzanov
2009-01-14 18:06                       ` Jay Soffian
2009-01-17  9:51                         ` Eric Wong
2009-01-17 10:06                           ` Vladimir Pouzanov
2009-01-17 10:45                             ` Eric Wong
2009-01-17 17:33                               ` Jay Soffian
2009-01-13 21:20             ` Jay Soffian [this message]
2009-01-23  8:52           ` Petr Baudis
2009-01-23 13:22             ` Björn Steinbrink

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=76718490901131320y6e3312f1o96b99407f318fafd@mail.gmail.com \
    --to=jaysoffian@gmail.com \
    --cc=farcaller@gmail.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).