svn commit: r400446 - in head/devel: . py-pluggy

Kubilay Kocak koobs at FreeBSD.org
Thu Oct 29 08:47:20 UTC 2015


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pluggy
+PORTVERSION=	0.3.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs at 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


More information about the svn-ports-all mailing list