summaryrefslogtreecommitdiff
path: root/dev-python/netifaces/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/netifaces/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/netifaces/files')
-rw-r--r--dev-python/netifaces/files/netifaces-0.10.4-remove-osx-fix.patch15
-rw-r--r--dev-python/netifaces/files/netifaces-0.11.0-musl-clang16-null.patch21
2 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/netifaces/files/netifaces-0.10.4-remove-osx-fix.patch b/dev-python/netifaces/files/netifaces-0.10.4-remove-osx-fix.patch
deleted file mode 100644
index 7f87a02e365a..000000000000
--- a/dev-python/netifaces/files/netifaces-0.10.4-remove-osx-fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- netifaces-0.10.4/setup.py
-+++ netifaces-0.10.4/setup.py
-@@ -18,12 +18,6 @@
-
- __version__ = "0.10.4"
-
--# Disable hard links, otherwise building distributions fails on OS X
--try:
-- del os.link
--except:
-- pass
--
- # On Windows, we need ws2_32 and iphlpapi
- if getattr(sys, 'getwindowsversion', None):
- libraries = ['ws2_32', 'iphlpapi']
diff --git a/dev-python/netifaces/files/netifaces-0.11.0-musl-clang16-null.patch b/dev-python/netifaces/files/netifaces-0.11.0-musl-clang16-null.patch
deleted file mode 100644
index fa44700c3dc6..000000000000
--- a/dev-python/netifaces/files/netifaces-0.11.0-musl-clang16-null.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Bug: https://bugs.gentoo.org/894448
---- a/netifaces.c
-+++ b/netifaces.c
-@@ -370,7 +370,7 @@ string_from_sockaddr (struct sockaddr *addr,
-
- failure = getnameinfo (gniaddr, gnilen,
- buffer, buflen,
-- NULL, 0,
-+ 0, 0,
- NI_NUMERICHOST);
-
- if (bigaddr) {
-@@ -1805,7 +1805,7 @@ gateways (PyObject *self)
- sizeof(sanl_from),
- &iov,
- 1,
-- NULL,
-+ 0,
- 0,
- 0
- };