55797c3ae9
Python module that implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option. ok aja@
28 lines
540 B
Makefile
28 lines
540 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/09/29 10:25:57 jasper Exp $
|
|
|
|
PKG_ARCH = *
|
|
|
|
COMMENT = ISO 8601 date/time/duration parser and formater
|
|
|
|
MODPY_EGG_VERSION = 0.4.8
|
|
DISTNAME = isodate-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://pypi.python.org/pypi/isodate/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=i/isodate/}
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
.include <bsd.port.mk>
|