Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 2020 10:45:13 +0000 (UTC)
From:      Kirill Ponomarev <krion@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r552120 - in head/devel: . py-pop
Message-ID:  <202010121045.09CAjDIT072104@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: krion
Date: Mon Oct 12 10:45:12 2020
New Revision: 552120
URL: https://svnweb.freebsd.org/changeset/ports/552120

Log:
  Add devel/py-pop
  
  Plugin Oriented Programming interface for Python
  
  https://pop.readthedocs.io

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Oct 12 10:44:13 2020	(r552119)
+++ head/devel/Makefile	Mon Oct 12 10:45:12 2020	(r552120)
@@ -4784,6 +4784,7 @@
     SUBDIR += py-poetry-core
     SUBDIR += py-polib
     SUBDIR += py-pooch
+    SUBDIR += py-pop
     SUBDIR += py-pop-config
     SUBDIR += py-portalocker
     SUBDIR += py-positional

Added: head/devel/py-pop/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pop/Makefile	Mon Oct 12 10:45:12 2020	(r552120)
@@ -0,0 +1,30 @@
+# Created by: Kirill Ponomarev <krion@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=		pop
+PORTVERSION=	14
+CATEGORIES=		devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	krion@FreeBSD.org
+COMMENT=	Plugin Oriented Programming interface for Python
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}aiofiles>=0:devel/py-aiofiles@${PY_FLAVOR} \
+				${PYTHON_PKGNAMEPREFIX}aiologger>=0:devel/py-aiologger@${PY_FLAVOR} \
+				${PYTHON_PKGNAMEPREFIX}msgpack>=0:devel/py-msgpack@${PY_FLAVOR} \
+				${PYTHON_PKGNAMEPREFIX}dict-toolbox>=0:sysutils/py-dict-toolbox@${PY_FLAVOR} \
+				${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \
+				${PYTHON_PKGNAMEPREFIX}pop-config>0:devel/py-pop-config@${PY_FLAVOR}
+
+USES=		python:3.6+ shebangfix
+USE_PYTHON=	autoplist distutils
+
+USE_GITLAB=	yes
+GL_ACCOUNT=	saltstack/pop
+GL_COMMIT=	d7b457b5fdee7f6feb0fe8f19a34633b4ec9992a
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pop/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pop/distinfo	Mon Oct 12 10:45:12 2020	(r552120)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1602275298
+SHA256 (saltstack/pop-pop-d7b457b5fdee7f6feb0fe8f19a34633b4ec9992a_GL0.tar.gz) = 48292d99ec12549579a209fecc2b57448d5f7cbb9284d42a8de3ea792e381d3d
+SIZE (saltstack/pop-pop-d7b457b5fdee7f6feb0fe8f19a34633b4ec9992a_GL0.tar.gz) = 104412

Added: head/devel/py-pop/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pop/pkg-descr	Mon Oct 12 10:45:12 2020	(r552120)
@@ -0,0 +1,15 @@
+Pop is used to express the Plugin Oriented Programming Paradigm. The Plugin
+Oriented Programming Paradigm has been designed to make pluggable software
+easy to write and easy to extend.
+
+Plugin Oriented Programming presents a new way to scale development teams
+and deliver complex software. This is done by making the applications entirely
+out of plugins, and also making the applications themselves natively pluggable
+with each other.
+
+Using Plugin Oriented Programming it then becomes easy to have the best of both
+worlds, software can be build in small pieces, making development easier to
+maintain. But the small pieces can then be merged and deployed in a single
+binary, making code deployment easy as well.
+
+WWW: https://pop.readthedocs.io



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