summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-11-24 22:28:22 -0500
committerB. Stack <bgstack15@gmail.com>2022-11-24 22:28:22 -0500
commit4864376d853995491b3fedc986d74b2bd107774b (patch)
tree1083fd8d8924ef9a17c9998101590c03364d5cbb
parentprep 106.0 (diff)
downloadlibrewolf-debian-4864376d853995491b3fedc986d74b2bd107774b.tar.gz
librewolf-debian-4864376d853995491b3fedc986d74b2bd107774b.tar.bz2
librewolf-debian-4864376d853995491b3fedc986d74b2bd107774b.zip
v107.0 attempt 1
-rw-r--r--scripts/prep-librewolf-dpkg.conf6
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh4
2 files changed, 5 insertions, 5 deletions
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf
index 768b5a4..d06cda4 100644
--- a/scripts/prep-librewolf-dpkg.conf
+++ b/scripts/prep-librewolf-dpkg.conf
@@ -4,11 +4,11 @@
# Available options for DISTRO: debian
DISTRO=${DISTRO:-'debian'}
# current version of Firefox package in target distro
-distro_firefox_version=${distro_firefox_version:-'106.0-1'}
+distro_firefox_version=${distro_firefox_version:-'107.0-1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'106.0'}
+firefox_version=${firefox_version:-'107.0'}
# Tag for LibreWolf linux repo
-librewolf_version=${librewolf_version:-'106.0.1-1'}
+librewolf_version=${librewolf_version:-'107.0-1'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index a7f1a73..81a2ca6 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# File: prep-librewolf-dpkg.sh
# Location: https://gitlab.com/bgstack15/librewolf-linux.git
-# Latest supported version: librewolf-104.0-1
+# Latest supported version: librewolf-107.0-1
# Author: bgstack15
# SPDX-License-Identifier: CC-BY-SA-4.0
# Startdate: 2020-11-29
@@ -235,7 +235,7 @@ index 0de5504..7915e9c 100644
this.warning.hidden = !forcingColorsAndNoColorSchemeSupport;
EOF
# added 106.0.1 to patch for debian 106.0 until defuzz-106.0.1 gets merged
- test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/firefox-view.patch" <<EOF
+ test -n "" && patch -p1 "${debian_dir}/patches/librewolf/firefox-view.patch" <<EOF
diff --git a/patches/ui-patches/firefox-view.patch b/patches/ui-patches/firefox-view.patch
index ea0e580..ee089ac 100644
--- a/patches/ui-patches/firefox-view.patch
bgstack15