From owner-svn-ports-head@freebsd.org Sat Jun 2 17:35:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93D3AFD5A9B; Sat, 2 Jun 2018 17:35:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 401696E3EE; Sat, 2 Jun 2018 17:35:27 +0000 (UTC) (envelope-from miwi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 21DEE12E6A; Sat, 2 Jun 2018 17:35:27 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w52HZRvA082660; Sat, 2 Jun 2018 17:35:27 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w52HZQDk082655; Sat, 2 Jun 2018 17:35:26 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201806021735.w52HZQDk082655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 2 Jun 2018 17:35:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471384 - in head/devel: . py-pluginbase X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/devel: . py-pluginbase X-SVN-Commit-Revision: 471384 X-SVN-Commit-Repository: ports 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.26 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: Sat, 02 Jun 2018 17:35:27 -0000 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 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