From owner-svn-ports-head@FreeBSD.ORG Mon Aug 25 09:44:57 2014 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 25606E21; Mon, 25 Aug 2014 09:44:57 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10FBA369E; Mon, 25 Aug 2014 09:44:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7P9iuSA085855; Mon, 25 Aug 2014 09:44:56 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7P9iuFi085853; Mon, 25 Aug 2014 09:44:56 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201408250944.s7P9iuFi085853@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 25 Aug 2014 09:44:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366047 - head/devel/py-six 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.18-1 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: Mon, 25 Aug 2014 09:44:57 -0000 Author: koobs Date: Mon Aug 25 09:44:56 2014 New Revision: 366047 URL: http://svnweb.freebsd.org/changeset/ports/366047 QAT: https://qat.redports.org/buildarchive/r366047/ Log: devel/py-six: Add LICENSE_FILE and QA entries - Add LICENSE_FILE - Add TEST_DEPENDS and regression-test target - pkg-descr: Strip trailing slash from WWW: URL Modified: head/devel/py-six/Makefile head/devel/py-six/pkg-descr Modified: head/devel/py-six/Makefile ============================================================================== --- head/devel/py-six/Makefile Mon Aug 25 09:43:15 2014 (r366046) +++ head/devel/py-six/Makefile Mon Aug 25 09:44:56 2014 (r366047) @@ -3,6 +3,7 @@ PORTNAME= six PORTVERSION= 1.7.3 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,8 +12,14 @@ MAINTAINER= python@FreeBSD.org COMMENT= Python 2 and 3 compatibility utilities LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest USES= python USE_PYTHON= autoplist concurrent distutils +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v + .include Modified: head/devel/py-six/pkg-descr ============================================================================== --- head/devel/py-six/pkg-descr Mon Aug 25 09:43:15 2014 (r366046) +++ head/devel/py-six/pkg-descr Mon Aug 25 09:44:56 2014 (r366047) @@ -3,4 +3,4 @@ functions for smoothing over the differe with the goal of writing Python code that is compatible on both Python versions. See the documentation for more information on what is provided. -WWW: https://pypi.python.org/pypi/six/ +WWW: https://pypi.python.org/pypi/six