Pier Angelo Vendrame pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build
Commits:
6ea176f3 by Pier Angelo Vendrame at 2025-03-03T18:33:04+01:00
Bug 41384: Fix the way we fetch OpenSSL sha256.
OpenSSL used to have only the hash of the source archive in their
.sha256 file, without the archive name.
At a certain point, they moved to the format generated by sha256sum, so
we need to update relprep.py to take that into account.
- - - - -
1 changed file:
- tools/…
[View More]relprep.py
Changes:
=====================================
tools/relprep.py
=====================================
@@ -413,7 +413,7 @@ class ReleasePreparation:
hash_url = f"https://github.com/openssl/openssl/releases/download/openssl-{version}/open…"
r = requests.get(hash_url)
r.raise_for_status()
- source["sha256sum"] = r.text.strip()
+ source["sha256sum"] = r.text.strip()[:64]
self.save_config("openssl", config)
logger.debug("Updated OpenSSL to %s and config saved.", version)
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6…
You're receiving this email because of your account on gitlab.torproject.org.
[View Less]
Pier Angelo Vendrame pushed to branch maint-14.0 at The Tor Project / Applications / tor-browser-build
Commits:
7fa2c5e4 by Pier Angelo Vendrame at 2025-03-03T18:31:34+01:00
Bug 41384: Fix the way we fetch OpenSSL sha256.
OpenSSL used to have only the hash of the source archive in their
.sha256 file, without the archive name.
At a certain point, they moved to the format generated by sha256sum, so
we need to update relprep.py to take that into account.
- - - - -
1 changed file:
- tools/…
[View More]relprep.py
Changes:
=====================================
tools/relprep.py
=====================================
@@ -392,7 +392,7 @@ class ReleasePreparation:
hash_url = f"https://github.com/openssl/openssl/releases/download/openssl-{version}/open…"
r = requests.get(hash_url)
r.raise_for_status()
- source["sha256sum"] = r.text.strip()
+ source["sha256sum"] = r.text.strip()[:64]
self.save_config("openssl", config)
logger.debug("Updated OpenSSL to %s and config saved.", version)
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
You're receiving this email because of your account on gitlab.torproject.org.
[View Less]
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
06902e0b by Pier Angelo Vendrame at 2025-03-03T17:53:17+01:00
Bug 41384: Fix the way we fetch OpenSSL sha256.
OpenSSL used to have only the hash of the source archive in their
.sha256 file, without the archive name.
At a certain point, they moved to the format generated by sha256sum, so
we need to update relprep.py to take that into account.
- - - - -
1 changed file:
- tools/relprep.…
[View More]py
Changes:
=====================================
tools/relprep.py
=====================================
@@ -392,7 +392,7 @@ class ReleasePreparation:
hash_url = f"https://github.com/openssl/openssl/releases/download/openssl-{version}/open…"
r = requests.get(hash_url)
r.raise_for_status()
- source["sha256sum"] = r.text.strip()
+ source["sha256sum"] = r.text.strip()[:64]
self.save_config("openssl", config)
logger.debug("Updated OpenSSL to %s and config saved.", version)
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
You're receiving this email because of your account on gitlab.torproject.org.
[View Less]
ma1 pushed to branch maint-14.0 at The Tor Project / Applications / tor-browser-build
Commits:
5a3864d5 by hackademix at 2025-03-03T16:46:45+01:00
Bug 41360,41361 (build2): Prepare Tor,Mullvad Browsers 14.0.7
- - - - -
2 changed files:
- projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
- rbm.conf
Changes:
=====================================
projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
=====================================
@@ -12,6 +12,8 @@ Mullvad Browser 14.0.7 - March 04 …
[View More]2025
* Build System
* All Platforms
* Bug 41380: Update kick-devmole script to use Mullvad's new GitHub action [tor-browser-build]
+ * Linux
+ * Bug 41385: Copy only libstdc++.so.6 on Linux [tor-browser-build]
Mullvad Browser 14.0.5 - February 04 2025
* All Platforms
=====================================
rbm.conf
=====================================
@@ -74,7 +74,7 @@ buildconf:
var:
torbrowser_version: '14.0.7'
- torbrowser_build: 'build1'
+ torbrowser_build: 'build2'
# This should be the date of when the build is started. For the build
# to be reproducible, browser_release_date should always be in the past.
browser_release_date: '2025/03/03 09:37:02'
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/5…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/5…
You're receiving this email because of your account on gitlab.torproject.org.
[View Less]