From glarkin@sourcehosting.net  Thu Aug  5 18:00:42 2010
Return-Path: <glarkin@sourcehosting.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 3FEC31065675
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  5 Aug 2010 18:00:42 +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 1AEA98FC12
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  5 Aug 2010 18:00:41 +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 <glarkin@sourcehosting.net>)
	id 1Oh4k7-0008zo-KQ; Thu, 05 Aug 2010 14:00:40 -0400
Received: from fbsd70.entropy.prv (fbsd70.entropy.prv [192.168.1.14])
	by cube.entropy.prv (Postfix) with ESMTP
	id C3B2A43520F1; Thu,  5 Aug 2010 14:00:35 -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 o75I0UfK005507;
	Thu, 5 Aug 2010 14:00:30 -0400 (EDT)
	(envelope-from glarkin@fbsd70.entropy.prv)
Received: (from glarkin@localhost)
	by fbsd70.entropy.prv (8.14.2/8.14.2/Submit) id o75I0U1X005506;
	Thu, 5 Aug 2010 14:00:30 -0400 (EDT)
	(envelope-from glarkin)
Message-Id: <201008051800.o75I0U1X005506@fbsd70.entropy.prv>
Date: Thu, 5 Aug 2010 14:00:30 -0400 (EDT)
From: Greg Larkin <glarkin@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: wenheping@gmail.com
Subject: [PATCH] devel/py-RPyC: Restrict Python version to 2.5+
X-Send-Pr-Version: 3.113
X-GNATS-Notify: wenheping@gmail.com

>Number:         149336
>Category:       ports
>Synopsis:       [PATCH] devel/py-RPyC: Restrict Python version to 2.5+
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-python
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 05 18:10:04 UTC 2010
>Closed-Date:    Wed Aug 11 13:47:02 EDT 2010
>Last-Modified:  Wed Aug 11 17:50:01 UTC 2010
>Originator:     Greg Larkin
>Release:        FreeBSD 7.0-RELEASE i386
>Organization:
The FreeBSD Project
>Environment:
System: FreeBSD fbsd70.entropy.prv 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008
>Description:
py-RPyC fails to build correctly with Python 2.4 installed as the default
Python version:

creating /usr/local/lib/python2.4/site-packages/rpyc-3.0.6-py2.4.egg
Extracting rpyc-3.0.6-py2.4.egg to /usr/local/lib/python2.4/site-packages
  File "/usr/local/lib/python2.4/site-packages/rpyc-3.0.6-py2.4.egg/rpyc/utils/server.py", line 217
    finally:
          ^
SyntaxError: invalid syntax

  File "/usr/local/lib/python2.4/site-packages/rpyc-3.0.6-py2.4.egg/rpyc/utils/server.py", line 217
    finally:
          ^
SyntaxError: invalid syntax
Adding rpyc 3.0.6 to easy-install.pth file

USE_PYTHON is updated to require Python version 2.5+. This was noticed
during a tinderbox build with the following options set:
PYTHON_VERSION=python2.4
PYTHON_DEFAULT_VERSION=python2.4

Port maintainer (wenheping@gmail.com) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- py25-rpyc-3.0.6.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/py-RPyC/Makefile,v
retrieving revision 1.5
diff -u -u -r1.5 Makefile
--- Makefile	22 Aug 2009 00:18:24 -0000	1.5
+++ Makefile	5 Aug 2010 17:58:21 -0000
@@ -14,7 +14,7 @@
 MAINTAINER=	wenheping@gmail.com
 COMMENT=	Remote Python Call
 
-USE_PYTHON=	yes
+USE_PYTHON=	2.5+
 USE_PYDISTUTILS=	easy_install
 
 .include <bsd.port.mk>
--- py25-rpyc-3.0.6.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Aug 5 18:10:16 UTC 2010 
Responsible-Changed-Why:  
freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=149336 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Aug 5 18:10:22 UTC 2010 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=149336 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: wenheping@gmail.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/149336: [PATCH] devel/py-RPyC: Restrict Python version to 2.5+
Date: Thu, 5 Aug 2010 18:10:18 UT

 Maintainer of devel/py-RPyC,
 
 Please note that PR ports/149336 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/149336
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
State-Changed-From-To: feedback->closed 
State-Changed-By: glarkin 
State-Changed-When: Wed Aug 11 13:46:41 EDT 2010 
State-Changed-Why:  
Committed after email approval from wen. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=149336 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/149336: commit references a PR
Date: Wed, 11 Aug 2010 17:48:50 +0000 (UTC)

 glarkin     2010-08-11 17:46:16 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel/py-RPyC        Makefile 
   Log:
   - Restricted Python version to 2.5+, since 2.4 exits with a syntax
     error during the build.
   
   PR:             ports/149336
   Submitted by:   glarkin
   Approved by:    wen (via email)
   
   Revision  Changes    Path
   1.6       +1 -1      ports/devel/py-RPyC/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
