Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Jan 2019 15:44:15 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r491360 - in head/devel: . py-easyconfig
Message-ID:  <201901271544.x0RFiFlg079631@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTVERSIONPREFIX=	v
+
+MAINTAINER=	python@FreeBSD.org
+COMMENT=	Library for loading configurations easily in Python
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yaml>3.10:devel/py-yaml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>1.9.0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+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



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