Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Jun 2018 17:35:26 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471384 - in head/devel: . py-pluginbase
Message-ID:  <201806021735.w52HZQDk082655@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806021735.w52HZQDk082655>