pkgsrc/databases/py-cassandra-driver/Makefile

30 lines
932 B
Makefile
Raw Normal View History

databases/py-cassandra-driver: Update to 3.14.0. 3.14.0 ====== Features -------- - Add one() function to the ResultSet API - Create an utility function to fetch concurrently many keys from the same replica - Allow filter queries with fields that have an index managed outside of cqlengine - Twisted SSL Support - Support IS NOT NULL operator in cqlengine Other ----- - Fix Broken Links in Docs - Reevaluate MONKEY_PATCH_LOOP in test codebase - Remove CASS_SERVER_VERSION and replace it for CASSANDRA_VERSION in tests - Refactor CASSANDRA_VERSION to a some kind of version object - Log warning when driver configures an authenticator, but server does not request authentication - Warn users when using the deprecated Session.default_consistency_level - Add DSE smoke test to OSS driver tests - Document long compilation times and workarounds - Improve error for batch WriteTimeouts - Deprecate ResultSet indexing 3.13.0 ====== Features -------- - cqlengine: LIKE filter operator - Support cassandra.query.BatchType with cqlengine BatchQuery Bug Fixes --------- - AttributeError: 'NoneType' object has no attribute 'add_timer' - Support retry_policy in PreparedStatement - __del__ method in Session is throwing an exception - LZ4 import issue with recent versions - ResponseFuture._connection can be None when returning request_id - ResultSet.was_applied doesn't support batch with LWT statements Other ----- - cqlengine: avoid warning when unregistering connection on shutdown - Fix DeprecationWarning of log.warn - Fix example_mapper.py for python3 - Possible deadlock on cassandra.concurrent.execute_concurrent - Add some known deprecated warnings for 4.x - Remove copyright dates from copyright notices - Remove "Experimental" tag from execution profiles documentation - request_timer metrics descriptions are slightly incorrect - Remove "Experimental" tag from cqlengine connections documentation - Set in documentation default consistency for operations is LOCAL_ONE
2018-04-18 09:30:53 +02:00
# $NetBSD: Makefile,v 1.24 2018/04/18 07:30:53 fhajny Exp $
databases/py-cassandra-driver: Update to 3.14.0. 3.14.0 ====== Features -------- - Add one() function to the ResultSet API - Create an utility function to fetch concurrently many keys from the same replica - Allow filter queries with fields that have an index managed outside of cqlengine - Twisted SSL Support - Support IS NOT NULL operator in cqlengine Other ----- - Fix Broken Links in Docs - Reevaluate MONKEY_PATCH_LOOP in test codebase - Remove CASS_SERVER_VERSION and replace it for CASSANDRA_VERSION in tests - Refactor CASSANDRA_VERSION to a some kind of version object - Log warning when driver configures an authenticator, but server does not request authentication - Warn users when using the deprecated Session.default_consistency_level - Add DSE smoke test to OSS driver tests - Document long compilation times and workarounds - Improve error for batch WriteTimeouts - Deprecate ResultSet indexing 3.13.0 ====== Features -------- - cqlengine: LIKE filter operator - Support cassandra.query.BatchType with cqlengine BatchQuery Bug Fixes --------- - AttributeError: 'NoneType' object has no attribute 'add_timer' - Support retry_policy in PreparedStatement - __del__ method in Session is throwing an exception - LZ4 import issue with recent versions - ResponseFuture._connection can be None when returning request_id - ResultSet.was_applied doesn't support batch with LWT statements Other ----- - cqlengine: avoid warning when unregistering connection on shutdown - Fix DeprecationWarning of log.warn - Fix example_mapper.py for python3 - Possible deadlock on cassandra.concurrent.execute_concurrent - Add some known deprecated warnings for 4.x - Remove copyright dates from copyright notices - Remove "Experimental" tag from execution profiles documentation - request_timer metrics descriptions are slightly incorrect - Remove "Experimental" tag from cqlengine connections documentation - Set in documentation default consistency for operations is LOCAL_ONE
2018-04-18 09:30:53 +02:00
DISTNAME= python-driver-3.14.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.27:../../devel/py-cython
DEPENDS+= ${PYPKGPREFIX}-six>=1.9:../../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"