summaryrefslogtreecommitdiff
path: root/databases/py-pymssql/files
diff options
context:
space:
mode:
authorCraig Leres <leres@FreeBSD.org>2019-04-04 19:37:22 +0000
committerCraig Leres <leres@FreeBSD.org>2019-04-04 19:37:22 +0000
commit034a5e43aa36446aa8fc1849b439e804a47c8404 (patch)
treefcbec7199e51c81af566f8c213aaa05fd5bf2774 /databases/py-pymssql/files
parentAs suggested in PR 497755: adopt this port. (diff)
databases/py-pymssql: Update to 2.1.4 and unbreak Python 3 build.
PR: 236998 Submitted by: Henrik Hudson Approved by: Henrik Hudson (maintainer), ler (mentor, implicit)
Notes
Notes: svn path=/head/; revision=497863
Diffstat (limited to 'databases/py-pymssql/files')
-rw-r--r--databases/py-pymssql/files/patch-__mssql.pyx16
-rw-r--r--databases/py-pymssql/files/patch-sqlfront.pxd10
2 files changed, 0 insertions, 26 deletions
diff --git a/databases/py-pymssql/files/patch-__mssql.pyx b/databases/py-pymssql/files/patch-__mssql.pyx
deleted file mode 100644
index 28a1732da585..000000000000
--- a/databases/py-pymssql/files/patch-__mssql.pyx
+++ /dev/null
@@ -1,16 +0,0 @@
---- _mssql.pyx.orig 2014-10-24 22:03:00 UTC
-+++ _mssql.pyx
-@@ -1677,12 +1677,10 @@ cdef int _tds_ver_str_to_constant(verstr
- return DBVERSION_42
- if verstr == u'7.0':
- return DBVERSION_70
-- if verstr == u'7.1':
-+ if verstr in (u'7.1', u'8.0'):
- return DBVERSION_71
- if verstr == u'7.2':
- return DBVERSION_72
-- if verstr == u'8.0':
-- return DBVERSION_80
- raise MSSQLException('unrecognized tds version: %s' % verstr)
-
- #######################
diff --git a/databases/py-pymssql/files/patch-sqlfront.pxd b/databases/py-pymssql/files/patch-sqlfront.pxd
deleted file mode 100644
index 896fb07854e8..000000000000
--- a/databases/py-pymssql/files/patch-sqlfront.pxd
+++ /dev/null
@@ -1,10 +0,0 @@
---- sqlfront.pxd.orig 2014-08-29 22:32:11 UTC
-+++ sqlfront.pxd
-@@ -106,7 +106,6 @@ cdef extern from "sqlfront.h":
- int DBVERSION_70
- int DBVERSION_71
- int DBVERSION_72
-- int DBVERSION_80
-
- ## Type Constants ##
- cdef enum: