Changes between Version 42 and Version 43 of ProblemHotlist


Ignore:
Timestamp:
Jul 26, 2009, 10:34:19 PM (15 years ago)
Author:
raimue (Rainer Müller)
Comment:

Document problems with https://svn.kde.org

Legend:

Unmodified
Added
Removed
Modified
  • ProblemHotlist

    v42 v43  
    4545
    4646'''Note:''' Checksum failures after a fetch are typically a separate issue.  See the [wiki:FAQ#IgetError:checksummd5sha1rmd160mismatchforport.WhatcanIdoaboutit FAQ].
     47
     48== A port wants to fetch from https://svn.kde.org and fails due to certificate issues == #kdesvn
     49
     50'''Error message:'''
     51{{{
     52svn: PROPFIND request failed on '/home/kde/branches/KDE/3.5/kde-common/admin'
     53svn: PROPFIND of '/home/kde/branches/KDE/3.5/kde-common/admin': Server certificate verification failed: issuer is not trusted (https://svn.kde.org)
     54Error: Target org.macports.fetch returned: Subversion check out failed
     55}}}
     56
     57'''Explanation:'''
     58The svn repository specifies a svn:externals definition using this ''https://'' URL. As the server is using a self-signed certificate it is not trusted by default and therefore `svn` rejects it in non-interactive mode. The workaround is to accept this certificate permanently with a manual connection.
     59
     60'''Workaround:'''
     61{{{
     62sudo svn ls https://svn.kde.org
     63}}}
     64
     65Choose ''accept permanently'' by entering a 'p'. Try to install the failing port again after cleaning.
     66
     67{{{
     68sudo port clean --all <portname>
     69sudo port install <portname>
     70}}}
     71
     72'''Known affected ports:''' taglib-devel
     73'''Ticket:''' #18583
    4774
    4875== A port failed to build, upgrade, or run with a message referring to libintl.3.dylib ==