[arch-commits] Commit in lutris/repos (3 files)

Andreas Radke andyrtr at gemini.archlinux.org
Sat Nov 27 10:06:14 UTC 2021


    Date: Saturday, November 27, 2021 @ 10:06:14
  Author: andyrtr
Revision: 1054931

archrelease: copy trunk to community-testing-any

Added:
  lutris/repos/community-testing-any/
  lutris/repos/community-testing-any/PKGBUILD
    (from rev 1054930, lutris/trunk/PKGBUILD)
  lutris/repos/community-testing-any/sort_new_with_model_fix.patch
    (from rev 1054930, lutris/trunk/sort_new_with_model_fix.patch)

-------------------------------+
 PKGBUILD                      |   42 ++++++++++++++++++++++++++++++++++++++++
 sort_new_with_model_fix.patch |   26 ++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

Copied: lutris/repos/community-testing-any/PKGBUILD (from rev 1054930, lutris/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2021-11-27 10:06:14 UTC (rev 1054931)
@@ -0,0 +1,42 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Frederik “Freso” S. Olesen <freso.dk at gmail.com>
+# Contributor: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=lutris
+pkgver=0.5.9.1
+pkgrel=2
+pkgdesc='Open Gaming Platform'
+arch=('any')
+url='https://lutris.net'
+license=('GPL3')
+depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
+         'python-pillow' 'python-requests' 'gnome-desktop' 'webkit2gtk' 'mesa-utils' 'python-dbus' 'python-distro' 'python-lxml')
+makedepends=('python-setuptools')
+checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
+optdepends=('wine: Windows support'
+            'vulkan-icd-loader: Vulkan support'
+            'lib32-vulkan-icd-loader: Vulkan support'
+            'vkd3d: Vulkan 3D support'
+            'lib32-vkd3d: Vulkan 3D support'
+            'gvfs: GVFS backend')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz")
+sha512sums=('7cfe897ea15366dda20da5f6324a422d94e064cb3794bfeda9733f3a5c3aeb71f52354e2571f365514e965e6346f0ebef8813e577b271d9ff40fe36dac212b19')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+#check() {
+#  cd $pkgname-$pkgver
+#
+#  xvfb-run nosetests --cover-erase --with-xunit --xunit-file=nosetests.xml --with-coverage --cover-package=lutris --cover-xml-file=coverage.xml
+#}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Copied: lutris/repos/community-testing-any/sort_new_with_model_fix.patch (from rev 1054930, lutris/trunk/sort_new_with_model_fix.patch)
===================================================================
--- community-testing-any/sort_new_with_model_fix.patch	                        (rev 0)
+++ community-testing-any/sort_new_with_model_fix.patch	2021-11-27 10:06:14 UTC (rev 1054931)
@@ -0,0 +1,26 @@
+From 12a458db3c590c3f1972594e091a24cb4d65b610 Mon Sep 17 00:00:00 2001
+From: Mathieu Comandon <strycore at gmail.com>
+Date: Wed, 1 Jan 2020 12:47:55 -0800
+Subject: [PATCH] Support both sort_new_with_model and new_with_model
+
+---
+ lutris/gui/views/store.py | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/lutris/gui/views/store.py b/lutris/gui/views/store.py
+index 9e843e9e4..8fe5decf5 100644
+--- a/lutris/gui/views/store.py
++++ b/lutris/gui/views/store.py
+@@ -140,7 +140,11 @@ def __init__(
+         self.prevent_sort_update = False  # prevent recursion with signals
+         self.modelfilter = self.store.filter_new()
+         self.modelfilter.set_visible_func(self.filter_view)
+-        self.modelsort = Gtk.TreeModelSort.sort_new_with_model(self.modelfilter)
++        try:
++            self.modelsort = Gtk.TreeModelSort.sort_new_with_model(self.modelfilter)
++        except AttributeError:
++            # Apparently some API breaking changes on GTK minor versions.
++            self.modelsort = Gtk.TreeModelSort.new_with_model(self.modelfilter)
+         self.modelsort.connect("sort-column-changed", self.on_sort_column_changed)
+         self.modelsort.set_sort_func(sort_col, sort_func, sort_col)
+         self.sort_view(sort_key, sort_ascending)



More information about the arch-commits mailing list