boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
264191d6 by Nicolas Vigier at 2023-12-21T13:09:58+01:00
Bug 41057: Also fetch mullvad-browser.git in `make fetch`
- - - - -
1 changed file:
- Makefile
Changes:
=====================================
Makefile
=====================================
@@ -709,6 +709,7 @@ mullvadbrowser-kick-devmole-build: submodule-update
fetch: submodule-update
$(rbm) fetch
+ $(rbm) fetch firefox --target mullvadbrowser
clean: submodule-update
./tools/clean-old
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2…
You're receiving this email because of your account on gitlab.torproject.org.
boklm pushed to branch maint-13.0 at The Tor Project / Applications / tor-browser-build
Commits:
f086ab55 by Nicolas Vigier at 2023-12-21T08:36:41+01:00
Bug 41056: Make it possible to use templates in var/torbrowser_incremental_from
- - - - -
6733294b by Nicolas Vigier at 2023-12-21T08:40:11+01:00
Bug 41056: Use single var/torbrowser_incremental_from list
- - - - -
2 changed files:
- projects/release/update_responses_config.yml
- rbm.conf
Changes:
=====================================
projects/release/update_responses_config.yml
=====================================
@@ -43,9 +43,12 @@ versions:
[% END -%]
incremental_from:
[% SET incr_from = c("var/nightly") ? c("var_p/nightly_torbrowser_incremental_from") : c("var/torbrowser_incremental_from");
- FOREACH v IN incr_from -%]
- - [% v %]
-[% END -%]
+ FOREACH v IN incr_from;
+ SET ver = tmpl(v);
+ IF ver -%]
+ - [% ver %]
+[% END;
+ END -%]
# for example, osx32: osx64
migrate_archs:
# for example, pt-PT: pt-BR
=====================================
rbm.conf
=====================================
@@ -86,7 +86,7 @@ var:
torbrowser_incremental_from:
- '13.0.7'
- '13.0.6'
- - '13.0.5'
+ - '13.0.[% IF c("var/tor-browser") %]5[% ELSE %]4[% END %]'
updater_enabled: 1
build_mar: 1
mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]'
@@ -304,10 +304,6 @@ targets:
- tr
- zh-CN
- zh-TW
- torbrowser_incremental_from:
- - '13.0.6'
- - '13.0.4'
- - '13.0.1'
torbrowser-testbuild:
- testbuild
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/…
You're receiving this email because of your account on gitlab.torproject.org.
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
6858c6bd by Nicolas Vigier at 2023-12-20T16:40:56+01:00
Bug 41056: Make it possible to use templates in var/torbrowser_incremental_from
- - - - -
1 changed file:
- projects/release/update_responses_config.yml
Changes:
=====================================
projects/release/update_responses_config.yml
=====================================
@@ -43,9 +43,12 @@ versions:
[% END -%]
incremental_from:
[% SET incr_from = c("var/nightly") ? c("var_p/nightly_torbrowser_incremental_from") : c("var/torbrowser_incremental_from");
- FOREACH v IN incr_from -%]
- - [% v %]
-[% END -%]
+ FOREACH v IN incr_from;
+ SET ver = tmpl(v);
+ IF ver -%]
+ - [% ver %]
+[% END;
+ END -%]
# for example, osx32: osx64
migrate_archs:
# for example, pt-PT: pt-BR
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.