From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 29 15:50:03 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B0EE1065676 for ; Fri, 29 Feb 2008 15:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D00DD8FC1F for ; Fri, 29 Feb 2008 15:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m1TFo2SO051654 for ; Fri, 29 Feb 2008 15:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m1TFo2dB051653; Fri, 29 Feb 2008 15:50:02 GMT (envelope-from gnats) Resent-Date: Fri, 29 Feb 2008 15:50:02 GMT Resent-Message-Id: <200802291550.m1TFo2dB051653@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Koji Yokota Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5F401065672 for ; Fri, 29 Feb 2008 15:45:21 +0000 (UTC) (envelope-from root@yokota-s.otaru-uc.ac.jp) Received: from ca1.otaru-uc.ac.jp (ca1.otaru-uc.ac.jp [150.83.48.27]) by mx1.freebsd.org (Postfix) with ESMTP id 68BAE8FC13 for ; Fri, 29 Feb 2008 15:45:21 +0000 (UTC) (envelope-from root@yokota-s.otaru-uc.ac.jp) Received: from canal1.otaru-uc.ac.jp (canal1 [150.83.48.23]) by ca1.otaru-uc.ac.jp (Postfix) with ESMTP id 0763CE1D3E; Fri, 29 Feb 2008 23:41:16 +0900 (JST) Received: from room520-1.yokota-s.otaru-uc.ac.jp (room520-1.yokota-s.otaru-uc.ac.jp [150.83.100.4]) by canal1.otaru-uc.ac.jp (SMTP) with ESMTP id m1TEfFxq001450; Fri, 29 Feb 2008 23:41:15 +0900 (JST) Received: by room520-1.yokota-s.otaru-uc.ac.jp (Postfix, from userid 0) id B0AE3B831; Fri, 29 Feb 2008 23:46:24 +0900 (JST) Message-Id: <20080229144624.B0AE3B831@room520-1.yokota-s.otaru-uc.ac.jp> Date: Fri, 29 Feb 2008 23:46:24 +0900 (JST) From: Koji Yokota To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: nakaji@jp.FreeBSD.org Subject: ports/121221: [PATCH] www/plone3: fetch fails from behind a firewall X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Feb 2008 15:50:03 -0000 >Number: 121221 >Category: ports >Synopsis: [PATCH] www/plone3: fetch fails from behind a firewall >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 29 15:50:02 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Koji Yokota >Release: FreeBSD 7.0-RC2 i386 >Organization: Otaru University of Commerce >Environment: System: FreeBSD hoge.otaru-uc.ac.jp 7.0-RC2 FreeBSD 7.0-RC2 #2: Tue Feb 19 07:06:39 JST 2008 >Description: [DESCRIBE CHANGES] The download server "https://launchpad.net/...." cannot be accessed with "fetch" from behind a firewall even if HTTP_PROXY is set, because of the special arrangement of the server. Using wget (or curl) resolves the problem. Port maintainer (nakaji@jp.FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- plone3-3.0.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/plone3.orig/Makefile /usr/ports/www/plone3/Makefile --- /usr/ports/www/plone3.orig/Makefile 2008-02-18 12:09:30.000000000 +0900 +++ /usr/ports/www/plone3/Makefile 2008-02-29 23:38:38.000000000 +0900 @@ -15,6 +15,7 @@ MAINTAINER= nakaji@jp.FreeBSD.org COMMENT= A user friendly implementation of the CMF written on top of ZOPE +FETCH_DEPENDS= wget:${PORTSDIR}/ftp/wget RUN_DEPENDS= ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging WRKSRC= ${WRKDIR}/Plone-${PORTVERSION} @@ -69,6 +70,12 @@ @${ECHO_MSG} "" .endif +do-fetch: + # To fetch from behind a firewall, set environment variables + # https_proxy and http_proxy + ( cd ${DISTDIR}/zope ; \ + wget --no-check-certificate ${MASTER_SITES}/${DISTFILES} ) + do-build: .for m in ${_MODULES} -${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/Products/$m --- plone3-3.0.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: