From owner-freebsd-python@FreeBSD.ORG Wed Nov 9 23:45:58 2011 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A604D106566C for ; Wed, 9 Nov 2011 23:45:58 +0000 (UTC) (envelope-from g.olgeni@colby.it) Received: from mail.colby.tv (93-62-141-58.ip22.fastwebnet.it [93.62.141.58]) by mx1.freebsd.org (Postfix) with ESMTP id 2E2498FC0C for ; Wed, 9 Nov 2011 23:45:57 +0000 (UTC) Received: from server.colby.local (localhost [127.0.0.1]) by server.colby.local (8.14.4/8.14.4) with ESMTP id pA9NEB9R085388; Thu, 10 Nov 2011 00:14:11 +0100 (CET) (envelope-from g.olgeni@colby.it) Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local) with IPv4:25 by server.colby.local; 10 Nov 2011 00:14:11 +0100 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 10 Nov 2011 00:14:10 +0100 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.5/8.14.4) with ESMTP id pA9NEArb033639; Thu, 10 Nov 2011 00:14:10 +0100 (CET) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.5/8.14.4/Submit) id pA9NEA72033638; Thu, 10 Nov 2011 00:14:10 +0100 (CET) (envelope-from olgeni) Date: Thu, 10 Nov 2011 00:14:10 +0100 (CET) Message-Id: <201111092314.pA9NEA72033638@backoffice.colby.local> To: FreeBSD-gnats-submit@freebsd.org From: Jimmy Olgeni X-send-pr-version: 3.113 X-GNATS-Notify: X-OriginalArrivalTime: 09 Nov 2011 23:14:11.0066 (UTC) FILETIME=[4A0275A0:01CC9F35] Cc: python@freebsd.org Subject: [PATCH] devel/py27-freebsd: extend python compatibility to 2.7 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2011 23:45:58 -0000 >Submitter-Id: current-users >Originator: Jimmy Olgeni >Organization: >Confidential: no >Synopsis: [PATCH] devel/py27-freebsd: extend python compatibility to 2.7 >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 8.2-STABLE amd64 >Environment: System: FreeBSD backoffice 8.2-STABLE FreeBSD 8.2-STABLE #1: Wed Oct 12 21:16:42 CEST 2011 >Description: Currently py-freebsd brings in python26 as a dependency, but it seems to work fine with python27 too. Port maintainer (python@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py27-freebsd-0.9.3_6.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/py-freebsd/Makefile,v retrieving revision 1.23 diff -u -u -r1.23 Makefile --- Makefile 7 Nov 2011 04:24:52 -0000 1.23 +++ Makefile 9 Nov 2011 23:12:07 -0000 @@ -7,7 +7,7 @@ PORTNAME= freebsd PORTVERSION= 0.9.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_LOCAL} \ http://people.freebsd.org/~perky/distfiles/ @@ -18,7 +18,7 @@ MAINTAINER= python@FreeBSD.org COMMENT= Python interface to FreeBSD-specific system libraries -USE_PYTHON= 2.5-2.6 +USE_PYTHON= 2.5-2.7 USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= py-freebsd --- py27-freebsd-0.9.3_6.patch ends here ---