summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
Diffstat (limited to 'patches')
-rw-r--r--patches/packages/ruby-3.0.6-x86_64-1_slack15.0.txt (renamed from patches/packages/ruby-3.0.5-x86_64-1_slack15.0.txt)0
-rw-r--r--patches/packages/seamonkey-2.53.16-x86_64-1_slack15.0.txt (renamed from patches/packages/seamonkey-2.53.15-x86_64-1_slack15.0.txt)0
-rwxr-xr-xpatches/source/seamonkey/seamonkey.SlackBuild4
-rw-r--r--patches/source/seamonkey/seamonkey.minimum_rust_version.diff11
4 files changed, 15 insertions, 0 deletions
diff --git a/patches/packages/ruby-3.0.5-x86_64-1_slack15.0.txt b/patches/packages/ruby-3.0.6-x86_64-1_slack15.0.txt
index 1adf40b95..1adf40b95 100644
--- a/patches/packages/ruby-3.0.5-x86_64-1_slack15.0.txt
+++ b/patches/packages/ruby-3.0.6-x86_64-1_slack15.0.txt
diff --git a/patches/packages/seamonkey-2.53.15-x86_64-1_slack15.0.txt b/patches/packages/seamonkey-2.53.16-x86_64-1_slack15.0.txt
index dad8e1f1b..dad8e1f1b 100644
--- a/patches/packages/seamonkey-2.53.15-x86_64-1_slack15.0.txt
+++ b/patches/packages/seamonkey-2.53.16-x86_64-1_slack15.0.txt
diff --git a/patches/source/seamonkey/seamonkey.SlackBuild b/patches/source/seamonkey/seamonkey.SlackBuild
index 9b9c8d9dc..91bf854da 100755
--- a/patches/source/seamonkey/seamonkey.SlackBuild
+++ b/patches/source/seamonkey/seamonkey.SlackBuild
@@ -131,6 +131,10 @@ cd seamonkey-${TARBALLVER} || exit 1
# Retain GTK+ v2 scrolling behavior:
zcat $CWD/sm.ui.scrollToClick.diff.gz | patch -p2 --verbose || exit 1
+# It says this is still based on Firefox 68 ESR, so I'm unable to take this
+# requirement seriously:
+zcat $CWD/seamonkey.minimum_rust_version.diff.gz | patch -p1 --verbose || exit 1
+
# Make sure the perms/ownerships are sane:
chown -R root:root .
find . \
diff --git a/patches/source/seamonkey/seamonkey.minimum_rust_version.diff b/patches/source/seamonkey/seamonkey.minimum_rust_version.diff
new file mode 100644
index 000000000..7d64841e4
--- /dev/null
+++ b/patches/source/seamonkey/seamonkey.minimum_rust_version.diff
@@ -0,0 +1,11 @@
+--- ./python/mozboot/mozboot/util.py.orig 2023-02-25 15:24:30.000000000 -0600
++++ ./python/mozboot/mozboot/util.py 2023-03-30 18:23:44.212012352 -0500
+@@ -12,7 +12,7 @@
+ here = os.path.join(os.path.dirname(__file__))
+
+
+-MINIMUM_RUST_VERSION = '1.61.0'
++MINIMUM_RUST_VERSION = '1.60.0'
+
+
+ def get_state_dir(srcdir=False):