ce55c13d11
This is intended mainly as a support package for code used by Divmod projects, and not as an external library. However, it contains many useful modules and you can feel free to use them! Currently included: * A powerful date/time formatting and import/export class (ExtimeDotTime), for exchanging date and time information between all Python's various ways to interpret objects as times or time deltas. * Tools for managing concurrent asynchronous processes within Twisted. * A metaclass which helps you define classes with explicit states. * A featureful Version class. * A formal system for application of monkey-patches. ok pyr@
39 lines
921 B
Makefile
39 lines
921 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/21 19:06:02 eric Exp $
|
|
|
|
COMMENT= small utility package for Divmod projects
|
|
|
|
VERSION= 0.5.9
|
|
DISTNAME= Epsilon-${VERSION}
|
|
PKGNAME= py-epsilon-${VERSION}
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://divmod.org/trac/wiki/DivmodEpsilon
|
|
|
|
MAINTAINER= Eric Faurot <eric@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://ekyo.nerim.net/distfiles/
|
|
|
|
MODULES= lang/python
|
|
|
|
BUILD_DEPENDS= :py-twisted-core-*:devel/py-twisted/core
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
REGRESS_DEPENDS=${RUN_DEPENDS} \
|
|
:py-tz-*:devel/py-tz
|
|
|
|
MODPY_EGG_VERSION=${VERSION}
|
|
MODPY_DISTUTILS_BUILD= build --build-base=${WRKSRC}/.build
|
|
|
|
TRIALDIR= ${WRKDIR}/trial
|
|
do-regress: install
|
|
mkdir -m 0777 ${TRIALDIR} && cd ${TRIALDIR} && ${SUDO} su -m nobody -c \
|
|
"${LOCALBASE}/bin/trial ${MODPY_SITEPKG}/epsilon/test"
|
|
|
|
.include <bsd.port.mk>
|