svn commit: r471384 - in head/devel: . py-pluginbase

Martin Wilke miwi at FreeBSD.org
Sat Jun 2 17:35:27 UTC 2018


Author: miwi
Date: Sat Jun  2 17:35:26 2018
New Revision: 471384
URL: https://svnweb.freebsd.org/changeset/ports/471384

Log:
  PluginBase is a module for Python that enables the development of flexible
  plugin systems in Python.
  
  WWW: https://github.com/mitsuhiko/pluginbase
  
  PR:		228025
  Submitted by:	lantw44 at gmail.com
  Sponsored by:	iXsystems Inc.

Added:
  head/devel/py-pluginbase/
  head/devel/py-pluginbase/Makefile   (contents, props changed)
  head/devel/py-pluginbase/distinfo   (contents, props changed)
  head/devel/py-pluginbase/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jun  2 17:35:00 2018	(r471383)
+++ head/devel/Makefile	Sat Jun  2 17:35:26 2018	(r471384)
@@ -4783,6 +4783,7 @@
     SUBDIR += py-plan
     SUBDIR += py-plex
     SUBDIR += py-pluggy
+    SUBDIR += py-pluginbase
     SUBDIR += py-ply
     SUBDIR += py-podcastparser
     SUBDIR += py-polib

Added: head/devel/py-pluginbase/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pluginbase/Makefile	Sat Jun  2 17:35:26 2018	(r471384)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	pluginbase
+PORTVERSION=	0.5
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lantw44 at gmail.com
+COMMENT=	Support library for building plugins sytems in Python
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pluginbase/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pluginbase/distinfo	Sat Jun  2 17:35:26 2018	(r471384)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1525601490
+SHA256 (pluginbase-0.5.tar.gz) = b4f830242a078a4f44c978a84f3365bba4d008fdd71a591c71447f4df35354dd
+SIZE (pluginbase-0.5.tar.gz) = 41964

Added: head/devel/py-pluginbase/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pluginbase/pkg-descr	Sat Jun  2 17:35:26 2018	(r471384)
@@ -0,0 +1,4 @@
+PluginBase is a module for Python that enables the development of flexible
+plugin systems in Python.
+
+WWW: https://github.com/mitsuhiko/pluginbase


More information about the svn-ports-all mailing list