37fb153853
Features -------- - Add idle_heartbeat_timeout cluster option to tune how long to wait for heartbeat responses. - Add HostFilterPolicy Bug Fixes --------- - is_idempotent flag is not propagated from PreparedStatement to BoundStatement - Fix asyncore hang on exit - Driver takes several minutes to remove a bad host from session - Installation doesn't always fall back to no cython in Windows - Avoid to replace a connection that is supposed to shutdown - request_ids may not be returned to the pool - Fix murmur3 on big-endian systems - Ensure unused connections are closed if a Session is deleted by the GC - Fix .values_list by using db names internally (cqlengine) Other ----- - Bump Cython dependency version to 0.25.2 - Fix DeprecationWarning when using lz4 - Deprecate WhiteListRoundRobinPolicy - Improve upgrade guide for materializing pages - Documentation for time/date specifies timestamp inupt as microseconds - Point to DSA Slack, not IRC, in docs index
29 lines
932 B
Makefile
29 lines
932 B
Makefile
# $NetBSD: Makefile,v 1.22 2017/08/02 15:32:48 fhajny Exp $
|
|
|
|
DISTNAME= python-driver-3.11.0
|
|
PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}-cassandra/}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=datastax/}
|
|
GITHUB_PROJECT= python-driver
|
|
|
|
MAINTAINER= filip@joyent.com
|
|
HOMEPAGE= https://github.com/datastax/python-driver/
|
|
COMMENT= DataStax Python Driver for Apache Cassandra
|
|
LICENSE= apache-2.0
|
|
|
|
EGG_NAME= cassandra_driver-${PKGVERSION_NOREV}
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-cython>=0.20:../../devel/py-cython
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.6:../../lang/py-six
|
|
.if ${_PYTHON_VERSION} == 27
|
|
DEPENDS+= ${PYPKGPREFIX}-futures-[0-9]*:../../devel/py-futures
|
|
.endif
|
|
|
|
# Remove if upstream stops being obsessive about Cython version
|
|
MAKE_ENV+= CASS_DRIVER_ALLOWED_CYTHON_VERSION=0.*
|
|
|
|
.include "../../devel/libev/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|