summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-04-21 13:51:37 -0400
committerB. Stack <bgstack15@gmail.com>2024-04-21 13:51:37 -0400
commitac35079dda4d614c7008b3e870da6e01ae590d0a (patch)
treecd7ea8395902f45fb065f079e918da494c69de89 /scripts/prep-librewolf-dpkg.sh
parent124.0.1 rc1 (diff)
downloadlibrewolf-debian-ac35079dda4d614c7008b3e870da6e01ae590d0a.tar.gz
librewolf-debian-ac35079dda4d614c7008b3e870da6e01ae590d0a.tar.bz2
librewolf-debian-ac35079dda4d614c7008b3e870da6e01ae590d0a.zip
125.0.1 rc1
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh15
1 files changed, 12 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 88d5c5b..61d8a75 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-124.0.1-1
+# Latest supported version: librewolf-125.0.1-1
# Author: bgstack15
# SPDX-License-Identifier: CC-BY-SA-4.0
# Startdate: 2020-11-29
@@ -507,7 +507,7 @@ index b32a6bf..07fd0ed 100644
trigger: { id: "protectionsPanelOpen" },
},
EOF
- # added 111.0 to patch for debian 111.0 until defuzz-111.0 gets merged
+ # added 111.0, updated 125.0.1
test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/disable-pocket.patch" <<'EOF'
diff --git a/patches/librewolf/disable-pocket.patch b/patches/librewolf/disable-pocket.patch
--- a/debian/patches/librewolf/disable-pocket.patch 2023-03-22 10:28:09.099519405 -0400
@@ -545,7 +545,16 @@ diff --git a/patches/librewolf/disable-pocket.patch b/patches/librewolf/disable-
-index 3b2126e..32b7831 100644
--- a/browser/components/moz.build
+++ b/browser/components/moz.build
- @@ -44,7 +44,6 @@ DIRS += [
+-@@ -44,7 +44,6 @@ DIRS += [
++@@ -48,7 +48,6 @@ DIRS += [
+ "originattributes",
+ "pagedata",
+ "places",
+ - "pocket",
+ "preferences",
+ "privatebrowsing",
+- "prompts",
++ "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'
bgstack15