From: Jakub Bogusz Date: Sun, 27 May 2018 18:48:46 +0000 (+0200) Subject: - added tests patch (adjust tests for deeper build-* dirs) X-Git-Tag: auto/th/python-cffi-1.11.5-1 X-Git-Url: http://git.pld-linux.org/gitweb.cgi?a=commitdiff_plain;h=becc1483b8530c12537d21d3d831961b28e4dcdb;p=packages%2Fpython-cffi.git - added tests patch (adjust tests for deeper build-* dirs) --- diff --git a/python-cffi-tests.patch b/python-cffi-tests.patch new file mode 100644 index 0000000..7771ecf --- /dev/null +++ b/python-cffi-tests.patch @@ -0,0 +1,24 @@ +--- cffi-1.11.5/testing/cffi1/test_zdist.py.orig 2018-02-27 19:15:41.000000000 +0100 ++++ cffi-1.11.5/testing/cffi1/test_zdist.py 2018-05-27 11:40:42.977033830 +0200 +@@ -17,8 +17,8 @@ + + def setup_method(self, meth): + self.executable = os.path.abspath(sys.executable) +- self.rootdir = os.path.abspath(os.path.dirname(os.path.dirname( +- cffi.__file__))) ++ self.rootdir = os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname( ++ cffi.__file__)))) + self.udir = udir.join(meth.__name__) + os.mkdir(str(self.udir)) + if meth.chdir_to_tmp: +--- cffi-1.11.5/testing/embedding/test_basic.py.orig 2018-02-27 19:15:41.000000000 +0100 ++++ cffi-1.11.5/testing/embedding/test_basic.py 2018-05-27 11:41:38.247033196 +0200 +@@ -26,7 +26,7 @@ + + + def prefix_pythonpath(): +- cffi_base = os.path.dirname(os.path.dirname(local_dir)) ++ cffi_base = os.path.dirname(os.path.dirname(os.path.dirname(local_dir))) + pythonpath = org_env.get('PYTHONPATH', '').split(os.pathsep) + if cffi_base not in pythonpath: + pythonpath.insert(0, cffi_base)