From owner-svn-ports-all@freebsd.org Sun Dec 27 06:03:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86D9CA4DC91; Sun, 27 Dec 2015 06:03:35 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 484111FED; Sun, 27 Dec 2015 06:03:35 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBR63YIa026216; Sun, 27 Dec 2015 06:03:34 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBR63YNp026213; Sun, 27 Dec 2015 06:03:34 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201512270603.tBR63YNp026213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 27 Dec 2015 06:03:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404548 - head/devel/py-pytest-xdist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Dec 2015 06:03:35 -0000 Author: koobs Date: Sun Dec 27 06:03:33 2015 New Revision: 404548 URL: https://svnweb.freebsd.org/changeset/ports/404548 Log: devel/py-pytest-xdist: Update to 1.13.1 - Update PORTVERSION and distinfo checksum (1.13.1) - Match COMMENT to setup.py:description - Enable 'concurrent' Python support - Add NO_ARCH - Update test target to new conventions - Remove __pycache__ from WRKSRC/testing - Update pkg-descr WWW: URL to match next version and new repo URL Changes: https://github.com/pytest-dev/pytest-xdist/blob/v1.13.1/CHANGELOG Modified: head/devel/py-pytest-xdist/Makefile head/devel/py-pytest-xdist/distinfo head/devel/py-pytest-xdist/pkg-descr Modified: head/devel/py-pytest-xdist/Makefile ============================================================================== --- head/devel/py-pytest-xdist/Makefile Sun Dec 27 05:36:23 2015 (r404547) +++ head/devel/py-pytest-xdist/Makefile Sun Dec 27 06:03:33 2015 (r404548) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= pytest-xdist -PORTVERSION= 1.12 +PORTVERSION= 1.13.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Py.test plugin for distributed testing +COMMENT= Py.test plugin for distributed testing and loop-on-failing modes LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE @@ -20,9 +20,14 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyt ${PYTHON_PKGNAMEPREFIX}pexpect>0:${PORTSDIR}/misc/py-pexpect USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils -regression-test: build - @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest +NO_ARCH= yes + +post-extract: + ${RM} -rf ${WRKSRC}/testing/__pycache__ + +do-test: + @cd ${WRKSRC} && py.test .include Modified: head/devel/py-pytest-xdist/distinfo ============================================================================== --- head/devel/py-pytest-xdist/distinfo Sun Dec 27 05:36:23 2015 (r404547) +++ head/devel/py-pytest-xdist/distinfo Sun Dec 27 06:03:33 2015 (r404548) @@ -1,2 +1,2 @@ -SHA256 (pytest-xdist-1.12.tar.gz) = 1e696df146e62564fef2f0a7dabdd2d8f690fe6d68cb7aab0a1a4bd99e041580 -SIZE (pytest-xdist-1.12.tar.gz) = 39123 +SHA256 (pytest-xdist-1.13.1.tar.gz) = 4382d7a944c1e2b1dc17fee3fd3575495fb10236a3b6e95cc6955db04984bc3c +SIZE (pytest-xdist-1.13.1.tar.gz) = 110007 Modified: head/devel/py-pytest-xdist/pkg-descr ============================================================================== --- head/devel/py-pytest-xdist/pkg-descr Sun Dec 27 05:36:23 2015 (r404547) +++ head/devel/py-pytest-xdist/pkg-descr Sun Dec 27 06:03:33 2015 (r404548) @@ -12,4 +12,4 @@ The pytest-xdist plugin extends py.test * Multi-Platform coverage: you can specify different Python interpreters or different platforms and run tests in parallel on all of them. -WWW: http://bitbucket.org/hpk42/pytest-xdist +WWW: https://github.com/pytest-dev/pytest-xdist