summaryrefslogtreecommitdiffstats
path: root/dev-python/pytdeextensions
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2026-02-20 16:46:46 +0300
committerFat-Zer <fatzer2@gmail.com>2026-02-20 15:08:02 +0000
commit3881e851fa1f8baddfe76fee30b7dc5a40c8b7e3 (patch)
tree6d7f3438b1865dbd2b81703c3465a878360878c2 /dev-python/pytdeextensions
parentc65dfd5ba71508d4ab57e920f61809929f1cf603 (diff)
downloadtde-packaging-gentoo-3881e851fa1f8baddfe76fee30b7dc5a40c8b7e3.tar.gz
tde-packaging-gentoo-3881e851fa1f8baddfe76fee30b7dc5a40c8b7e3.zip
*/*: tree-clean unused patches
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'dev-python/pytdeextensions')
-rw-r--r--dev-python/pytdeextensions/files/pytdeextensions-14.1.2-Fix-FTBFS-caused-by-mkpath-returning-nothing.patch91
1 files changed, 0 insertions, 91 deletions
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 <michele.calgaro@yahoo.it>
-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 <michele.calgaro@yahoo.it>
----
- 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
-