summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-03-20 21:32:41 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-03-20 23:05:06 +0100
commit4e1983094cded9faa0691cab222763c6e834fbb9 (patch)
treeead7ae0a33b6b19688df62ff787330d6a7906f00 /x11-misc/driconf/files/driconf-0.9.1-glxinfo-unicode.patch
parentnet-wireless/wifi-radar: Remove last-rited package (diff)
downloadgentoo-4e1983094cded9faa0691cab222763c6e834fbb9.tar.gz
gentoo-4e1983094cded9faa0691cab222763c6e834fbb9.tar.bz2
gentoo-4e1983094cded9faa0691cab222763c6e834fbb9.zip
x11-misc/driconf: Remove last-rited package
Closes: https://bugs.gentoo.org/708134 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc/driconf/files/driconf-0.9.1-glxinfo-unicode.patch')
-rw-r--r--x11-misc/driconf/files/driconf-0.9.1-glxinfo-unicode.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/x11-misc/driconf/files/driconf-0.9.1-glxinfo-unicode.patch b/x11-misc/driconf/files/driconf-0.9.1-glxinfo-unicode.patch
deleted file mode 100644
index 2df25d5ecc23..000000000000
--- a/x11-misc/driconf/files/driconf-0.9.1-glxinfo-unicode.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-http://cvs.fedoraproject.org/viewvc/rpms/driconf/devel/
-
---- a/driconf_simpleui.py
-+++ b/driconf_simpleui.py
-@@ -450,11 +450,13 @@ class MainWindow (gtk.Window):
- else:
- screen = self.screens[0]
- if screen.glxInfo:
-- text = "%s (%s)" % (
-- screen.glxInfo.renderer, screen.glxInfo.vendor)
-+ text = u"%s (%s)" % (
-+ unicode(screen.glxInfo.renderer, "utf-8", "replace"),
-+ unicode(screen.glxInfo.vendor, "utf-8", "replace"))
- else:
-- text = _("Screen") + " %d: %s" % (
-- screen.num, screen.driver.name.capitalize())
-+ text = _(u"Screen") + u" %d: %s" % (screen.num,
-+ unicode(screen.driver.name, "utf-8",
-+ "replace").capitalize())
- deviceHBox = gtk.HBox()
- deviceLabel = gtk.Label()
- deviceLabel.set_justify(gtk.JUSTIFY_LEFT)