summaryrefslogtreecommitdiffstats
path: root/patches/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-03-31 18:01:09 +0000
committer Eric Hameleers <alien@slackware.com>2023-04-01 13:30:36 +0200
commit39f697baeedb5479806407b48060be8aa1abd4bd (patch)
tree46c02ffff050150a5472a17964e7e969206e24a8 /patches/source
parent5b606a9169015941ec3d0dfb0bf99299cf435240 (diff)
downloadcurrent-39f697baeedb5479806407b48060be8aa1abd4bd.tar.gz
current-39f697baeedb5479806407b48060be8aa1abd4bd.tar.xz
Fri Mar 31 18:01:09 UTC 202320230331180109_15.0
patches/packages/ruby-3.0.6-x86_64-1_slack15.0.txz: Upgraded. This update fixes security issues: ReDoS vulnerability in URI. ReDoS vulnerability in Time. For more information, see: https://www.ruby-lang.org/en/news/2023/03/28/redos-in-uri-cve-2023-28755/ https://www.ruby-lang.org/en/news/2023/03/30/redos-in-time-cve-2023-28756/ https://www.cve.org/CVERecord?id=CVE-2023-28755 https://www.cve.org/CVERecord?id=CVE-2023-28756 (* Security fix *) patches/packages/seamonkey-2.53.16-x86_64-1_slack15.0.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.16 (* Security fix *)
Diffstat (limited to 'patches/source')
-rwxr-xr-xpatches/source/seamonkey/seamonkey.SlackBuild4
-rw-r--r--patches/source/seamonkey/seamonkey.minimum_rust_version.diff11
2 files changed, 15 insertions, 0 deletions
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):