From 33c764690e3e249e2c6481fd1ec8d26e14845e78 Mon Sep 17 00:00:00 2001 From: Oleksii Samorukov Date: Thu, 25 Nov 2021 09:02:48 +0000 Subject: www/trac-devel: remove outdated patch Reported by: pkg-fallout@FreeBSD.org --- www/trac-devel/files/patch-trac_util_daemon.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 www/trac-devel/files/patch-trac_util_daemon.py (limited to 'www/trac-devel/files/patch-trac_util_daemon.py') diff --git a/www/trac-devel/files/patch-trac_util_daemon.py b/www/trac-devel/files/patch-trac_util_daemon.py deleted file mode 100644 index ba7819c27ebc..000000000000 --- a/www/trac-devel/files/patch-trac_util_daemon.py +++ /dev/null @@ -1,23 +0,0 @@ ---- trac/util/daemon.py.orig 2020-12-20 02:35:50 UTC -+++ trac/util/daemon.py -@@ -68,12 +68,14 @@ def daemonize(pidfile=None, progname=None, stdin='/dev - # The process is now daemonized, redirect standard file descriptors - for stream in sys.stdout, sys.stderr: - stream.flush() -- stdin = os.open(stdin, 'rb') -- stdout = os.open(stdout, 'ab+') -- stderr = os.open(stderr, 'ab+', 0) -- os.dup2(stdin.fileno(), sys.stdin.fileno()) -- os.dup2(stdout.fileno(), sys.stdout.fileno()) -- os.dup2(stderr.fileno(), sys.stderr.fileno()) -+ stdin = os.open(stdin, os.O_RDONLY) -+ stdout = os.open(stdout, os.O_RDWR | os.O_APPEND) -+ stderr = os.open(stderr, os.O_RDWR | os.O_APPEND) -+ os.dup2(stdin, sys.stdin.fileno()) -+ os.dup2(stdout, sys.stdout.fileno()) -+ os.dup2(stderr, sys.stderr.fileno()) -+ for fd in stdin, stdout, stderr: -+ os.close(fd) - - if pidfile: - # Register signal handlers to ensure atexit hooks are called on exit -- cgit v1.2.3