diff options
author | miwi <miwi@FreeBSD.org> | 2006-11-19 07:50:50 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-11-19 07:50:50 +0800 |
commit | 586af960f17e2786a700dffa35eba156d0232023 (patch) | |
tree | d51d47cb39a871851ed6297a908b26e8e46b910b | |
parent | bb9a269ff095f48e2b84cb7b7c7d33c3517fa9a6 (diff) | |
download | freebsd-ports-gnome-586af960f17e2786a700dffa35eba156d0232023.tar.gz freebsd-ports-gnome-586af960f17e2786a700dffa35eba156d0232023.tar.zst freebsd-ports-gnome-586af960f17e2786a700dffa35eba156d0232023.zip |
ConfigObj is a simple but powerful config file reader and writer: an ini file
round tripper. Its main feature is that it is very easy to use, with a
straightforward programmer's interface and a simple syntax for config file
WWW: http://www.voidspace.org.uk/python/configobj.html
PR: ports/104597
Submitted by: Choe, Cheng-Dae
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-configobj/Makefile | 30 | ||||
-rw-r--r-- | devel/py-configobj/distinfo | 3 | ||||
-rw-r--r-- | devel/py-configobj/pkg-descr | 5 | ||||
-rw-r--r-- | devel/py-configobj/pkg-plist | 7 |
5 files changed, 46 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 6a3a3258f40d..d37651ce2542 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1681,6 +1681,7 @@ SUBDIR += py-cheetah SUBDIR += py-ciphon SUBDIR += py-clientcookie + SUBDIR += py-configobj SUBDIR += py-coro SUBDIR += py-ctypes SUBDIR += py-cxx diff --git a/devel/py-configobj/Makefile b/devel/py-configobj/Makefile new file mode 100644 index 000000000000..7b2a4a9768f8 --- /dev/null +++ b/devel/py-configobj/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: py-configobj +# Date created: 2006-10-20 +# Whom: Choe, Cheng-Dae +# +# $FreeBSD$ +# + +PORTNAME= configobj +PORTVERSION= 4.3.2 +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMEPREFIX= ${PYTHONPKGNAMEPREFIX} + +MAINTAINER= whitekid@gmail.com +COMMENT= Simple but powerful config file reader and writer + +USE_ZIP= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +PORTDOCS= * + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${CP} -r ${WRKSRC}/docs/* ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/devel/py-configobj/distinfo b/devel/py-configobj/distinfo new file mode 100644 index 000000000000..6f9e77bf16aa --- /dev/null +++ b/devel/py-configobj/distinfo @@ -0,0 +1,3 @@ +MD5 (configobj-4.3.2.zip) = d3ecc19bbc3180547432b8d688b384fe +SHA256 (configobj-4.3.2.zip) = 76ea5aaaff71641945f872ed771035770f2c620bfbb179fa9f1d62b512a378a9 +SIZE (configobj-4.3.2.zip) = 270118 diff --git a/devel/py-configobj/pkg-descr b/devel/py-configobj/pkg-descr new file mode 100644 index 000000000000..b95f936bebbb --- /dev/null +++ b/devel/py-configobj/pkg-descr @@ -0,0 +1,5 @@ +ConfigObj is a simple but powerful config file reader and writer: an ini file +round tripper. Its main feature is that it is very easy to use, with a +straightforward programmer's interface and a simple syntax for config file + +WWW: http://www.voidspace.org.uk/python/configobj.html diff --git a/devel/py-configobj/pkg-plist b/devel/py-configobj/pkg-plist new file mode 100644 index 000000000000..dfd95f68a7b9 --- /dev/null +++ b/devel/py-configobj/pkg-plist @@ -0,0 +1,7 @@ +@comment $FreeBSD$ +%%PYTHON_SITELIBDIR%%/configobj.py +%%PYTHON_SITELIBDIR%%/validate.py +%%PYTHON_SITELIBDIR%%/configobj.pyc +%%PYTHON_SITELIBDIR%%/validate.pyc +%%PYTHON_SITELIBDIR%%/configobj.pyo +%%PYTHON_SITELIBDIR%%/validate.pyo |