0dd618da95
Version 0.3.0 ============= *released on 20 September 2014* - Add ``verify_fingerprint`` parameter to :py:class:`vdirsyncer.storage.HttpStorage`, :py:class:`vdirsyncer.storage.CaldavStorage` and :py:class:`vdirsyncer.storage.CarddavStorage`, see issue `#99`_ and pull request `#106`_. - Add ``passwordeval`` parameter to :ref:`general_config`, see issue `#108`_ and pull request `#117`_. - Emit warnings (instead of exceptions) about certain invalid responses from the server, see issue `#113`_. This is apparently required for compatibility with Davmail. .. _`#99`: https://github.com/untitaker/vdirsyncer/issues/99 .. _`#106`: https://github.com/untitaker/vdirsyncer/pull/106 .. _`#108`: https://github.com/untitaker/vdirsyncer/issues/108 .. _`#113`: https://github.com/untitaker/vdirsyncer/issues/113 .. _`#117`: https://github.com/untitaker/vdirsyncer/pull/117
30 lines
1 KiB
Makefile
30 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2014/10/01 12:46:17 wiz Exp $
|
|
|
|
DISTNAME= vdirsyncer-0.3.0
|
|
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"
|