fix steamdeps

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2023-08-18 22:45:13 +00:00 committed by GitHub
parent a85c68f9f6
commit 2e80973d67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 39 deletions

View File

@ -1,33 +0,0 @@
# PikaOS Launchpad Priority Override
Package: *
Pin: release o=LP-PPA-pikaos-pika
Pin-Priority: 1000
# PikaOS APT Priority Override
Package: *
Pin: release o=ppa.pika-os.com
Pin-Priority: 1000
# Mesa Priority Override
Package: *
Pin: release o=LP-PPA-kisak-kisak-mesa
Pin-Priority: 1000
# Firefox Priority Override
Package: *
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 2001
# Kubuntu Priority Override
Package: *
Pin: release o=LP-PPA-kubuntu-ppa-backports
Pin-Priority: 1000
# Enable Feature Updates
Package: *
Pin: release a=$(lsb_release -cs)-backports
Pin-Priority: 500
Package: *
Pin: release a=$(lsb_release -cs)-proposed
Pin-Priority: 500

View File

@ -0,0 +1,4 @@
# Firefox Priority Override
Package: *
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 501

View File

@ -0,0 +1,14 @@
# Lower Ubuntu's priority under pika's
Package: *
Pin: release o=Ubuntu
Pin-Priority: 400
# Enable Ubuntu's Feature Updates
Package: *
Pin: release a=$(lsb_release -cs)-backports
Pin-Priority: 400
Package: *
Pin: release a=$(lsb_release -cs)-proposed
Pin-Priority: 400

View File

@ -1,4 +0,0 @@
# Make PPAs have the highest-priority above all
Package: *
Pin: release o=LP-PPA-*
Pin-Priority: 2000

View File

@ -17,5 +17,9 @@ import shutil
import subprocess
import sys
subprocess.run(["/usr/bin/x-terminal-emulator -e bash -c 'sudo apt install -y libc6:amd64 libc6:i386'"], shell=True)
check_output = subprocess.run(["dpkg -s libc6:amd64 && dpkg -s libc6:i386"], shell=True)
if (check_output.returncode) != 0:
subprocess.run(["/usr/bin/x-terminal-emulator -e bash -c 'sudo apt install -y libc6:amd64 libc6:i386'"], shell=True)
exit(0)
else
exit(0)