proton: Add prefix upgrade infrastructure
This commit is contained in:
parent
39d699318c
commit
711273dd2c
1 changed files with 19 additions and 0 deletions
19
proton
19
proton
|
@ -11,10 +11,19 @@ import subprocess
|
||||||
import sys
|
import sys
|
||||||
import tarfile
|
import tarfile
|
||||||
|
|
||||||
|
CURRENT_PREFIX_VERSION="3.0-1"
|
||||||
|
|
||||||
PFX="Proton: "
|
PFX="Proton: "
|
||||||
|
|
||||||
def log(msg):
|
def log(msg):
|
||||||
sys.stdout.write(PFX + msg + os.linesep)
|
sys.stdout.write(PFX + msg + os.linesep)
|
||||||
|
sys.stdout.flush()
|
||||||
|
|
||||||
|
def upgrade_pfx(old_ver):
|
||||||
|
if old_ver == CURRENT_PREFIX_VERSION:
|
||||||
|
return
|
||||||
|
log("Upgrading prefix from " + str(old_ver) + " to " + CURRENT_PREFIX_VERSION)
|
||||||
|
#nothing to do, yet
|
||||||
|
|
||||||
def run_wine(args):
|
def run_wine(args):
|
||||||
if lfile == None:
|
if lfile == None:
|
||||||
|
@ -98,6 +107,16 @@ if not os.path.isdir(prefix):
|
||||||
#copy default prefix into place
|
#copy default prefix into place
|
||||||
shutil.copytree(basedir + "/dist/share/default_pfx", prefix, symlinks=True)
|
shutil.copytree(basedir + "/dist/share/default_pfx", prefix, symlinks=True)
|
||||||
|
|
||||||
|
version_file = os.environ["STEAM_COMPAT_DATA_PATH"] + "/version"
|
||||||
|
if os.path.exists(version_file):
|
||||||
|
with open(version_file, "r") as f:
|
||||||
|
upgrade_pfx(f.readline().strip())
|
||||||
|
else:
|
||||||
|
upgrade_pfx(None)
|
||||||
|
|
||||||
|
with open(version_file, "w") as f:
|
||||||
|
f.write(CURRENT_PREFIX_VERSION + "\n")
|
||||||
|
|
||||||
#copy steam files into place
|
#copy steam files into place
|
||||||
steamdir = env["HOME"] + "/.steam/root/legacycompat/"
|
steamdir = env["HOME"] + "/.steam/root/legacycompat/"
|
||||||
dst = prefix + "/drive_c/Program Files (x86)/"
|
dst = prefix + "/drive_c/Program Files (x86)/"
|
||||||
|
|
Loading…
Reference in a new issue