diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-06-14 17:18:46 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-06-14 17:18:46 +0800 |
commit | 056b19a7bb79417ff26f28e5dae6a3f160de10ea (patch) | |
tree | b0418cb8f2fe2ae72dd06c639d6f448b911a462c /devel | |
parent | 858461d91c7ee187c0fe97885ab1e7020d44f6fc (diff) | |
download | freebsd-ports-gnome-056b19a7bb79417ff26f28e5dae6a3f160de10ea.tar.gz freebsd-ports-gnome-056b19a7bb79417ff26f28e5dae6a3f160de10ea.tar.zst freebsd-ports-gnome-056b19a7bb79417ff26f28e5dae6a3f160de10ea.zip |
- Add py-configargparse 0.9.3
ConfigArgParse is a drop-in replacement for argparse that allows options to
also be set via config files and/or environment variables.
WWW: https://pypi.python.org/pypi/ConfigArgParse
WWW: https://github.com/bw2/ConfigArgParse
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-configargparse/Makefile | 20 | ||||
-rw-r--r-- | devel/py-configargparse/distinfo | 2 | ||||
-rw-r--r-- | devel/py-configargparse/pkg-descr | 5 |
4 files changed, 28 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index baceb05d703e..50c89db9197a 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3811,6 +3811,7 @@ SUBDIR += py-colorama SUBDIR += py-colorlog SUBDIR += py-conditional + SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser SUBDIR += py-construct diff --git a/devel/py-configargparse/Makefile b/devel/py-configargparse/Makefile new file mode 100644 index 000000000000..81188a95eb92 --- /dev/null +++ b/devel/py-configargparse/Makefile @@ -0,0 +1,20 @@ +# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= configargparse +PORTVERSION= 0.9.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ConfigArgParse-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Drop-in replacement for argparse + +LICENSE= MIT + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python + +.include <bsd.port.mk> diff --git a/devel/py-configargparse/distinfo b/devel/py-configargparse/distinfo new file mode 100644 index 000000000000..2c8a7f3e33a3 --- /dev/null +++ b/devel/py-configargparse/distinfo @@ -0,0 +1,2 @@ +SHA256 (ConfigArgParse-0.9.3.tar.gz) = 141c57112e1f8eb7e594a9820e95af897a7fa2d186cef5cff7e08cb3f7252829 +SIZE (ConfigArgParse-0.9.3.tar.gz) = 18983 diff --git a/devel/py-configargparse/pkg-descr b/devel/py-configargparse/pkg-descr new file mode 100644 index 000000000000..eb97e191a04b --- /dev/null +++ b/devel/py-configargparse/pkg-descr @@ -0,0 +1,5 @@ +ConfigArgParse is a drop-in replacement for argparse that allows options to +also be set via config files and/or environment variables. + +WWW: https://pypi.python.org/pypi/ConfigArgParse +WWW: https://github.com/bw2/ConfigArgParse |