From owner-svn-ports-head@freebsd.org Thu Oct 29 08:47:20 2015 Return-Path: Delivered-To: svn-ports-head@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 05C7AA206C4; Thu, 29 Oct 2015 08:47:20 +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 AB100106C; Thu, 29 Oct 2015 08:47:19 +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 t9T8lIoA021775; Thu, 29 Oct 2015 08:47:18 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9T8lII9021771; Thu, 29 Oct 2015 08:47:18 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201510290847.t9T8lII9021771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 29 Oct 2015 08:47:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400446 - in head/devel: . py-pluggy 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.20 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: Thu, 29 Oct 2015 08:47:20 -0000 Author: koobs Date: Thu Oct 29 08:47:18 2015 New Revision: 400446 URL: https://svnweb.freebsd.org/changeset/ports/400446 Log: [NEW] devel/py-pluggy: Plugin and hook calling mechanisms for Python This is the plugin manager as used by pytest but stripped of pytest specific details. WWW: https://pypi.python.org/pypi/pluggy Added: head/devel/py-pluggy/ head/devel/py-pluggy/Makefile (contents, props changed) head/devel/py-pluggy/distinfo (contents, props changed) head/devel/py-pluggy/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 29 08:19:56 2015 (r400445) +++ head/devel/Makefile Thu Oct 29 08:47:18 2015 (r400446) @@ -4154,6 +4154,7 @@ SUBDIR += py-pip SUBDIR += py-plan SUBDIR += py-plex + SUBDIR += py-pluggy SUBDIR += py-ply SUBDIR += py-polib SUBDIR += py-posix_ipc Added: head/devel/py-pluggy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pluggy/Makefile Thu Oct 29 08:47:18 2015 (r400446) @@ -0,0 +1,26 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= pluggy +PORTVERSION= 0.3.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Plugin and hook calling mechanisms for Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + +.include Added: head/devel/py-pluggy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pluggy/distinfo Thu Oct 29 08:47:18 2015 (r400446) @@ -0,0 +1,2 @@ +SHA256 (pluggy-0.3.1.tar.gz) = 159cc783e056c07da6552aa5aef6b1e6c0064b4f18bd49c531fd2d40aafb0ea3 +SIZE (pluggy-0.3.1.tar.gz) = 15821 Added: head/devel/py-pluggy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pluggy/pkg-descr Thu Oct 29 08:47:18 2015 (r400446) @@ -0,0 +1,4 @@ +This is the plugin manager as used by pytest but stripped of pytest +specific details. + +WWW: https://pypi.python.org/pypi/pluggy