svn commit: r491360 - in head/devel: . py-easyconfig

Kubilay Kocak koobs at FreeBSD.org
Mon Jan 28 02:29:49 UTC 2019


On 28/01/2019 2:44 am, Steve Wills wrote:
> Author: swills
> Date: Sun Jan 27 15:44:14 2019
> New Revision: 491360
> URL: https://svnweb.freebsd.org/changeset/ports/491360
> 
> Log:
>    devel/py-easyconfig: create port
>    
>    A simple library for loading configurations easily in Python,
>    inspired by `flask.config`.
>    
>    WWW: https://github.com/RussellLuo/easyconfig
>    
>    PR:		234880
>    Submitted by:	Antonio Huete Jimenez <tuxillo at quantumachine.net>
> 
> Added:
>    head/devel/py-easyconfig/
>    head/devel/py-easyconfig/Makefile   (contents, props changed)
>    head/devel/py-easyconfig/distinfo   (contents, props changed)
>    head/devel/py-easyconfig/pkg-descr   (contents, props changed)
> Modified:
>    head/devel/Makefile   (contents, props changed)
> 
> Modified: head/devel/Makefile
> ==============================================================================
> --- head/devel/Makefile	Sun Jan 27 15:37:13 2019	(r491359)
> +++ head/devel/Makefile	Sun Jan 27 15:44:14 2019	(r491360)
> @@ -4541,6 +4541,7 @@
>       SUBDIR += py-dtfabric
>       SUBDIR += py-durus
>       SUBDIR += py-dynrules
> +    SUBDIR += py-easyconfig
>       SUBDIR += py-easyprocess
>       SUBDIR += py-editdistance
>       SUBDIR += py-efilter
> 
> Added: head/devel/py-easyconfig/Makefile
> ==============================================================================
> --- /dev/null	00:00:00 1970	(empty, because file is newly added)
> +++ head/devel/py-easyconfig/Makefile	Sun Jan 27 15:44:14 2019	(r491360)
> @@ -0,0 +1,23 @@
> +# $FreeBSD$
> +
> +PORTNAME=	easyconfig
> +PORTVERSION=	0.1.7

This looks like https://pypi.org/project/Python-EasyConfig/

easyconfig is a different, already registered package:

https://pypi.org/project/easyconfig/

> +CATEGORIES=	devel python
> +PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
> +DISTVERSIONPREFIX=	v
> +
> +MAINTAINER=	python at FreeBSD.org

While python is willing the maintain python ports in most cases 
especially if asked, as a fallback, or when maintainership is dropped, 
new ports should generally be maintained by the person submitting them .

> +COMMENT=	Library for loading configurations easily in Python

> +USE_GITHUB=	yes
> +GH_ACCOUNT=	RussellLuo
> +
> +.include <bsd.port.mk>
> 
> Added: head/devel/py-easyconfig/distinfo
> ==============================================================================
> --- /dev/null	00:00:00 1970	(empty, because file is newly added)
> +++ head/devel/py-easyconfig/distinfo	Sun Jan 27 15:44:14 2019	(r491360)
> @@ -0,0 +1,3 @@
> +TIMESTAMP = 1548603424
> +SHA256 (RussellLuo-easyconfig-v0.1.7_GH0.tar.gz) = 85d1b883c429c45f04258834970ae1a7e3fb5a7f0b133b02bcd2785115e1ae28
> +SIZE (RussellLuo-easyconfig-v0.1.7_GH0.tar.gz) = 5496
> 
> Added: head/devel/py-easyconfig/pkg-descr
> ==============================================================================
> --- /dev/null	00:00:00 1970	(empty, because file is newly added)
> +++ head/devel/py-easyconfig/pkg-descr	Sun Jan 27 15:44:14 2019	(r491360)
> @@ -0,0 +1,4 @@
> +A simple library for loading configurations easily in Python,
> +inspired by `flask.config`.
> +
> +WWW: https://github.com/RussellLuo/easyconfig
> 



More information about the svn-ports-head mailing list