slackware-current/source/l/mozjs102/patches/icu_sources_data.py-Decouple-from-Mozilla-build-system.patch
Patrick J Volkerding 45d1307fae Wed Feb 1 05:29:53 UTC 2023
d/perl-5.36.0-x86_64-3.txz:  Rebuilt.
  Upgraded: IO-Socket-SSL-2.081, Moo-2.005005, Path-Tiny-0.144,
  Sub-Quote-2.006008, Template-Toolkit-3.101, URI-5.17.
  Added: JSON-4.10 (needed to build Samba with --bundled-libraries=heimdal).
kde/kstars-3.6.3-x86_64-1.txz:  Upgraded.
l/gjs-1.74.1-x86_64-1.txz:  Upgraded.
  Compiled against mozjs102-102.7.0esr.
l/mozjs102-102.7.0esr-x86_64-1.txz:  Added.
  This is required by gjs-1.74.1 and polkit-122.
l/mozjs78-78.15.0esr-x86_64-1.txz:  Removed.
l/polkit-122-x86_64-1.txz:  Upgraded.
  Compiled against mozjs102-102.7.0esr.
2023-02-01 07:39:17 +01:00

29 lines
911 B
Diff

From: Simon McVittie <smcv@debian.org>
Date: Mon, 9 Oct 2017 09:22:12 +0100
Subject: icu_sources_data.py: Decouple from Mozilla build system
mozpack.path is a wrapper around os.path that normalizes path
separators on Windows, but on Unix we only have one path separator
so there's nothing to normalize. Avoid needing to import all of it.
---
intl/icu_sources_data.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/intl/icu_sources_data.py b/intl/icu_sources_data.py
index 2936df9..4db52af 100644
--- a/intl/icu_sources_data.py
+++ b/intl/icu_sources_data.py
@@ -21,7 +21,9 @@ import subprocess
import sys
import tempfile
-from mozpack import path as mozpath
+# Close enough
+import os.path as mozpath
+mozpath.normsep = lambda p: p
# The following files have been determined to be dead/unused by a
# semi-automated analysis. You can just remove any of the files below
--
2.31.1