forked from pool/seamonkey
* Cancel button in SeaMonkey bookmarking star ui not working bug
1872623.
* Remove OfflineAppCacheHelper.jsm copy from SeaMonkey and use the
one in toolkit bug 1896292.
* Remove obsolete registerFactoryLocation calls from cZ bug 1870930.
* Remove needless implements='nsIDOMEventListener' and QI bug
1611010.
* Replace use of nsIStandardURL::Init bug 1864355.
* Switch SeaMonkey website from hg.mozilla.org to heptapod. bug
1870934.
* Allow view-image to open a data: URI by setting a flag on the
loadinfo bug 1877001.
* Save-link-as feature should use the loading principal and context
menu using nsIContentPolicy.TYPE_SAVE_AS_DOWNLOAD bug 1879726.
* Use punycode in SeaMonkey JS bug 1864287.
* Font lists in preferences are no longer grouped by font type, port
asynchronous handling like Bug 1399206 bug 1437393.
* SeaMonkey broken tab after undo closed tab with invalid protocol
bug 1885748.
* SeaMonkey session restore is missing the checkboxes in the Classic
theme bug 1896174.
* Implement about:credits on seamonkey-project.org website bug
1898467.
* Fix for the 0.0.0.0 day vulnerability oligo summary.
* Link in update notification does not open Browser bug 1888364.
* Update ReadExtensionPrefs in Preferences.cpp bug 1890196.
* Add about:seamonkey page to SeaMonkey bug 1897801.
* SeaMonkey 2.53.19 uses the same backend as Firefox and contains
the relevant Firefox 60.8 security fixes.
* SeaMonkey 2.53.19 shares most parts of the mail and news code with
Thunderbird. Please read the Thunderbird 60.8.0 release notes for
specific security fixes in this release.
* Additional important security fixes up to Current Firefox 115.14
and Thunderbird 115.14 ESR plus many enhancements have been
backported. We will continue to enhance SeaMonkey security in
subsequent 2.53.x beta and release versions as fast as we are able
to.
- Adapt seamonkey-man-page.patch for SeaMonkey 2.53.19
- Adapt seamonkey-GNUmakefile to create mach environment
- Build with GCC 13 on Tumbleweed due to build failures with GCC 14:
https://bugzilla.mozilla.org/show_bug.cgi?id=1916827
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/seamonkey?expand=0&rev=63
64 lines
2.3 KiB
Diff
64 lines
2.3 KiB
Diff
https://github.com/mozilla/gecko-dev/commit/025982b6714051c747dcb9600d6e5c92d2dcaf7b
|
|
|
|
From 025982b6714051c747dcb9600d6e5c92d2dcaf7b Mon Sep 17 00:00:00 2001
|
|
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
|
Date: Thu, 16 Mar 2023 14:01:58 +0000
|
|
Subject: [PATCH] Bug 1817032 - Honor SOURCE_DATE_EPOCH to build langpacks
|
|
reproducibly. r=eemeli@mozilla.com
|
|
|
|
Differential Revision: https://phabricator.services.mozilla.com/D169979
|
|
---
|
|
.../mozbuild/action/langpack_manifest.py | 17 +++++++++++++----
|
|
1 file changed, 13 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/python/mozbuild/mozbuild/action/langpack_manifest.py b/python/mozbuild/mozbuild/action/langpack_manifest.py
|
|
index f82a329cc..10e42fe99 100644
|
|
--- a/python/mozbuild/mozbuild/action/langpack_manifest.py
|
|
+++ b/python/mozbuild/mozbuild/action/langpack_manifest.py
|
|
@@ -16,6 +16,7 @@ import os
|
|
import json
|
|
import io
|
|
import datetime
|
|
+import time
|
|
import requests
|
|
import mozversioncontrol
|
|
import mozpack.path as mozpath
|
|
@@ -36,9 +37,17 @@ def write_file(path, content):
|
|
pushlog_api_url = "{0}/json-rev/{1}"
|
|
|
|
|
|
+def get_build_date():
|
|
+ """Return the current date or SOURCE_DATE_EPOCH, if set."""
|
|
+ return datetime.datetime.utcfromtimestamp(
|
|
+ int(os.environ.get("SOURCE_DATE_EPOCH", time.time()))
|
|
+ )
|
|
+
|
|
+
|
|
###
|
|
-# Retrievers a UTC datetime of the push for the current commit
|
|
-# from a mercurial clone directory.
|
|
+# Retrieves a UTC datetime of the push for the current commit from a
|
|
+# mercurial clone directory. The SOURCE_DATE_EPOCH environment
|
|
+# variable is honored, for reproducibility.
|
|
#
|
|
# Args:
|
|
# path (str) - path to a directory
|
|
@@ -54,7 +63,7 @@ def get_dt_from_hg(path):
|
|
with mozversioncontrol.get_repository_object(path=path) as repo:
|
|
phase = repo._run("log", "-r", ".", "-T" "{phase}")
|
|
if phase.strip() != "public":
|
|
- return datetime.datetime.utcnow()
|
|
+ return get_build_date()
|
|
repo_url = repo._run("paths", "default")
|
|
repo_url = repo_url.strip().replace("ssh://", "https://")
|
|
repo_url = repo_url.replace("hg://", "https://")
|
|
@@ -99,7 +108,7 @@ def get_timestamp_for_locale(path):
|
|
dt = get_dt_from_hg(path)
|
|
|
|
if dt is None:
|
|
- dt = datetime.datetime.utcnow()
|
|
+ dt = get_build_date()
|
|
|
|
dt = dt.replace(microsecond=0)
|
|
return dt.strftime("%Y%m%d%H%M%S")
|