pkgsrc/textproc/py-vobject/Makefile
wiz 22dab1a442 Updated py-vobject to 0.9.4.
0.9.4

    improved PEP8 compliance (#53)
    improved Python 3 compatibility (#55)
    improved encoding/decoding (#49, #58) - thanks @pbiering!
    correct handling of pytz timezones (#45) - thanks @Achimh3011!

0.9.3

    Fixed use of doc in setup.py for -OO mode (#19) - thanks @dsanders11!
    Added python3 compatibility for base64 encoding (#21) - thanks @prauscher!
    Fixed ORG fields with multiple components (#23) - thanks @untitaker!
    Removed stray HTML entity in README (#26) - thanks @inglesp!
    Updated README.md to show example of adding "ORG" to a vCard (#28) - thanks @Tamerz!
    Handle pytz timezones in iCalendar serialization (#33) - thanks @medmunds!
    Use logging instead of printing to stdout (#35) - thanks @lucc!
2017-01-20 22:38:29 +00:00

25 lines
726 B
Makefile

# $NetBSD: Makefile,v 1.22 2017/01/20 22:38:29 wiz Exp $
DISTNAME= vobject-0.9.4
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= textproc python
MASTER_SITES= ${MASTER_SITE_PYPI:=v/vobject/}
MAINTAINER= kleink@NetBSD.org
HOMEPAGE= https://eventable.github.io/vobject/
COMMENT= Python iCalendar (ics) and vCard library
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} change_tz change_tz-${PYVERSSUFFIX} && \
${MV} ics_diff ics_diff-${PYVERSSUFFIX} || ${TRUE}
do-test:
cd ${WRKSRC} && ${PYTHONBIN} tests.py
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"