Skip to Content.
Sympa Menu

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

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 (b48db0b0e3138dffba0d3fe80802765b8f472392)
  • Date: Mon, 13 Mar 2023 18:55:10 +0000

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

http/firefox/DEPENDS
| 2
http/firefox/DETAILS
| 4 -
http/firefox/HISTORY
| 7 ++
http/firefox/patches/0030-bmo-1811714-gcc-13-fixes.patch
| 31 --------

http/firefox/patches/0034-bmo-1810584-suppress-false-positive-errors-with-gcc.patch
| 35 ----------
5 files changed, 10 insertions(+), 69 deletions(-)

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

http/firefox: version 111.0, SECURITY_PATCH++

diff --git a/http/firefox/DEPENDS b/http/firefox/DEPENDS
index 5c3b8f9..290ba98 100755
--- a/http/firefox/DEPENDS
+++ b/http/firefox/DEPENDS
@@ -49,7 +49,7 @@ depends libwebp "--with-system-webp"
&&

depends nspr "--with-system-nspr" &&

-local NSS_BRANCH="3.87" &&
+local NSS_BRANCH="3.88" &&
if spell_ok nss &&
is_version_less "$(installed_version nss)" "${NSS_BRANCH}"; then
depends -sub "${NSS_BRANCH}" nss "--with-system-nss"
diff --git a/http/firefox/DETAILS b/http/firefox/DETAILS
index b6d8045..bb1c685 100755
--- a/http/firefox/DETAILS
+++ b/http/firefox/DETAILS
@@ -1,6 +1,6 @@
SPELL=firefox
- VERSION=110.0.1
- SECURITY_PATCH=173
+ VERSION=111.0
+ SECURITY_PATCH=174
SOURCE="${SPELL}-${VERSION}.source.tar.xz"

SOURCE_URL[0]="http://releases.mozilla.org/pub/${SPELL}/releases/${VERSION}/source/${SOURCE}";
SOURCE2="${SOURCE}.asc"
diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index d270f74..e14a0e7 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,10 @@
+2023-03-13 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 111.0, SECURITY_PATCH++
+ * DEPENDS: nss >= 3.88
+ * patches/0030-bmo-1811714-gcc-13-fixes.patch,
+
patches/0034-bmo-1810584-suppress-false-positive-errors-with-gcc.patch:
+ removed
+
2023-02-28 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 111.0.1

diff --git a/http/firefox/patches/0030-bmo-1811714-gcc-13-fixes.patch
b/http/firefox/patches/0030-bmo-1811714-gcc-13-fixes.patch
deleted file mode 100644
index 8fe9839..0000000
--- a/http/firefox/patches/0030-bmo-1811714-gcc-13-fixes.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/gfx/2d/Rect.h b/gfx/2d/Rect.h
---- a/gfx/2d/Rect.h
-+++ b/gfx/2d/Rect.h
-@@ -13,10 +13,11 @@
- #include "Point.h"
- #include "Tools.h"
- #include "mozilla/Maybe.h"
-
- #include <cmath>
-+#include <cstdint>
-
- namespace mozilla {
-
- template <typename>
- struct IsPixel;
-diff --git a/toolkit/components/telemetry/pingsender/pingsender.cpp
b/toolkit/components/telemetry/pingsender/pingsender.cpp
---- a/toolkit/components/telemetry/pingsender/pingsender.cpp
-+++ b/toolkit/components/telemetry/pingsender/pingsender.cpp
-@@ -2,10 +2,11 @@
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
- #include <cstdlib>
-+#include <cstdint>
- #include <cstring>
- #include <ctime>
- #include <fstream>
- #include <iomanip>
- #include <string>
-
diff --git
a/http/firefox/patches/0034-bmo-1810584-suppress-false-positive-errors-with-gcc.patch

b/http/firefox/patches/0034-bmo-1810584-suppress-false-positive-errors-with-gcc.patch
deleted file mode 100644
index 9da01c9..0000000
---
a/http/firefox/patches/0034-bmo-1810584-suppress-false-positive-errors-with-gcc.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-
-# HG changeset patch
-# User Iain Ireland <iireland AT mozilla.com>
-# Date 1674084161 0
-# Node ID 0a20a4613cc423258696c2e6200dc7d34f934cb6
-# Parent 26cacd18b61e629c8c45ca45c36770d3bf3f15b8
-Bug 1810584: Suppress false positive error for gcc r=mgaudet
-
-Differential Revision: https://phabricator.services.mozilla.com/D167194
-
-diff --git a/js/src/irregexp/moz.build b/js/src/irregexp/moz.build
---- a/js/src/irregexp/moz.build
-+++ b/js/src/irregexp/moz.build
-@@ -9,16 +9,20 @@ FINAL_LIBRARY = "js"
- # Includes should be relative to parent path
- LOCAL_INCLUDES += ["!..", ".."]
-
- include("../js-config.mozbuild")
- include("../js-cxxflags.mozbuild")
-
- CXXFLAGS += ["-Wno-error=type-limits", "-Wno-error=return-type"]
-
-+# Suppress spurious warnings in third-party code. See bug 1810584.
-+if CONFIG["CC_TYPE"] == "gcc":
-+ CXXFLAGS += ["-Wno-error=nonnull"]
-+
- UNIFIED_SOURCES += [
- "imported/regexp-bytecode-generator.cc",
- "imported/regexp-bytecode-peephole.cc",
- "imported/regexp-bytecodes.cc",
- "imported/regexp-compiler-tonode.cc",
- "imported/regexp-dotprinter.cc",
- "imported/regexp-interpreter.cc",
- "imported/regexp-macro-assembler-tracer.cc",
-



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (b48db0b0e3138dffba0d3fe80802765b8f472392), Pavel Vinogradov, 03/13/2023

Archive powered by MHonArc 2.6.24.

Top of Page