aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2019-02-23 03:34:33 +0800
committerSteve Wills <swills@FreeBSD.org>2019-02-23 03:34:33 +0800
commite36bf7b2acc07e715c6ac63740b393d118026f19 (patch)
tree6babd1f7bf387a0a8b954939281bc27781b2ff05 /databases
parentbcc81531737b022abf416b0b44deb610ca0673ee (diff)
downloadfreebsd-ports-gnome-e36bf7b2acc07e715c6ac63740b393d118026f19.tar.gz
freebsd-ports-gnome-e36bf7b2acc07e715c6ac63740b393d118026f19.tar.zst
freebsd-ports-gnome-e36bf7b2acc07e715c6ac63740b393d118026f19.zip
databases/py-cassandra-driver: update to 3.17.0
PR: 235899 Submitted by: Sergey Akhmatov <sergey@akhmatov.ru> (maintainer)
Diffstat (limited to 'databases')
-rw-r--r--databases/py-cassandra-driver/Makefile3
-rw-r--r--databases/py-cassandra-driver/distinfo6
-rw-r--r--databases/py-cassandra-driver/files/patch-setup.py11
3 files changed, 4 insertions, 16 deletions
diff --git a/databases/py-cassandra-driver/Makefile b/databases/py-cassandra-driver/Makefile
index 30e04c7ebc0d..eb9fcde14976 100644
--- a/databases/py-cassandra-driver/Makefile
+++ b/databases/py-cassandra-driver/Makefile
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= cassandra-driver
-DISTVERSION= 3.16.0
-PORTREVISION= 0
+DISTVERSION= 3.17.0
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/databases/py-cassandra-driver/distinfo b/databases/py-cassandra-driver/distinfo
index 06cb7580eed9..33e9db375967 100644
--- a/databases/py-cassandra-driver/distinfo
+++ b/databases/py-cassandra-driver/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1542618758
-SHA256 (cassandra-driver-3.16.0.tar.gz) = 42bcb167a90da6604081872ef609a327a63273842da81120fc462de031155abe
-SIZE (cassandra-driver-3.16.0.tar.gz) = 229652
+TIMESTAMP = 1550691903
+SHA256 (cassandra-driver-3.17.0.tar.gz) = 6d42e11fd5879f12b1600e4c0f604e4432f472d030e80176b833c99c9cf989fc
+SIZE (cassandra-driver-3.17.0.tar.gz) = 230053
diff --git a/databases/py-cassandra-driver/files/patch-setup.py b/databases/py-cassandra-driver/files/patch-setup.py
deleted file mode 100644
index bd2f26010fd5..000000000000
--- a/databases/py-cassandra-driver/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig 2018-10-31 06:47:06 UTC
-+++ setup.py
-@@ -395,7 +395,7 @@ def run_setup(extensions):
- # 1.) build_ext eats errors at compile time, letting the install complete while producing useful feedback
- # 2.) there could be a case where the python environment has cython installed but the system doesn't have build tools
- if pre_build_check():
-- cython_dep = 'Cython>=0.20,!=0.25,<0.29'
-+ cython_dep = 'Cython>=0.20,!=0.25,<0.30'
- user_specified_cython_version = os.environ.get('CASS_DRIVER_ALLOWED_CYTHON_VERSION')
- if user_specified_cython_version is not None:
- cython_dep = 'Cython==%s' % (user_specified_cython_version,)