2d3319bad8
Version 0.6.0 ============= *released on 06 August 2015* - ``password_command`` invocations with non-zero exit code are now fatal (and will abort synchronization) instead of just producing a warning. - Vdirsyncer is now able to synchronize metadata of collections. Set ``metadata = ["displayname"]`` and run ``vdirsyncer metasync``. - **Packagers:** Don't use the GitHub tarballs, but the PyPI ones. - **Packagers:** ``build.sh`` is gone, and ``Makefile`` is included in tarballs. See the content of ``Makefile`` on how to run tests post-packaging. - ``verify_fingerprint`` doesn't automatically disable ``verify`` anymore.
28 lines
1,012 B
Makefile
28 lines
1,012 B
Makefile
# $NetBSD: Makefile,v 1.22 2015/08/14 17:53:33 wiz Exp $
|
|
|
|
DISTNAME= vdirsyncer-0.6.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}-atomicwrites-[0-9]*:../../devel/py-atomicwrites
|
|
DEPENDS+= ${PYPKGPREFIX}-click>=2.0:../../devel/py-click
|
|
DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
|
|
DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
|
|
DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.4.0:../../devel/py-requests-toolbelt
|
|
# optional, but recommended
|
|
DEPENDS+= ${PYPKGPREFIX}-keyring-[0-9]*:../../security/py-keyring
|
|
|
|
USE_LANGUAGES= # none
|
|
INSTALLATION_DIRS= share/examples/${PKGBASE}
|
|
PLIST_SUBST+= PKGBASE=${PKGBASE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|