diff options
author | B. Stack <bgstack15@gmail.com> | 2022-07-29 17:42:21 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-07-29 17:42:21 -0400 |
commit | 25ada497522e860587841a7af4e343880d1eeeef (patch) | |
tree | c08ad184c68c6cb8260c580abeac46e34d29b4c2 | |
parent | disable webrender_ffi, and v102.0 rc1 (diff) | |
download | librewolf-debian-25ada497522e860587841a7af4e343880d1eeeef.tar.gz librewolf-debian-25ada497522e860587841a7af4e343880d1eeeef.tar.bz2 librewolf-debian-25ada497522e860587841a7af4e343880d1eeeef.zip |
v103.0 rc1
-rw-r--r-- | scripts/prep-librewolf-dpkg.conf | 6 | ||||
-rwxr-xr-x | scripts/prep-librewolf-dpkg.sh | 20 |
2 files changed, 23 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf index ad58075..aa9c36a 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:-'102.0-1'} +distro_firefox_version=${distro_firefox_version:-'103.0-1'} # current version of Firefox, as defined by name of the orig tarball. -firefox_version=${firefox_version:-'102.0'} +firefox_version=${firefox_version:-'103.0'} # Tag for LibreWolf linux repo -librewolf_version=${librewolf_version:-'102.0-2'} +librewolf_version=${librewolf_version:-'103.0-3'} 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 12667fc..0f4f14c 100755 --- a/scripts/prep-librewolf-dpkg.sh +++ b/scripts/prep-librewolf-dpkg.sh @@ -199,6 +199,26 @@ else awk -F'/' '{print "librewolf/"$NF}' "${git_source_dir}"/source/assets/patches.txt | \ sed -r -e 's@$@ -p1@' -e '/vpn-ad/d' >> "${debian_dir}/patches/series" #echo "librewolf/webrender_ffi.patch -p1" >> "${debian_dir}/patches/series" + # added 103.0 + test -n "1" && cat <<EOF >"${debian_dir}/patches/librewolf/remove-snippets-from-home.patch" +--- ../../git/source/patches/ui-patches/remove-snippets-from-home.patch 2022-03-22 19:01:35.323802032 -0400 ++++ debian/patches/librewolf/remove-snippets-from-home.patch 2022-07-29 15:41:22.727541444 -0400 +@@ -1,6 +1,6 @@ + --- a/browser/components/newtab/lib/AboutPreferences.jsm + +++ b/browser/components/newtab/lib/AboutPreferences.jsm +-@@ -54,18 +54,7 @@ ++@@ -56,18 +56,7 @@ const PREFS_BEFORE_SECTIONS = () => [ + }, + ]; + +@@ -18,5 +18,5 @@ + -]; + +const PREFS_AFTER_SECTIONS = () => []; + +- this.AboutPreferences = class AboutPreferences { ++ class AboutPreferences { + init() { +EOF # added 101.0.1 # ref: https://raw.githubusercontent.com/canonical/firefox-snap/5622734942524846fb0eb7108918c8cd8557fde3/patches/fix-ftbfs-newer-cbindgen.patch # ref: https://bugzilla.mozilla.org/show_bug.cgi?id=1773630 |