diff options
author | araujo <araujo@FreeBSD.org> | 2009-05-13 18:42:12 +0800 |
---|---|---|
committer | araujo <araujo@FreeBSD.org> | 2009-05-13 18:42:12 +0800 |
commit | a8b21551d7f9f3646a563321a63178c19937f740 (patch) | |
tree | c1c3ab7e28a720335386b75ad60642b0b6e53fff | |
parent | 022eb02e9d8ba1a4852647a015f22e3ae0404e42 (diff) | |
download | freebsd-ports-graphics-a8b21551d7f9f3646a563321a63178c19937f740.tar.gz freebsd-ports-graphics-a8b21551d7f9f3646a563321a63178c19937f740.tar.zst freebsd-ports-graphics-a8b21551d7f9f3646a563321a63178c19937f740.zip |
YDbf is a library for reading/writing DBF-files (aka XBase) in pythonic way.
WWW: http://www.pyobject.ru/projects/YDbf
PR: ports/134461
Submitted by: Andrey Polyakov <andrey@polyakov.name>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-ydbf/Makefile | 26 | ||||
-rw-r--r-- | devel/py-ydbf/distinfo | 3 | ||||
-rw-r--r-- | devel/py-ydbf/pkg-descr | 3 |
4 files changed, 33 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 878476885c2..5f4db615639 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2437,6 +2437,7 @@ SUBDIR += py-xdg SUBDIR += py-xoltar-toolkit SUBDIR += py-yaml + SUBDIR += py-ydbf SUBDIR += py-zconfig SUBDIR += py-zopeInterface SUBDIR += py-zopetesting diff --git a/devel/py-ydbf/Makefile b/devel/py-ydbf/Makefile new file mode 100644 index 00000000000..310ea394a6e --- /dev/null +++ b/devel/py-ydbf/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: ydbf +# Date created: 10 May 2009 +# Whom: Andrey Polyakov <andrey.polyakov@unix.net> +# +# $FreeBSD$ +# + +PORTNAME= ydbf +PORTVERSION= 0.0.1 +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_CHEESESHOP} +MASTER_SITE_SUBDIR= source/Y/YDbf/ +DISTNAME= YDbf-0.0.1dev-20080514 + +MAINTAINER= andrey.polyakov@unix.net +COMMENT= Yelded DBF reader/writer for Python + +BUILD_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools + +PLIST_FILES= lib/${PYTHON_VERSION}/site-packages/YDbf-0.0.1dev_20080514-py2.5.egg + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_NOEGGINFO= yes + +.include <bsd.port.mk> diff --git a/devel/py-ydbf/distinfo b/devel/py-ydbf/distinfo new file mode 100644 index 00000000000..fa4087048cb --- /dev/null +++ b/devel/py-ydbf/distinfo @@ -0,0 +1,3 @@ +MD5 (YDbf-0.0.1dev-20080514.tar.gz) = 10e5d68a5946d664cfd5dea17d422c79 +SHA256 (YDbf-0.0.1dev-20080514.tar.gz) = b36713333a9b2e185e463221d25a9c72c0565cf48ede58e617d96db391117adc +SIZE (YDbf-0.0.1dev-20080514.tar.gz) = 9590 diff --git a/devel/py-ydbf/pkg-descr b/devel/py-ydbf/pkg-descr new file mode 100644 index 00000000000..214cc916bda --- /dev/null +++ b/devel/py-ydbf/pkg-descr @@ -0,0 +1,3 @@ +YDbf is a library for reading/writing DBF-files (aka XBase) in pythonic way. + +WWW: http://www.pyobject.ru/projects/YDbf |