From owner-svn-ports-head@FreeBSD.ORG Fri Nov 29 07:22:50 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A291B13; Fri, 29 Nov 2013 07:22:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2A3D112F6; Fri, 29 Nov 2013 07:22:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAT7Mo6d026094; Fri, 29 Nov 2013 07:22:50 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAT7Mno4026091; Fri, 29 Nov 2013 07:22:49 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201311290722.rAT7Mno4026091@svn.freebsd.org> From: Kubilay Kocak Date: Fri, 29 Nov 2013 07:22:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335150 - head/devel/py-argparse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Nov 2013 07:22:50 -0000 Author: koobs Date: Fri Nov 29 07:22:49 2013 New Revision: 335150 URL: http://svnweb.freebsd.org/changeset/ports/335150 Log: devel/py-argparse: Update to 1.2.1 - Update to 1.2.1 - Enable STAGE support - Enable AUTOPLIST, remove PLIST_FILES accordingly - Upstream uses setuptools, update USE_PYDISTUTILS accordingly - Remove USE_ZIP, distribution files is now tar.gz - QA: Add LICENSE (PSFL) - QA: Remove indefinite article from COMMENT - QA: Whitespace alignment - QA: Tab->space for WWW: in pkg-descr Changes: argparse 1.2.1: - fixed Issue #82: argparse 1.2 incompatible with Python 3.1 - hacked the tests so they don't have the minor failures that were caused by the compatibility stuff for python 2.3 and 3.1 argparse 1.2: - fixed Issue #79: re-licensed argparse package under same license as py 2.7 stdlib argparse code - fixed Issue #80: argparse 1.2 is now same archive on pypi / on google code Approved by: lwhsu (maintainer) Modified: head/devel/py-argparse/Makefile (contents, props changed) head/devel/py-argparse/distinfo (contents, props changed) head/devel/py-argparse/pkg-descr (contents, props changed) Modified: head/devel/py-argparse/Makefile ============================================================================== --- head/devel/py-argparse/Makefile Fri Nov 29 07:20:28 2013 (r335149) +++ head/devel/py-argparse/Makefile Fri Nov 29 07:22:49 2013 (r335150) @@ -2,22 +2,18 @@ # $FreeBSD$ PORTNAME= argparse -PORTVERSION= 1.1 +PORTVERSION= 1.2.1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= lwhsu@FreeBSD.org -COMMENT= An optparse-inspired command-line parsing library +COMMENT= Optparse-inspired command-line parsing library -USE_ZIP= yes +LICENSE= PSFL -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes -PLIST_FILES= %%PYTHON_SITELIBDIR%%/argparse.py \ - %%PYTHON_SITELIBDIR%%/argparse.pyc \ - %%PYTHON_SITELIBDIR%%/argparse.pyo - -NO_STAGE= yes .include Modified: head/devel/py-argparse/distinfo ============================================================================== --- head/devel/py-argparse/distinfo Fri Nov 29 07:20:28 2013 (r335149) +++ head/devel/py-argparse/distinfo Fri Nov 29 07:22:49 2013 (r335150) @@ -1,2 +1,2 @@ -SHA256 (argparse-1.1.zip) = 9b1615ad6ccf568c690e7c68a9f2ccf9cd54d3c4c1e0cd8cdd0ebbde682949a2 -SIZE (argparse-1.1.zip) = 151471 +SHA256 (argparse-1.2.1.tar.gz) = ddaf4b0a618335a32b6664d4ae038a1de8fbada3b25033f9021510ed2b3941a4 +SIZE (argparse-1.2.1.tar.gz) = 69297 Modified: head/devel/py-argparse/pkg-descr ============================================================================== --- head/devel/py-argparse/pkg-descr Fri Nov 29 07:20:28 2013 (r335149) +++ head/devel/py-argparse/pkg-descr Fri Nov 29 07:22:49 2013 (r335150) @@ -4,4 +4,4 @@ ability to create parsers for sub-comman messages, and much more. At the same time, it retains the ease and flexibility of use that made optparse so popular. -WWW: http://code.google.com/p/argparse/ +WWW: http://code.google.com/p/argparse/