Skip to Content.
Sympa Menu

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

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
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (e2c28c94688b708951fdbc8e985615d0838f61c7)
  • Date: Wed, 20 Dec 2023 07:59:54 +0000

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

http/firefox/HISTORY
| 6 +
http/firefox/patches/0029-bmo-1862601-system-icu-74.patch
| 41 ++++++++++
http/firefox/patches/0030-bgo-914738-nodbus-fix2.patch
| 13 +++

http/firefox/patches/0031-bmo-1864083-missing-MOZ_DBUS_CFLAGS-after-dbus-glib-removal.patch
| 28 ++++++
4 files changed, 88 insertions(+)

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

http/firefox: still needs dbus and icu 74 patches

diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index f441641..086c7f4 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,9 @@
+2023-12-20 Pavel Vinogradov <public AT sourcemage.org>
+ * patches/0029-bmo-1862601-system-icu-74.patch,
+ patches/0030-bgo-914738-nodbus-fix2.patch,
+
patches/0031-bmo-1864083-missing-MOZ_DBUS_CFLAGS-after-dbus-glib-removal.patch:
+ resurrected, still needed
+
2023-12-19 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 121.0, SECURITY_PATCH++
* DEPENDS: nss >= 3.95
diff --git a/http/firefox/patches/0029-bmo-1862601-system-icu-74.patch
b/http/firefox/patches/0029-bmo-1862601-system-icu-74.patch
new file mode 100644
index 0000000..617dd76
--- /dev/null
+++ b/http/firefox/patches/0029-bmo-1862601-system-icu-74.patch
@@ -0,0 +1,41 @@
+https://bugs.gentoo.org/917599
+https://bugzilla.mozilla.org/show_bug.cgi?id=1862601
+https://hg.mozilla.org/try/rev/d5f3b0c4f08a426ce00a153c04e177eecb6820e2
+
+# HG changeset patch
+# User André Bargull <andre.bargull AT gmail.com>
+# Date 1697435923 -7200
+# Node ID d5f3b0c4f08a426ce00a153c04e177eecb6820e2
+# Parent c63994f8259efdf6e745c960aa9e1409d5477049
+Bug xxx - Part 12: Add new line break classes. r?
+
+diff --git a/intl/lwbrk/LineBreaker.cpp b/intl/lwbrk/LineBreaker.cpp
+--- a/intl/lwbrk/LineBreaker.cpp
++++ b/intl/lwbrk/LineBreaker.cpp
+@@ -443,17 +443,23 @@ static int8_t GetClass(uint32_t u, LineB
+ /* JT = 34, [JT] */ CLASS_CHARACTER,
+ /* JV = 35, [JV] */ CLASS_CHARACTER,
+ /* CLOSE_PARENTHESIS = 36, [CP] */
CLASS_CLOSE_LIKE_CHARACTER,
+ /* CONDITIONAL_JAPANESE_STARTER = 37, [CJ] */ CLASS_CLOSE,
+ /* HEBREW_LETTER = 38, [HL] */ CLASS_CHARACTER,
+ /* REGIONAL_INDICATOR = 39, [RI] */ CLASS_CHARACTER,
+ /* E_BASE = 40, [EB] */ CLASS_BREAKABLE,
+ /* E_MODIFIER = 41, [EM] */ CLASS_CHARACTER,
+- /* ZWJ = 42, [ZWJ]*/ CLASS_CHARACTER};
++ /* ZWJ = 42, [ZWJ]*/ CLASS_CHARACTER,
++ /* AKSARA = 43, [AK] */ CLASS_CHARACTER,
++ /* AKSARA_PREBASE = 44, [AP] */ CLASS_CHARACTER,
++ /* AKSARA_START = 45, [AS] */ CLASS_CHARACTER,
++ /* VIRAMA_FINAL = 46, [VF] */ CLASS_CHARACTER,
++ /* VIRAMA = 47, [VI] */ CLASS_CHARACTER,
++ };
+
+ static_assert(U_LB_COUNT ==
mozilla::ArrayLength(sUnicodeLineBreakToClass),
+ "Gecko vs ICU LineBreak class mismatch");
+
+ auto cls = GetLineBreakClass(u);
+ MOZ_ASSERT(cls < mozilla::ArrayLength(sUnicodeLineBreakToClass));
+
+ // Overrides based on rules for the different line-break values given in
+
+
diff --git a/http/firefox/patches/0030-bgo-914738-nodbus-fix2.patch
b/http/firefox/patches/0030-bgo-914738-nodbus-fix2.patch
new file mode 100644
index 0000000..5b1a2ff
--- /dev/null
+++ b/http/firefox/patches/0030-bgo-914738-nodbus-fix2.patch
@@ -0,0 +1,13 @@
+--- a/widget/gtk/nsAppShell.cpp
++++ b/widget/gtk/nsAppShell.cpp
+@@ -296,8 +296,10 @@
+ do_GetService(POWERMANAGERSERVICE_CONTRACTID);
+
+ if (powerManagerService) {
++#ifdef MOZ_ENABLE_DBUS
+ powerManagerService->AddWakeLockListener(
+ WakeLockListener::GetSingleton());
++#endif
+ } else {
+ NS_WARNING(
+ "Failed to retrieve PowerManagerService, wakelocks will be
broken!");
diff --git
a/http/firefox/patches/0031-bmo-1864083-missing-MOZ_DBUS_CFLAGS-after-dbus-glib-removal.patch

b/http/firefox/patches/0031-bmo-1864083-missing-MOZ_DBUS_CFLAGS-after-dbus-glib-removal.patch
new file mode 100644
index 0000000..fc92ec9
--- /dev/null
+++
b/http/firefox/patches/0031-bmo-1864083-missing-MOZ_DBUS_CFLAGS-after-dbus-glib-removal.patch
@@ -0,0 +1,28 @@
+diff --git a/toolkit/components/remote/moz.build
b/toolkit/components/remote/moz.build
+--- a/toolkit/components/remote/moz.build
++++ b/toolkit/components/remote/moz.build
+@@ -23,10 +23,11 @@
+ ]
+ EXPORTS += [
+ "nsUnixRemoteServer.h",
+ "RemoteUtils.h",
+ ]
++ CXXFLAGS += CONFIG["MOZ_DBUS_CFLAGS"]
+ else:
+ SOURCES += [
+ "nsGTKRemoteServer.cpp",
+ "nsXRemoteClient.cpp",
+ "nsXRemoteServer.cpp",
+diff --git a/widget/gtk/moz.build b/widget/gtk/moz.build
+--- a/widget/gtk/moz.build
++++ b/widget/gtk/moz.build
+@@ -172,7 +172,8 @@
+ "AsyncDBus.h",
+ ]
+ UNIFIED_SOURCES += [
+ "AsyncDBus.cpp",
+ ]
++ CXXFLAGS += CONFIG["MOZ_DBUS_CFLAGS"]
+
+ CXXFLAGS += ["-Werror=switch"]
+



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (e2c28c94688b708951fdbc8e985615d0838f61c7), Pavel Vinogradov, 12/20/2023

Archive powered by MHonArc 2.6.24.

Top of Page