c4d9cb5964
Version 0.3.4 ============= *released on 8 December 2014* - Some more bugfixes to config handling. Version 0.3.3 ============= *released on 8 December 2014* - Vdirsyncer now also works with iCloud. Particularly collection discovery and etag handling were fixed. - Vdirsyncer now encodes Cal- and CardDAV requests differently. This hasn't been well-tested with servers like Zimbra or SoGo, but isn't expected to cause any problems. - Vdirsyncer is now more robust regarding invalid responses from CalDAV servers. This should help with future compatibility with Davmail/Outlook. - Fix a bug when specifying ``item_types`` of :py:class:`vdirsyncer.storage.CaldavStorage` in the deprecated config format. - Fix a bug where vdirsyncer would ignore all but one character specified in ``unsafe_href_chars`` of :py:class:`vdirsyncer.storage.CaldavStorage` and :py:class:`vdirsyncer.storage.CarddavStorage`.
30 lines
1 KiB
Makefile
30 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2014/12/14 15:55:00 wiz Exp $
|
|
|
|
DISTNAME= vdirsyncer-0.3.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= time
|
|
MASTER_SITES= https://pypi.python.org/packages/source/v/vdirsyncer/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://pypi.python.org/pypi/vdirsyncer/
|
|
COMMENT= Synchronization tool for vdir
|
|
LICENSE= mit
|
|
|
|
EXTRACT_USING= bsdtar # gtar cannot handle pre-1970 timestamps
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-click>=2.0:../../devel/py-click
|
|
DEPENDS+= ${PYPKGPREFIX}-icalendar>=3.6:../../time/py-icalendar
|
|
DEPENDS+= ${PYPKGPREFIX}-keyring-[0-9]*:../../security/py-keyring
|
|
DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
|
|
DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
|
|
DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.3.0:../../devel/py-requests-toolbelt
|
|
|
|
USE_LANGUAGES= # none
|
|
INSTALLATION_DIRS= share/example/${PKGBASE}
|
|
PLIST_SUBST+= PKGBASE=${PKGBASE}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/example.cfg ${DESTDIR}${PREFIX}/share/example/${PKGBASE}/
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|