games-util/lutris: drop 0.5.10

Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
This commit is contained in:
Andrew Ammerlaan
2022-04-21 14:59:53 +02:00
parent 8e8ac174f7
commit a6fb0b9321
4 changed files with 0 additions and 147 deletions

View File

@@ -1,2 +1 @@
DIST lutris_0.5.10.1.tar.xz 1230464 BLAKE2B 5ba913f5e37956344b59c47c1315cf277ce57b1b771279c8aa4243971ea9f0c5277ad19b18655731048e989f752d957216d055ac6c26bb8731e52b4345d30847 SHA512 f6443fa86d0b38e1b5ba51054e50776eea63d9adda5738a7e69f2fe6b196f99491894d5068d6cddfd35d1baafa4188bd1935598b84266e9e23bd1b58c16dde20
DIST lutris_0.5.10.tar.xz 1225880 BLAKE2B bd46531695860c60a4b94c7bc1f4366bb6f5a9d4a098e0eff69f85e9edee0d551b6f55276a4ae48fb28e75a706da526dfaf7fbcf17af8ebbee6e809f6f39825f SHA512 cb77afe40f1ceb053edf8aaa4f97fd44f0c8ecc33450a16b83373408807891d99bd409cf26d98543a0789a5dc38475d584790de1d48e0e56762945a7b6ca63e3

View File

@@ -1,46 +0,0 @@
diff --git a/lutris/sysoptions.py b/lutris/sysoptions.py
index 8896b7d..565bbab 100644
--- a/lutris/sysoptions.py
+++ b/lutris/sysoptions.py
@@ -82,6 +82,7 @@ def get_vk_icd_choices():
amdradv = []
nvidia = []
amdvlk = []
+ amdvlkpro = []
choices = [(_("Auto: WARNING -- No Vulkan Loader detected!"), "")]
icd_files = defaultdict(list)
# Add loaders
@@ -96,13 +97,17 @@ def get_vk_icd_choices():
amdradv.append(loader)
elif "nvidia" in loader:
nvidia.append(loader)
- elif "amd_icd" in loader:
- amdvlk.append(loader)
+ elif "amd" in loader:
+ if "pro" in loader:
+ amdvlkpro.append(loader)
+ else:
+ amdvlk.append(loader)
intel_files = ":".join(intel)
amdradv_files = ":".join(amdradv)
nvidia_files = ":".join(nvidia)
amdvlk_files = ":".join(amdvlk)
+ amdvlkpro_files = ":".join(amdvlkpro)
glxinfocmd = get_gpu_vendor_cmd(0)
if nvidia_files:
@@ -125,7 +130,12 @@ def get_vk_icd_choices():
if nvidia_files:
choices.append(("Nvidia Proprietary", nvidia_files))
if amdvlk_files:
- choices.append(("AMDVLK/AMDGPU-PRO Proprietary", amdvlk_files))
+ if not amdvlkpro_files:
+ choices.append(("AMDVLK/AMDGPU-PRO Proprietary", amdvlk_files))
+ else:
+ choices.append(("AMDVLK Open source", amdvlk_files))
+ if amdvlkpro_files:
+ choices.append(("AMDGPU-PRO Proprietary", amdvlkpro_files))
return choices

View File

@@ -1,13 +0,0 @@
diff --git a/lutris/util/test_config.py b/lutris/util/test_config.py
index b3feb87..01b9294 100644
--- a/lutris/util/test_config.py
+++ b/lutris/util/test_config.py
@@ -1,5 +1,8 @@
import os
+import gi
+gi.require_version('Gtk', '3.0')
+
from lutris import startup
from lutris.database import schema

View File

@@ -1,87 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_REQ_USE="sqlite,threads(+)"
DISTUTILS_SINGLE_IMPL="1"
inherit distutils-r1 optfeature virtualx xdg
DESCRIPTION="An open source gaming platform for GNU/Linux"
HOMEPAGE="https://lutris.net/"
if [[ ${PV} == *9999* ]] ; then
EGIT_REPO_URI="https://github.com/lutris/lutris.git"
inherit git-r3
else
if [[ ${PV} == *_beta* ]] ; then
SRC_URI="https://github.com/lutris/lutris/archive/refs/tags/v${PV/_/-}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${P/_/-}
else
SRC_URI="https://lutris.net/releases/${P/-/_}.tar.xz"
S="${WORKDIR}/${PN}"
KEYWORDS="~amd64 ~x86"
fi
fi
LICENSE="GPL-3+ CC0-1.0"
SLOT="0"
RDEPEND="
app-arch/cabextract
app-arch/p7zip
app-arch/unzip
$(python_gen_cond_dep '
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/python-evdev[${PYTHON_USEDEP}]
dev-python/python-magic[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
')
gnome-base/gnome-desktop:3[introspection]
media-sound/fluid-soundfont
net-libs/libsoup
net-libs/webkit-gtk:4[introspection]
x11-apps/mesa-progs
x11-apps/xgamma
x11-apps/xrandr
x11-libs/gtk+:3[introspection]
x11-libs/gdk-pixbuf[jpeg]
x11-libs/libnotify[introspection]
"
distutils_enable_tests pytest
DOCS=( AUTHORS README.rst docs/installers.rst docs/steam.rst )
PATCHES=(
"${FILESDIR}/${PN}-0.5.9.1-avoid-gtk-4.0-already-loaded-testerror.patch"
"${FILESDIR}/${PN}-0.5.9-choose-amdgpu-pro-vulkan-driver.patch"
)
python_test() {
virtx epytest
}
python_install_all() {
distutils-r1_python_install_all
python_fix_shebang "${ED}/usr/share/lutris/bin/lutris-wrapper" #740048
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "running windows games through wine+DXVK/proton or other Vulkan games (plus ICD for your hardware)" media-libs/vulkan-loader
# Quote README.rst
elog ""
elog "Lutris installations are fully automated through scripts, which can"
elog "be written in either JSON or YAML. The scripting syntax is described"
elog "in ${EROOT}/usr/share/doc/${PF}/installers.rst.bz2, and is also"
elog "available online at lutris.net."
}