Date: Mon, 12 Oct 2020 10:44:14 +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: r552119 - in head/devel: . py-pop-config Message-ID: <202010121044.09CAiERj071892@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: krion Date: Mon Oct 12 10:44:13 2020 New Revision: 552119 URL: https://svnweb.freebsd.org/changeset/ports/552119 Log: Add devel/py-pop-config Tool for creating configuration options for pop projects https://gitlab.com/saltstack/pop/pop-config Added: head/devel/py-pop-config/ head/devel/py-pop-config/Makefile (contents, props changed) head/devel/py-pop-config/distinfo (contents, props changed) head/devel/py-pop-config/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 12 10:38:09 2020 (r552118) +++ head/devel/Makefile Mon Oct 12 10:44:13 2020 (r552119) @@ -4784,6 +4784,7 @@ SUBDIR += py-poetry-core SUBDIR += py-polib SUBDIR += py-pooch + SUBDIR += py-pop-config SUBDIR += py-portalocker SUBDIR += py-positional SUBDIR += py-posix_ipc Added: head/devel/py-pop-config/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pop-config/Makefile Mon Oct 12 10:44:13 2020 (r552119) @@ -0,0 +1,23 @@ +# Created by: Kirill Ponomarev <krion@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pop-config +PORTVERSION= 6.10 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= krion@FreeBSD.org +COMMENT= Tool for creating configuration options for pop projects + +LICENSE= APACHE20 + +USES= python:3.6+ shebangfix +USE_PYTHON= autoplist distutils + +USE_GITLAB= yes +GL_ACCOUNT= saltstack/pop +GL_COMMIT= cad9566d80253d6a2b7a5b7e2b1e0a8e690ca00b + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-pop-config/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pop-config/distinfo Mon Oct 12 10:44:13 2020 (r552119) @@ -0,0 +1,3 @@ +TIMESTAMP = 1602264897 +SHA256 (saltstack/pop-pop-config-cad9566d80253d6a2b7a5b7e2b1e0a8e690ca00b_GL0.tar.gz) = 7b9a1c2161d006ee113c27cb98c11963a1cb3cd66bf07c5a3f6b7f18afca0e12 +SIZE (saltstack/pop-pop-config-cad9566d80253d6a2b7a5b7e2b1e0a8e690ca00b_GL0.tar.gz) = 26710 Added: head/devel/py-pop-config/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pop-config/pkg-descr Mon Oct 12 10:44:13 2020 (r552119) @@ -0,0 +1,23 @@ +Pop-config is the official tool to allow for creating and app-merging +configuration options for pop projects. Plugin Oriented Programming +presents a means to merge multiple applications together dynamically. +This capabilities requires that the startup of these applications needs +to be managed from within the programming paradigm. Since this is the case +pop-config becomes a critical and hard requirement of pop. + +Pop-config is not just about being able to work with pop projects +to facilitate app-merging, it has also been designed to make the startup +of an application much simpler, and to make the expensive boiler plate +of startup and configuration as transparent as possible. When making +pop projects the idea is that projects are developed in very small +chunks and are then dynamically merged together. So the creation of +these mergeable apps needs to be quick and easy! + +Pop-config also solves a problem with configuration of applications, +when making a new application, if you want robust configuration +loading, you need to be able to take options from the command line, +environment variables, and configuration files. Pop-config does all +of this for you, and loads them in the correct order, all behind the +scenes, making your life easier. + +WWW: https://gitlab.com/saltstack/pop/pop-config
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010121044.09CAiERj071892>