summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2022-02-11 12:39:05 -0500
committerIonen Wolkens <ionen@gentoo.org>2022-02-11 18:13:55 -0500
commit3f19d64e7302ed98bc86c9e464c5b2e3b6a306a4 (patch)
tree77a7163fdd3f13ceeb1e950bf09a9af28de1d4a6 /x11-misc/fbpanel/files
parentapp-emulation/ruffle: add 0_p20220211 (diff)
downloadgentoo-3f19d64e7302ed98bc86c9e464c5b2e3b6a306a4.tar.gz
gentoo-3f19d64e7302ed98bc86c9e464c5b2e3b6a306a4.tar.bz2
gentoo-3f19d64e7302ed98bc86c9e464c5b2e3b6a306a4.zip
x11-misc/fbpanel: enable py3.10
With a very trivial (straight-to-stable) build script patch. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-misc/fbpanel/files')
-rw-r--r--x11-misc/fbpanel/files/fbpanel-7.0-python3.10.patch9
1 files changed, 9 insertions, 0 deletions
diff --git a/x11-misc/fbpanel/files/fbpanel-7.0-python3.10.patch b/x11-misc/fbpanel/files/fbpanel-7.0-python3.10.patch
new file mode 100644
index 000000000000..1c7a5c0ac38e
--- /dev/null
+++ b/x11-misc/fbpanel/files/fbpanel-7.0-python3.10.patch
@@ -0,0 +1,9 @@
+python3.10 does not allow concatenating a string with None and
+this shouldn't be ran either way if None.
+--- a/configure
++++ b/configure
+@@ -75,3 +75,3 @@
+ self).add_argument_group(title, description)
+- if name != 'help' and len(name.split()) == 1:
++ if name != 'help' and len(name.split()) == 1 and title is not None:
+ self.add_argument("--help-" + name, group = 'help',