From owner-freebsd-gnome@FreeBSD.ORG Thu Jul 29 19:39:40 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE7961065670 for ; Thu, 29 Jul 2010 19:39:40 +0000 (UTC) (envelope-from glarkin@sourcehosting.net) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 9AD2D8FC0C for ; Thu, 29 Jul 2010 19:39:40 +0000 (UTC) Received: from 68-189-245-235.dhcp.oxfr.ma.charter.com ([68.189.245.235] helo=cube.entropy.prv) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1OeYbk-000JPA-H7; Thu, 29 Jul 2010 15:17:37 -0400 Received: from fbsd70.entropy.prv (fbsd70.entropy.prv [192.168.1.14]) by cube.entropy.prv (Postfix) with ESMTP id E739643112A7; Thu, 29 Jul 2010 15:17:32 -0400 (EDT) Received: from fbsd70.entropy.prv (localhost [127.0.0.1]) by fbsd70.entropy.prv (8.14.2/8.14.2) with ESMTP id o6TJHVnE012902; Thu, 29 Jul 2010 15:17:31 -0400 (EDT) (envelope-from glarkin@fbsd70.entropy.prv) Received: (from glarkin@localhost) by fbsd70.entropy.prv (8.14.2/8.14.2/Submit) id o6TJHVLM012901; Thu, 29 Jul 2010 15:17:31 -0400 (EDT) (envelope-from glarkin) Date: Thu, 29 Jul 2010 15:17:31 -0400 (EDT) Message-Id: <201007291917.o6TJHVLM012901@fbsd70.entropy.prv> To: FreeBSD-gnats-submit@freebsd.org From: Greg Larkin X-send-pr-version: 3.113 X-GNATS-Notify: X-Spam-Score: -0.3 (/) Cc: gnome@freebsd.org Subject: [PATCH] net/libproxy: restrict Python dependency to 2.5+ X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 19:39:40 -0000 >Submitter-Id: current-users >Originator: Greg Larkin >Organization: The FreeBSD Project >Confidential: no >Synopsis: [PATCH] net/libproxy: restrict Python dependency to 2.5+ >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 7.0-RELEASE i386 >Environment: System: FreeBSD fbsd70.entropy.prv 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 >Description: libproxy's configure script requires Python 2.5+, so change the USE_PYTHON variable to reflect this. This was noticed in a tinderbox build with the following options set: PYTHON_VERSION=python2.4 PYTHON_DEFAULT_VERSION=python2.4 Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libproxy-0.2.3_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/libproxy/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 16 May 2010 21:00:04 -0000 1.3 +++ Makefile 29 Jul 2010 19:15:45 -0000 @@ -27,7 +27,7 @@ .if !defined(LIBPROXY_SLAVE) USE_LDCONFIG= yes -USE_PYTHON= yes +USE_PYTHON= 2.5+ post-build: ${PYTHON_CMD} -Qold ${PYTHON_LIBDIR}/compileall.py \ --- libproxy-0.2.3_1.patch ends here ---