From owner-freebsd-gecko@FreeBSD.ORG Sat Aug 31 18:14:32 2013 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C9C20515 for ; Sat, 31 Aug 2013 18:14:32 +0000 (UTC) (envelope-from andy@neu.net) Received: from mail.neu.net (neu.net [199.48.129.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 772392E10 for ; Sat, 31 Aug 2013 18:14:32 +0000 (UTC) Received: from neu.net (neu.net [199.48.129.194]) by mail.neu.net (8.14.6/8.14.5) with ESMTP id r7VIEMcw027402 for ; Sat, 31 Aug 2013 14:14:22 -0400 (EDT) (envelope-from andy@neu.net) Date: Sat, 31 Aug 2013 14:14:22 -0400 (EDT) From: AN To: freebsd-gecko@freebsd.org Subject: Re: [SVN-Commit] r1343 - in trunk: mail/thunderbird www/firefox-nightly www/seamonkey In-Reply-To: <201308311520.r7VFK2SE049143@trillian.chruetertee.ch> Message-ID: References: <201308311520.r7VFK2SE049143@trillian.chruetertee.ch> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Virus-Scanned: clamav-milter 0.97.8 at my.mail.server X-Virus-Status: Clean X-Spam-Status: No, score=-0.0 required=4.5 tests=RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.neu.net X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Aug 2013 18:14:32 -0000 Fetch is broken now. Do I need to do something to fix it? # svn up Updating '.': At revision 1344. [root@FBSD10 /usr/ports/www/FF_nightly]# make update && make makesum && time make all deinstall install clean Certificate verification failed for /C=US/O=GeoTrust Inc./CN=GeoTrust Global CA 34380826200:error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed:/usr/src/secure/lib/libssl/../../../crypto/openssl/ssl/s3_clnt.c:1168: fetch: https://hg.mozilla.org/integration/mozilla-inbound/rev//tip: Authentication error ===> Found saved configuration for firefox-nightly-26.0.143100,1 ===> firefox-nightly-26.0.,1 depends on file: /usr/local/sbin/pkg - found => .tar.bz2 doesn't seem to exist in /usr/ports/distfiles/firefox-nightly. => Attempting to fetch https://hg.mozilla.org/integration/mozilla-inbound/archive/.tar.bz2 fetch: https://hg.mozilla.org/integration/mozilla-inbound/archive/.tar.bz2: size of remote file is not known .tar.bz2 235 B 2319 kBps 00m00s [: -eq: argument expected => Fetched file size mismatch (expected , actual 235) => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/firefox-nightly/.tar.bz2 fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/firefox-nightly/.tar.bz2: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/firefox-nightly and try again. *** Error code 1 Stop. make[1]: stopped in /usr/ports/www/FF_nightly *** Error code 1 Stop. make: stopped in /usr/ports/www/FF_nightly If I try to navigate to https://hg.mozilla.org/integration/mozilla-inbound/archive/ in the browser I get the following error: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Apache/2.2.15 (Red Hat) Server at hg.mozilla.org Port 80 On Sat, 31 Aug 2013, svn-freebsd-gecko@chruetertee.ch wrote: > Author: jbeich > Date: Sat Aug 31 15:20:02 2013 > New Revision: 1343 > > Log: > prevent MITM when fetching new distfile > > Modified: > trunk/mail/thunderbird/Makefile > trunk/www/firefox-nightly/Makefile > trunk/www/seamonkey/Makefile > > Modified: trunk/mail/thunderbird/Makefile > ============================================================================== > --- trunk/mail/thunderbird/Makefile Sat Aug 31 15:19:54 2013 (r1342) > +++ trunk/mail/thunderbird/Makefile Sat Aug 31 15:20:02 2013 (r1343) > @@ -78,7 +78,7 @@ > .endif > > .if ${PORT_OPTIONS:MENIGMAIL} > -MASTER_SITES+= http://www.enigmail.net/download/source/:enigmail > +MASTER_SITES+= https://www.enigmail.net/download/source/:enigmail > DISTFILES+= ${EM_DISTFILE}:enigmail > RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg > EM_DISTNAME= enigmail-${EM_VERSION} > > Modified: trunk/www/firefox-nightly/Makefile > ============================================================================== > --- trunk/www/firefox-nightly/Makefile Sat Aug 31 15:19:54 2013 (r1342) > +++ trunk/www/firefox-nightly/Makefile Sat Aug 31 15:20:02 2013 (r1343) > @@ -5,7 +5,7 @@ > PORTVERSION= 26.0.${HGREV:C/:.*//} > PORTEPOCH= 1 > CATEGORIES= www ipv6 > -MASTER_SITES= http://hg.mozilla.org/mozilla-central/archive/ > +MASTER_SITES= https://hg.mozilla.org/mozilla-central/archive/ > PKGNAMESUFFIX= ${MOZILLA_SUFX} > DISTNAME= ${HGREV:C/.*://} > DIST_SUBDIR= ${MOZILLA} > > Modified: trunk/www/seamonkey/Makefile > ============================================================================== > --- trunk/www/seamonkey/Makefile Sat Aug 31 15:19:54 2013 (r1342) > +++ trunk/www/seamonkey/Makefile Sat Aug 31 15:20:02 2013 (r1343) > @@ -92,7 +92,7 @@ > MOZ_OPTIONS+= --enable-ldap --enable-mailnews > .endif > .if ${PORT_OPTIONS:MENIGMAIL} > -MASTER_SITES+= http://www.enigmail.net/download/source/:enigmail > +MASTER_SITES+= https://www.enigmail.net/download/source/:enigmail > DISTFILES+= ${EM_DISTFILE}:enigmail > RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg > EM_DISTNAME= enigmail-${EM_VERSION} > _______________________________________________ > freebsd-gecko@freebsd.org mailing list