无法与SVN的MacPorts同步

Spo*_*ony 5 svn macos sync macports

运行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
Run Code Online (Sandbox Code Playgroud)

然后我跑了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
Run Code Online (Sandbox Code Playgroud)

通过rsync更新工作正常,但在使用本地源时不行.此外,我在开始退房时可以选择接受证书,我选择永久接受.

tro*_*foe 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
Run Code Online (Sandbox Code Playgroud)

完成!


Vor*_*ive 3

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

/usr/bin/svn update /opt/mports/trunk/dports
Run Code Online (Sandbox Code Playgroud)

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

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?
Run Code Online (Sandbox Code Playgroud)

如果您选择p,下次您这样做时 svn 将接受 macports 的证书port sync