diff options
author | wg <wg@FreeBSD.org> | 2013-10-27 02:50:03 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-10-27 02:50:03 +0800 |
commit | c31319b068f6f751536e460e058b9b986d458887 (patch) | |
tree | abde59b6c0e79c07a8027e7be5a23ec1babd0929 | |
parent | 2f4ff893bcaf787f4eec55442416411040d5dba2 (diff) | |
download | freebsd-ports-gnome-c31319b068f6f751536e460e058b9b986d458887.tar.gz freebsd-ports-gnome-c31319b068f6f751536e460e058b9b986d458887.tar.zst freebsd-ports-gnome-c31319b068f6f751536e460e058b9b986d458887.zip |
devel/py-glob2: Glob that captures patterns and supports recursive wildcards
Version of the glob module that can capture patterns
and supports recursive wildcards.
WWW: http://github.com/miracle2k/python-glob2/
PR: ports/181612
Submitted by: loader <loader freebsdmall.com>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-glob2/Makefile | 20 | ||||
-rw-r--r-- | devel/py-glob2/distinfo | 2 | ||||
-rw-r--r-- | devel/py-glob2/pkg-descr | 4 |
4 files changed, 27 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 6d94c84e520d..f2219e858621 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3555,6 +3555,7 @@ SUBDIR += py-gitdb SUBDIR += py-gitosis SUBDIR += py-gitpython + SUBDIR += py-glob2 SUBDIR += py-gobject SUBDIR += py-gobject3 SUBDIR += py-grab diff --git a/devel/py-glob2/Makefile b/devel/py-glob2/Makefile new file mode 100644 index 000000000000..0bc9b9f90c84 --- /dev/null +++ b/devel/py-glob2/Makefile @@ -0,0 +1,20 @@ +# Created by: loader <loader@freebsdmall.com> +# $FreeBSD$ + +PORTNAME= glob2 +PORTVERSION= 0.4.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= loader@freebsdmall.com +COMMENT= Glob that captures patterns and supports recursive wildcards + +LICENSE= BSD + +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes +NO_STAGE= yes + +.include <bsd.port.mk> diff --git a/devel/py-glob2/distinfo b/devel/py-glob2/distinfo new file mode 100644 index 000000000000..b82f93eef3a3 --- /dev/null +++ b/devel/py-glob2/distinfo @@ -0,0 +1,2 @@ +SHA256 (glob2-0.4.1.tar.gz) = 9974c375c54eb56223643980e724b37fc8efcaeb65fc55045fc521baa5f60175 +SIZE (glob2-0.4.1.tar.gz) = 9124 diff --git a/devel/py-glob2/pkg-descr b/devel/py-glob2/pkg-descr new file mode 100644 index 000000000000..800de13fa6d3 --- /dev/null +++ b/devel/py-glob2/pkg-descr @@ -0,0 +1,4 @@ +Version of the glob module that can capture patterns +and supports recursive wildcards. + +WWW: http://github.com/miracle2k/python-glob2/ |