summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-06-20 14:51:52 -0400
committerB. Stack <bgstack15@gmail.com>2024-06-20 14:51:52 -0400
commitfd868549e3640d976dda18f486da0392191ea5d3 (patch)
tree6a860959724e72904c579954f249d8a03ed198df /scripts
parent126.0 with defuzz a patch (diff)
downloadlibrewolf-debian-fd868549e3640d976dda18f486da0392191ea5d3.tar.gz
librewolf-debian-fd868549e3640d976dda18f486da0392191ea5d3.tar.bz2
librewolf-debian-fd868549e3640d976dda18f486da0392191ea5d3.zip
127.0 rc1
Diffstat (limited to 'scripts')
-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 97e35b3..57db46b 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:-'126.0-1'}
+distro_firefox_version=${distro_firefox_version:-'127.0-1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'126.0'}
+firefox_version=${firefox_version:-'127.0'}
# input git tag of source repo
-source_version=${source_version:-'126.0-1'}
+source_version=${source_version:-'127.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 dba3b95..cd0eba6 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -202,7 +202,7 @@ else
sed -r -e 's@$@ -p1@' -e '/vpn-ad/d' >> "${debian_dir}/patches/series"
#echo "librewolf/webrender_ffi.patch -p1" >> "${debian_dir}/patches/series"
# added 126.0 ; just defuzzing this patch
- test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/encoding_rs.patch" < "${scripts_dir}/126.0_defuzz-encoding_rs.patch"
+ test -n "" && patch -p1 "${debian_dir}/patches/librewolf/encoding_rs.patch" < "${scripts_dir}/126.0_defuzz-encoding_rs.patch"
# added 120.0.1; just defuzzing this patch
test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/rust-gentoo-musl.patch" <<'EOF'
--- a/librewolf/rust-gentoo-musl.patch 2023-12-05 09:05:23.029244795 -0500
@@ -544,7 +544,7 @@ EOF
"profiles",
EOF
# added 109.0 to patch for debian 109.0 until defuzz-109.0 gets merged
- test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/disable-data-reporting-at-compile-time.patch" <<'EOF'
+ test -n "" && patch -p1 "${debian_dir}/patches/librewolf/disable-data-reporting-at-compile-time.patch" <<'EOF'
diff --git a/patches/disable-data-reporting-at-compile-time.patch b/patches/disable-data-reporting-at-compile-time.patch
index 3702402..f4a4315 100644
--- a/patches/disable-data-reporting-at-compile-time.patch
bgstack15