From 3881e851fa1f8baddfe76fee30b7dc5a40c8b7e3 Mon Sep 17 00:00:00 2001 From: Alexander Golubev Date: Fri, 20 Feb 2026 16:46:46 +0300 Subject: */*: tree-clean unused patches Signed-off-by: Alexander Golubev --- ...-FTBFS-caused-by-mkpath-returning-nothing.patch | 91 ---------------------- 1 file changed, 91 deletions(-) delete mode 100644 dev-python/pytdeextensions/files/pytdeextensions-14.1.2-Fix-FTBFS-caused-by-mkpath-returning-nothing.patch (limited to 'dev-python/pytdeextensions') diff --git a/dev-python/pytdeextensions/files/pytdeextensions-14.1.2-Fix-FTBFS-caused-by-mkpath-returning-nothing.patch b/dev-python/pytdeextensions/files/pytdeextensions-14.1.2-Fix-FTBFS-caused-by-mkpath-returning-nothing.patch deleted file mode 100644 index 847da6ce..00000000 --- a/dev-python/pytdeextensions/files/pytdeextensions-14.1.2-Fix-FTBFS-caused-by-mkpath-returning-nothing.patch +++ /dev/null @@ -1,91 +0,0 @@ -From ecdb0099bd14fc440a09219bd3df5672208c483c Mon Sep 17 00:00:00 2001 -From: Michele Calgaro -Date: Fri, 17 Jan 2025 21:39:35 +0900 -Subject: [PATCH 27/35] Fix FTBFS caused by 'mkpath' returning nothing - -Signed-off-by: Michele Calgaro ---- - setup.py | 3 ++- - src/tdedistutils.py | 18 ++++++++++++------ - 2 files changed, 14 insertions(+), 7 deletions(-) - -diff --git a/setup.py b/setup.py -index fa41586..8690ffa 100755 ---- a/setup.py -+++ b/setup.py -@@ -318,6 +318,7 @@ class InstallLibpythonize(Command): - return self.outfiles - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - main() -diff --git a/src/tdedistutils.py b/src/tdedistutils.py -index e8cd35e..8487708 100644 ---- a/src/tdedistutils.py -+++ b/src/tdedistutils.py -@@ -373,7 +373,8 @@ class InstallApplicationDataAndLinks(install_data): - self.outfiles.extend( [item+'c' for item in self.outfiles if item.endswith('.py')] ) - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - ########################################################################### - class InstallExecutableLinks(Command): -@@ -415,7 +416,8 @@ class InstallExecutableLinks(Command): - return self.outfiles or [] - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - ########################################################################### - # Fix the --root option for the install_lib command. -@@ -1121,7 +1123,8 @@ class InstallKControlModule(Command): - return self.outfiles or [] - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - ########################################################################### - class BuildDocbookHTML(Command): -@@ -1240,7 +1243,8 @@ class InstallDocbookHTML(Command): - return self.outfiles or [] - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - ########################################################################### - class UpdateI18NMessages(Command): -@@ -1431,7 +1435,8 @@ class InstallI18NMessages(Command): - return self.outfiles - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - - ########################################################################### -@@ -2000,7 +2005,8 @@ class InstallTdeioslave(Command): - return self.outfiles or [] - - def mkpath(self, name, mode=0o777): -- return dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ dir_util.mkpath(name, mode, dry_run=self.dry_run) -+ return name - - ########################################################################### - class CheckPyTQt(Command): --- -2.49.1 - -- cgit v1.2.3