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/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.
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.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.
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 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.
ma1 pushed to branch maint-14.0 at The Tor Project / Applications / tor-browser-build
Commits:
023c79bb by hackademix at 2025-03-03T16:21:10+01:00
Bug 41385: Copy libstdc++.so.6 only.
- - - - -
1 changed file:
- projects/firefox/build
Changes:
=====================================
projects/firefox/build
=====================================
@@ -333,7 +333,7 @@ END;
mkdir -p "$libdest"
# Not copying libstdc++.so.* as that dups with the full libstdc++.so.6.0.xx the .6 links to
# and libstdc++.so.6.0.28-gdb.py which is also not needed
- cp /var/tmp/dist/gcc/[% c("var/libdir") %]/libstdc++.so.* "$libdest"
+ cp /var/tmp/dist/gcc/[% c("var/libdir") %]/libstdc++.so.6 "$libdest"
[% IF c("var/asan") -%]
cp /var/tmp/dist/gcc/[% c("var/libdir") %]/libasan.so.* "$libdest"
cp /var/tmp/dist/gcc/[% c("var/libdir") %]/libubsan.so.* "$libdest"
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.
ma1 pushed to branch maint-14.0 at The Tor Project / Applications / tor-browser-build
Commits:
f86855dd by hackademix at 2025-03-03T14:18:24+01:00
Bug 41360 (fix): Update legacy version numbers.
- - - - -
1 changed file:
- rbm.conf
Changes:
=====================================
rbm.conf
=====================================
@@ -88,8 +88,8 @@ var:
- '[% IF c("var/mullvad-browser") %]14.0.3[% END %]'
mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]'
- torbrowser_legacy_version: 13.5.12
- torbrowser_legacy_platform_version: 115.20.0
+ torbrowser_legacy_version: 13.5.13
+ torbrowser_legacy_platform_version: 115.21.0
# By default, we sort the list of installed packages. This allows sharing
# containers with identical list of packages, even if they are not listed
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f…
You're receiving this email because of your account on gitlab.torproject.org.