Remove libwebkit2gtk in --compat
This commit is contained in:
79
installJRMC
79
installJRMC
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
shopt -s extglob
|
shopt -s extglob
|
||||||
|
|
||||||
declare -g SCRIPT_VERSION="1.3.5"
|
declare -g SCRIPT_VERSION="1.3.6-dev"
|
||||||
declare -g MC_REPO="bullseye" # should match the MC_VERSION
|
declare -g MC_REPO="bullseye" # should match the MC_VERSION
|
||||||
declare -g MC_VERSION="33.0.30" # Do find all replace
|
declare -g MC_VERSION="33.0.30" # Do find all replace
|
||||||
declare -g BOARD_URL="https://yabb.jriver.com/interact/index.php/board,86.0.html" # MC33
|
declare -g BOARD_URL="https://yabb.jriver.com/interact/index.php/board,86.0.html" # MC33
|
||||||
@@ -141,7 +141,7 @@ parse_input() {
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
--build|-b) BUILD_SWITCH=1; shift; BUILD_TARGET="$1" ;;
|
--build|-b) BUILD_SWITCH=1; shift; BUILD_TARGET="$1" ;;
|
||||||
--outputdir) shift && OUTPUT_DIR="$1" ;;
|
--outputdir) shift; OUTPUT_DIR="$1" ;;
|
||||||
--mcversion)
|
--mcversion)
|
||||||
shift
|
shift
|
||||||
if [[ $1 =~ ([0-9]+.[0-9]+.[0-9]+) ]]; then
|
if [[ $1 =~ ([0-9]+.[0-9]+.[0-9]+) ]]; then
|
||||||
@@ -151,22 +151,22 @@ parse_input() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
--arch) shift; echo "Switching arch from $ARCH to $1"; ARCH="$1" ;;
|
--arch) shift; echo "Switching arch from $ARCH to $1"; ARCH="$1" ;;
|
||||||
--mcrepo) shift && USER_MC_REPO="$1" ;;
|
--mcrepo) shift; USER_MC_REPO="$1" ;;
|
||||||
--restorefile) shift && MJR_FILE="$1" ;;
|
--restorefile) shift; MJR_FILE="$1" ;;
|
||||||
--betapass) shift && BETAPASS="$1" ;;
|
--betapass) shift; BETAPASS="$1" ;;
|
||||||
--service-type) shift && SERVICE_TYPE="$1" ;;
|
--service-type) shift; SERVICE_TYPE="$1" ;;
|
||||||
--service|-s|--services) shift && SERVICES+=("$1") ;;
|
--service|-s|--services) shift; SERVICES+=("$1") ;;
|
||||||
--createrepo)
|
--createrepo)
|
||||||
BUILD_SWITCH=1; CREATEREPO_SWITCH=1
|
BUILD_SWITCH=1; CREATEREPO_SWITCH=1
|
||||||
shift; CREATEREPO_TARGET="$1"; BUILD_TARGET="$1"
|
shift; CREATEREPO_TARGET="$1"; BUILD_TARGET="$1"
|
||||||
;;
|
;;
|
||||||
--createrepo-webroot) shift && CREATEREPO_WEBROOT="$1" ;;
|
--createrepo-webroot) shift; CREATEREPO_WEBROOT="$1" ;;
|
||||||
--createrepo-user) shift && CREATEREPO_USER="$1" ;;
|
--createrepo-user) shift; CREATEREPO_USER="$1" ;;
|
||||||
--vncpass) shift && VNCPASS="$1" ;;
|
--vncpass) shift; VNCPASS="$1" ;;
|
||||||
--display) shift && USER_DISPLAY="$1" ;;
|
--display) shift; USER_DISPLAY="$1" ;;
|
||||||
--compat) COMPAT_SWITCH=1; BUILD_SWITCH=1 ;;
|
--compat) COMPAT_SWITCH=1; BUILD_SWITCH=1 ;;
|
||||||
--no-update) UPDATE_SWITCH=0 ;;
|
--no-update) UPDATE_SWITCH=0 ;;
|
||||||
--container|-c) shift && CONTAINERS+=("$1") ;;
|
--container|-c) shift; CONTAINERS+=("$1") ;;
|
||||||
--yes|-y|--auto) YES_SWITCH=1 ;;
|
--yes|-y|--auto) YES_SWITCH=1 ;;
|
||||||
--version|-v) echo "Version: $SCRIPT_VERSION"; exit 0 ;;
|
--version|-v) echo "Version: $SCRIPT_VERSION"; exit 0 ;;
|
||||||
--debug|-d|--verbose) DEBUG=1 ;;
|
--debug|-d|--verbose) DEBUG=1 ;;
|
||||||
@@ -177,8 +177,7 @@ parse_input() {
|
|||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
err "Incorrect options provided"
|
err "Incorrect options provided"; print_help; exit 1
|
||||||
print_help && exit 1
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -211,28 +210,13 @@ init() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Set default command arguments and/or parse user input
|
# Set default command arguments and/or parse user input
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 || ! "$*" =~ (--install|--service|--container) ]]; then
|
||||||
debug "Automatically setting --install repo"
|
debug "Automatically using --install=repo"
|
||||||
REPO_INSTALL_SWITCH=1
|
REPO_INSTALL_SWITCH=1
|
||||||
else
|
|
||||||
# Use --install=repo by default for simple arguments
|
|
||||||
if [[ $# -le 2 ]]; then
|
|
||||||
case "$1" in
|
|
||||||
--debug| -d| --verbose| -y| --yes| --auto| --mcrepo| --mcversion| \
|
|
||||||
--arch| --betapass| --restorefile| --outputdir| --no-update)
|
|
||||||
REPO_INSTALL_SWITCH=1
|
|
||||||
;;
|
|
||||||
--compat)
|
|
||||||
if [[ $# -eq 1 ]]; then
|
|
||||||
BUILD_SWITCH=1
|
|
||||||
LOCAL_INSTALL_SWITCH=1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Parse input commands with getopt
|
# Parse input commands with getopt
|
||||||
parse_input "$@"
|
[[ $# -gt 0 ]] && parse_input "$@"
|
||||||
fi
|
|
||||||
|
|
||||||
# Run the self-updater if enabled
|
# Run the self-updater if enabled
|
||||||
((UPDATE_SWITCH)) && update "$@"
|
((UPDATE_SWITCH)) && update "$@"
|
||||||
@@ -268,6 +252,7 @@ init() {
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
--debug| -d| --verbose| -y| --yes| --auto| --mcrepo| --mcversion| \
|
--debug| -d| --verbose| -y| --yes| --auto| --mcrepo| --mcversion| \
|
||||||
--arch| --betapass| --restorefile| --outputdir| --no-update)
|
--arch| --betapass| --restorefile| --outputdir| --no-update)
|
||||||
|
debug "Automatically using --install local for SUSE"
|
||||||
REPO_INSTALL_SWITCH=0
|
REPO_INSTALL_SWITCH=0
|
||||||
BUILD_SWITCH=1
|
BUILD_SWITCH=1
|
||||||
LOCAL_INSTALL_SWITCH=1
|
LOCAL_INSTALL_SWITCH=1
|
||||||
@@ -289,6 +274,7 @@ init() {
|
|||||||
else
|
else
|
||||||
err "OS detection failed!"
|
err "OS detection failed!"
|
||||||
ask_ok "Continue with manual installation?" || exit 1
|
ask_ok "Continue with manual installation?" || exit 1
|
||||||
|
debug "Automatically using --install local for unknown distro"
|
||||||
ID="unknown"
|
ID="unknown"
|
||||||
REPO_INSTALL_SWITCH=0
|
REPO_INSTALL_SWITCH=0
|
||||||
BUILD_SWITCH=1
|
BUILD_SWITCH=1
|
||||||
@@ -305,7 +291,7 @@ init() {
|
|||||||
MC_REPO=${UBUNTU_CODENAME:-${VERSION_CODENAME:-$MC_REPO}}
|
MC_REPO=${UBUNTU_CODENAME:-${VERSION_CODENAME:-$MC_REPO}}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Change the repo for legacy MC versions
|
# Use the correct repo for legacy MC versions
|
||||||
if [[ -n $USER_MC_VERSION ]]; then
|
if [[ -n $USER_MC_VERSION ]]; then
|
||||||
# Get MVERSION from user input
|
# Get MVERSION from user input
|
||||||
case ${USER_MC_VERSION%%.*} in
|
case ${USER_MC_VERSION%%.*} in
|
||||||
@@ -524,6 +510,8 @@ install_external_repos() {
|
|||||||
install_package --no-install-check \
|
install_package --no-install-check \
|
||||||
"https://download1.rpmfusion.org/free/el/rpmfusion-free-release-$VERSION_ID.noarch.rpm"
|
"https://download1.rpmfusion.org/free/el/rpmfusion-free-release-$VERSION_ID.noarch.rpm"
|
||||||
fi
|
fi
|
||||||
|
# Install mesa-va-drivers-freeworld separately from the RPM using dnf swap
|
||||||
|
install_mesa_freeworld
|
||||||
;;
|
;;
|
||||||
fedora)
|
fedora)
|
||||||
if ! "${PKG_QUERY[@]}" rpmfusion-free-release &>/dev/null; then
|
if ! "${PKG_QUERY[@]}" rpmfusion-free-release &>/dev/null; then
|
||||||
@@ -531,6 +519,8 @@ install_external_repos() {
|
|||||||
install_package --no-install-check \
|
install_package --no-install-check \
|
||||||
"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$VERSION_ID.noarch.rpm"
|
"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$VERSION_ID.noarch.rpm"
|
||||||
fi
|
fi
|
||||||
|
# Install mesa-va-drivers-freeworld separately from the RPM using dnf swap
|
||||||
|
install_mesa_freeworld
|
||||||
;;
|
;;
|
||||||
suse)
|
suse)
|
||||||
# if ! zypper repos | grep -q "X11_XOrg"; then
|
# if ! zypper repos | grep -q "X11_XOrg"; then
|
||||||
@@ -581,18 +571,17 @@ install_mc_repo() {
|
|||||||
baseurl=https://repos.bryanroessler.com/jriver
|
baseurl=https://repos.bryanroessler.com/jriver
|
||||||
gpgcheck=0
|
gpgcheck=0
|
||||||
EOF"
|
EOF"
|
||||||
# Install mesa-va-drivers-freeworld separately from the RPM using dnf swap
|
|
||||||
install_mesa_freeworld
|
|
||||||
;;
|
;;
|
||||||
debian|ubuntu)
|
debian|ubuntu)
|
||||||
install_package wget
|
install_package wget
|
||||||
|
debug "Installing JRiver Media Center RPM key"
|
||||||
|
local keyfile="/usr/share/keyrings/jriver-com-archive-keyring.gpg"
|
||||||
|
wget -O- http://dist.jriver.com/mediacenter@jriver.com.gpg.key |
|
||||||
|
gpg --dearmor | sudo tee "$keyfile" &>/dev/null
|
||||||
debug "Adding MC repository to $deb_repo_file"
|
debug "Adding MC repository to $deb_repo_file"
|
||||||
sudo bash -c "cat <<-EOF > $deb_repo_file
|
sudo bash -c "cat <<-EOF > $deb_repo_file
|
||||||
deb [trusted=yes arch=amd64,i386,armhf,arm64] http://dist.jriver.com/latest/mediacenter/ $MC_REPO main
|
deb [signed-by=$keyfile arch=amd64,i386,armhf,arm64] http://dist.jriver.com/latest/mediacenter/ $MC_REPO main
|
||||||
EOF"
|
EOF"
|
||||||
debug "Installing JRiver Media Center RPM key"
|
|
||||||
wget -qO- "http://dist.jriver.com/mediacenter@jriver.com.gpg.key" |
|
|
||||||
sudo tee /etc/apt/trusted.gpg.d/jriver.asc &>/dev/null
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
err "An MC repository for $ID is not yet available"
|
err "An MC repository for $ID is not yet available"
|
||||||
@@ -650,6 +639,8 @@ acquire_deb() {
|
|||||||
echo "Found"
|
echo "Found"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
err "DEB file not found/downloaded"
|
||||||
|
exit 1
|
||||||
done
|
done
|
||||||
|
|
||||||
[[ -f $MC_DEB ]]
|
[[ -f $MC_DEB ]]
|
||||||
@@ -847,6 +838,9 @@ install_mc_deb() {
|
|||||||
# Remove minimum version specifiers from control file
|
# Remove minimum version specifiers from control file
|
||||||
sed -i 's/ ([^)]*)//g' "control"
|
sed -i 's/ ([^)]*)//g' "control"
|
||||||
|
|
||||||
|
# Remove libwebkit2gtk and their fantastic package versioning strategy
|
||||||
|
sed -i '/^Depends:/s/libwebkit2gtk[^,]*,\? *//g' "control"
|
||||||
|
|
||||||
# TODO ugly ZorinOS workaround
|
# TODO ugly ZorinOS workaround
|
||||||
[[ $ID == "ubuntu" && ${VERSION_ID%.*} -le 16 ]] \
|
[[ $ID == "ubuntu" && ${VERSION_ID%.*} -le 16 ]] \
|
||||||
&& ! grep -q zorin /etc/os-release \
|
&& ! grep -q zorin /etc/os-release \
|
||||||
@@ -1035,7 +1029,8 @@ link_ssl_certs() {
|
|||||||
restore_license() {
|
restore_license() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local f newest mjrfiles
|
local f newest
|
||||||
|
local -a mjrfiles
|
||||||
|
|
||||||
# Glob mjr files from common directories
|
# Glob mjr files from common directories
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
@@ -1694,7 +1689,7 @@ execute() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Roughly turn debugging on, reparse in get_input() with getopt
|
# Roughly turn debugging on, reparse in parse_input() with getopt
|
||||||
[[ " $* " =~ ( --debug | -d ) ]] && declare -g DEBUG=1
|
[[ " $* " =~ ( --debug | -d ) ]] && declare -g DEBUG=1
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
|
|||||||
Reference in New Issue
Block a user