richard pushed to branch main at The Tor Project / Applications / RBM
Commits:
c4c1716d by Nicolas Vigier at 2023-09-06T15:30:45+02:00
Bug 40059: Make it possible to have empty sha256sum value to disable sha256sum check
- - - - -
2 changed files:
- doc/rbm_input_files.asc
- lib/RBM.pm
Changes:
=====================================
doc/rbm_input_files.asc
=====================================
@@ -113,6 +113,7 @@ refresh_input::
sha256sum::
The sha256 checksum of the file. The build will fail with an
error if the file does not match the expected sha256 checksum.
+ If the value is empty, the checksum is not checked.
file_gpg_id::
If this option is set to 1, the file is checked for a gpg
=====================================
lib/RBM.pm
=====================================
@@ -782,14 +782,17 @@ sub input_file_need_dl {
return undef if $action eq 'getfpaths';
if ($fname
&& ($input_file->{sha256sum} || $input_file->{norec}{sha256sum})
+ && $t->('sha256sum')
&& $t->('sha256sum') ne sha256file($fname)) {
sha256file($fname, { remove_cache => 1 });
$fname = undef;
}
if ($action eq 'input_files_id') {
return undef if $input_file->{input_file_id};
- return undef if $input_file->{sha256sum};
- return undef if $input_file->{norec}{sha256sum};
+ if ( ($input_file->{sha256sum} || $input_file->{norec}{sha256sum})
+ && $t->('sha256sum') ) {
+ return undef;
+ }
return undef if $input_file->{exec};
return undef if $fname;
return 1 if $input_file->{URL};
@@ -814,7 +817,8 @@ sub input_file_id {
my ($input_file, $t, $fname, $filename) = @_;
return $t->('input_file_id') if $input_file->{input_file_id};
return $input_file->{project} . ':' . $filename if $input_file->{project};
- if ($input_file->{sha256sum} || $input_file->{norec}{sha256sum}) {
+ if ( ($input_file->{sha256sum} || $input_file->{norec}{sha256sum})
+ && $t->('sha256sum') ) {
return $filename . ':' . $t->('sha256sum');
}
my $opts = { norec => { output_dir => '/out', getting_id => 1, }};
View it on GitLab: https://gitlab.torproject.org/tpo/applications/rbm/-/commit/c4c1716dcbffa58…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/rbm/-/commit/c4c1716dcbffa58…
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:
1215282c by Pier Angelo Vendrame at 2023-09-06T16:09:37+00:00
Updated Lyrebird dependencies hash.
utls has been updated to v1.5.3 and crypto to v0.13.0.
- - - - -
1 changed file:
- projects/lyrebird/config
Changes:
=====================================
projects/lyrebird/config
=====================================
@@ -17,7 +17,7 @@ targets:
version: '[% c("abbrev") %]'
tag_gpg_id: 0
var:
- go_vendor_sha256sum: 8e9a5fd52f5a3a2b2b891389a224fcfc83b6c081658161bf40882b23fb58834c
+ go_vendor_sha256sum: 028c4536c10266331d680c0618b859d8f4ea8d630cd8588f13cfcc5b2d4272a1
steps:
build:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch base-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
9491fec6 by Pier Angelo Vendrame at 2023-09-05T18:51:58+00:00
fixup! Firefox preference overrides.
Bug 41675: Remove javascript.options.large_arraybuffers.
It has been removed with MozBug 1703508 in Firefox 110.
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -330,7 +330,6 @@ pref("dom.textMetrics.emHeight.enabled", false);
pref("dom.textMetrics.fontBoundingBox.enabled", false);
// tor-browser#40424
pref("pdfjs.enableScripting", false);
-pref("javascript.options.large_arraybuffers", false);
// Bug 40057: Ensure system colors are not used for CSS4 colors
pref("browser.display.use_system_colors", false);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9491fec…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9491fec…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch tor-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
fc3260a1 by Pier Angelo Vendrame at 2023-09-05T18:50:43+00:00
fixup! Firefox preference overrides.
Bug 41675: Remove javascript.options.large_arraybuffers.
It has been removed with MozBug 1703508 in Firefox 110.
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -330,7 +330,6 @@ pref("dom.textMetrics.emHeight.enabled", false);
pref("dom.textMetrics.fontBoundingBox.enabled", false);
// tor-browser#40424
pref("pdfjs.enableScripting", false);
-pref("javascript.options.large_arraybuffers", false);
// Bug 40057: Ensure system colors are not used for CSS4 colors
pref("browser.display.use_system_colors", false);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fc3260a…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fc3260a…
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:
cb4f1150 by Pier Angelo Vendrame at 2023-09-05T08:57:10+02:00
Bug 40942: Do not customize git_hash for Base Browser
- - - - -
1 changed file:
- projects/firefox/config
Changes:
=====================================
projects/firefox/config
=====================================
@@ -72,8 +72,6 @@ steps:
targets:
basebrowser:
- # basebrowser tag always has a -build1 suffix
- git_hash: '[% c("var/project-name") %]-[% c("var/firefox_version") %]-[% c("var/browser_branch") %]-build1'
var:
nightly_updates_publish_dir_prefix: basebrowser-
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c…
You're receiving this email because of your account on gitlab.torproject.org.