Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/netifaces/files: netifaces-0.8-remove-osx-fix.patch
Date: Sat, 28 Dec 2013 22:32:14
Message-Id: 20131228223210.761A72004C@flycatcher.gentoo.org
1 xmw 13/12/28 22:32:10
2
3 Added: netifaces-0.8-remove-osx-fix.patch
4 Log:
5 Remove broken OS X fix, thanks Laurent Bachelier (bug 451416)
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
8
9 Revision Changes Path
10 1.1 dev-python/netifaces/files/netifaces-0.8-remove-osx-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/netifaces/files/netifaces-0.8-remove-osx-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/netifaces/files/netifaces-0.8-remove-osx-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: netifaces-0.8-remove-osx-fix.patch
16 ===================================================================
17 # HG changeset patch
18 # User Laurent Bachelier <laurent@×××××××××.name>
19 # Date 1388257625 -3600
20 # Node ID d89bc5823b639a13d299c7485fd81be89ef036a1
21 # Parent aa1a71e0adf7129f99c087afa9416a37b527012b
22 Remove support for broken operating systems
23
24 diff -r aa1a71e0adf7 -r d89bc5823b63 setup.py
25 --- a/setup.py Tue Jan 31 11:48:23 2012 +0000
26 +++ b/setup.py Sat Dec 28 20:07:05 2013 +0100
27 @@ -9,12 +9,6 @@
28
29 __version__ = "0.8"
30
31 -# Disable hard links, otherwise building distributions fails on OS X
32 -try:
33 - del os.link
34 -except:
35 - pass
36 -
37 # On Windows, we need ws2_32 and iphlpapi
38 if getattr(sys, 'getwindowsversion', None):
39 libraries = ['ws2_32', 'iphlpapi']