Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (539dc7d8ca9501e84f51bc5e72e9cc8492611f38)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (539dc7d8ca9501e84f51bc5e72e9cc8492611f38)
  • Date: Sat, 12 Oct 2024 13:56:09 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

http/firefox/HISTORY | 3 +++
http/firefox/PRE_BUILD | 11 ++++++++++-
2 files changed, 13 insertions(+), 1 deletion(-)

New commits:
commit 539dc7d8ca9501e84f51bc5e72e9cc8492611f38
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

http/firefox: added fix to build with Python 3.13.x

diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index c714615..44458fb 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,6 @@
+2024-10-12 Pavel Vinogradov <public AT sourcemage.org>
+ * PRE_BUILD: added fix for to build with Python 3.13.x
+
2024-10-11 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 131.0.2, SECURITY_PATCH++, (CVE-2024-9680)

diff --git a/http/firefox/PRE_BUILD b/http/firefox/PRE_BUILD
index 490dc71..2d02fd0 100755
--- a/http/firefox/PRE_BUILD
+++ b/http/firefox/PRE_BUILD
@@ -60,4 +60,13 @@ apply_patch_dir patches &&

# clearing all checksums so the patches wouldn't cause troubles
find third_party/rust -name .cargo-checksum.json \
- -exec sed -i -e 's/\("files":{\)[^}]*/\1/' {} \;
+ -exec sed -i -e 's/\("files":{\)[^}]*/\1/' {} \; &&
+
+# for Python 3.13.x
+if spell_ok "python3" && is_depends_enabled "${SPELL}" "python3"; then
+ local PY_VERSION="$(installed_version python3)" &&
+ if [[ "${PY_VERSION:0:4}" == "3.13" ]]; then
+ find "${SOURCE_DIRECTORY}"/ -print -iname node.py \
+ -exec sed 's;pipes;shlex;' -i {} \;
+ fi
+fi


  • [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (539dc7d8ca9501e84f51bc5e72e9cc8492611f38), Pavel Vinogradov, 10/12/2024

Archive powered by MHonArc 2.6.24.

Top of Page