diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2012-01-31 11:45:52 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-31 12:15:09 +0100 |
commit | ec35c076e1c20856baa48d461ebf968ef9fbd74f (patch) | |
tree | 20ec87e9f694cb4a0d081a27f875e6673edfa603 /package/python-netifaces/python-netifaces-fix-cross-build.patch | |
parent | e9378d9f1ee27d19a3652e6ecdc4611a976a77b9 (diff) |
python-netifaces: bump to 0.7
cross-compilation changes were applied upstream, so remove the patch
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/python-netifaces/python-netifaces-fix-cross-build.patch')
-rw-r--r-- | package/python-netifaces/python-netifaces-fix-cross-build.patch | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/package/python-netifaces/python-netifaces-fix-cross-build.patch b/package/python-netifaces/python-netifaces-fix-cross-build.patch deleted file mode 100644 index 5a11b6195..000000000 --- a/package/python-netifaces/python-netifaces-fix-cross-build.patch +++ /dev/null @@ -1,54 +0,0 @@ -fix cross-compilation issues: - -- don't execute cross-compiled binaries -- pass LDFLAGS to linker - -Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> ---- - setup.py | 19 +++++++------------ - 1 file changed, 7 insertions(+), 12 deletions(-) - -Index: b/setup.py -=================================================================== ---- a/setup.py -+++ b/setup.py -@@ -67,17 +67,8 @@ - libraries=libraries, - debug=self.debug) - if execute: -- abspath = os.path.abspath(os.path.join(self.build_temp, -- 'conftest')) -- pipe = os.popen(abspath, 'r') -- result = pipe.read().strip() -- status = pipe.close() -- if status is None: -- status = 0 -- if result == '': -- result = True -- if status != 0: -- result = False -+ # cross-compiled code can't be executed -+ result = True - - finally: - os.dup2(mystdout, 1) -@@ -89,6 +80,10 @@ - return result - - def check_requirements(self): -+ # get library dirs -+ if os.environ.has_key('LDFLAGS'): -+ lib_dirs = os.environ['LDFLAGS'] -+ - # Load the cached config data from a previous run if possible; compiling - # things to test for features is slow - cache_file = os.path.join(self.build_temp, 'config.cache') -@@ -356,7 +351,7 @@ - in optional_headers]), - 'sockaddr': sockaddr } - -- if self.test_build(testrig, execute=False): -+ if self.test_build(testrig, execute=False, library_dirs = [lib_dirs]): - result.append(sockaddr) - - if result: |