5

运行 10.7.4,我运行了以下命令:

mkdir -p /opt/mports
cd /opt/mports
svn checkout https://svn.macports.org/repository/macports/trunk
cd trunk/base
./configure --enable-readline
make
sudo make install
make distclean

然后我跑了nano /opt/local/etc/macports/sources.conf,注释掉rsync://rsync.macports.org/release/tarballs/ports.tar并添加了file://opt/mports/trunk/dports [default]

运行后sudo port -d sync我收到

DEBUG: Copying /Volumes/Storagestar/Users/themikemasterson/Library/Preferences/com.apple.dt.Xcode.plist to /opt/local/var/macports/home/Library/Preferences
--->  Updating the ports tree
Synchronizing local ports tree from file:///opt/mports/trunk/dports
DEBUG: /usr/bin/svn update --non-interactive /opt/mports/trunk/dports
DEBUG: changing euid/egid - current euid: 0 - current egid: 0
svn: OPTIONS of 'https://svn.macports.org/repository/macports/trunk': Server certificate verification failed: issuer is not trusted (https://svn.macports.org)
Command failed: /usr/bin/svn update --non-interactive /opt/mports/trunk/dports
Exit code: 1
DEBUG: command execution failed
while executing
"system $svn_commandline"
Error: Synchronization of the local ports tree failed doing an svn update
DEBUG: Synchronization of 1 source(s) failed
while executing
"mportsync [array get global_options]"
port sync failed: Synchronization of 1 source(s) failed

通过 rsync 更新可以正常工作,但在使用本地资源时不行。另外,我在开始结账时可以选择接受证书,我选择永久接受它。

4

2 回答 2

5

@Vortexfive 提供的答案是对的。照他说的做,然后从你的主目录复制 .subversion/opt/local/var/macports/home

$ sudo bash
# find ~/.subversion/auth -type f -exec rm -f {} \;
# cd /opt/mports/trunk
# svn update     (press 'p' to store the certificate)
# cd /opt/local/var/macports/home
# cp -R ~/.subversion .
# port selfupdate

完毕!

于 2013-08-07T12:50:38.233 回答
3

尝试手动执行(与日志文件相同,但没有 --non-interactive):

/usr/bin/svn update /opt/mports/trunk/dports

现在,您应该收到以下消息:

Error validating server certificate for 'https://svn.macports.org:443':
 - The certificate is not issued by a trusted authority. Use the
   fingerprint to validate the certificate manually!
Certificate information:
 - Hostname: *.macports.org
 - Valid: from Tue, 22 Feb 2011 17:29:43 GMT until Tue, 18 Mar 2014 23:36:56 GMT
 - Issuer: 07969287, http://certificates.godaddy.com/repository, GoDaddy.com, Inc., Scottsdale, Arizona, US
 - Fingerprint: ...
(R)eject, accept (t)emporarily or accept (p)ermanently?

如果您选择p,svn 将在您下次接受 macports 证书时接受port sync

于 2012-08-14T09:05:33.960 回答