X-Git-Url: https://git.pld-linux.org/?a=blobdiff_plain;f=python3-db.patch;h=928aa6229110b6b546c938909ee2183cb7f75c73;hb=0d7215c9fc98177840a06b22a40d7b1393a00c66;hp=f986f77e8226a928158119fbced51492eab4fa01;hpb=d1a550a0b637c7b2fcd7249c3cea801895f29da9;p=packages%2Fpython3.git diff --git a/python3-db.patch b/python3-db.patch index f986f77..928aa62 100644 --- a/python3-db.patch +++ b/python3-db.patch @@ -5,22 +5,22 @@ # versions of BerkeleyDB already installed. - max_db_ver = (5, 3) -+ max_db_ver = (6, 1) ++ max_db_ver = (6, 2) min_db_ver = (3, 3) db_setup_debug = False # verbose debug prints from this script? ---- Python-3.6.0/setup.py~ 2016-12-27 23:21:52.000000000 +0100 -+++ Python-3.6.0/setup.py 2016-12-27 23:28:54.720208583 +0100 -@@ -1252,16 +1252,7 @@ class PyBuildExt(build_ext): +--- Python-3.8.0/setup.py~ 2019-10-15 10:03:10.000000000 +0200 ++++ Python-3.8.0/setup.py 2019-10-15 10:03:52.493993277 +0200 +@@ -1275,16 +1275,7 @@ class PyBuildExt(build_ext): for cand in dbm_order: if cand == "ndbm": - if find_file("ndbm.h", inc_dirs, []) is not None: + if find_file("ndbm.h", self.inc_dirs, []) is not None: - # Some systems have -lndbm, others have -lgdbm_compat, - # others don't have either -- if self.compiler.find_library_file(lib_dirs, +- if self.compiler.find_library_file(self.lib_dirs, - 'ndbm'): - ndbm_libs = ['ndbm'] -- elif self.compiler.find_library_file(lib_dirs, +- elif self.compiler.find_library_file(self.lib_dirs, - 'gdbm_compat'): - ndbm_libs = ['gdbm_compat'] - else: