diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-11-02 03:32:35 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-11-02 03:32:35 +0000 |
commit | 20d35c085e0f6a90bdd703002a42289fcba785d2 (patch) | |
tree | d289d0bfc90d6d5212fce317a291b521c58d594b /devel | |
parent | b28f03d710acfddef6800054575b092aabfaee92 (diff) | |
download | FreeBSD-ports-20d35c085e0f6a90bdd703002a42289fcba785d2.zip FreeBSD-ports-20d35c085e0f6a90bdd703002a42289fcba785d2.tar.gz |
add py-fileutils
File I/O related functions and classes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-fileutils/Makefile | 28 | ||||
-rw-r--r-- | devel/py-fileutils/distinfo | 1 | ||||
-rw-r--r-- | devel/py-fileutils/pkg-comment | 1 | ||||
-rw-r--r-- | devel/py-fileutils/pkg-descr | 3 | ||||
-rw-r--r-- | devel/py-fileutils/pkg-plist | 2 |
6 files changed, 36 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 780f404..e9e9b8c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -463,6 +463,7 @@ SUBDIR += py-ansistyle SUBDIR += py-coro SUBDIR += py-cxx + SUBDIR += py-fileutils SUBDIR += py-game SUBDIR += py-grouch SUBDIR += py-htmlkit diff --git a/devel/py-fileutils/Makefile b/devel/py-fileutils/Makefile new file mode 100644 index 0000000..9ff3c29 --- /dev/null +++ b/devel/py-fileutils/Makefile @@ -0,0 +1,28 @@ +# ex:ts=8 +# New ports collection makefile for: py-fileutils +# Date created: Nov 2, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= fileutils +PORTVERSION= 0.4 +CATEGORIES= devel python +MASTER_SITES= ftp://ftp.livinglogic.de/pub/livinglogic/fileutils/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= FileUtils-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org + +USE_PYTHON= yes + +SETUP_CMD= cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py + +do-build: + @${SETUP_CMD} build + +do-install: + @${SETUP_CMD} install + +.include <bsd.port.mk> diff --git a/devel/py-fileutils/distinfo b/devel/py-fileutils/distinfo new file mode 100644 index 0000000..e53cdde --- /dev/null +++ b/devel/py-fileutils/distinfo @@ -0,0 +1 @@ +MD5 (FileUtils-0.4.tar.gz) = a1455447799d54b342984eb24cc2b749 diff --git a/devel/py-fileutils/pkg-comment b/devel/py-fileutils/pkg-comment new file mode 100644 index 0000000..1a33797 --- /dev/null +++ b/devel/py-fileutils/pkg-comment @@ -0,0 +1 @@ +File I/O related functions and classes diff --git a/devel/py-fileutils/pkg-descr b/devel/py-fileutils/pkg-descr new file mode 100644 index 0000000..27921d8 --- /dev/null +++ b/devel/py-fileutils/pkg-descr @@ -0,0 +1,3 @@ +File I/O related functions and classes. + +WWW: http://www.livinglogic.de/Python/fileutils/ diff --git a/devel/py-fileutils/pkg-plist b/devel/py-fileutils/pkg-plist new file mode 100644 index 0000000..8a9ab8c --- /dev/null +++ b/devel/py-fileutils/pkg-plist @@ -0,0 +1,2 @@ +lib/%%PYTHON_VERSION%%/site-packages/fileutils.py +lib/%%PYTHON_VERSION%%/site-packages/fileutils.pyc |