From owner-freebsd-python@FreeBSD.ORG Tue Dec 7 15:57:41 2004 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8089116A4CE for ; Tue, 7 Dec 2004 15:57:41 +0000 (GMT) Received: from w1001.widhost.net (w1001.widhost.net [209.235.192.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39FE643D39 for ; Tue, 7 Dec 2004 15:57:41 +0000 (GMT) (envelope-from filippo.natali@widestore.net) Received: from mx0.hq.widestore.net (mx0.hq.widestore.net [212.97.46.42]) by w1001.widhost.net (Postfix) with ESMTP id 4CE342194B for ; Tue, 7 Dec 2004 10:57:36 -0500 (EST) Received: from [192.168.1.1] (cagnina.hq.widestore.net [192.168.1.1]) by mx0.hq.widestore.net (Postfix) with ESMTP id 41EC85B; Tue, 7 Dec 2004 16:57:04 +0100 (CET) Message-ID: <41B5D2D0.9040904@widestore.net> Date: Tue, 07 Dec 2004 16:57:04 +0100 From: Filippo Natali Organization: Widestore.Net User-Agent: Mozilla Thunderbird 1.0RC1 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: HAYASHI Yasushi References: <005801c4dacf$2c50e140$0200a8c0@hayashi2j51u1x> <4f0b69dc04120506256728b92a@mail.gmail.com> <004501c4db14$6f6d00e0$0200a8c0@hayashi2j51u1x> In-Reply-To: <004501c4db14$6f6d00e0$0200a8c0@hayashi2j51u1x> X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/mixed; boundary="------------080900050207080907040603" cc: Hye-Shik Chang cc: freebsd-python@freebsd.org Subject: Re: www/zope-coreblog has trouble with python 2.4 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2004 15:57:41 -0000 This is a multi-part message in MIME format. --------------080900050207080907040603 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit on 05.12.2004 22:50 HAYASHI Yasushi wrote: > Thanks a lot ! > I'll modify www/zope-coreblog referring www/zope. > > Is it better that all ports which has "USE_ZOPE=yes" should also have > "USE_PYTHON=2.3" ? > And how about textproc/py-xml ? Zope has "BUILD_DEPENDS" for it. Hi! this little patch for bsd.python.mk sets USE_PYTHON=2.3 if a port has USE_ZOPE=yes. This could be a workaround until Zope 2.8, instead of patching all Zope related ports. If someone else can test it (at his own risk ;) ), I'll send a pr. regards, Filippo Natali --------------080900050207080907040603 Content-Type: text/plain; name="bsd.python.mk.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.python.mk.patch" --- bsd.python.mk Wed Dec 1 16:04:04 2004 +++ bsd.python.mk.new Tue Dec 7 16:19:32 2004 @@ -136,6 +136,10 @@ || ${ECHO_CMD} ${_PYTHON_PORTBRANCH} .endif # defined(PYTHON_VERSION) +.if defined(USE_ZOPE) +USE_PYTHON= 2.3 +.endif + .if !defined(USE_PYTHON) .if defined(USE_PYTHON_BUILD) USE_PYTHON= ${USE_PYTHON_BUILD} --------------080900050207080907040603--