aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/py3_inheritable.patch
diff options
context:
space:
mode:
authorLibravatar Mubashshir <ahm@jadupc.com>2023-08-26 16:01:54 +0600
committerLibravatar Mubashshir <ahm@jadupc.com>2023-08-26 16:01:54 +0600
commit22b47d8f27c3d4558f1df2d79cad7a63fd7cc871 (patch)
tree4f9e55dec008a3f1de61cabfb577fe254ae6e36e /debian/patches/py3_inheritable.patch
parent70faa8e9a0ff3cba74b4f753e257d56b768fcbd2 (diff)
downloadaptdaemon-22b47d8f27c3d4558f1df2d79cad7a63fd7cc871.tar.gz
aptdaemon-22b47d8f27c3d4558f1df2d79cad7a63fd7cc871.zip
Drop unused patches
Signed-off-by: Mubashshir <ahm@jadupc.com>
Diffstat (limited to 'debian/patches/py3_inheritable.patch')
-rw-r--r--debian/patches/py3_inheritable.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/debian/patches/py3_inheritable.patch b/debian/patches/py3_inheritable.patch
deleted file mode 100644
index f642733..0000000
--- a/debian/patches/py3_inheritable.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-=== modified file 'aptdaemon/progress.py'
---- a/aptdaemon/progress.py 2014-02-07 20:40:15 +0000
-+++ b/aptdaemon/progress.py 2014-04-11 11:58:33 +0000
-@@ -395,6 +395,9 @@
- self.last_activity = 0
- self.child_pid = 0
- self.status_parent_fd, self.status_child_fd = os.pipe()
-+ if hasattr(os, "set_inheritable"):
-+ os.set_inheritable(self.status_parent_fd, True)
-+ os.set_inheritable(self.status_child_fd, True)
- self.output = ""
- self._line_buffer = ""
-
-