a7d6f80d6a
3.6.1 (2014-01-13) ------------------ - Open text files referenced by setup.py as utf-8, no matter what the locale settings are set to. Fixes #122. [sochotnicky] - Add tox.ini to source tarball, which simplifies testing for in distributions. [sochotnicky] 3.6 (2014-01-06) ---------------- - Python3 (3.3+) + Python 2 (2.6+) support [geier] - Made sure to_ical() always returns bytes [geier] - Support adding lists to a component property, which value already was a list and remove the Component.set method, which was only used by the add method. [thet] - Remove ability to add property parameters via a value's params attribute when adding via cal.add (that was only possible for custom value objects and makes up a strange API), but support a parameter attribute on cal.add's method signature to pass a dictionary with property parameter key/value pairs. Fixes #116. [thet] - Backport some of Regebro's changes from his regebro-refactor branch. [thet] - Raise explicit error on another malformed content line case. [hajdbo] - Correctly parse datetime component property values with timezone information when parsed from ical strings. [untitaker]
21 lines
631 B
Makefile
21 lines
631 B
Makefile
# $NetBSD: Makefile,v 1.17 2014/01/19 09:12:17 wiz Exp $
|
|
|
|
DISTNAME= icalendar-3.6.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= time python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/i/icalendar/
|
|
|
|
MAINTAINER= mj@turner.org.za
|
|
HOMEPAGE= http://icalendar.readthedocs.org/en/latest/
|
|
COMMENT= Python parser/generator for iCalendar files, as per RFC2445
|
|
LICENSE= 2-clause-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES= dateutil
|
|
|
|
USE_LANGUAGES= # empty
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|