summaryrefslogtreecommitdiff
path: root/x11-misc
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-30 07:11:46 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-30 07:11:46 +0000
commit05a0ec1de7339049e6e41684efe86e92a8e62f00 (patch)
tree411a98c392c9ea489c2305127d45af66061828eb /x11-misc
parent6ae4a3f8c51706364b85936f7b001abdc3768db5 (diff)
downloadbaldeagleos-repo-05a0ec1de7339049e6e41684efe86e92a8e62f00.tar.gz
baldeagleos-repo-05a0ec1de7339049e6e41684efe86e92a8e62f00.tar.xz
baldeagleos-repo-05a0ec1de7339049e6e41684efe86e92a8e62f00.zip
Adding metadata
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/arandr/arandr-0.1.11.ebuild7
-rw-r--r--x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch20
2 files changed, 25 insertions, 2 deletions
diff --git a/x11-misc/arandr/arandr-0.1.11.ebuild b/x11-misc/arandr/arandr-0.1.11.ebuild
index 204d102fea75..a880f02a5261 100644
--- a/x11-misc/arandr/arandr-0.1.11.ebuild
+++ b/x11-misc/arandr/arandr-0.1.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -23,4 +23,7 @@ RDEPEND="
"
BDEPEND="dev-python/docutils[${PYTHON_USEDEP}]"
-PATCHES=( "${FILESDIR}/${PN}-0.1.10-manpages.patch" )
+PATCHES=(
+ "${FILESDIR}/${PN}-0.1.10-manpages.patch"
+ "${FILESDIR}/${PN}-0.1.11-setuptools-81.patch"
+)
diff --git a/x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch b/x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch
new file mode 100644
index 000000000000..2fc4047b8fcc
--- /dev/null
+++ b/x11-misc/arandr/files/arandr-0.1.11-setuptools-81.patch
@@ -0,0 +1,20 @@
+https://gitlab.com/arandr/arandr/-/work_items/58
+https://bugs.gentoo.org/969799#c10
+
+--- a/setup.py
++++ b/setup.py
+@@ -53,7 +53,13 @@ class NoOptionCommand(Command):
+ """Command that doesn't take any options"""
+ user_options = []
+
+- def initialize_options(self): pass
++ def initialize_options(self):
++ try:
++ super().initialize_options()
++ except Exception:
++ pass
++ if not hasattr(self, "dry_run"):
++ self.dry_run = False
+ def finalize_options(self): pass
+
+ class update_pot(NoOptionCommand):