Date: Thu, 29 Oct 2015 08:47:18 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400446 - in head/devel: . py-pluggy Message-ID: <201510290847.t9T8lII9021771@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <koobs@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510290847.t9T8lII9021771>