protontricks: 1.5.0 → 1.5.1

This commit is contained in:
Kira Bruneau 2021-05-10 16:43:41 -04:00
parent ae1c8ede09
commit df85615cde
2 changed files with 62 additions and 50 deletions

View file

@ -12,13 +12,13 @@
buildPythonApplication rec { buildPythonApplication rec {
pname = "protontricks"; pname = "protontricks";
version = "1.5.0"; version = "1.5.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Matoking"; owner = "Matoking";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-IHgoi5VUN3ORbufkruPb6wR7pTekJFQHhhDrnjOWzWM="; hash = "sha256-SrBPqGRIsP0+ZWDe96sqjqCpJoY3Sn3VoPpMw7ellC0=";
}; };
patches = [ patches = [
@ -26,10 +26,7 @@ buildPythonApplication rec {
./steam-run.patch ./steam-run.patch
]; ];
preBuild = '' SETUPTOOLS_SCM_PRETEND_VERSION = version;
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
'';
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ vdf ]; propagatedBuildInputs = [ vdf ];
@ -52,7 +49,7 @@ buildPythonApplication rec {
meta = with lib; { meta = with lib; {
description = "A simple wrapper for running Winetricks commands for Proton-enabled games"; description = "A simple wrapper for running Winetricks commands for Proton-enabled games";
homepage = "https://github.com/Matoking/protontricks"; homepage = "https://github.com/Matoking/protontricks";
license = licenses.gpl3; license = licenses.gpl3Only;
maintainers = with maintainers; [ metadark ]; maintainers = with maintainers; [ metadark ];
platforms = platforms.linux; platforms = platforms.linux;
}; };

View file

@ -1,5 +1,5 @@
diff --git a/src/protontricks/cli.py b/src/protontricks/cli.py diff --git a/src/protontricks/cli.py b/src/protontricks/cli.py
index 9641970..6a2b268 100755 index cc65a03..5c3fc7a 100755
--- a/src/protontricks/cli.py --- a/src/protontricks/cli.py
+++ b/src/protontricks/cli.py +++ b/src/protontricks/cli.py
@@ -15,8 +15,8 @@ import sys @@ -15,8 +15,8 @@ import sys
@ -10,10 +10,10 @@ index 9641970..6a2b268 100755
- find_steam_path, get_steam_apps, get_steam_lib_paths) - find_steam_path, get_steam_apps, get_steam_lib_paths)
+from .steam import (find_proton_app, find_steam_path, get_steam_apps, +from .steam import (find_proton_app, find_steam_path, get_steam_apps,
+ get_steam_lib_paths) + get_steam_lib_paths)
from .util import run_command from .util import run_command, is_flatpak_sandbox
from .winetricks import get_winetricks_path from .winetricks import get_winetricks_path
@@ -75,8 +75,7 @@ def main(args=None): @@ -77,8 +77,7 @@ def main(args=None):
"WINE: path to a custom 'wine' executable\n" "WINE: path to a custom 'wine' executable\n"
"WINESERVER: path to a custom 'wineserver' executable\n" "WINESERVER: path to a custom 'wineserver' executable\n"
"STEAM_RUNTIME: 1 = enable Steam Runtime, 0 = disable Steam " "STEAM_RUNTIME: 1 = enable Steam Runtime, 0 = disable Steam "
@ -23,7 +23,7 @@ index 9641970..6a2b268 100755
), ),
formatter_class=argparse.RawTextHelpFormatter formatter_class=argparse.RawTextHelpFormatter
) )
@@ -138,18 +137,9 @@ def main(args=None): @@ -148,18 +147,9 @@ def main(args=None):
) )
sys.exit(-1) sys.exit(-1)
@ -44,7 +44,7 @@ index 9641970..6a2b268 100755
else: else:
use_steam_runtime = False use_steam_runtime = False
logger.info("Steam Runtime disabled.") logger.info("Steam Runtime disabled.")
@@ -212,7 +202,6 @@ def main(args=None): @@ -222,7 +212,6 @@ def main(args=None):
proton_app=proton_app, proton_app=proton_app,
steam_app=steam_app, steam_app=steam_app,
use_steam_runtime=use_steam_runtime, use_steam_runtime=use_steam_runtime,
@ -52,7 +52,7 @@ index 9641970..6a2b268 100755
command=[winetricks_path, "--gui"], command=[winetricks_path, "--gui"],
use_bwrap=use_bwrap use_bwrap=use_bwrap
) )
@@ -282,7 +271,6 @@ def main(args=None): @@ -292,7 +281,6 @@ def main(args=None):
proton_app=proton_app, proton_app=proton_app,
steam_app=steam_app, steam_app=steam_app,
use_steam_runtime=use_steam_runtime, use_steam_runtime=use_steam_runtime,
@ -60,7 +60,7 @@ index 9641970..6a2b268 100755
use_bwrap=use_bwrap, use_bwrap=use_bwrap,
command=[winetricks_path] + args.winetricks_command) command=[winetricks_path] + args.winetricks_command)
elif args.command: elif args.command:
@@ -292,7 +280,6 @@ def main(args=None): @@ -302,7 +290,6 @@ def main(args=None):
steam_app=steam_app, steam_app=steam_app,
command=args.command, command=args.command,
use_steam_runtime=use_steam_runtime, use_steam_runtime=use_steam_runtime,
@ -69,21 +69,21 @@ index 9641970..6a2b268 100755
# Pass the command directly into the shell *without* # Pass the command directly into the shell *without*
# escaping it # escaping it
diff --git a/src/protontricks/steam.py b/src/protontricks/steam.py diff --git a/src/protontricks/steam.py b/src/protontricks/steam.py
index 8554e24..509afb6 100644 index f9fb9ec..e1e588a 100644
--- a/src/protontricks/steam.py --- a/src/protontricks/steam.py
+++ b/src/protontricks/steam.py +++ b/src/protontricks/steam.py
@@ -13,8 +13,8 @@ from .util import lower_dict @@ -12,8 +12,8 @@ from .util import lower_dict
__all__ = ( __all__ = (
"COMMON_STEAM_DIRS", "SteamApp", "find_steam_path", "COMMON_STEAM_DIRS", "SteamApp", "find_steam_path",
"find_steam_proton_app", "find_proton_app", - "find_legacy_steam_runtime_path", "get_appinfo_sections",
- "find_legacy_steam_runtime_path", "find_appid_proton_prefix", - "get_proton_appid", "find_steam_proton_app", "find_appid_proton_prefix",
- "get_steam_lib_paths", "get_steam_apps", "get_custom_proton_installations" + "get_appinfo_sections", "get_proton_appid",
+ "find_appid_proton_prefix", "get_steam_lib_paths", + "find_steam_proton_app", "find_appid_proton_prefix",
+ "get_steam_apps", "get_custom_proton_installations" "find_proton_app", "get_steam_lib_paths", "get_compat_tool_dirs",
) "get_proton_installations", "get_custom_proton_installations",
"find_current_steamid3", "get_appid_from_shortcut",
COMMON_STEAM_DIRS = [ @@ -286,37 +286,6 @@ def find_steam_path():
@@ -283,37 +283,6 @@ def find_steam_path():
return None, None return None, None
@ -122,10 +122,31 @@ index 8554e24..509afb6 100644
APPINFO_STRUCT_SECTION = "<LLLLQ20sL" APPINFO_STRUCT_SECTION = "<LLLLQ20sL"
diff --git a/src/protontricks/util.py b/src/protontricks/util.py diff --git a/src/protontricks/util.py b/src/protontricks/util.py
index 40fa752..9da5509 100644 index 2abda99..3a25368 100644
--- a/src/protontricks/util.py --- a/src/protontricks/util.py
+++ b/src/protontricks/util.py +++ b/src/protontricks/util.py
@@ -25,24 +25,6 @@ def lower_dict(d): @@ -4,15 +4,14 @@ import shlex
import shutil
import stat
from pathlib import Path
-from subprocess import check_output, run, PIPE
+from subprocess import run, PIPE
__all__ = (
"SUPPORTED_STEAM_RUNTIMES", "is_flatpak_sandbox", "lower_dict",
- "get_legacy_runtime_library_paths", "get_host_library_paths",
- "RUNTIME_ROOT_GLOB_PATTERNS", "get_runtime_library_paths",
- "WINE_SCRIPT_RUNTIME_V1_TEMPLATE",
- "WINE_SCRIPT_RUNTIME_V2_TEMPLATE",
- "create_wine_bin_dir", "run_command"
+ "get_host_library_paths", "RUNTIME_ROOT_GLOB_PATTERNS",
+ "get_runtime_library_paths", "WINE_SCRIPT_RUNTIME_V1_TEMPLATE",
+ "WINE_SCRIPT_RUNTIME_V2_TEMPLATE", "create_wine_bin_dir",
+ "run_command"
)
logger = logging.getLogger("protontricks")
@@ -39,24 +38,6 @@ def lower_dict(d):
return {k.lower(): v for k, v in d.items()} return {k.lower(): v for k, v in d.items()}
@ -150,7 +171,7 @@ index 40fa752..9da5509 100644
def get_host_library_paths(): def get_host_library_paths():
""" """
Get host library paths to use when creating the LD_LIBRARY_PATH environment Get host library paths to use when creating the LD_LIBRARY_PATH environment
@@ -54,7 +36,7 @@ def get_host_library_paths(): @@ -68,7 +49,7 @@ def get_host_library_paths():
# Since that command is unavailable with newer Steam Runtime releases, # Since that command is unavailable with newer Steam Runtime releases,
# do it ourselves here. # do it ourselves here.
result = run( result = run(
@ -159,7 +180,7 @@ index 40fa752..9da5509 100644
check=True, stdout=PIPE, stderr=PIPE check=True, stdout=PIPE, stderr=PIPE
) )
lines = result.stdout.decode("utf-8").split("\n") lines = result.stdout.decode("utf-8").split("\n")
@@ -72,7 +54,7 @@ RUNTIME_ROOT_GLOB_PATTERNS = ( @@ -86,7 +67,7 @@ RUNTIME_ROOT_GLOB_PATTERNS = (
) )
@ -168,7 +189,7 @@ index 40fa752..9da5509 100644
""" """
Get LD_LIBRARY_PATH value to use when running a command using Steam Runtime Get LD_LIBRARY_PATH value to use when running a command using Steam Runtime
""" """
@@ -95,7 +77,7 @@ def get_runtime_library_paths(proton_app, use_bwrap=True): @@ -109,7 +90,7 @@ def get_runtime_library_paths(proton_app, use_bwrap=True):
) )
) )
@ -177,7 +198,7 @@ index 40fa752..9da5509 100644
return "".join([ return "".join([
str(proton_app.proton_dist_path / "lib"), os.pathsep, str(proton_app.proton_dist_path / "lib"), os.pathsep,
str(proton_app.proton_dist_path / "lib64"), os.pathsep str(proton_app.proton_dist_path / "lib64"), os.pathsep
@@ -111,14 +93,19 @@ def get_runtime_library_paths(proton_app, use_bwrap=True): @@ -125,14 +106,19 @@ def get_runtime_library_paths(proton_app, use_bwrap=True):
]) ])
@ -202,26 +223,21 @@ index 40fa752..9da5509 100644
+# instead. +# instead.
+WINE_SCRIPT_RUNTIME_V2_TEMPLATE = """#!/usr/bin/env bash +WINE_SCRIPT_RUNTIME_V2_TEMPLATE = """#!/usr/bin/env bash
# Helper script created by Protontricks to run Wine binaries using Steam Runtime # Helper script created by Protontricks to run Wine binaries using Steam Runtime
PROTONTRICKS_PROXY_SCRIPT_PATH="{script_path}" set -o errexit
if [[ -n "$PROTONTRICKS_INSIDE_STEAM_RUNTIME" ]]; then
@@ -127,9 +114,13 @@ if [[ -n "$PROTONTRICKS_INSIDE_STEAM_RUNTIME" ]]; then @@ -200,7 +186,10 @@ if [[ -n "$PROTONTRICKS_INSIDE_STEAM_RUNTIME" ]]; then
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PROTON_LD_LIBRARY_PATH" export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PROTON_LD_LIBRARY_PATH"
"$PROTON_DIST_PATH"/bin/{name} "$@" "$PROTON_DIST_PATH"/bin/{name} "$@"
else else
- exec "$STEAM_RUNTIME_PATH"/run --share-pid --batch --filesystem=/mnt \ - exec "$STEAM_RUNTIME_PATH"/run --share-pid --batch \
- --filesystem=/tmp --filesystem=/run/media --filesystem=/etc \
- --filesystem=/opt --filesystem=/home --filesystem=/usr -- \
+ exec steam-run "$STEAM_RUNTIME_PATH"/pressure-vessel/bin/pressure-vessel-wrap \ + exec steam-run "$STEAM_RUNTIME_PATH"/pressure-vessel/bin/pressure-vessel-wrap \
+ --runtime-archive=$(echo "$STEAM_RUNTIME_PATH"/*runtime.tar.gz) \ + --runtime-archive=$(echo "$STEAM_RUNTIME_PATH"/*runtime.tar.gz) \
+ --variable-dir="${{PRESSURE_VESSEL_VARIABLE_DIR:-$STEAM_RUNTIME_PATH/var}}" \ + --variable-dir="${{PRESSURE_VESSEL_VARIABLE_DIR:-$STEAM_RUNTIME_PATH/var}}" \
+ --share-pid --batch \ + --share-pid --batch \
+ --filesystem=/mnt --filesystem=/tmp --filesystem=/run/media \ "${{mount_params[@]}}" -- \
+ --filesystem=/etc --filesystem=/opt --filesystem=/home \
+ --filesystem=/usr -- \
env PROTONTRICKS_INSIDE_STEAM_RUNTIME=1 \ env PROTONTRICKS_INSIDE_STEAM_RUNTIME=1 \
"$PROTONTRICKS_PROXY_SCRIPT_PATH" "$@" "$PROTONTRICKS_PROXY_SCRIPT_PATH" "$@"
fi @@ -266,7 +255,6 @@ def create_wine_bin_dir(proton_app, use_bwrap=True):
@@ -194,7 +185,6 @@ def create_wine_bin_dir(proton_app, use_bwrap=True):
def run_command( def run_command(
winetricks_path, proton_app, steam_app, command, winetricks_path, proton_app, steam_app, command,
use_steam_runtime=False, use_steam_runtime=False,
@ -229,7 +245,7 @@ index 40fa752..9da5509 100644
use_bwrap=True, use_bwrap=True,
**kwargs): **kwargs):
"""Run an arbitrary command with the correct environment variables """Run an arbitrary command with the correct environment variables
@@ -271,7 +261,7 @@ def run_command( @@ -343,7 +331,7 @@ def run_command(
os.environ["STEAM_RUNTIME_PATH"] = \ os.environ["STEAM_RUNTIME_PATH"] = \
str(proton_app.required_tool_app.install_path) str(proton_app.required_tool_app.install_path)
os.environ["PROTON_LD_LIBRARY_PATH"] = \ os.environ["PROTON_LD_LIBRARY_PATH"] = \
@ -238,7 +254,7 @@ index 40fa752..9da5509 100644
runtime_name = proton_app.required_tool_app.name runtime_name = proton_app.required_tool_app.name
logger.info( logger.info(
@@ -294,11 +284,8 @@ def run_command( @@ -366,11 +354,8 @@ def run_command(
"Current Steam Runtime not recognized by Protontricks." "Current Steam Runtime not recognized by Protontricks."
) )
else: else:
@ -251,7 +267,7 @@ index 40fa752..9da5509 100644
# When Steam Runtime is enabled, create a set of helper scripts # When Steam Runtime is enabled, create a set of helper scripts
# that load the underlying Proton Wine executables with Steam Runtime # that load the underlying Proton Wine executables with Steam Runtime
@@ -306,8 +293,6 @@ def run_command( @@ -378,8 +363,6 @@ def run_command(
wine_bin_dir = create_wine_bin_dir( wine_bin_dir = create_wine_bin_dir(
proton_app=proton_app, use_bwrap=use_bwrap proton_app=proton_app, use_bwrap=use_bwrap
) )
@ -261,7 +277,7 @@ index 40fa752..9da5509 100644
os.environ["PATH"] = "".join([ os.environ["PATH"] = "".join([
str(wine_bin_dir), os.pathsep, os.environ["PATH"] str(wine_bin_dir), os.pathsep, os.environ["PATH"]
diff --git a/tests/test_cli.py b/tests/test_cli.py diff --git a/tests/test_cli.py b/tests/test_cli.py
index 1955d81..1de44b3 100644 index 580bb5b..3a05ad3 100644
--- a/tests/test_cli.py --- a/tests/test_cli.py
+++ b/tests/test_cli.py +++ b/tests/test_cli.py
@@ -117,15 +117,10 @@ class TestCLIRun: @@ -117,15 +117,10 @@ class TestCLIRun:
@ -299,11 +315,10 @@ index 1955d81..1de44b3 100644
assert command.env["STEAM_RUNTIME_PATH"] == \ assert command.env["STEAM_RUNTIME_PATH"] == \
str(steam_runtime_soldier.install_path) str(steam_runtime_soldier.install_path)
@@ -238,10 +231,7 @@ class TestCLIRun: @@ -239,9 +232,7 @@ class TestCLIRun:
str(runtime_root / "lib" / "i386-linux-gnu"), os.pathsep,
str(runtime_root / "lib" / "x86_64-linux-gnu") str(runtime_root / "lib" / "x86_64-linux-gnu")
])) ]))
-
- # Environment variables for both legacy and new Steam Runtime exist - # Environment variables for both legacy and new Steam Runtime exist
- assert command.env["LEGACY_STEAM_RUNTIME_PATH"] == \ - assert command.env["LEGACY_STEAM_RUNTIME_PATH"] == \
- str(steam_runtime_dir / "steam-runtime") - str(steam_runtime_dir / "steam-runtime")
@ -311,7 +326,7 @@ index 1955d81..1de44b3 100644
assert command.env["STEAM_RUNTIME_PATH"] == \ assert command.env["STEAM_RUNTIME_PATH"] == \
str(steam_runtime_soldier.install_path) str(steam_runtime_soldier.install_path)
@@ -324,20 +314,6 @@ class TestCLIRun: @@ -324,20 +315,6 @@ class TestCLIRun:
assert "Zenity is not installed" in result assert "Zenity is not installed" in result