summaryrefslogtreecommitdiff
path: root/dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-06-19 13:36:43 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-06-19 13:36:43 +0000
commitc06afb0c2e4eabc136bee395d65ae7d915020179 (patch)
treeffba2b05ba49304905d10fc5e966ce10b4f5b54c /dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch
parent91f31970c2f9724c4283e57ed4e310f8085bc783 (diff)
downloadbaldeagleos-repo-c06afb0c2e4eabc136bee395d65ae7d915020179.tar.gz
baldeagleos-repo-c06afb0c2e4eabc136bee395d65ae7d915020179.tar.xz
baldeagleos-repo-c06afb0c2e4eabc136bee395d65ae7d915020179.zip
Adding metadata
Diffstat (limited to 'dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch')
-rw-r--r--dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch b/dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch
deleted file mode 100644
index 14fe9eae38da..000000000000
--- a/dev-python/python-iptables/files/python-iptables-1.0.0-ldconfig-fix.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/iptc/xtables.py b/iptc/xtables.py
-index cf21029..8f62164 100644
---- a/iptc/xtables.py
-+++ b/iptc/xtables.py
-@@ -4,6 +4,7 @@ import ctypes as ct
- import os
- import sys
- import weakref
-+import pathlib
-
- from . import version
- from .util import find_library, find_libc
-@@ -805,7 +806,7 @@ _lib_xtables, xtables_version = find_library(_searchlib)
- _xtables_libdir = os.getenv("XTABLES_LIBDIR")
- if _xtables_libdir is None:
- import re
-- ldconfig_path_regex = re.compile('^(/.*):$')
-+ ldconfig_path_regex = re.compile(r'^(/.*): \(.*$')
- import subprocess
- ldconfig = subprocess.Popen(
- ('/sbin/ldconfig', '-N', '-v'),