I am trying to install Git-core with svn to my Mac unsuccessfully by

$ sudo port install git-core +svn
--->  Verifying checksum(s) for db46
Error: Checksum (md5) mismatch for patch.4.6.21.3
Error: Target org.macports.checksum returned: Unable to verify file checksums
Error: The following dependencies failed to build: p5-svn-simple subversion-perlbindings apr-util db46 sqlite3 cyrus-sasl2 neon serf subversion p5-term-readkey
Error: Status 1 encountered during processing.

I have tried to solve the problem unsuccessfully by

sudo port -f clean --all {neon, subversion,...}

How can you solve the problem?

[Solved]

A program called Peerguardian blocked the installation. When I removed it, everything works now. Great thanks to all repliers!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

It's failing because there was an error building db46; specifically, there was a problem in checksumming the patch files that were downloaded by the port utility. It looks like it may be an issue with the port, but I just built db46 without any problem. Have you updated your ports tree recently? You can try doing this:

$ sudo port selfupdate               # updates the ports tree and port utility
$ sudo port install git-core +svn    # installs git
link|improve this answer
An error occurs in the first command: dpaste.com/35736 – Masi Apr 20 '09 at 0:01
Are you behind a firewall? It could be blocking the port over which rsync communicates (port uses rsync for updating). Or maybe the server was experiencing problems. Try it again; if it still fails, run port with the -d option to get debug output. – mipadi Apr 20 '09 at 0:18
I tested without a firewall, the same error. The error with debugging is at dpaste.com/35744 – Masi Apr 20 '09 at 0:49
1  
There's at least one ticket that suggests that you may need to clean your ports tree before updating (for some reason). You can do that with $ sudo port clean --all installed. – mipadi Apr 22 '09 at 1:09
mipadi: Thank you! Your tip saved me. – Masi Apr 26 '09 at 20:55
feedback

Oracle recently silently changed their patch so the checksums do not match. That's been fixed in MacPorts, so if you self update, then it'll work correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.