[tor-commits] [Git][tpo/applications/tor-browser-build][maint-14.0] Bug 41243: Add apparmor profile to deb package

2024-10-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-14.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
6d8e1d6f by Nicolas Vigier at 2024-10-30T17:46:21+01:00
Bug 41243: Add apparmor profile to deb package

- - - - -


4 changed files:

- projects/linux-packages/config
- + projects/linux-packages/debian/apparmor.in
- projects/linux-packages/debian/control.in
- projects/linux-packages/debian/rules.in


Changes:

=
projects/linux-packages/config
=
@@ -36,6 +36,7 @@ targets:
 - dpkg-dev
 - debhelper
 - dh-exec
+- dh-apparmor
 # Packages needed to generate dependencies for the deb package
 - linux-libc-dev
 - libasound2-dev
@@ -148,6 +149,10 @@ input_files:
 enable: '[% c("var/build_deb_pkg") || c("var/build_rpm_pkg") %]'
 
   # Debian Package
+  - filename: debian/apparmor
+content: "[% INCLUDE 'debian/apparmor.in' %]"
+refresh_input: 1
+enable: '[% c("var/build_deb_pkg") %]'
   - filename: debian/changelog
 content: "[% INCLUDE 'debian/changelog.in' %]"
 refresh_input: 1


=
projects/linux-packages/debian/apparmor.in
=
@@ -0,0 +1,14 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+# AppArmor policy for [% c("var/system_pkg/pkg_name") %]
+
+abi ,
+include 
+
+profile [% c("var/system_pkg/pkg_name") %] /[% 
c('var/system_pkg/install_path') %]/[% c("var/projectname") %].real 
flags=(unconfined) {
+  userns,
+
+  # Site-specific additions and overrides. See local/README for details.
+  include if exists 
+}


=
projects/linux-packages/debian/control.in
=
@@ -2,7 +2,7 @@ Source: [% c("var/system_pkg/pkg_name") %]
 Maintainer: [% c("var/Project_Name") %] Developers 
 Priority: optional
 Section: web
-Build-Depends: debhelper (>= 9)
+Build-Depends: debhelper (>= 9), dh-apparmor
 
 Package: [% c("var/system_pkg/pkg_name") %]
 Architecture: [% c("var_p/system_pkg/deb_archs").join(" ") %]


=
projects/linux-packages/debian/rules.in
=
@@ -12,3 +12,8 @@ override_dh_strip:
 
 override_dh_shlibdeps:
dh_shlibdeps -Xabicheck[% IF c("var/tor-browser") %] 
-l$(CURDIR)/debian/[% c("var/system_pkg/pkg_name") %]/[% 
c('var/system_pkg/install_path') %]/TorBrowser/Tor[% END %]
+
+override_dh_install:
+   mkdir -p debian/[% c("var/system_pkg/pkg_name") %]/etc/apparmor.d
+   cp debian/apparmor debian/[% c("var/system_pkg/pkg_name") 
%]/etc/apparmor.d/[% c("var/system_pkg/pkg_name") %]
+   dh_apparmor --profile-name=[% c("var/system_pkg/pkg_name") %] -p[% 
c("var/system_pkg/pkg_name") %]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6d8e1d6f3f570ac10f5a118aadb0955b33d3d7c8

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6d8e1d6f3f570ac10f5a118aadb0955b33d3d7c8
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41243: Add apparmor profile to deb package

2024-10-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
ae68fd52 by Nicolas Vigier at 2024-10-30T17:43:34+01:00
Bug 41243: Add apparmor profile to deb package

- - - - -


4 changed files:

- projects/linux-packages/config
- + projects/linux-packages/debian/apparmor.in
- projects/linux-packages/debian/control.in
- projects/linux-packages/debian/rules.in


Changes:

=
projects/linux-packages/config
=
@@ -36,6 +36,7 @@ targets:
 - dpkg-dev
 - debhelper
 - dh-exec
+- dh-apparmor
 # Packages needed to generate dependencies for the deb package
 - linux-libc-dev
 - libasound2-dev
@@ -148,6 +149,10 @@ input_files:
 enable: '[% c("var/build_deb_pkg") || c("var/build_rpm_pkg") %]'
 
   # Debian Package
+  - filename: debian/apparmor
+content: "[% INCLUDE 'debian/apparmor.in' %]"
+refresh_input: 1
+enable: '[% c("var/build_deb_pkg") %]'
   - filename: debian/changelog
 content: "[% INCLUDE 'debian/changelog.in' %]"
 refresh_input: 1


=
projects/linux-packages/debian/apparmor.in
=
@@ -0,0 +1,14 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+# AppArmor policy for [% c("var/system_pkg/pkg_name") %]
+
+abi ,
+include 
+
+profile [% c("var/system_pkg/pkg_name") %] /[% 
c('var/system_pkg/install_path') %]/[% c("var/projectname") %].real 
flags=(unconfined) {
+  userns,
+
+  # Site-specific additions and overrides. See local/README for details.
+  include if exists 
+}


=
projects/linux-packages/debian/control.in
=
@@ -2,7 +2,7 @@ Source: [% c("var/system_pkg/pkg_name") %]
 Maintainer: [% c("var/Project_Name") %] Developers 
 Priority: optional
 Section: web
-Build-Depends: debhelper (>= 9)
+Build-Depends: debhelper (>= 9), dh-apparmor
 
 Package: [% c("var/system_pkg/pkg_name") %]
 Architecture: [% c("var_p/system_pkg/deb_archs").join(" ") %]


=
projects/linux-packages/debian/rules.in
=
@@ -12,3 +12,8 @@ override_dh_strip:
 
 override_dh_shlibdeps:
dh_shlibdeps -Xabicheck[% IF c("var/tor-browser") %] 
-l$(CURDIR)/debian/[% c("var/system_pkg/pkg_name") %]/[% 
c('var/system_pkg/install_path') %]/TorBrowser/Tor[% END %]
+
+override_dh_install:
+   mkdir -p debian/[% c("var/system_pkg/pkg_name") %]/etc/apparmor.d
+   cp debian/apparmor debian/[% c("var/system_pkg/pkg_name") 
%]/etc/apparmor.d/[% c("var/system_pkg/pkg_name") %]
+   dh_apparmor --profile-name=[% c("var/system_pkg/pkg_name") %] -p[% 
c("var/system_pkg/pkg_name") %]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ae68fd52c46c03a586f104fe0936d6388bc1a9ad

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ae68fd52c46c03a586f104fe0936d6388bc1a9ad
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41288: Use exec_noco option when using exec

2024-10-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
aefae00e by Nicolas Vigier at 2024-10-30T17:10:36+01:00
Bug 41288: Use exec_noco option when using exec

Use the `exec_noco` option added in rbm#40006.

- - - - -


2 changed files:

- projects/firefox/config
- projects/geckoview/config


Changes:

=
projects/firefox/config
=
@@ -21,10 +21,10 @@ var:
   browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
   browser_build: 1
   branding_directory_prefix: 'tb'
-  copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]'
+  copyright_year: '[% exec("git show -s --format=%ci" _ c("git_hash") _ 
"^{commit}", { exec_noco => 1 }).remove("-.*") %]'
   nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") 
%]nightly-[% c("var/osname") %]'
   gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser
-  git_commit: '[% exec("git rev-parse HEAD") %]'
+  git_commit: '[% exec("git rev-parse " _ c("git_hash") _ "^{commit}", { 
exec_noco => 1 }) %]'
   deps:
 - build-essential
 - autoconf
@@ -53,7 +53,7 @@ var:
 mv -f -- "$rezip_tmpdir/new.zip" [% c("rezip_file") %]
 rm -Rf "$rezip_tmpdir"
 
-  l10n-changesets: '[% exec("cat browser/locales/l10n-changesets.json") %]'
+  l10n-changesets: '[% exec("git --no-pager show " _ c("git_hash") _ 
":browser/locales/l10n-changesets.json", { exec_noco => 1 }) %]'
 
 steps:
   src-tarballs:


=
projects/geckoview/config
=
@@ -22,9 +22,9 @@ var:
   browser_rebase: 1
   browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
   browser_build: 1
-  copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]'
+  copyright_year: '[% exec("git show -s --format=%ci" _ c("git_hash") _ 
"^{commit}", { exec_noco => 1 }).remove("-.*") %]'
   gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser
-  git_commit: '[% exec("git rev-parse HEAD") %]'
+  git_commit: '[% exec("git rev-parse " _ c("git_hash") _ "^{commit}", { 
exec_noco => 1 }) %]'
   deps:
 - build-essential
 - autoconf
@@ -41,7 +41,7 @@ var:
   glean_parser: 14.0.1
   variant: beta
   has_l10n: '[% !c("var/testbuild") && !c("var/locales").empty %]'
-  l10n-changesets: '[% exec("cat browser/locales/l10n-changesets.json") %]'
+  l10n-changesets: '[% exec("git --no-pager show " _ c("git_hash") _ 
":browser/locales/l10n-changesets.json", { exec_noco => 1 }) %]'
 
 targets:
   release:



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/aefae00e1ed495efea8e848fc852a07968248aca

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/aefae00e1ed495efea8e848fc852a07968248aca
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41252: Do not run upload-update_responses-to-staticiforme

2024-10-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
53f72a36 by Nicolas Vigier at 2024-10-28T17:53:06+01:00
Bug 41252: Do not run upload-update_responses-to-staticiforme

When signing a 13.5-legacy release, don't update and upload 
update_responses.
The update_responses containing both the 14.0 and 13.5-legacy releases
will be generated from the `maint-14.0` branch.

- - - - -


1 changed file:

- tools/signing/do-all-signing


Changes:

=
tools/signing/do-all-signing
=
@@ -206,5 +206,4 @@ do_step 
download-unsigned-sha256sums-gpg-signatures-from-people-tpo
 do_step sync-local-to-staticiforme
 do_step sync-scripts-to-staticiforme
 do_step staticiforme-prepare-cdn-dist-upload
-do_step upload-update_responses-to-staticiforme
 do_step finished-signing-clean-linux-signer



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/53f72a36da6e33f41b67ffc51f4171f646f8baee

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/53f72a36da6e33f41b67ffc51f4171f646f8baee
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Update rbm for rbm#40006

2024-10-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
f3bcd325 by Nicolas Vigier at 2024-10-28T09:49:28+01:00
Update rbm for rbm#40006

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 1e0cfb68e958c1b22ac51fd32859781b8da2bc93
+Subproject commit f18daa3f93d1aec674e4ba0dfbd22ac6afd6f8c9



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f3bcd32580223194f0becb52b728c346815ab36e

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f3bcd32580223194f0becb52b728c346815ab36e
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/rbm][main] Bug 40006: Add option to avoid doing a git checkout when using the exec template function

2024-10-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / RBM


Commits:
f18daa3f by Nicolas Vigier at 2024-10-27T17:22:45+01:00
Bug 40006: Add option to avoid doing a git checkout when using the exec 
template function

The `exec_noco` option can be used to disable git or hg checkout when
using the exec template function.

We start using this option in the `abbrev` and `timestamp` options,
which are running git and hg commands which don't need a checkout.

- - - - -


3 changed files:

- doc/rbm_templates.asc
- lib/RBM.pm
- lib/RBM/DefaultConfig.pm


Changes:

=
doc/rbm_templates.asc
=
@@ -107,9 +107,11 @@ exec::
 considered to be a script, which will be written to a temporary
 file and executed. The second argument of the exec function is
 an optional $options hash, used to override values of 'git_url',
-'hg_url', 'fetch', 'git_hash' or 'hg_hash'. If neither 'git_url'
-nor 'hg_url' is set, the command is executed from the directory
-where the 'rbm.conf' file is located.
+'hg_url', 'fetch', 'git_hash' or 'hg_hash'. Before running the
+command a checkout of 'git_hash' or 'hg_hash' is done, unless
+'exec_noco' is set to true. If neither 'git_url' nor 'hg_url'
+is set, the command is executed from the directory where the
+'rbm.conf' file is located.
 
 path::
 A function to return an absolute path. It takes a path as first


=
lib/RBM.pm
=
@@ -551,15 +551,18 @@ sub execute {
 CORE::state %cache;
 my $res_name = '';
 my $old_cwd = getcwd;
+my $exec_noco = ref $options eq 'HASH' && $options->{exec_noco};
 if (project_config($project, 'git_url', $options)) {
 my $git_hash = project_config($project, 'git_hash', $options)
 || exit_error "No git_hash specified for project $project";
 $res_name = "git-$project-/-$git_hash-/-$cmd";
 return $cache{$res_name} if exists $cache{$res_name};
 git_clone_fetch_chdir($project, $options);
-my ($stdout, $stderr, $success, $exit_code)
+if (!$exec_noco) {
+my ($stdout, $stderr, $success, $exit_code)
 = capture_exec('git', 'checkout', $git_hash);
-exit_error "Cannot checkout $git_hash:\n$stderr" unless $success;
+exit_error "Cannot checkout $git_hash:\n$stderr" unless $success;
+}
 git_submodule_init_sync_update()
 if project_config($project, 'git_submodule', $options);
 } elsif (project_config($project, 'hg_url', $options)) {
@@ -568,9 +571,11 @@ sub execute {
 $res_name = "hg-$project-/-$hg_hash-/-$cmd";
 return $cache{$res_name} if exists $cache{$res_name};
 hg_clone_fetch_chdir($project, $options);
-my ($stdout, $stderr, $success, $exit_code)
+if (!$exec_noco) {
+my ($stdout, $stderr, $success, $exit_code)
 = capture_exec('hg', 'update', '-C', $hg_hash);
-exit_error "Cannot checkout $hg_hash:\n$stderr" unless $success;
+exit_error "Cannot checkout $hg_hash:\n$stderr" unless $success;
+}
 } else {
 chdir($config->{basedir});
 }


=
lib/RBM/DefaultConfig.pm
=
@@ -126,9 +126,9 @@ our %default_config = (
 abbrev_length => '12',
 abbrev=> '[%
  IF c("git_url");
-exec("git log -1 --abbrev=" _ 
c("abbrev_length") _ " --format=%h " _ c("git_hash"));
+exec("git log -1 --abbrev=" _ 
c("abbrev_length") _ " --format=%h " _ c("git_hash"), { exec_noco => 1 });
  ELSE;
-exec(c("hg") _ " id -i -r " _ c("hg_hash"));
+exec(c("hg") _ " id -i -r " _ c("hg_hash"), { 
exec_noco => 1 });
  END;
   %]',
 timestamp => sub {
@@ -136,12 +136,14 @@ our %default_config = (
 if (RBM::project_config($project, 'git_url', $options)) {
 my $git_hash = RBM::project_config($project, 'git_hash', $options);
 return RBM::execute($project,
-"git show -s --format=format:%ct ${git_hash}^{commit}", 
$options);
+"git show -s --format=format:%ct ${git_hash}^{commit}",
+ { %$options, exec_noco => 1 });
 } elsif (RBM::project_config($project, 'hg_url', $options)) {
 my $hg = RBM::project_config($project, 'hg', $options);
 my $hg_hash = RBM::project_config($project, 'hg_hash', $options);
 my $changeset = RBM::execute($project,
-"$hg export --noninteractive -r $hg_hash", $options);
+"$hg export --noninteractive -r $hg_hash",
+{

[tor-commits] [Git][tpo/applications/tor-browser-build][maint-14.0] Bug 41270: Add updater rewriterules to make 13.5.7 a watershed

2024-10-21 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-14.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
deed1220 by Nicolas Vigier at 2024-10-21T17:51:12+02:00
Bug 41270: Add updater rewriterules to make 13.5.7 a watershed

Co-authored-by: Pier Angelo Vendrame 

- - - - -


1 changed file:

- projects/release/update_responses_config.yml


Changes:

=
projects/release/update_responses_config.yml
=
@@ -119,4 +119,9 @@ htaccess_rewrite_rules:
 RewriteRule ^[^/]+/11\.0.*/.* 
https://aus1.torproject.org/torbrowser/update_pre12.0/release/$0 [last]
 RewriteRule ^[^/]+/11\.5/.* 
https://aus1.torproject.org/torbrowser/update_pre12.0/release/$0 [last]
 RewriteRule ^[^/]+/11\.5\.[01234567]/.* 
https://aus1.torproject.org/torbrowser/update_pre12.0/release/$0 [last]
+# tor-browser-build#41270: make 13.5.7 a watershed update
+RewriteRule ^[^/]+/1[12]\.[05].*/.* 
https://aus1.torproject.org/torbrowser/update_pre14.0/release/$0 [last]
+RewriteRule ^[^/]+/13\.0.*/.* 
https://aus1.torproject.org/torbrowser/update_pre14.0/release/$0 [last]
+RewriteRule ^[^/]+/13\.5/.* 
https://aus1.torproject.org/torbrowser/update_pre14.0/release/$0 [last]
+RewriteRule ^[^/]+/13\.5\.[0123456]/.* 
https://aus1.torproject.org/torbrowser/update_pre14.0/release/$0 [last]
 [% END -%]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/deed12203ef736926fb43eb3c60b5e53b2c901ba

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/deed12203ef736926fb43eb3c60b5e53b2c901ba
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Copy update_3/release to update_pre14.0/release for tor-browser-build#41270

2024-10-21 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
87e03758 by Nicolas Vigier at 2024-10-21T17:21:10+02:00
Copy update_3/release to update_pre14.0/release for tor-browser-build#41270

- - - - -


30 changed files:

- + update_pre14.0/release/.htaccess
- + update_pre14.0/release/13.5.4-13.5.7-linux-i686-ALL.xml
- + update_pre14.0/release/13.5.4-13.5.7-linux-x86_64-ALL.xml
- + update_pre14.0/release/13.5.4-13.5.7-macos-ALL.xml
- + update_pre14.0/release/13.5.4-13.5.7-windows-i686-ALL.xml
- + update_pre14.0/release/13.5.4-13.5.7-windows-x86_64-ALL.xml
- + update_pre14.0/release/13.5.5-13.5.7-linux-i686-ALL.xml
- + update_pre14.0/release/13.5.5-13.5.7-linux-x86_64-ALL.xml
- + update_pre14.0/release/13.5.5-13.5.7-macos-ALL.xml
- + update_pre14.0/release/13.5.5-13.5.7-windows-i686-ALL.xml
- + update_pre14.0/release/13.5.5-13.5.7-windows-x86_64-ALL.xml
- + update_pre14.0/release/13.5.6-13.5.7-linux-i686-ALL.xml
- + update_pre14.0/release/13.5.6-13.5.7-linux-x86_64-ALL.xml
- + update_pre14.0/release/13.5.6-13.5.7-macos-ALL.xml
- + update_pre14.0/release/13.5.6-13.5.7-windows-i686-ALL.xml
- + update_pre14.0/release/13.5.6-13.5.7-windows-x86_64-ALL.xml
- + update_pre14.0/release/13.5.7-linux-i686-ALL.xml
- + update_pre14.0/release/13.5.7-linux-x86_64-ALL.xml
- + update_pre14.0/release/13.5.7-macos-ALL.xml
- + update_pre14.0/release/13.5.7-windows-i686-ALL.xml
- + update_pre14.0/release/13.5.7-windows-x86_64-ALL.xml
- + update_pre14.0/release/download-android-aarch64.json
- + update_pre14.0/release/download-android-armv7.json
- + update_pre14.0/release/download-android-x86.json
- + update_pre14.0/release/download-android-x86_64.json
- + update_pre14.0/release/download-linux-i686.json
- + update_pre14.0/release/download-linux-x86_64.json
- + update_pre14.0/release/download-macos.json
- + update_pre14.0/release/download-windows-i686.json
- + update_pre14.0/release/download-windows-x86_64.json


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/87e03758e16fb38ba6b318f6edf562575c1043b9

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/87e03758e16fb38ba6b318f6edf562575c1043b9
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 41142: Add no_crosscompile to linux-cross host tools and clang

2024-10-17 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
cb3ba59c by NoisyCoil at 2024-10-17T13:37:29+02:00
Bug 41142: Add no_crosscompile to linux-cross host tools and clang

- - - - -
c10878fd by NoisyCoil at 2024-10-17T13:37:29+02:00
Bug 41142: Add the linux-aarch64 target to Rust

- - - - -


7 changed files:

- projects/clang/config
- projects/cmake/config
- projects/ninja/config
- projects/node/config
- projects/python/config
- projects/rust/config
- projects/wasi-sysroot/config


Changes:

=
projects/clang/config
=
@@ -6,15 +6,20 @@ container:
 
 var:
   llvm_version: '[% pc("llvm-project", "version") %]'
+  no_crosscompile: 1
 
 input_files:
   - project: container-image
   - name: '[% c("var/compiler") %]'
 project: '[% c("var/compiler") %]'
 enable: '[% c("var/linux") %]'
+# Override the target to make sure we don't have linux-cross
   - name: binutils
 project: binutils
 enable: '[% c("var/linux") %]'
+target:
+  - '[% c("var/channel") %]'
+  - '[% c("var/projectname") %]-linux-x86_64'
   - project: cmake
 name: cmake
   - project: llvm-project


=
projects/cmake/config
=
@@ -7,6 +7,8 @@ gpg_keyring: cmake.gpg
 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% 
c("compress_tar") %]'
 container:
   use_container: 1
+var:
+  no_crosscompile: 1
 
 input_files:
   - project: container-image


=
projects/ninja/config
=
@@ -5,6 +5,8 @@ git_hash: a524bf3f6bacd1b4ad85d719eed2737d8562f27a #v1.11.1
 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% 
c("compress_tar") %]'
 container:
   use_container: 1
+var:
+  no_crosscompile: 1
 
 input_files:
   - project: container-image


=
projects/node/config
=
@@ -6,15 +6,20 @@ container:
 var:
   node_version: 18.19.0
   node_sha256: f52b41af20596a9abd8ed75241837ec43945468221448bbf841361e2091819b6
+  no_crosscompile: 1
 
 input_files:
   - URL: 'https://nodejs.org/dist/v[% c("var/node_version") %]/node-v[% 
c("var/node_version") %].tar.xz'
 sha256sum: '[% c("var/node_sha256") %]'
 name: node
   - project: container-image
+# Override the target to make sure we don't have linux-cross
   - project: binutils
 name: binutils
 enable: '[% c("var/linux") %]'
+target:
+  - '[% c("var/channel") %]'
+  - '[% c("var/projectname") %]-linux-x86_64'
   - project: '[% c("var/compiler") %]'
 name: '[% c("var/compiler") %]'
 enable: '[% c("var/linux") %]'


=
projects/python/config
=
@@ -4,6 +4,7 @@ filename: 'python-[% c("var/build_id") %].tar.[% 
c("compress_tar") %]'
 container:
   use_container: 1
 var:
+  no_crosscompile: 1
   deps:
 - build-essential
 - python-all


=
projects/rust/config
=
@@ -19,6 +19,11 @@ targets:
   target: i686-unknown-linux-gnu
   target_flags: --set target.i686-unknown-linux-gnu.linker=clang --set 
target.i686-unknown-linux-gnu.ar=llvm-ar --set 
target.i686-unknown-linux-gnu.ranlib=llvm-ranlib
 
+  linux-aarch64:
+var:
+  target: aarch64-unknown-linux-gnu
+  target_flags: --set 
target.aarch64-unknown-linux-gnu.linker=aarch64-linux-gnu-gcc --set 
target.aarch64-unknown-linux-gnu.ar=llvm-ar --set 
target.aarch64-unknown-linux-gnu.ranlib=llvm-ranlib
+
   macos:
 var:
   target: '[% c("var/build_target") %]'


=
projects/wasi-sysroot/config
=
@@ -12,6 +12,9 @@ git_submodule: 0
 container:
   use_container: 1
 
+var:
+  no_crosscompile: 1
+
 input_files:
   - project: container-image
   # We do not use GCC, but we need its libsdc++ to run Clang



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/b152b726b91d57e5dcbca6ca1ab872ab7c3cf7d7...c10878fd5ebf02d56d9ed468832c1577ca4ab8a1

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/b152b726b91d57e5dcbca6ca1ab872ab7c3cf7d7...c10878fd5ebf02d56d9ed468832c1577ca4ab8a1
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] release: new version, 13.5.7

2024-10-09 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
3fa48758 by Nicolas Vigier at 2024-10-09T19:34:57+02:00
release: new version, 13.5.7

- - - - -


30 changed files:

- update_3/release/.htaccess
- − update_3/release/13.5.3-13.5.6-linux-i686-ALL.xml
- − update_3/release/13.5.3-13.5.6-linux-x86_64-ALL.xml
- − update_3/release/13.5.3-13.5.6-macos-ALL.xml
- − update_3/release/13.5.3-13.5.6-windows-i686-ALL.xml
- − update_3/release/13.5.3-13.5.6-windows-x86_64-ALL.xml
- − update_3/release/13.5.4-13.5.6-linux-i686-ALL.xml
- − update_3/release/13.5.4-13.5.6-linux-x86_64-ALL.xml
- − update_3/release/13.5.4-13.5.6-macos-ALL.xml
- − update_3/release/13.5.4-13.5.6-windows-i686-ALL.xml
- − update_3/release/13.5.4-13.5.6-windows-x86_64-ALL.xml
- + update_3/release/13.5.4-13.5.7-linux-i686-ALL.xml
- + update_3/release/13.5.4-13.5.7-linux-x86_64-ALL.xml
- + update_3/release/13.5.4-13.5.7-macos-ALL.xml
- + update_3/release/13.5.4-13.5.7-windows-i686-ALL.xml
- + update_3/release/13.5.4-13.5.7-windows-x86_64-ALL.xml
- − update_3/release/13.5.5-13.5.6-linux-i686-ALL.xml
- − update_3/release/13.5.5-13.5.6-linux-x86_64-ALL.xml
- − update_3/release/13.5.5-13.5.6-macos-ALL.xml
- − update_3/release/13.5.5-13.5.6-windows-i686-ALL.xml
- − update_3/release/13.5.5-13.5.6-windows-x86_64-ALL.xml
- + update_3/release/13.5.5-13.5.7-linux-i686-ALL.xml
- + update_3/release/13.5.5-13.5.7-linux-x86_64-ALL.xml
- + update_3/release/13.5.5-13.5.7-macos-ALL.xml
- + update_3/release/13.5.5-13.5.7-windows-i686-ALL.xml
- + update_3/release/13.5.5-13.5.7-windows-x86_64-ALL.xml
- + update_3/release/13.5.6-13.5.7-linux-i686-ALL.xml
- + update_3/release/13.5.6-13.5.7-linux-x86_64-ALL.xml
- + update_3/release/13.5.6-13.5.7-macos-ALL.xml
- + update_3/release/13.5.6-13.5.7-windows-i686-ALL.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/3fa487584b73d52820fee1fedf17912a1b9fcc24

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/3fa487584b73d52820fee1fedf17912a1b9fcc24
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Fix 13.5.6 update

2024-10-03 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
e6568d28 by Nicolas Vigier at 2024-10-03T15:17:16+02:00
Fix 13.5.6 update

https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/issues/41245#note_3088148

- - - - -


8 changed files:

- update_3/release/13.5.3-13.5.6-macos-ALL.xml
- update_3/release/13.5.4-13.5.6-macos-ALL.xml
- update_3/release/13.5.5-13.5.6-macos-ALL.xml
- update_3/release/13.5.6-macos-ALL.xml
- update_3/release/download-android-aarch64.json
- update_3/release/download-android-armv7.json
- update_3/release/download-android-x86.json
- update_3/release/download-android-x86_64.json


Changes:

=
update_3/release/13.5.3-13.5.6-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://blog.torproject.org/new-release-tor-browser-1356"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-release-tor-browser-1356"; 
minSupportedOSVersion="16.0.0">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos-13.5.6_ALL.mar";
 hashFunction="SHA512" 
hashValue="3812e78c7002ed4b8fe4ab326dd6f665b7948513d95dc1539eb3dd427122f35edd23a80601bca3ec1bcb3a6d1e2186c4f73afa5158fd2804c9c3ab3cb129803f"
 size="169711162" type="complete">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos--13.5.3-13.5.6_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="0e1f434b7a7cb2b05299ca20c909242401e486b04816b22338820530069822e95f352ef4010b60c8663d5870064410dcb9878cacd9d82e50560776a245992a3a"
 size="9024392" type="partial">
+https://blog.torproject.org/new-release-tor-browser-1356"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-release-tor-browser-1356"; 
minSupportedOSVersion="16.0.0">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos-13.5.6_ALL.mar";
 hashFunction="SHA512" 
hashValue="1e5b00a0e4d078647f8e04c967703e1d0e5ae8171108f2012ca36106c7bf76a41bb50766b79de6e4eabb1d1454f70754d731d1048ad96a20046221ed06677fce"
 size="169713986" type="complete">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos--13.5.3-13.5.6_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="10252334829fa21b7ec10154606cd1079482ef2cc65db6c41dd1ff293a06012b8321f53accb50876f9d53771f16ec666404088d8c42ee43b5ccbec14b76f99bb"
 size="9029180" type="partial">


=
update_3/release/13.5.4-13.5.6-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://blog.torproject.org/new-release-tor-browser-1356"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-release-tor-browser-1356"; 
minSupportedOSVersion="16.0.0">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos-13.5.6_ALL.mar";
 hashFunction="SHA512" 
hashValue="3812e78c7002ed4b8fe4ab326dd6f665b7948513d95dc1539eb3dd427122f35edd23a80601bca3ec1bcb3a6d1e2186c4f73afa5158fd2804c9c3ab3cb129803f"
 size="169711162" type="complete">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos--13.5.4-13.5.6_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="bb89e1aacae8732d0e8a5f5e9ca78d089871edbad9dc7e6f73e1ba5dfdf2ee09e483833fcfa31c25ab38549b0753c95bd77c78180ba3b2a6de579943fa3e1638"
 size="8537264" type="partial">
+https://blog.torproject.org/new-release-tor-browser-1356"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-release-tor-browser-1356"; 
minSupportedOSVersion="16.0.0">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos-13.5.6_ALL.mar";
 hashFunction="SHA512" 
hashValue="1e5b00a0e4d078647f8e04c967703e1d0e5ae8171108f2012ca36106c7bf76a41bb50766b79de6e4eabb1d1454f70754d731d1048ad96a20046221ed06677fce"
 size="169713986" type="complete">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos--13.5.4-13.5.6_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="bb7d500f431022b5ce5b1b7385ef3db44217681b992ba4fc790b9db0c52ee797c6f54a3d47cb43b8e5d8879330dcc6bbd5e10d6c522563717b74fd50fd55cdaf"
 size="8534004" type="partial">


=
update_3/release/13.5.5-13.5.6-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://blog.torproject.org/new-release-tor-browser-1356"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-release-tor-browser-1356"; 
minSupportedOSVersion="16.0.0">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos-13.5.6_ALL.mar";
 hashFunction="SHA512" 
hashValue="3812e78c7002ed4b8fe4ab326dd6f665b7948513d95dc1539eb3dd427122f35edd23a80601bca3ec1bcb3a6d1e2186c4f73afa5158fd2804c9c3ab3cb129803f"
 size="169711162" type="complete">https://cdn.torproject.org/aus1/torbrowser/13.5.6/tor-browser-macos--13.5.5-13.5.6_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="e4b7087c41afe1fd942f0e439e2ce7b175d10c4dc6c027af81e90204edcf8811b19bda84ee2eed70a1fe09c117303c8ba0d196b263965c2d7c6af01e6852f919"
 size="8476716" type="partial">
+https://blog.torproject.org/new-release-tor-browser-1356"; 

[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Remove 13.5a10 watershed rewrite rules from update_pre13.5a10

2024-09-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
694b6c28 by Nicolas Vigier at 2024-09-30T17:29:29+02:00
Remove 13.5a10 watershed rewrite rules from update_pre13.5a10

- - - - -


1 changed file:

- update_pre13.5a10/alpha/.htaccess


Changes:

=
update_pre13.5a10/alpha/.htaccess
=
@@ -2,11 +2,6 @@ RewriteEngine On
 # bug 26569: Redirect pre-8.0a9 alpha users to a separate update directory
 RewriteRule ^[^/]+/8\.0a[12345678]/.* 
https://aus1.torproject.org/torbrowser/update_pre8.0a9/alpha/$0 [last]
 RewriteRule ^[^/]+/[4567]\..*/.* 
https://aus1.torproject.org/torbrowser/update_pre8.0a9/alpha/$0 [last]
-# tor-browser#42747: Make 13.5a10 a watershed alpha release
-RewriteRule ^[^/]+/\d\..*/.* 
https://aus1.torproject.org/torbrowser/update_pre13.5a10/alpha/$0 [last]
-RewriteRule ^[^/]+/1[012]\..*/.* 
https://aus1.torproject.org/torbrowser/update_pre13.5a10/alpha/$0 [last]
-RewriteRule ^[^/]+/13\.0.*/.* 
https://aus1.torproject.org/torbrowser/update_pre13.5a10/alpha/$0 [last]
-RewriteRule ^[^/]+/13\.5a\d/.* 
https://aus1.torproject.org/torbrowser/update_pre13.5a10/alpha/$0 [last]
 RewriteRule ^[^/]+/13.5a10/ no-update.xml [last]
 RewriteRule ^Linux_x86-gcc3/13.5a7/ALL 13.5a7-13.5a10-linux-i686-ALL.xml [last]
 RewriteRule ^Linux_x86-gcc3/13.5a8/ALL 13.5a8-13.5a10-linux-i686-ALL.xml [last]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/694b6c28eff0ccdf4d4e595c68e812e8c9105f43

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/694b6c28eff0ccdf4d4e595c68e812e8c9105f43
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Update share/torbrowser-launcher/tor-browser-developers.asc (#21)

2024-09-23 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
8761fed1 by Nicolas Vigier at 2024-09-23T11:35:05+02:00
Update share/torbrowser-launcher/tor-browser-developers.asc (#21)

Update Tor Browser gpg key for new subkey (tor-browser-build#40964).

- - - - -


1 changed file:

- share/torbrowser-launcher/tor-browser-developers.asc


Changes:

=
share/torbrowser-launcher/tor-browser-developers.asc
=
@@ -13,18 +13,18 @@ 
jOKjNzu8vxbotBgZ01upDUdl69OnR1dv9X+bMzGWUyOjAjK6SP8rFtWFBjWgWcED
 OHu51YpicSdN3uf7lppEXGx91n45xVMhL9d2KNp3DhWkKDuWhdliWC/r1wARAQAB
 tEBUb3IgQnJvd3NlciBEZXZlbG9wZXJzIChzaWduaW5nIGtleSkgPHRvcmJyb3dz
 ZXJAdG9ycHJvamVjdC5vcmc+iQJUBBMBCgA+AhsBBQsJCAcDBRUKCQgLBRYCAwEA
-Ah4BAheAFiEE724obdqF6ipLp95oTixuh5MpgpAFAl8XqaAFCRPu+2YACgkQTixu
-h5MpgpASEQ//fiGjtuwF+xAB5366e0ciTXKTKq2ar2uBgeKnAl7h862ePLE8MwIN
-2d7t1eGBdyr1B+CK6XRkeHtRjN5feOLOKQYy6UkPfSZZnSt/pXqH9bCZWIlejpFl
-HaNAUGFMbmtHzJb4ZEto3B0/HGAAx/1xiHP5GspdEj99H2T710axz5mCqbt6BRv4
-twZCEWQ4LE1GGn1NoBaf0STmF7luKC3IQi/H2VSc2LTJLQoo5Lnmr/w+jZ4N9S/J
-QKfeYQmXplbHWtG+AQh9VxDJxfK8z85zwvosR0LuUpbvn9Jsn8sFwB2TA9jLzPNr
-trBeotx5kcQm1ae+ETiNQdtJ8JzFHm5a5UmViZy6/zyK0T4PisKu7J10mZ9bBBro
-RXuqmxWqnD4GV/knKECE7K2DUeS7HsJin/hVc2OaHckII1i2Ced64tVfP9I1H/QX
-HXeP4AVkeDnwPTVDB/1R3RCBguqm0fkqGBW9HNTQz8ju6hiNdtTtLBFQ8rYaMO8U
-YVfQBFtuh7zKwjSnt0gsN3J/FEcHMIDto5mkerL3GrEnBZeXV8M14BdBOKiw2swK
-ibVuXhmW8nWdKO7evK8O+xE7W6wE+fWCghW3VLM8tnVlpMkmTTxQATbZ74Fhfor2
-DT8Obn8D+IK7Vzv2NJbtX9j1S8bz9t0JCuKIHRClF7ijJ0NyQEM6xbK5Ag0EVI6w
+Ah4BAheAFiEE724obdqF6ipLp95oTixuh5MpgpAFAmaVDyQFCRep+eoACgkQTixu
+h5MpgpC6GQ/9FyEMSUzJz48BAQVAyhdJMYoDAWFEVUOZHKv0QjciMfTsvoYhWc/P
+G2LX3r/Uo86Kty8zuyLBEE40HR9Ji2XTqCSbZgmL+xyFhl+YXJAD7hNBY19yfGOz
+fR24r/R8tN0gFJtYxmDOsU6rZyYftLfgiDTopRvtQcLPdAOtG3HRlfoNvD5SvxJG
+HZsNNbUHbw+SOGygeI976pyhiXibgUkiI8fRdR1iRBNfWH33TsjjtmYIlGmBj+Hf
+8BjFhlKji2v9aPPrAQpAxgddsCO4BVf544EekajKkCTZQ7rYNnfq6SuETjIZjO1a
+0e2tB6qt2VP3asKha/m4xHkGtam+6K5glknut1BqY4XciHpnOfZTdRiXmRVI1wMw
+vZY+TAumKj6a58X1iYuvOUBeTuc1hR7Rc7LCBk1YhwJ9ke/SjAHTakhdZaiZ+YSZ
+HpF7ue7UHqwndswcXksabYQaZHCVPwkY2a29FH1Cc6OHVDd7hZJlgKR04uNXEL/A
+cvYy/GgAUnSyioQUh3SEJ4EzxVYT+4NHCwHOL9kiUhd9uAHgT5ic0WyGBihtPnQV
+wvIbZd+7LXtZLUm8RrHL2SEddcv4ZoL+mIgc29OMzklatza2TjX1ubvmv/d8I6kf
+rehBIgXeoL8r+nCBfsJAUU8bmfFx4UY+8OTczbYf5kCb/NqiaCZfPJC5Ag0EVI6w
 6gEQAOSdq/N0T8db8PTutfkBRVtkdVpvhumkKWbjBoN4CwA8BVZSAfdgNCE74tyP
 +k7Pa802eQBUE6f0j4rD8E7ohGO61vo3ZLIIMPGCQOLtvOThNKU8ZBnCPdUbk6ms
 bPmnfh9Khz33zGkjozzr3uLkRDKqgwCu22sgxMMa+Szs2yBpejab4mSRglNgEgm1
@@ -70,40 +70,40 @@ 
df1B0nicivxYAGb0Nc8ICl89WMfKp+/LMzD08Alzz26Mfmglv6zJx2J0b8puMEtT
 iM4ESrDVrMxewibZ4cI9e1g86WXGPlIZ0ApicFlr69bTIPzIYNmYwWqab2tqm0MQ
 VRpNDWMIkWJ/r3TTmNN+Fqv827Fo7qR8zjPVi8DyoKmFzfgya2ZoE7od5bGg7lcM
 7UhzEPfwZUMqKaawlrnzqy1sGLJi0QZErUhHo3tU9sHYqAtUENvs4LC7dEG5Ag0E
-YUSBvAEQALxuQqEliMOMGpoVXWK7uIPHXmV8U/kUuAtda3Mfo7vySXUgqv3Cgia+
-pszIXa5BYx3GCCx2W+H+EYzyB80Nw/Qz2kAX03+wJ/gaioQfRkNEcZi8cvWS08px
-TVpKkaPMRuhSk0eCXAXmikDOUvzxqeB7U/IPBdsZJJoQk5vfOJX1vA0ZvdHwW+uZ
-C69rJctAqZ+qaEtOO94i9o+MfUq+ovHPflYM5o27w8oC9LKmTJVa6vMg88dLRkJp
-nXHe0Xr8Xq6seJZIfixu1RvFA5OLvxJvEySKwI2HJ+Fn56AnPZKb64YA67PLe/j+
-201w+svGh71FFbjxyrxOTGDdeZ9AMHJ6IRvdhtgvh6ZxceWHKSqDxkZo5BgfKmkK
-Y9V+PNmpa/h7jEA+531L67j1o0B1dgmnvHobiixTiTMI7tPTAs9fsXg2RWs+L+nP
-VHQLTHqOMRRsD0sv/W2cCrydNN3w7e1Fbv1Ka55AAu1uslO+XJehkbqb5GojaAGM
-4DowintgyfEYP4BKl299lD5/w4e1NsO8o7xkU9oswzNT57jocla0P3jFVSdvg75+
-H9qUnp52k0BZO4ynQLreaUpUxax4H9L38iE5ClgX5vJ+4fCEyqyIhAVEhFGpjDJ+
-TG1EB2ljE7PjCKUg+OK+Xf42F5BrZmji1fpAsKiOhSwHs7lj8gcVABEBAAGJBHIE
-GAEKACYCGwIWIQTvbiht2oXqKkun3mhOLG6HkymCkAUCZZmnzAUJBYRfEAJACRBO
-LG6HkymCkMF0IAQZAQoAHRYhBGExiPxb4hduPtVJAeU9mJqeLUe/BQJhRIG8AAoJ
-EOU9mJqeLUe/vKEP/2+AD/ZAqQQRSGbvkh0TIMjLkBpS5lyVA1rHtTOzhAmtCnoi
-0x0Dd6w8d81yjNuvfGhijdxPOjUicA+9tEWHKb3AszV8JL72vC2OJl3Qod+C9N55
-907r+EL41A4Ew7bLYz5DifQBoVt/qzTjUIZdpNbz/oDHr75R3bm8QwKSVrj0mia/
-l1rCCLBVAFAaF59VIS/KjyRo5wPqUaUkxU5A1MH/FXcRXaukO4ontNqaZpV+P1c9
-+duQnAI1dXEDpIgCya+4kJDazBKLn3HtPYf758qNj0qAMl+Z3zeGPmdFx5dIV5IQ
-wxjQopnjHg6rBTLqGGQvD9OLpCXsCrahEF0BXrVRHVBL5yJih+XO12eIoMX/PnDT
-Sd3SodO0W3Pfp6MHMx6QSox8r5OJdi+WrrSwZBBg3UQL82+SBdJMDhxFutyGQ6rj
-Wt1EdOOfOLlH97dl2z4jCmstXAc7pPC7XNOFz3zZbJmjBV++Ax9T0Bh5zLfvvzHx
-s0j05wlQTiVJZBlGLAecMosdWzf1J6xqaQY2fOn/psF110iWLQMhrsiIXcjeUrFa
-g17DCVuB5v6lHxYpcy9KnYQQs7AHrSQHbd22Tw7I+bwdtsKNVLgrg+qGxitbW/kc
-/tM17NAHcVrXohP/NUx3QbJ6Ild14EjuFSWlU1Z9TU7PmIzP8TPyiruxv8IqpB0Q
-AIFc7W4zMoYaonNZ10tVLhyjwOUAlDwf2B0Iwy15ctr07Kn6bMeMZULFpXhExCw7
-2mtnAK4jHRphR5m7t7mSYxMwSP5HAffFZpkx8YQHYq2ZSe+yIxXeRwraMdO7POJg
-tPt730xoBB7Cra2t1yQj9KuIewuy1qZhjn+upabH4x6OVox1gZcoj+cxZ5mSV+9C
-Hkypgl9VQZWAjG36Y8rJ//3KFAizJLwGP3XAtUx9cId75mWCz8SJwroadoVrk1dR
-IQ2HPZEjmbhWKXR5InJNg0BgHh3qT1bW1tu8xKHqauukrzgAmDcBjOT50lpuGBzW
-9hU/MuyaqpPLwWH5NFkpgBwvIGwQbW4aq59M4HZhYeTas0YqQL6ju70c6w0ZmCis
-0mn4IaPJCO55HTZvtXxEp4iyyepDoSFbAeOnActKWrOueNlsDshGzfqCbFgCsj+f
-vNetkQSX4CBM4r96RydMaSGm1FX+bAu5RoyxIAxIrotHbGY0x1speXawuJx1H9RH
-vVoQA/PdUZ+06g8vAjBS

[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Update 11.5.8 mar URLs to point to archive.tpo (tor-browser-build#41233)

2024-09-10 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
c68ab1ee by Nicolas Vigier at 2024-09-09T18:41:54+02:00
Update 11.5.8 mar URLs to point to archive.tpo (tor-browser-build#41233)

We're been keeping 11.5.8 mar files on cdn.torproject.org as a watershed
update for a while. We're switching to archive.tpo URLs to be able to
remove it from cdn.tpo.

- - - - -


30 changed files:

- update_pre12.0/release/11.5.7-11.5.8-linux32-ar.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ca.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-cs.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-da.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-de.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-el.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-en-US.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-es-AR.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-es-ES.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-fa.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-fr.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ga-IE.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-he.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-hu.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-id.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-is.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-it.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ja.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ka.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ko.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-lt.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-mk.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ms.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-my.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-nb-NO.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-nl.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-pl.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-pt-BR.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ro.xml
- update_pre12.0/release/11.5.7-11.5.8-linux32-ru.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/c68ab1eea0fcfbe59a8e21d552bef8f54940d60d

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/c68ab1eea0fcfbe59a8e21d552bef8f54940d60d
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-bundle-testsuite][main] Update nightly build email list:

2024-09-03 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-bundle-testsuite


Commits:
d52e9273 by Morgan at 2024-08-24T22:00:00+00:00
Update nightly build email list:

- removed richard
- added bea, clairehurst, jwilde, and morgan

- - - - -


1 changed file:

- config/tb-build-06.torproject.org


Changes:

=
config/tb-build-06.torproject.org
=
@@ -49,12 +49,15 @@ my %res = (
 'email-subject' => '[build result: [% success ? "ok" : "failed" %]] [% 
options.name %]',
 'email-report' => 1,
 'email-to' => [
+  'b...@torproject.org',
   'bo...@torproject.org',
+  'clairehu...@torproject.org',
   'd...@torproject.org',
   'he...@torproject.org',
+  'jwi...@torproject.org',
   'm...@torproject.org',
+  'mor...@torproject.org',
   'pie...@torproject.org',
-  'rich...@torproject.org',
 ],
 'email-from' => 'Tor Browser Nightly Builds 
',
 'test_post' => $run_rsync,



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite/-/commit/d52e9273a0c0c1ee1b373fa51972c32553e5063a

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite/-/commit/d52e9273a0c0c1ee1b373fa51972c32553e5063a
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41218: Use new Tor Browser gpg subkey for signing stable releases

2024-08-21 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
3f16675b by Nicolas Vigier at 2024-08-21T13:08:19+02:00
Bug 41218: Use new Tor Browser gpg subkey for signing stable releases

With #40964 we started using a new subkey for signing alpha releases.
We now start using the new subkey for signing stable releases too.

- - - - -


3 changed files:

- tools/signing/linux-signer-gpg-sign
- tools/signing/machines-setup/sudoers.d/sign-gpg
- tools/signing/wrappers/sign-gpg


Changes:

=
tools/signing/linux-signer-gpg-sign
=
@@ -4,8 +4,6 @@ set -e
 script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
 source "$script_dir/functions"
 
-test "$tbb_version_type" = "alpha" && export GPG_NEWSUBKEY=1
-
 cd ~/"$SIGNING_PROJECTNAME-$tbb_version"
 
 test -n "$GPG_PASS" || read -sp "Enter gpg passphrase: " GPG_PASS


=
tools/signing/machines-setup/sudoers.d/sign-gpg
=
@@ -1,2 +1,2 @@
-Defaults>signing-gpg env_keep += "SIGNING_PROJECTNAME GPG_NEWSUBKEY"
+Defaults>signing-gpg env_keep += SIGNING_PROJECTNAME
 %signing ALL = (signing-gpg) NOPASSWD: 
/signing/tor-browser-build/tools/signing/wrappers/sign-gpg


=
tools/signing/wrappers/sign-gpg
=
@@ -11,6 +11,5 @@ if test $(whoami) != 'signing-gpg'; then
   exit 1
 fi
 
-gpg_subkey='0xe53d989a9e2d47bf!'
-test -n "$GPG_NEWSUBKEY" && gpg_subkey='0x157432CF78A65729!'
+gpg_subkey='0x157432CF78A65729!'
 exec gpg --homedir /home/signing-gpg/.gnupg -absu "$gpg_subkey" --batch 
--no-tty -o- --passphrase-fd 0 -- "$1"



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/3f16675b5d141503d538f084917e848e647cde3e

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/3f16675b5d141503d538f084917e848e647cde3e
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41218: Use new Tor Browser gpg subkey for signing stable releases

2024-08-21 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
f4580f58 by Nicolas Vigier at 2024-08-21T13:07:03+02:00
Bug 41218: Use new Tor Browser gpg subkey for signing stable releases

With #40964 we started using a new subkey for signing alpha releases.
We now start using the new subkey for signing stable releases too.

- - - - -


3 changed files:

- tools/signing/linux-signer-gpg-sign
- tools/signing/machines-setup/sudoers.d/sign-gpg
- tools/signing/wrappers/sign-gpg


Changes:

=
tools/signing/linux-signer-gpg-sign
=
@@ -4,8 +4,6 @@ set -e
 script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
 source "$script_dir/functions"
 
-test "$tbb_version_type" = "alpha" && export GPG_NEWSUBKEY=1
-
 cd ~/"$SIGNING_PROJECTNAME-$tbb_version"
 
 test -n "$GPG_PASS" || read -sp "Enter gpg passphrase: " GPG_PASS


=
tools/signing/machines-setup/sudoers.d/sign-gpg
=
@@ -1,2 +1,2 @@
-Defaults>signing-gpg env_keep += "SIGNING_PROJECTNAME GPG_NEWSUBKEY"
+Defaults>signing-gpg env_keep += SIGNING_PROJECTNAME
 %signing ALL = (signing-gpg) NOPASSWD: 
/signing/tor-browser-build/tools/signing/wrappers/sign-gpg


=
tools/signing/wrappers/sign-gpg
=
@@ -11,6 +11,5 @@ if test $(whoami) != 'signing-gpg'; then
   exit 1
 fi
 
-gpg_subkey='0xe53d989a9e2d47bf!'
-test -n "$GPG_NEWSUBKEY" && gpg_subkey='0x157432CF78A65729!'
+gpg_subkey='0x157432CF78A65729!'
 exec gpg --homedir /home/signing-gpg/.gnupg -absu "$gpg_subkey" --batch 
--no-tty -o- --passphrase-fd 0 -- "$1"



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f4580f587d426fc829fc8596e2a89e02aa1ad73e

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f4580f587d426fc829fc8596e2a89e02aa1ad73e
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Update URL for 14.0a1 macos mar files

2024-08-07 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
866d5d59 by Nicolas Vigier at 2024-08-07T14:41:37+02:00
Update URL for 14.0a1 macos mar files

Change the URLs because the old files are being cached on
cdn.torproject.org.

- - - - -


4 changed files:

- update_3/alpha/13.5a7-14.0a1-macos-ALL.xml
- update_3/alpha/13.5a8-14.0a1-macos-ALL.xml
- update_3/alpha/13.5a9-14.0a1-macos-ALL.xml
- update_3/alpha/14.0a1-macos-ALL.xml


Changes:

=
update_3/alpha/13.5a7-14.0a1-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
minSupportedOSVersion="19.0.0">https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377"
 size="156864833" type="complete">https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a7-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42"
 size="116504145" type="partial">
+https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
minSupportedOSVersion="19.0.0">https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377"
 size="156864833" type="complete">https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos--13.5a7-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42"
 size="116504145" type="partial">


=
update_3/alpha/13.5a8-14.0a1-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
minSupportedOSVersion="19.0.0">https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377"
 size="156864833" type="complete">https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a8-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba"
 size="113998742" type="partial">
+https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
minSupportedOSVersion="19.0.0">https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377"
 size="156864833" type="complete">https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos--13.5a8-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba"
 size="113998742" type="partial">


=
update_3/alpha/13.5a9-14.0a1-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
minSupportedOSVersion="19.0.0">https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377"
 size="156864833" type="complete">https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a9-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="2f05fdd0a532de4848baf55f9624ac4040258462246a2024380ea4b8c70e83c23f9521832ac39328dff1cbcc31cd16c0711e14ecc857dbecdb62f4c6fd8fa5c3"
 size="113700777" type="partial">
+https://blog.torproject.org/new-alpha-release-tor-browser-140a1"; 
actions="showURL" 
openURL="https://blog.torproject.org/new-alpha-release-tor-browser-

[tor-commits] [Git][tpo/applications/mullvad-browser-update-responses][main] alpha: new version, 14.0a1

2024-08-07 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
mullvad-browser-update-responses


Commits:
3fb01f01 by Nicolas Vigier at 2024-08-07T14:05:03+02:00
alpha: new version, 14.0a1

- - - - -


4 changed files:

- update_1/alpha/13.5a7-14.0a1-macos-ALL.xml
- update_1/alpha/13.5a8-14.0a1-macos-ALL.xml
- update_1/alpha/13.5a9-14.0a1-macos-ALL.xml
- update_1/alpha/14.0a1-macos-ALL.xml


Changes:

=
update_1/alpha/13.5a7-14.0a1-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
actions="showURL" 
openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
minSupportedOSVersion="19.0.0">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7"
 size="128840182" type="complete">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a7-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="99281166bef9ad6f9baed14e92e264b8851c4e518a91dca1faf6855420927a4f279cb0028d4a63eddcb3b990bb9729bd586f22850f52fe446bb9f72a205c190d"
 size="91223005" type="partial">
+https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
actions="showURL" 
openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
minSupportedOSVersion="19.0.0">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780058a85d53306caf90a3928ceef868a4d000f99"
 size="128837886" type="complete">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a7-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="175b2c0171322cd1d8737a3ca5316750b5a6b5b18c97e5322c296611d1ba5dc0e563236893d1159c655297b084e76ef25ffb9735dd870775637babfcafde4b90"
 size="103691123" type="partial">


=
update_1/alpha/13.5a8-14.0a1-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
actions="showURL" 
openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
minSupportedOSVersion="19.0.0">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7"
 size="128840182" type="complete">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a8-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="ec8142025f31086993af14379f8d3dcf3a5768fda89b5ec86b90bc65de0f059b6efae3199a46b0d3c1d4866160294b5c18d76d77680022f0a046188c1f395603"
 size="89601570" type="partial">
+https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
actions="showURL" 
openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
minSupportedOSVersion="19.0.0">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780058a85d53306caf90a3928ceef868a4d000f99"
 size="128837886" type="complete">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a8-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="5e03c944bea45d701d45d99e13466e67a5fdc81d1960d1df4ac4041f18d567ee2768fefa5e63530a764b09b8da66b4620304aea0a410ebc43b753ce9420bd373"
 size="102228020" type="partial">


=
update_1/alpha/13.5a9-14.0a1-macos-ALL.xml
=
@@ -1,2 +1,2 @@
 
-https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
actions="showURL" 
openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
minSupportedOSVersion="19.0.0">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7"
 size="128840182" type="complete">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a9-14.0a1_ALL.incremental.mar";
 hashFunction="SHA512" 
hashValue="9d5ee6d9515c62d14ff7155e014a3b7a371469a55f9032a783f7ea0a9fcb15cee10c4c968da411990fc51943c7a9cc0d16598844c08b4315570c62565add92bb"
 size="87239905" type="partial">
+https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
actions="showURL" 
openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1"; 
minSupportedOSVersion="19.0.0">https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar";
 hashFunction="SHA512" 
hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780

[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41203: Tor Blog generation script uses the wrong url scheme for alpha releases

2024-08-03 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
ce7944ec by Morgan at 2024-08-01T18:36:58+00:00
Bug 41203: Tor Blog generation script uses the wrong url scheme for alpha 
releases

- - - - -


1 changed file:

- tools/signing/create-blog-post


Changes:

=
tools/signing/create-blog-post
=
@@ -9,31 +9,27 @@ var_is_defined blog_publish_user blog_directory
 content_dir="$blog_directory/content/blog"
 test -d "$content_dir" || exit_error "$content_dir is not a direcotry"
 
-blog_dir="$content_dir/new-release-tor-browser-"$(echo $tbb_version | sed 
's/\.//g')
-
-test -d "$blog_dir" && exit_error "$blog_dir already exists"
-
-mkdir "$blog_dir"
-echo "Created directory $blog_dir"
-
 if test "$tbb_version_type" = "release"
 then
+  blog_dir_base="new-release-tor-browser"
   lead=../../../assets/static/images/blog/tor-browser-stable.png
-else
-  lead=../../../assets/static/images/blog/tor-browser-alpha.png
-fi
-ln -s "$lead" "$blog_dir/lead.png"
-echo "Created $blog_dir/lead.png -> $lead"
-
-
-if test "$tbb_version_type" = "release"
-then
   title="New Release: Tor Browser $tbb_version"
   download_page='https://www.torproject.org/download/'
 else
+  blog_dir_base="new-alpha-release-tor-browser"
+  lead=../../../assets/static/images/blog/tor-browser-alpha.png
   title="New Alpha Release: Tor Browser $tbb_version"
   download_page='https://www.torproject.org/download/alpha/'
 fi
+blog_dir="$content_dir/$blog_dir_base-"$(echo $tbb_version | sed 's/\.//g')
+
+test -d "$blog_dir" && exit_error "$blog_dir already exists"
+
+mkdir "$blog_dir"
+echo "Created directory $blog_dir"
+
+ln -s "$lead" "$blog_dir/lead.png"
+echo "Created $blog_dir/lead.png -> $lead"
 
 contents_lr="$blog_dir/contents.lr"
 cat > "$contents_lr" << EOF



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ce7944ec79f7a605a937ded92c3a79a088360e1a

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ce7944ec79f7a605a937ded92c3a79a088360e1a
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] alpha: disable macOS updates for now

2024-08-01 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
b5c9cf63 by Nicolas Vigier at 2024-08-01T11:59:18+02:00
alpha: disable macOS updates for now

- - - - -


1 changed file:

- update_3/alpha/.htaccess


Changes:

=
update_3/alpha/.htaccess
=
@@ -13,16 +13,8 @@ RewriteRule ^Linux_x86_64-gcc3/13.5a8/ALL 
13.5a8-14.0a1-linux-x86_64-ALL.xml [la
 RewriteRule ^Linux_x86_64-gcc3/13.5a9/ALL 13.5a9-14.0a1-linux-x86_64-ALL.xml 
[last]
 RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a1-linux-x86_64-ALL.xml [last]
 RewriteRule ^Linux_x86_64-gcc3/ 14.0a1-linux-x86_64-ALL.xml [last]
-RewriteRule ^Darwin_x86_64-gcc3/13.5a7/ALL 13.5a7-14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_x86_64-gcc3/13.5a8/ALL 13.5a8-14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_x86_64-gcc3/13.5a9/ALL 13.5a9-14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_x86_64-gcc3/ 14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_aarch64-gcc3/13.5a7/ALL 13.5a7-14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_aarch64-gcc3/13.5a8/ALL 13.5a8-14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_aarch64-gcc3/13.5a9/ALL 13.5a9-14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a1-macos-ALL.xml [last]
-RewriteRule ^Darwin_aarch64-gcc3/ 14.0a1-macos-ALL.xml [last]
+RewriteRule ^Darwin_x86_64-gcc3/ no-update.xml [last]
+RewriteRule ^Darwin_aarch64-gcc3/ no-update.xml [last]
 RewriteRule ^WINNT_x86-gcc3/13.5a7/ALL 13.5a7-14.0a1-windows-i686-ALL.xml 
[last]
 RewriteRule ^WINNT_x86-gcc3/13.5a8/ALL 13.5a8-14.0a1-windows-i686-ALL.xml 
[last]
 RewriteRule ^WINNT_x86-gcc3/13.5a9/ALL 13.5a9-14.0a1-windows-i686-ALL.xml 
[last]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/b5c9cf630385d993c8e1423be0791fae3abba006

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/b5c9cf630385d993c8e1423be0791fae3abba006
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41197: Modify nightly's update-responses to prevent upgrades on...

2024-07-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
e5560888 by Morgan at 2024-07-30T21:05:34+00:00
Bug 41197: Modify nightly's update-responses to prevent upgrades on 
unsupported Windows and macOS versions

- - - - -


1 changed file:

- tools/signing/nightly/update-responses-base-config.yml


Changes:

=
tools/signing/nightly/update-responses-base-config.yml
=
@@ -18,14 +18,17 @@ versions:
 nightly_version:
 platformVersion: 115.1.0
 detailsURL: https://nightlies.tbb.torproject.org/
+# minSupportedOsVersion on macOS corresponds to the Darwin version ( 
https://en.wikipedia.org/wiki/Darwin_(operating_system) )
 macos:
-minSupportedOSVersion: 16.0.0
+# macOS v10.15.0
+minSupportedOSVersion: 19.0.0
+# minSupportedOsVersion on Windows corresponds to the operating system 
version ( 
https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-version 
)
 windows-i686:
-minSupportedOSVersion: 6.1
-minSupportedInstructionSet: SSE2
+# Windows 10
+minSupportedOSVersion: 10.0
 windows-x86_64:
-minSupportedOSVersion: 6.1
-minSupportedInstructionSet: SSE2
+# Windows v10
+minSupportedOSVersion: 10.0
 linux-i686:
 minSupportedInstructionSet: SSE2
 linux-x86_64:



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e55608886ccb9faa8909d7ef0af60b17a1a41ed4

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e55608886ccb9faa8909d7ef0af60b17a1a41ed4
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41194: Add user morgan on signing machines

2024-07-29 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
92bd7662 by Nicolas Vigier at 2024-07-30T08:21:56+02:00
Bug 41194: Add user morgan on signing machines

- - - - -


2 changed files:

- tools/signing/machines-setup/setup-signing-machine
- + tools/signing/machines-setup/ssh-keys/morgan.pub


Changes:

=
tools/signing/machines-setup/setup-signing-machine
=
@@ -96,6 +96,8 @@ sudoers_file set-date
 authorized_keys boklm boklm-tb-release.pub boklm-yk1.pub
 create_user richard signing
 authorized_keys richard richard.pub
+create_user morgan signing
+authorized_keys morgan morgan.pub
 
 # Install rbm deps
 install_packages libyaml-libyaml-perl libtemplate-perl libdatetime-perl \


=
tools/signing/machines-setup/ssh-keys/morgan.pub
=
@@ -0,0 +1 @@
+ssh-rsa 
B3NzaC1yc2EDAQABAAACAQCxOZQLd6QSfBYAdGKeptwqrxcLiV6yHY6cEhMWIWMHQFY5sdhSqpg+T5+L9PYHr1Gl3f7+YXUqKXpGnqLY9fVUEas/zxa8D9//P2fG838uphqTk12wvlN2kuLzyo9s8sQmNZVEJ0w3ktc3e6CDv2wikKw5opmBaHXf2LKk/5HjawcjSLPdXVZVlEby8EprIHjb0a8Zn46WYRtUwUEIPrrFsbq97cEt0oMu1mVvdLR+G5nzSxQdKP0XnGu//PND5z7DvCIJA9bwaA3vV9R2uvmvyn9n5p1zxX6yiHwz2OVUoXyetemXtsMFGlHUZV4XAMcJPz00MZQFjAChsb8C4IyFMdWBiLng70PuFGGnIdx0ZX1TA3Gum2tNwdX9+pFT+0gxN0I4hFC0+PSxqGpmZtGZ1D1ZQeQuZwBMf4u5f/24kw/b9jkasuUGMTtLdD0wwmT8sSuOSyusroMmrHaofFX6Ciu7DnmFwyFqvemz7GNX9R1A2GzGYejBcvr4SuWonQ1mEy0mvhaDZn935IplwsF2aYNjGxH1Hpjo5362JfFpEaEfKvzkotQ9bNXoznseztQCzhEB8DielOYJ/ZDcKtFijHIzMNr9pj0qnLAdBjRarWpd8n+erF82GKoBmSi7BOXgck1i/R1meyvb494wl+lFZL+89FZZ5ZGSn1+j1RkMFw==
 openpgp:0xF65B11DA



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/92bd76624335ec5b7ba46677ee4bb58158258374

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/92bd76624335ec5b7ba46677ee4bb58158258374
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-bundle-testsuite][main] Bug 40078: Update tools/tb-build-06-start-nightly-build to archive binaries...

2024-07-17 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-bundle-testsuite


Commits:
b83c519e by Richard Pospesel at 2024-07-10T21:18:46+00:00
Bug 40078: Update tools/tb-build-06-start-nightly-build to archive binaries 
after tor-browser-build#40829

- - - - -


1 changed file:

- tools/tb-build-06-start-nightly-build


Changes:

=
tools/tb-build-06-start-nightly-build
=
@@ -41,13 +41,14 @@ then
 find "$dir" -maxdepth 1 \( \
-name '*.txt' \
 -o -name '*.asc' \
--o -name 'torbrowser-install-*_ALL.exe' \
--o -name 'TorBrowser-*_ALL.dmg' \
--o -name 'tor-browser-linux*_ALL.tar.xz' \
--o -name '*-multi-qa.apk' \
--o -name 'basebrowser-install-*_ALL.exe' \
--o -name 'BaseBrowser-*_ALL.dmg' \
--o -name 'base-browser-linux*_ALL.tar.xz' \
+-o -name '*-browser-windows*.exe' \
+-o -name '*-browser-macos*.dmg' \
+-o -name '*-browser-linux*.tar.xz' \
+-o -name '*-browser*.deb' \
+-o -name '*-browser*.rpm' \
+-o -name '*-browser*.apk' \
+-o -name '*-browser-debug-symbols-*.tar.xz' \
+-o -name 'tor-expert-bundle*.tar.gz' \
 \) \
   -a -execdir cp -a {} "$dname" \;
   done



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite/-/commit/b83c519e4cd945043ab0641b5541f5c36dfd410a

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite/-/commit/b83c519e4cd945043ab0641b5541f5c36dfd410a
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41184: Update generate blog post script to use new blog header images

2024-07-16 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
e71735f4 by Nicolas Vigier at 2024-07-16T11:38:07+02:00
Bug 41184: Update generate blog post script to use new blog header images

- - - - -


1 changed file:

- tools/signing/create-blog-post


Changes:

=
tools/signing/create-blog-post
=
@@ -18,9 +18,9 @@ echo "Created directory $blog_dir"
 
 if test "$tbb_version_type" = "release"
 then
-  lead=../../../assets/static/images/blog/tor-browser-13.png
+  lead=../../../assets/static/images/blog/tor-browser-stable.png
 else
-  lead=../../../assets/static/images/blog/tor-browser_0_0.png
+  lead=../../../assets/static/images/blog/tor-browser-alpha.png
 fi
 ln -s "$lead" "$blog_dir/lead.png"
 echo "Created $blog_dir/lead.png -> $lead"



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e71735f4a849df78574dfe8ef21ea1465c3f0048

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e71735f4a849df78574dfe8ef21ea1465c3f0048
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] release: new version, 13.5.1

2024-07-10 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
4dcdd36b by Nicolas Vigier at 2024-07-10T14:37:43+02:00
release: new version, 13.5.1

- - - - -


30 changed files:

- update_3/release/.htaccess
- − update_3/release/13.0.14-13.5-linux-i686-ALL.xml
- − update_3/release/13.0.14-13.5-linux-x86_64-ALL.xml
- − update_3/release/13.0.14-13.5-macos-ALL.xml
- − update_3/release/13.0.14-13.5-windows-i686-ALL.xml
- − update_3/release/13.0.14-13.5-windows-x86_64-ALL.xml
- − update_3/release/13.0.15-13.5-linux-i686-ALL.xml
- − update_3/release/13.0.15-13.5-linux-x86_64-ALL.xml
- − update_3/release/13.0.15-13.5-macos-ALL.xml
- − update_3/release/13.0.15-13.5-windows-i686-ALL.xml
- − update_3/release/13.0.15-13.5-windows-x86_64-ALL.xml
- + update_3/release/13.0.15-13.5.1-linux-i686-ALL.xml
- + update_3/release/13.0.15-13.5.1-linux-x86_64-ALL.xml
- + update_3/release/13.0.15-13.5.1-macos-ALL.xml
- + update_3/release/13.0.15-13.5.1-windows-i686-ALL.xml
- + update_3/release/13.0.15-13.5.1-windows-x86_64-ALL.xml
- − update_3/release/13.0.16-13.5-linux-i686-ALL.xml
- − update_3/release/13.0.16-13.5-linux-x86_64-ALL.xml
- − update_3/release/13.0.16-13.5-macos-ALL.xml
- − update_3/release/13.0.16-13.5-windows-i686-ALL.xml
- − update_3/release/13.0.16-13.5-windows-x86_64-ALL.xml
- + update_3/release/13.0.16-13.5.1-linux-i686-ALL.xml
- + update_3/release/13.0.16-13.5.1-linux-x86_64-ALL.xml
- + update_3/release/13.0.16-13.5.1-macos-ALL.xml
- + update_3/release/13.0.16-13.5.1-windows-i686-ALL.xml
- + update_3/release/13.0.16-13.5.1-windows-x86_64-ALL.xml
- + update_3/release/13.5-13.5.1-linux-i686-ALL.xml
- + update_3/release/13.5-13.5.1-linux-x86_64-ALL.xml
- + update_3/release/13.5-13.5.1-macos-ALL.xml
- + update_3/release/13.5-13.5.1-windows-i686-ALL.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/4dcdd36bea6bea1e647dfa17b65348e906d2617c

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/4dcdd36bea6bea1e647dfa17b65348e906d2617c
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Update rbm for rbm#40077

2024-06-27 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
07b94e5f by Nicolas Vigier at 2024-06-27T08:17:50+02:00
Update rbm for rbm#40077

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 148d8541f177f318bfd8c8abfbf9fa96f581ceb8
+Subproject commit 1e0cfb68e958c1b22ac51fd32859781b8da2bc93



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/07b94e5f9493ba72da6b64a7a5391d59c3cdfafe

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/07b94e5f9493ba72da6b64a7a5391d59c3cdfafe
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41177: Include Windows installers without -portable- in download-*.json files

2024-06-20 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
dcc49985 by Nicolas Vigier at 2024-06-20T12:12:50+02:00
Bug 41177: Include Windows installers without -portable- in download-*.json 
files

After tor-browser-build#41167, the portable Windows installer are not
generated anymore for Mullvad Browser. We should include the normal
installer (without `-portable-` or `-install-` in the filename) in
the download-*.json files.

- - - - -


1 changed file:

- tools/update-responses/update_responses


Changes:

=
tools/update-responses/update_responses
=
@@ -138,9 +138,9 @@ sub get_version_downloads {
 $os = 'macos';
 } elsif ($file =~ 
m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
 $os = $1;
-} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-x86_64-portable-${version}.exe$/) {
+} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-x86_64-(portable-|)${version}.exe$/) {
 $os = 'win64';
-} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-i686-portable-${version}.exe$/) {
+} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-i686-(portable-|)${version}.exe$/) {
 $os = 'win32';
 } else {
 next;
@@ -167,7 +167,7 @@ sub get_perplatform_downloads {
   $os = 'macos';
 } elsif ($file =~ 
m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
   $os = $1;
-} elsif ($file =~ 
m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-portable-${version}.exe$/)
 {
+} elsif ($file =~ 
m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-(portable-|)${version}.exe$/)
 {
   $os = $1;
 } elsif ($file =~ 
m/^$config->{appname_bundle}-(android-armv7|android-x86|android-x86_64|android-aarch64)-${version}.apk$/)
 {
   $os = $1;



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/dcc499851badfc241b4bb353468600f5d31228f7

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/dcc499851badfc241b4bb353468600f5d31228f7
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41177: Include Windows installers without -portable- in download-*.json files

2024-06-20 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
0de58f7a by Nicolas Vigier at 2024-06-20T12:07:40+02:00
Bug 41177: Include Windows installers without -portable- in download-*.json 
files

After tor-browser-build#41167, the portable Windows installer are not
generated anymore for Mullvad Browser. We should include the normal
installer (without `-portable-` or `-install-` in the filename) in
the download-*.json files.

- - - - -


1 changed file:

- tools/update-responses/update_responses


Changes:

=
tools/update-responses/update_responses
=
@@ -138,9 +138,9 @@ sub get_version_downloads {
 $os = 'macos';
 } elsif ($file =~ 
m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
 $os = $1;
-} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-x86_64-portable-${version}.exe$/) {
+} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-x86_64-(portable-|)${version}.exe$/) {
 $os = 'win64';
-} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-i686-portable-${version}.exe$/) {
+} elsif ($file =~ 
m/^$config->{appname_bundle}-windows-i686-(portable-|)${version}.exe$/) {
 $os = 'win32';
 } else {
 next;
@@ -167,7 +167,7 @@ sub get_perplatform_downloads {
   $os = 'macos';
 } elsif ($file =~ 
m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
   $os = $1;
-} elsif ($file =~ 
m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-portable-${version}.exe$/)
 {
+} elsif ($file =~ 
m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-(portable-|)${version}.exe$/)
 {
   $os = $1;
 } elsif ($file =~ 
m/^$config->{appname_bundle}-(android-armv7|android-x86|android-x86_64|android-aarch64)-${version}.apk$/)
 {
   $os = $1;



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0de58f7a69361e85355f352a88e90697058e1a45

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0de58f7a69361e85355f352a88e90697058e1a45
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/mullvad-browser-update-responses][main] Add Windows installers to the download json files

2024-06-20 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
mullvad-browser-update-responses


Commits:
5240f7fa by Nicolas Vigier at 2024-06-20T12:19:41+02:00
Add Windows installers to the download json files

Due to tor-browser-build#41177, the Windows installers were missing or
not updated in the download json files.

- - - - -


2 changed files:

- update_1/release/download-windows-x86_64.json
- update_1/release/downloads.json


Changes:

=
update_1/release/download-windows-x86_64.json
=
@@ -1 +1 @@
-{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-portable-13.0.16.exe","git_tag":"mb-13.0.16-build1","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-portable-13.0.16.exe.asc","version":"13.0.16"}
\ No newline at end of file
+{"binary":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-windows-x86_64-13.5.exe","git_tag":"mb-13.5-build1","sig":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-windows-x86_64-13.5.exe.asc","version":"13.5"}
\ No newline at end of file


=
update_1/release/downloads.json
=
@@ -1 +1 @@
-{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-linux-x86_64-13.5.tar.xz","sig":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-linux-x86_64-13.5.tar.xz.asc"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-macos-13.5.dmg","sig":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-macos-13.5.dmg.asc"}}},"tag":"mb-13.5-build1","version":"13.5"}
\ No newline at end of file
+{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-linux-x86_64-13.5.tar.xz","sig":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-linux-x86_64-13.5.tar.xz.asc"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-macos-13.5.dmg","sig":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-macos-13.5.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-windows-x86_64-13.5.exe","sig":"https://cdn.mullvad.net/browser/13.5/mullvad-browser-windows-x86_64-13.5.exe.asc"}}},"tag":"mb-13.5-build1","version":"13.5"}
\ No newline at end of file



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-responses/-/commit/5240f7faf2d2daafadbf32ce042270f6ccb2426c

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-responses/-/commit/5240f7faf2d2daafadbf32ce042270f6ccb2426c
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build] Pushed new tag mb-13.5-build2

2024-06-19 Thread boklm (@boklm) via tor-commits


boklm pushed new tag mb-13.5-build2 at The Tor Project / Applications / 
tor-browser-build

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/mb-13.5-build2
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41158: Mullvad Browser 13.5-build2

2024-06-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
53b34799 by Nicolas Vigier at 2024-06-19T10:26:02+02:00
Bug 41158: Mullvad Browser 13.5-build2

- - - - -


1 changed file:

- rbm.conf


Changes:

=
rbm.conf
=
@@ -74,7 +74,7 @@ buildconf:
 
 var:
   torbrowser_version: '13.5'
-  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: '2024/06/11 12:00:00'



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/53b3479928330bd6f45b45771cdc8f81f70a09d2

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/53b3479928330bd6f45b45771cdc8f81f70a09d2
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41173: Fix permission issue on files in the debian directory

2024-06-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
46fdd1bc by Nicolas Vigier at 2024-06-19T10:23:04+02:00
Bug 41173: Fix permission issue on files in the debian directory

- - - - -


1 changed file:

- projects/linux-packages/build


Changes:

=
projects/linux-packages/build
=
@@ -34,6 +34,10 @@ umask 0022
   chmod +x debian/docs debian/rules
   mkdir debian/source
   echo -n '3.0 (quilt)' > debian/source/format
+  # Fix permissions to avoid mismatching debian.tar.xz file depending
+  # on umask outside the container (tor-browser-build#41173)
+  find debian -executable -exec chmod 700 {} \;
+  find debian ! -executable -exec chmod 600 {} \;
 
 
   function extract_src_tar {



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/46fdd1bcf5b8f930c0ea669377d95aac70c79832

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/46fdd1bcf5b8f930c0ea669377d95aac70c79832
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41173: Fix permission issue on files in the debian directory

2024-06-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
e94ca9ad by Nicolas Vigier at 2024-06-19T09:59:34+02:00
Bug 41173: Fix permission issue on files in the debian directory

- - - - -


1 changed file:

- projects/linux-packages/build


Changes:

=
projects/linux-packages/build
=
@@ -34,6 +34,10 @@ umask 0022
   chmod +x debian/docs debian/rules
   mkdir debian/source
   echo -n '3.0 (quilt)' > debian/source/format
+  # Fix permissions to avoid mismatching debian.tar.xz file depending
+  # on umask outside the container (tor-browser-build#41173)
+  find debian -executable -exec chmod 700 {} \;
+  find debian ! -executable -exec chmod 600 {} \;
 
 
   function extract_src_tar {



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e94ca9ad682beff2bdb9c792f967c3aaf910fba2

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e94ca9ad682beff2bdb9c792f967c3aaf910fba2
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41167: Stop generating an MB "portable" windows install

2024-06-12 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.5 at The Tor Project / Applications / 
tor-browser-build


Commits:
bb86323e by Nicolas Vigier at 2024-06-12T12:43:50+02:00
Bug 41167: Stop generating an MB "portable" windows install

And remove the `-install` from the other one.

- - - - -


1 changed file:

- projects/browser/build


Changes:

=
projects/browser/build
=
@@ -424,14 +424,15 @@ cd $distdir
 [% ELSIF c("var/windows") %]
   find "$PKG_DIR" -exec [% c("touch") %] {} \;
   pushd "$PKG_DIR"
-  makensis browser-portable.nsi
-  # Working around NSIS braindamage
-  python3 $rootdir/pe_checksum_fix.py browser-portable.exe
-  mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe
   [% IF c('var/mullvad-browser') -%]
 makensis browser-install.nsi
 python3 $rootdir/pe_checksum_fix.py browser-install.exe
-mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-install-[% c("var/torbrowser_version") %].exe
+mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-[% c("var/torbrowser_version") %].exe
+  [% ELSE -%]
+makensis browser-portable.nsi
+# Working around NSIS braindamage
+python3 $rootdir/pe_checksum_fix.py browser-portable.exe
+mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe
   [% END -%]
   popd
 [% END %]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bb86323ea206ad266e3c5302688dce33b9f7b38f

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bb86323ea206ad266e3c5302688dce33b9f7b38f
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41167: Stop generating an MB "portable" windows install

2024-06-12 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
bb86323e by Nicolas Vigier at 2024-06-12T12:43:50+02:00
Bug 41167: Stop generating an MB "portable" windows install

And remove the `-install` from the other one.

- - - - -


1 changed file:

- projects/browser/build


Changes:

=
projects/browser/build
=
@@ -424,14 +424,15 @@ cd $distdir
 [% ELSIF c("var/windows") %]
   find "$PKG_DIR" -exec [% c("touch") %] {} \;
   pushd "$PKG_DIR"
-  makensis browser-portable.nsi
-  # Working around NSIS braindamage
-  python3 $rootdir/pe_checksum_fix.py browser-portable.exe
-  mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe
   [% IF c('var/mullvad-browser') -%]
 makensis browser-install.nsi
 python3 $rootdir/pe_checksum_fix.py browser-install.exe
-mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-install-[% c("var/torbrowser_version") %].exe
+mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-[% c("var/torbrowser_version") %].exe
+  [% ELSE -%]
+makensis browser-portable.nsi
+# Working around NSIS braindamage
+python3 $rootdir/pe_checksum_fix.py browser-portable.exe
+mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% 
c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe
   [% END -%]
   popd
 [% END %]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bb86323ea206ad266e3c5302688dce33b9f7b38f

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bb86323ea206ad266e3c5302688dce33b9f7b38f
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] MB 301: Add License field to deb copyright file

2024-06-05 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
bb7c884f by Nicolas Vigier at 2024-06-05T12:23:45+02:00
MB 301: Add License field to deb copyright file

- - - - -


3 changed files:

- projects/linux-packages/config
- projects/linux-packages/debian/copyright.in
- projects/linux-packages/rpm-package.spec


Changes:

=
projects/linux-packages/config
=
@@ -13,6 +13,8 @@ var:
 pkg_revision: '1'
 pkg_description: '[% c("var/display_name") %]'
 deb_release_date: '[% USE date; date.format(c("timestamp"), format = "%a, 
%d %b %Y 01:02:03 +", locale = "en_US") %]'
+# https://spdx.github.io/spdx-spec/v2.3/SPDX-license-expressions/
+spdx_license: 'MPL-2.0 AND GPL-3.0-or-later AND OFL-1.1 AND Apache-2.0[% 
IF c("var/tor-browser") %] AND BSD-3-Clause AND CC0-1.0 AND MIT[% END %]'
 # Use var_p/system_pkg/deb_archs for the processed list
 deb_archs_list:
   - '[% IF c("var/browser-linux-x86_64") %]amd64[% END %]'


=
projects/linux-packages/debian/copyright.in
=
@@ -1,6 +1,7 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source:: https://gitlab.torproject.org/tpo/applications/tor-browser-build/
 Upstream-Name: [% c("var/Project_Name") %]
+License: [% c("var/system_pkg/spdx_license") %]
 Comment:
  License for the build recipes and tools used for building [% 
c("var/Project_Name") %]
  can be found at this URL:


=
projects/linux-packages/rpm-package.spec
=
@@ -27,7 +27,7 @@ Name:[% c("var/system_pkg/pkg_name") %]
 Version: [% c("var/system_pkg/pkg_version") %]
 Release: [% c("var/system_pkg/pkg_revision") %]
 URL: [% c("var/system_pkg/pkg_url") %]
-License: MPL-2.0 AND GPL-3.0-or-later AND OFL-1.1 AND Apache-2.0[% IF 
c("var/tor-browser") %] AND BSD-3-Clause AND CC0-1.0 AND MIT[% END %]
+License: [% c("var/system_pkg/spdx_license") %]
 Source0: Makefile
 Source1: [% c("var/system_pkg/pkg_name") %].desktop
 [% IF c("var/browser-linux-x86_64") -%]



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bb7c884ff7b6f5edd5307e280785bba8d3374729

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bb7c884ff7b6f5edd5307e280785bba8d3374729
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41153: Update README for Ubuntu 24.04 unprivileged user namespace changes

2024-06-01 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
bd033876 by NoisyCoil at 2024-06-01T10:49:06+02:00
Bug 41153: Update README for Ubuntu 24.04 unprivileged user namespace changes

- - - - -


1 changed file:

- README


Changes:

=
README
=
@@ -78,12 +78,18 @@ The build system is based on rbm, which is included as a 
git submodule
 in the rbm/ directory. You can fetch the rbm git submodule by running
 'make submodule-update'.
 
-The build uses user_namespaces(7), which are disabled by default on Debian.
-To enable them you can use the following command as root:
+The build uses user_namespaces(7), which are disabled by default on Debian
+and on Ubuntu v24.04 and later. To enable them on Debian you can use the
+following command as root:
 
   # sysctl -w kernel.unprivileged_userns_clone=1
 
-You can enable them permanently by adding the setting to /etc/sysctl.d/
+To enable them on Ubuntu v24.04 and later, you can use the following command
+as root:
+
+  # sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
+
+You can enable them permanently by adding the settings to /etc/sysctl.d/
 
 The user you use to build needs to have a range of subordinate uids and
 gids in /etc/subuid and /etc/subgid. Most of the time they are added by



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bd033876a91630e542a599dd2ca4c96e6dbf88e4

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/bd033876a91630e542a599dd2ca4c96e6dbf88e4
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] 2 commits: MB 295: Change to browser directory instead of HOME in system install

2024-05-06 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
4d541c5a by Nicolas Vigier at 2024-05-03T08:10:49+02:00
MB 295: Change to browser directory instead of HOME in system install

- - - - -
3774a75a by Nicolas Vigier at 2024-05-03T08:15:15+02:00
Bug 41135: Don't use full path to start the browser

Using the full path instead of `./` to start the browser seems to break
KeePassXC-Browser.

- - - - -


1 changed file:

- projects/browser/RelativeLink/start-browser


Changes:

=
projects/browser/RelativeLink/start-browser
=
@@ -396,7 +396,7 @@ export GSETTINGS_BACKEND=memory
 # $HOME/.cache/nvidia. We we can easily disable it.
 export __GL_SHADER_DISK_CACHE=0
 
-cd "${HOME}"
+cd "$browser_dir"
 
 # We pass all additional command-line arguments we get to Firefox.
 #
@@ -408,18 +408,18 @@ cd "${HOME}"
 
 if [ "$show_usage" -eq 1 ]; then
   # Display Firefox help, then our help
-  [% IF c("var/tor-browser") %]TOR_CONTROL_PASSWD=${TOR_CONTROL_PASSWD}[% END 
%] "$browser_dir"/[% c('var/exe_name') %] --help 2>/dev/null
+  [% IF c("var/tor-browser") %]TOR_CONTROL_PASSWD=${TOR_CONTROL_PASSWD}[% END 
%] ./[% c('var/exe_name') %] --help 2>/dev/null
   print_usage
 elif [ "$detach" -eq 1 ] ; then
-  [% IF c("var/tor-browser") %]TOR_CONTROL_PASSWD=${TOR_CONTROL_PASSWD}[% END 
%] "$browser_dir"/[% c('var/exe_name') %] "${@}" > "$logfile" 2>&1  "$logfile" 2>&1 &1 &1  "$logfile" 2>&1  "$logfile" 2>&1 https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/9704340640ae3f49e41aa566c332f09c9192d582...3774a75ab74a8742a2dcec8e7b11ac25f4ef7f25

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/9704340640ae3f49e41aa566c332f09c9192d582...3774a75ab74a8742a2dcec8e7b11ac25f4ef7f25
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Update rbm for rbm#40076

2024-05-01 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
97043406 by Nicolas Vigier at 2024-05-01T10:10:41+02:00
Update rbm for rbm#40076

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 05e32169dfad9f3cc3eb6aa3f93d9b7a1690290e
+Subproject commit 148d8541f177f318bfd8c8abfbf9fa96f581ceb8



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9704340640ae3f49e41aa566c332f09c9192d582

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9704340640ae3f49e41aa566c332f09c9192d582
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] alpha: new version, 13.5a7

2024-04-29 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
54df007d by Nicolas Vigier at 2024-04-29T16:51:58+02:00
alpha: new version, 13.5a7

- - - - -


30 changed files:

- update_3/alpha/.htaccess
- − update_3/alpha/13.5a3-13.5a6-linux-i686-ALL.xml
- − update_3/alpha/13.5a3-13.5a6-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a3-13.5a6-macos-ALL.xml
- − update_3/alpha/13.5a3-13.5a6-windows-i686-ALL.xml
- − update_3/alpha/13.5a3-13.5a6-windows-x86_64-ALL.xml
- − update_3/alpha/13.5a4-13.5a6-linux-i686-ALL.xml
- − update_3/alpha/13.5a4-13.5a6-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a4-13.5a6-macos-ALL.xml
- − update_3/alpha/13.5a4-13.5a6-windows-i686-ALL.xml
- − update_3/alpha/13.5a4-13.5a6-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a4-13.5a7-linux-i686-ALL.xml
- + update_3/alpha/13.5a4-13.5a7-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a4-13.5a7-macos-ALL.xml
- + update_3/alpha/13.5a4-13.5a7-windows-i686-ALL.xml
- + update_3/alpha/13.5a4-13.5a7-windows-x86_64-ALL.xml
- − update_3/alpha/13.5a5-13.5a6-linux-i686-ALL.xml
- − update_3/alpha/13.5a5-13.5a6-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a5-13.5a6-macos-ALL.xml
- − update_3/alpha/13.5a5-13.5a6-windows-i686-ALL.xml
- − update_3/alpha/13.5a5-13.5a6-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a5-13.5a7-linux-i686-ALL.xml
- + update_3/alpha/13.5a5-13.5a7-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a5-13.5a7-macos-ALL.xml
- + update_3/alpha/13.5a5-13.5a7-windows-i686-ALL.xml
- + update_3/alpha/13.5a5-13.5a7-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a6-13.5a7-linux-i686-ALL.xml
- + update_3/alpha/13.5a6-13.5a7-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a6-13.5a7-macos-ALL.xml
- + update_3/alpha/13.5a6-13.5a7-windows-i686-ALL.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/54df007d7e6471581dcf87f525668de3d5a42e3b

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/54df007d7e6471581dcf87f525668de3d5a42e3b
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build] Pushed new tag mb-13.5a7-build2

2024-04-28 Thread boklm (@boklm) via tor-commits


boklm pushed new tag mb-13.5a7-build2 at The Tor Project / Applications / 
tor-browser-build

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/mb-13.5a7-build2
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41127: Update default browser_release_date for nightly

2024-04-17 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
e47404c6 by Nicolas Vigier at 2024-04-17T21:17:49+02:00
Bug 41127: Update default browser_release_date for nightly

In nightly builds, when a date cannot be extracted from
`var/torbrowser_version` (for example when doing a testbuild), we set a
default date. However `firefox-android` fails to build when the date
from `MOZ_BUILD_DATE` (which is based on `var/browser_release_date`) is
too old. So we change the default date to something more recent.

- - - - -


1 changed file:

- rbm.conf


Changes:

=
rbm.conf
=
@@ -256,7 +256,7 @@ targets:
   IF (matches = 
c("var/torbrowser_version").match('^tbb-nightly\.(\d\d\d\d)\.(\d\d)\.(\d\d)$'));
 GET matches.0 _ "/" _ matches.1 _ "/" _ matches.2 _ " 01:01:01";
   ELSE;
-GET "2000/01/01 01:01:01";
+GET "2024/01/01 01:01:01";
   END
   -%]
   max_torbrowser_incremental_from: 2



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e47404c6ab5fbf7af9d242a60134304d1b78fa94

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e47404c6ab5fbf7af9d242a60134304d1b78fa94
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41122: Update stable release prep templates

2024-04-15 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
8d829699 by Nicolas Vigier at 2024-04-15T17:44:25+02:00
Bug 41122: Update stable release prep templates

The patch for #41122 was backported to `maint-13.0`, so we need to
update the stable release prep gitlab issue templates.

- - - - -


2 changed files:

- .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md
- .gitlab/issue_templates/Release Prep - Tor Browser Stable.md


Changes:

=
.gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md
=
@@ -39,6 +39,7 @@ Mullvad Browser Stable lives in the various 
`maint-$(MULLVAD_BROWSER_MAJOR).$(MU
 - [ ] Update `rbm.conf`
   - [ ] `var/torbrowser_version` : update to next version
   - [ ] `var/torbrowser_build` : update to `$(MULLVAD_BROWSER_BUILD_N)`
+  - [ ] `var/browser_release_date` : update to build date
   - [ ] `var/torbrowser_incremental_from` : update to previous Desktop version
 - **NOTE**: We try to build incrementals for the previous 3 desktop 
versions except in the case of a watershed update
 - **IMPORTANT**: Really *actually* make sure this is the previous Desktop 
version or else the `make mullvadbrowser-incrementals-*` step will fail


=
.gitlab/issue_templates/Release Prep - Tor Browser Stable.md
=
@@ -38,6 +38,7 @@ Tor Browser Stable lives in the various 
`maint-$(TOR_BROWSER_MAJOR).$(TOR_BROWSE
 - [ ] Update `rbm.conf`
   - [ ] `var/torbrowser_version` : update to next version
   - [ ] `var/torbrowser_build` : update to `$(TOR_BROWSER_BUILD_N)`
+  - [ ] `var/browser_release_date` : update to build date
   - [ ] ***(Desktop Only)***`var/torbrowser_incremental_from` : update to 
previous Desktop version
 - **NOTE**: We try to build incrementals for the previous 3 desktop 
versions except in the case of a watershed update
 - **IMPORTANT**: Really *actually* make sure this is the previous Desktop 
version or else the `make torbrowser-incrementals-*` step will fail



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8d829699c822c84a81980f7504a6b425106fece8

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8d829699c822c84a81980f7504a6b425106fece8
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Bug 41122: Add var/browser_release_date

2024-04-15 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
ebea2eb3 by Nicolas Vigier at 2024-04-15T17:17:44+02:00
Bug 41122: Add var/browser_release_date

Add a release date, and use it for MOZ_BUILD_DATE, and as timestamp on
files in projects/browser.

For nightly we use a release date based on the version number.

- - - - -


2 changed files:

- projects/browser/config
- rbm.conf


Changes:

=
projects/browser/config
=
@@ -1,6 +1,7 @@
 # vim: filetype=yaml sw=2
 version: '[% c("var/torbrowser_version") %]'
 filename: '[% c("var/project-name") %]-[% c("version") %]-[% c("var/osname") 
%]-[% c("var/build_id") %]'
+timestamp: '[% c("var/browser_release_date_timestamp") %]'
 container:
   use_container: 1
 


=
rbm.conf
=
@@ -80,6 +80,8 @@ var:
 - '13.0.12'
 - '[% IF c("var/tor-browser") %]13.0.11[% END %]'
 - '[% IF c("var/mullvad-browser") %]13.0.10[% END %]'
+  browser_release_date: '2024/03/28 01:02:03'
+  browser_release_date_timestamp: '[% USE date; 
date.format(c("var/browser_release_date"), "%s") %]'
   updater_enabled: 1
   build_mar: 1
   mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") 
%]'
@@ -204,7 +206,8 @@ var:
 [% END -%]
 
   DOCSDIR_project: '[% project %]'
-  set_MOZ_BUILD_DATE: 'export MOZ_BUILD_DATE=[% c("var_p/MOZ_BUILD_DATE") %]'
+  set_MOZ_BUILD_DATE: 'export MOZ_BUILD_DATE=[% c("var/MOZ_BUILD_DATE") %]'
+  MOZ_BUILD_DATE: '[% USE date; date.format(c("var/browser_release_date"), 
"%Y%m%d%H%M%S") %]'
 
   # var/essential_deps is the same as var/deps, except that we never
   # redefine it in projects config. This is for the packages we want to
@@ -246,6 +249,14 @@ targets:
 GET c("var_p/nightly_torbrowser_version");
END;
 -%]
+  browser_release_date: |
+[%
+  IF (matches = 
c("var/torbrowser_version").match('^tbb-nightly\.(\d\d\d\d)\.(\d\d)\.(\d\d)$'));
+GET matches.0 _ "/" _ matches.1 _ "/" _ matches.2 _ " 01:01:01";
+  ELSE;
+GET "2000/01/01 01:01:01";
+  END
+  -%]
   max_torbrowser_incremental_from: 2
   build_infos_json: 1
 
@@ -725,31 +736,5 @@ gpg_allow_expired_keys: 1
 }
 return [@res];
   },
-  MOZ_BUILD_DATE => sub {
-use POSIX qw(strftime);
-my ($project, $options) = @_;
-my $nightly = project_config($project, 'var/nightly', $options);
-my $testbuild = project_config($project, 'var/testbuild', $options);
-
-if ($nightly && !$testbuild) {
-  my $torbrowser_version = project_config($project, 
'var/torbrowser_version', $options);
-  return sprintf("%d%02d%02d01", $1, $2, $3)
-if $torbrowser_version =~ 
m/^tbb-nightly\.([^\.]+)\.([^\.]+)\.([^\.]+)$/;
-  return strftime("%Y%m%d01", gmtime);
-}
-
-my $timestamp = project_config($project, 'timestamp', $options);
-if (!$nightly) {
-  my $torbrowser_version = project_config($project, 
'var/torbrowser_version', $options);
-  my @n = reverse split /[\.\D]/, $torbrowser_version;
-  my $i = 1;
-  unshift @n, 0 if @n < 3;
-  for my $n (@n) {
-$timestamp += $n * $i;
-$i = $i * 10;
-  }
-}
-return strftime "%Y%m%d%H%M%S", gmtime($timestamp);
-  },
 },
   )



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ebea2eb3a422075851c565841901f133d26b5592

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ebea2eb3a422075851c565841901f133d26b5592
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41122: Add var/browser_release_date

2024-04-12 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
b1ae0065 by Nicolas Vigier at 2024-04-12T21:11:31+02:00
Bug 41122: Add var/browser_release_date

Add a release date, and use it for MOZ_BUILD_DATE, and as timestamp on
files in projects/browser.

For nightly we use a release date based on the version number.

- - - - -


4 changed files:

- .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md
- .gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
- projects/browser/config
- rbm.conf


Changes:

=
.gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md
=
@@ -39,6 +39,7 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch
 - [ ] Update `rbm.conf`
   - [ ] `var/torbrowser_version` : update to next version
   - [ ] `var/torbrowser_build` : update to `$(MULLVAD_BROWSER_BUILD_N)`
+  - [ ] `var/browser_release_date` : update to build date
   - [ ] `var/torbrowser_incremental_from` : update to previous Desktop version
 - **NOTE**: We try to build incrementals for the previous 3 desktop 
versions except in the case of a watershed update
 - **IMPORTANT**: Really *actually* make sure this is the previous Desktop 
version or else the `make mullvadbrowser-incrementals-*` step will fail


=
.gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
=
@@ -38,6 +38,7 @@ Tor Browser Alpha (and Nightly) are on the `main` branch
 - [ ] Update `rbm.conf`
   - [ ] `var/torbrowser_version` : update to next version
   - [ ] `var/torbrowser_build` : update to `$(TOR_BROWSER_BUILD_N)`
+  - [ ] `var/browser_release_date` : update to build date
   - [ ] ***(Desktop Only)***`var/torbrowser_incremental_from` : update to 
previous Desktop version
 - **NOTE**: We try to build incrementals for the previous 3 desktop 
versions except in the case of a watershed update
 - **IMPORTANT**: Really *actually* make sure this is the previous Desktop 
version or else the `make torbrowser-incrementals-*` step will fail


=
projects/browser/config
=
@@ -1,6 +1,7 @@
 # vim: filetype=yaml sw=2
 version: '[% c("var/torbrowser_version") %]'
 filename: '[% c("var/project-name") %]-[% c("version") %]-[% c("var/osname") 
%]-[% c("var/build_id") %]'
+timestamp: '[% c("var/browser_release_date_timestamp") %]'
 container:
   use_container: 1
 


=
rbm.conf
=
@@ -79,6 +79,8 @@ var:
 - '13.5a5'
 - '13.5a4'
 - '13.5a3'
+  browser_release_date: '2024/03/28 01:02:03'
+  browser_release_date_timestamp: '[% USE date; 
date.format(c("var/browser_release_date"), "%s") %]'
   updater_enabled: 1
   build_mar: 1
   mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") 
%]'
@@ -206,7 +208,8 @@ var:
 [% END -%]
 
   DOCSDIR_project: '[% project %]'
-  set_MOZ_BUILD_DATE: 'export MOZ_BUILD_DATE=[% c("var_p/MOZ_BUILD_DATE") %]'
+  set_MOZ_BUILD_DATE: 'export MOZ_BUILD_DATE=[% c("var/MOZ_BUILD_DATE") %]'
+  MOZ_BUILD_DATE: '[% USE date; date.format(c("var/browser_release_date"), 
"%Y%m%d%H%M%S") %]'
 
   # var/essential_deps is the same as var/deps, except that we never
   # redefine it in projects config. This is for the packages we want to
@@ -248,6 +251,14 @@ targets:
 GET c("var_p/nightly_torbrowser_version");
END;
 -%]
+  browser_release_date: |
+[%
+  IF (matches = 
c("var/torbrowser_version").match('^tbb-nightly\.(\d\d\d\d)\.(\d\d)\.(\d\d)$'));
+GET matches.0 _ "/" _ matches.1 _ "/" _ matches.2 _ " 01:01:01";
+  ELSE;
+GET "2000/01/01 01:01:01";
+  END
+  -%]
   max_torbrowser_incremental_from: 2
   build_infos_json: 1
 
@@ -727,31 +738,5 @@ gpg_allow_expired_keys: 1
 }
 return [@res];
   },
-  MOZ_BUILD_DATE => sub {
-use POSIX qw(strftime);
-my ($project, $options) = @_;
-my $nightly = project_config($project, 'var/nightly', $options);
-my $testbuild = project_config($project, 'var/testbuild', $options);
-
-if ($nightly && !$testbuild) {
-  my $torbrowser_version = project_config($project, 
'var/torbrowser_version', $options);
-  return sprintf("%d%02d%02d01", $1, $2, $3)
-if $torbrowser_version =~ 
m/^tbb-nightly\.([^\.]+)\.([^\.]+)\.([^\.]+)$/;
-  return strftime("%Y%m%d01", gmtime);
-}
-
-my $timestamp = project_config($project, 'timestamp', $options);
-if (!$nightly) {
-  my $torbrowser_version = project_config($project, 
'var/torbrowser_version', $options);
-  my @n = reverse split /[\.\D]/, $torbrowser_version;
-  my $i = 1;
-  unshift @n, 0 if @n < 3;
-  for my $n (@

[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41124: Fix copying .DS_Store in gatekeeper-bundling.sh

2024-04-10 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
263c4936 by Nicolas Vigier at 2024-04-10T19:29:10+02:00
Bug 41124: Fix copying .DS_Store in gatekeeper-bundling.sh

Fixing some issue introduced in 4e2b66e977873c46b3678c93ae9173f53503f81a.

- - - - -


1 changed file:

- tools/signing/gatekeeper-bundling.sh


Changes:

=
tools/signing/gatekeeper-bundling.sh
=
@@ -69,6 +69,9 @@ export 
PATH="$PATH:$tmpdir/libdmg-hfsplus:$tmpdir/hfsplus-tools"
 
 cd $tmpdir/dmg
 
+cp ${tbb_version_type}.DS_Store .DS_Store
+rm *.DS_Store
+
 tar -xf 
$macos_stapled_dir/"${proj_name}-${tbb_version}-notarized+stapled.tar.zst"
 
 cd ..



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/263c49367721b56099118d78c7e264e504368482

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/263c49367721b56099118d78c7e264e504368482
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Bug 41107: Add new type of URL for downloading signatures from people.tpo

2024-03-20 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
3ff1d54a by Nicolas Vigier at 2024-03-19T16:14:48+01:00
Bug 41107: Add new type of URL for downloading signatures from people.tpo

- - - - -


1 changed file:

- tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo


Changes:

=
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo
=
@@ -16,6 +16,7 @@ do
   file="$file.asc"
   urls=( \
 
"https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";
 \
+
"https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-02.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-03.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
   )



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/3ff1d54aaeb173fc5b6e0a034bdd119751377bac

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/3ff1d54aaeb173fc5b6e0a034bdd119751377bac
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41107: Add new type of URL for downloading signatures from people.tpo

2024-03-20 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
9e7707b6 by Nicolas Vigier at 2024-03-19T16:12:58+01:00
Bug 41107: Add new type of URL for downloading signatures from people.tpo

- - - - -


1 changed file:

- tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo


Changes:

=
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo
=
@@ -16,6 +16,7 @@ do
   file="$file.asc"
   urls=( \
 
"https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";
 \
+
"https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-02.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-03.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
   )



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9e7707b6a160a156ae4371f8e43829c6aeac7af9

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9e7707b6a160a156ae4371f8e43829c6aeac7af9
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] release: new version, 13.0.12

2024-03-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
0cce8359 by Nicolas Vigier at 2024-03-19T14:52:57+01:00
release: new version, 13.0.12

- - - - -


30 changed files:

- update_3/release/.htaccess
- − update_3/release/13.0.10-13.0.11-linux-i686-ALL.xml
- − update_3/release/13.0.10-13.0.11-linux-x86_64-ALL.xml
- − update_3/release/13.0.10-13.0.11-macos-ALL.xml
- − update_3/release/13.0.10-13.0.11-windows-i686-ALL.xml
- − update_3/release/13.0.10-13.0.11-windows-x86_64-ALL.xml
- + update_3/release/13.0.10-13.0.12-linux-i686-ALL.xml
- + update_3/release/13.0.10-13.0.12-linux-x86_64-ALL.xml
- + update_3/release/13.0.10-13.0.12-macos-ALL.xml
- + update_3/release/13.0.10-13.0.12-windows-i686-ALL.xml
- + update_3/release/13.0.10-13.0.12-windows-x86_64-ALL.xml
- + update_3/release/13.0.11-13.0.12-linux-i686-ALL.xml
- + update_3/release/13.0.11-13.0.12-linux-x86_64-ALL.xml
- + update_3/release/13.0.11-13.0.12-macos-ALL.xml
- + update_3/release/13.0.11-13.0.12-windows-i686-ALL.xml
- + update_3/release/13.0.11-13.0.12-windows-x86_64-ALL.xml
- − update_3/release/13.0.11-linux-i686-ALL.xml
- − update_3/release/13.0.11-linux-x86_64-ALL.xml
- − update_3/release/13.0.11-macos-ALL.xml
- − update_3/release/13.0.11-windows-i686-ALL.xml
- − update_3/release/13.0.11-windows-x86_64-ALL.xml
- + update_3/release/13.0.12-linux-i686-ALL.xml
- + update_3/release/13.0.12-linux-x86_64-ALL.xml
- + update_3/release/13.0.12-macos-ALL.xml
- + update_3/release/13.0.12-windows-i686-ALL.xml
- + update_3/release/13.0.12-windows-x86_64-ALL.xml
- − update_3/release/13.0.8-13.0.11-linux-i686-ALL.xml
- − update_3/release/13.0.8-13.0.11-linux-x86_64-ALL.xml
- − update_3/release/13.0.8-13.0.11-macos-ALL.xml
- − update_3/release/13.0.8-13.0.11-windows-i686-ALL.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/0cce8359ce996248bc3d8bfdf32cfa92f77a38ac

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/0cce8359ce996248bc3d8bfdf32cfa92f77a38ac
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Bug 41102: Compress firefox source tarball in a container

2024-03-11 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
c73503ae by Nicolas Vigier at 2024-03-11T15:48:23+01:00
Bug 41102: Compress firefox source tarball in a container

As the xz version on the host can be different and produce different
output, we compress the firefox source tarball inside a container.

At the same time we use xz's --threads option to make compression
faster by using multiple threads.

We also move the src-tarballs step definition from rbm.conf to
projects/firefox/config since it's not used in any other project.

- - - - -


3 changed files:

- projects/firefox/config
- projects/release/config
- rbm.conf


Changes:

=
projects/firefox/config
=
@@ -58,9 +58,25 @@ steps:
   src-tarballs:
 filename: 'src-[% project %]-[% c("version") %].tar.xz'
 version: '[% c("git_hash") %]'
-input_files: []
+input_files:
+  - project: container-image
+pkg_type: build
+compress_tar: ''
 container:
-  use_container: 0
+  use_container: 1
+var:
+  # single-thread and multi-thread xz will generate a different result,
+  # se we use at least 2 threads
+  xz_threads: '[% c("num_procs") == "1" ? "2" : c("num_procs") %]'
+src-tarballs: |
+  #!/bin/bash
+  set -e
+  mkdir -p '[% dest_dir %]'
+  # Files copied to the container are owned by group root (rbm#40074),
+  # and it seems xz doesn't like that and exits with an error
+  chgrp rbm '[% project %]-[% c("version") %].tar'
+  xz --threads=[% c("var/xz_threads") %] -f '[% project %]-[% c("version") 
%].tar'
+  mv -vf '[% project %]-[% c("version") %].tar.xz' '[% dest_dir %]/[% 
c("filename") %]'
 targets:
   nightly:
 version: '[% c("abbrev") %]'


=
projects/release/config
=
@@ -229,8 +229,7 @@ input_files:
pkg_type: src-tarballs
target:
  - '[% c("var/build_target") %]'
- - browser-src
- - '[% c("var/browser_type") %]'
+ - '[% c("var/browser_type") %]-macos'
 
 steps:
   signtag:


=
rbm.conf
=
@@ -14,14 +14,6 @@ container:
 build: 1
 
 steps:
-  src-tarballs:
-compress_tar: xz
-src-tarballs: |
-  #!/bin/bash
-  set -e
-  mkdir -p '[% dest_dir %]'
-  mv -vf '[% project %]-[% c("version") %].tar.xz' '[% dest_dir %]/[% 
c("filename") %]'
-
   list_toolchain_updates:
 build_log: '-'
 list_toolchain_updates: '[% INCLUDE list_toolchain_updates %]'



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c73503aeb29d458d182ea0e62b42a99cf1443d96

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c73503aeb29d458d182ea0e62b42a99cf1443d96
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41102: Compress firefox source tarball in a container

2024-03-11 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
5e9f8f0c by Nicolas Vigier at 2024-03-11T15:47:20+01:00
Bug 41102: Compress firefox source tarball in a container

As the xz version on the host can be different and produce different
output, we compress the firefox source tarball inside a container.

At the same time we use xz's --threads option to make compression
faster by using multiple threads.

We also move the src-tarballs step definition from rbm.conf to
projects/firefox/config since it's not used in any other project.

- - - - -


3 changed files:

- projects/firefox/config
- projects/release/config
- rbm.conf


Changes:

=
projects/firefox/config
=
@@ -58,9 +58,25 @@ steps:
   src-tarballs:
 filename: 'src-[% project %]-[% c("version") %].tar.xz'
 version: '[% c("git_hash") %]'
-input_files: []
+input_files:
+  - project: container-image
+pkg_type: build
+compress_tar: ''
 container:
-  use_container: 0
+  use_container: 1
+var:
+  # single-thread and multi-thread xz will generate a different result,
+  # se we use at least 2 threads
+  xz_threads: '[% c("num_procs") == "1" ? "2" : c("num_procs") %]'
+src-tarballs: |
+  #!/bin/bash
+  set -e
+  mkdir -p '[% dest_dir %]'
+  # Files copied to the container are owned by group root (rbm#40074),
+  # and it seems xz doesn't like that and exits with an error
+  chgrp rbm '[% project %]-[% c("version") %].tar'
+  xz --threads=[% c("var/xz_threads") %] -f '[% project %]-[% c("version") 
%].tar'
+  mv -vf '[% project %]-[% c("version") %].tar.xz' '[% dest_dir %]/[% 
c("filename") %]'
 targets:
   nightly:
 version: '[% c("abbrev") %]'


=
projects/release/config
=
@@ -229,8 +229,7 @@ input_files:
pkg_type: src-tarballs
target:
  - '[% c("var/build_target") %]'
- - browser-src
- - '[% c("var/browser_type") %]'
+ - '[% c("var/browser_type") %]-macos'
 
 steps:
   signtag:


=
rbm.conf
=
@@ -14,14 +14,6 @@ container:
 build: 1
 
 steps:
-  src-tarballs:
-compress_tar: xz
-src-tarballs: |
-  #!/bin/bash
-  set -e
-  mkdir -p '[% dest_dir %]'
-  mv -vf '[% project %]-[% c("version") %].tar.xz' '[% dest_dir %]/[% 
c("filename") %]'
-
   list_toolchain_updates:
 build_log: '-'
 list_toolchain_updates: '[% INCLUDE list_toolchain_updates %]'



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/5e9f8f0cb98f39e1cbf3d6275c7b22dccd26e5a7

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/5e9f8f0cb98f39e1cbf3d6275c7b22dccd26e5a7
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] alpha: new version, 13.5a5

2024-02-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
db64cd7d by Nicolas Vigier at 2024-02-28T17:02:15+01:00
alpha: new version, 13.5a5

- - - - -


30 changed files:

- update_3/alpha/.htaccess
- − update_3/alpha/13.5a1-13.5a4-linux-i686-ALL.xml
- − update_3/alpha/13.5a1-13.5a4-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a1-13.5a4-macos-ALL.xml
- − update_3/alpha/13.5a1-13.5a4-windows-i686-ALL.xml
- − update_3/alpha/13.5a1-13.5a4-windows-x86_64-ALL.xml
- − update_3/alpha/13.5a2-13.5a4-linux-i686-ALL.xml
- − update_3/alpha/13.5a2-13.5a4-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a2-13.5a4-macos-ALL.xml
- − update_3/alpha/13.5a2-13.5a4-windows-i686-ALL.xml
- − update_3/alpha/13.5a2-13.5a4-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a2-13.5a5-linux-i686-ALL.xml
- + update_3/alpha/13.5a2-13.5a5-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a2-13.5a5-macos-ALL.xml
- + update_3/alpha/13.5a2-13.5a5-windows-i686-ALL.xml
- + update_3/alpha/13.5a2-13.5a5-windows-x86_64-ALL.xml
- − update_3/alpha/13.5a3-13.5a4-linux-i686-ALL.xml
- − update_3/alpha/13.5a3-13.5a4-linux-x86_64-ALL.xml
- − update_3/alpha/13.5a3-13.5a4-macos-ALL.xml
- − update_3/alpha/13.5a3-13.5a4-windows-i686-ALL.xml
- − update_3/alpha/13.5a3-13.5a4-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a3-13.5a5-linux-i686-ALL.xml
- + update_3/alpha/13.5a3-13.5a5-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a3-13.5a5-macos-ALL.xml
- + update_3/alpha/13.5a3-13.5a5-windows-i686-ALL.xml
- + update_3/alpha/13.5a3-13.5a5-windows-x86_64-ALL.xml
- + update_3/alpha/13.5a4-13.5a5-linux-i686-ALL.xml
- + update_3/alpha/13.5a4-13.5a5-linux-x86_64-ALL.xml
- + update_3/alpha/13.5a4-13.5a5-macos-ALL.xml
- + update_3/alpha/13.5a4-13.5a5-windows-i686-ALL.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/db64cd7df6bb51ea3c36237b146ecbd76fe4ff55

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/db64cd7df6bb51ea3c36237b146ecbd76fe4ff55
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41093: Unsign APKs before signing them

2024-02-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
7c9183b0 by Nicolas Vigier at 2024-02-28T16:17:42+01:00
Bug 41093: Unsign APKs before signing them

Use the bspatch file we create during the build to unsign the apk (which
was signed by the QA key) before signing it with the release key.

- - - - -


2 changed files:

- tools/signing/linux-signer-sign-android-apks
- tools/signing/machines-setup/setup-signing-machine


Changes:

=
tools/signing/linux-signer-sign-android-apks
=
@@ -68,14 +68,19 @@ setup_build_tools
 mkdir -p ~/"$SIGNING_PROJECTNAME-$tbb_version-apks"
 chgrp signing ~/"$SIGNING_PROJECTNAME-$tbb_version-apks"
 chmod g+w ~/"$SIGNING_PROJECTNAME-$tbb_version-apks"
-cp -af ~/"$SIGNING_PROJECTNAME-$tbb_version"/*.apk 
~/"$SIGNING_PROJECTNAME-$tbb_version-apks"
+cp -af ~/"$SIGNING_PROJECTNAME-$tbb_version"/*.apk \
+  ~/"$SIGNING_PROJECTNAME-$tbb_version"/*.bspatch \
+  ~/"$SIGNING_PROJECTNAME-$tbb_version-apks"
 cd ~/"$SIGNING_PROJECTNAME-$tbb_version-apks"
 
 # Sign all packages
 for arch in ${ARCHS}; do
   qa_apk=${projname}-qa-android-${arch}-${tbb_version}.apk
+  unsigned_apk=${projname}-qa-unsigned-android-${arch}-${tbb_version}.apk
+  
unsigned_apk_bspatch=${projname}-qa-unsign-android-${arch}-${tbb_version}.bspatch
   signed_apk=${projname}-android-${arch}-${tbb_version}.apk
-  sign_apk "$qa_apk" "$signed_apk"
+  bspatch "$qa_apk" "$unsigned_apk" "$unsigned_apk_bspatch"
+  sign_apk "$unsigned_apk" "$signed_apk"
   verify_apk "$signed_apk"
   cp -f "$signed_apk" ~/"$SIGNING_PROJECTNAME-$tbb_version"
 done


=
tools/signing/machines-setup/setup-signing-machine
=
@@ -116,7 +116,7 @@ install_packages opensc libengine-pkcs11-openssl
 install_packages cmake libusb-1.0-0-dev libedit-dev gengetopt libpcsclite-dev 
help2man chrpath dh-exec
 
 # Install deps for android/apk signing
-install_packages unzip openjdk-11-jdk-headless openjdk-11-jre-headless
+install_packages unzip openjdk-11-jdk-headless openjdk-11-jre-headless bsdiff
 
 # Install deps for macos-rcodesign signing
 install_packages p7zip-full zstd



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7c9183b026293263a7b0252282c4d52cac22be1f

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7c9183b026293263a7b0252282c4d52cac22be1f
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/rbm][main] Install RBM::CaptureExec

2024-02-16 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / RBM


Commits:
361bc547 by Petr Písař at 2024-02-15T15:58:14+01:00
Install RBM::CaptureExec

Commit efd874abee2d4afe652feb6c79c1d929f70d136b (Bug 40072: Move
capture_exec to a separate module) added RBM::CaptureExec module, but
forgot to install it when invoking "make install".

This patch fixes it.

- - - - -


1 changed file:

- Makefile


Changes:

=
Makefile
=
@@ -3,7 +3,7 @@ VERSION=0.4
 PROJECTNAME=rbm
 BINFILES=rbm
 PERL_MODULE_MAIN=lib/RBM.pm
-PERL_MODULES=lib/RBM/DefaultConfig.pm
+PERL_MODULES=lib/RBM/CaptureExec.pm lib/RBM/DefaultConfig.pm
 
 sysconfdir=/etc
 bindir=/usr/bin



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/rbm/-/commit/361bc547cf500201080540973ba33f5fa836754d

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/rbm/-/commit/361bc547cf500201080540973ba33f5fa836754d
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41081: Update detailsURL in tools/signing/nightly/update-responses-base-config.yml

2024-02-15 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
914c359a by Nicolas Vigier at 2024-02-15T09:56:08+01:00
Bug 41081: Update detailsURL in 
tools/signing/nightly/update-responses-base-config.yml

- - - - -


1 changed file:

- tools/signing/nightly/update-responses-base-config.yml


Changes:

=
tools/signing/nightly/update-responses-base-config.yml
=
@@ -17,7 +17,7 @@ channels:
 versions:
 nightly_version:
 platformVersion: 115.1.0
-detailsURL: 
http://umj4zbqdfcyevlkgqgpq6foxk3z75zzxsbgt5jqmfxofrbrjh3crbnad.onion/
+detailsURL: https://nightlies.tbb.torproject.org/
 macos:
 minSupportedOSVersion: 16.0.0
 windows-i686:



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/914c359ac2c3ca287908ff9ae41e7785e1e8c61b

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/914c359ac2c3ca287908ff9ae41e7785e1e8c61b
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41080: Re-pack omni.ja with 7-zip on Android.

2024-02-09 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
56df6e4c by Pier Angelo Vendrame at 2024-02-08T16:06:11+01:00
Bug 41080: Re-pack omni.ja with 7-zip on Android.

In this way we can shave a few additional MBs, and get further from the
APK size limit.

- - - - -


2 changed files:

- projects/browser/build.android
- rbm


Changes:

=
projects/browser/build.android
=
@@ -24,18 +24,23 @@ cd /var/tmp/build
 mv $rootdir/[% c('input_files_by_name/noscript') %] "$noscript_path"
 
 [%IF c("var/tor-browser") -%]
-  unzip -j "$apk" assets/omni.ja
   tar -xaf "$rootdir/[% c("input_files_by_name/tor-expert-bundle") %]" 
tor/pluggable_transports/pt_config.json
-  mkdir omni
-  pushd omni
-  unzip ../omni.ja
-  cp ../tor/pluggable_transports/pt_config.json 
chrome/toolkit/content/global/pt_config.json
-  [% c('zip', {
-  zip_src => [ '.' ],
-  zip_args => '../assets/omni.ja',
-}) %]
-  popd
 [% END -%]
+unzip -j "$apk" assets/omni.ja
+mkdir omni
+pushd omni
+unzip ../omni.ja
+[%IF c("var/tor-browser") -%]
+  cp -a ../tor/pluggable_transports/pt_config.json 
chrome/toolkit/content/global/pt_config.json
+[% END -%]
+[% c('zip', {
+zip_src   => [ '.' ],
+zip_args  => '../assets/omni.ja',
+use_7z=> 1,
+'7z_bin'  => '7zz',
+'7z_opts' => '-mx9',
+  }) %]
+popd
 
 
 [% IF c("var/verify_allowed_addons") %]


=
rbm
=
@@ -1 +1 @@
-Subproject commit b5e5b04aaf677c4bacfb5ace45598313286bfdf6
+Subproject commit 10c6b24e90e3dc9c2578290a7d82a87b7f4eb9a3



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/56df6e4ccd8a5d4be3ab48219b27c31ab07feeb9

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/56df6e4ccd8a5d4be3ab48219b27c31ab07feeb9
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/rbm][main] Bug 40071: Add an option to create zip files using 7z

2024-02-09 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / RBM


Commits:
10c6b24e by Nicolas Vigier at 2024-02-08T13:26:40+01:00
Bug 40071: Add an option to create zip files using 7z

- - - - -


2 changed files:

- doc/options_misc.asc
- lib/RBM/DefaultConfig.pm


Changes:

=
doc/options_misc.asc
=
@@ -41,6 +41,11 @@ zip::
 and a +zip_args+ arguments which is usually the destination zip
 file, and optionally other zip options. By default, GNU options
 are used in find, but you can disable that with +gnu_utils+.
+The 'zip' command will be used to create the zip file, unless
++use_7z+ is set, in which case '7z' will be used instead. In this
+case, +7z_bin+ can be used to select the '7z' command (for cases
+where the command is '7zz' instead of '7z') and +7z_opts+ can
+be used to set additional options to the '7z' command.
 
 install_package::
 This option can be used in a script when you need to install a


=
lib/RBM/DefaultConfig.pm
=
@@ -597,14 +597,24 @@ TAR_END
 
 
 
-zip=> < '7z',
+zip  => < 1 }) -%]
 [% USE date -%]
+[% IF c("use_7z") -%]
+  tmp7z=\$(mktemp)
+[% END -%]
 find [% src.join(' ') %] -exec touch -m -t [% date.format(c('timestamp'), 
format = '%Y%m%d%H%M') %] -- {} +
 find [% src.join(' ') %] [% IF c('gnu_utils') %]-executable[% ELSE %]-perm 
+0111[% END %] -exec chmod 700 {} \\;
 find [% src.join(' ') %] ! [% IF c('gnu_utils') %]-executable[% ELSE %]-perm 
+0111[% END %] -exec chmod 600 {} \\;
 find [% src.join(' ') %] | sort | \
+[% IF c("use_7z") -%]
+cat > "\$tmp7z"
+[% c('7z_bin') %] a -tzip -spf [% c('7z_opts') %] [% c('zip_args', { 
error_if_undef => 1 }) %] "@\$tmp7z"
+rm -f "\$tmp7z"
+[% ELSE -%]
 zip -q -@ -X [% c('zip_args', { error_if_undef => 1 }) %]
+[% END -%]
 ZIP_END
 
 



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/rbm/-/commit/10c6b24e90e3dc9c2578290a7d82a87b7f4eb9a3

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/rbm/-/commit/10c6b24e90e3dc9c2578290a7d82a87b7f4eb9a3
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/rbm][main] Bug 40072: Move capture_exec to a separate module

2024-02-09 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / RBM


Commits:
efd874ab by Nicolas Vigier at 2024-02-08T13:13:58+01:00
Bug 40072: Move capture_exec to a separate module

Because the RBM and RBM::DefaultConfig modules have circular dependencies,
exporting functions from RBM to RBM::DefaultConfig doesn't work, which
means that part of the changes for rbm#40068 didn't work. We could fix
that by using `RBM::capture_exec` instead of `capture_exec`. An other
solution is to make a separate module for `capture_exec`. Since the RBM
modules is becoming big, I think it's a good idea to move independent
parts to a separate modules.

- - - - -


3 changed files:

- lib/RBM.pm
- + lib/RBM/CaptureExec.pm
- lib/RBM/DefaultConfig.pm


Changes:

=
lib/RBM.pm
=
@@ -10,7 +10,6 @@ use YAML::XS qw(LoadFile);
 use Template;
 use File::Basename;
 use IO::Handle;
-use Capture::Tiny qw(capture);
 use File::Temp;
 use File::Copy;
 use File::Copy::Recursive qw(fcopy);
@@ -18,6 +17,7 @@ use File::Path qw(make_path);
 use File::Basename;
 use String::ShellQuote;
 use Sort::Versions;
+use RBM::CaptureExec qw(capture_exec);
 use RBM::DefaultConfig;
 use Digest::SHA qw(sha256_hex);
 use Data::UUID;
@@ -29,7 +29,7 @@ use feature "state";
 BEGIN {
 require Exporter;
 our @ISA = qw(Exporter);
-our @EXPORT = qw(exit_error capture_exec);
+our @EXPORT = qw(exit_error);
 }
 
 our $config;
@@ -308,15 +308,6 @@ sub exit_error {
 exit (exists $_[1] ? $_[1] : 1);
 }
 
-sub capture_exec {
-my @cmd = @_;
-my ($stdout, $stderr, $exit) = capture {
-system(@cmd);
-};
-return ($stdout, $stderr, $exit == 0, $exit) if wantarray();
-return $stdout;
-}
-
 sub set_git_gpg_wrapper {
 my ($project) = @_;
 my $w = project_config($project, 'gpg_wrapper');


=
lib/RBM/CaptureExec.pm
=
@@ -0,0 +1,21 @@
+package RBM::CaptureExec;
+
+use Capture::Tiny qw(capture);
+
+BEGIN {
+require Exporter;
+our @ISA = qw(Exporter);
+our @EXPORT = qw(capture_exec);
+our @EXPORT_OK = qw(capture_exec);
+}
+
+sub capture_exec {
+my @cmd = @_;
+my ($stdout, $stderr, $exit) = capture {
+system(@cmd);
+};
+return ($stdout, $stderr, $exit == 0, $exit) if wantarray();
+return $stdout;
+}
+
+1;


=
lib/RBM/DefaultConfig.pm
=
@@ -10,7 +10,8 @@ BEGIN {
 }
 
 use File::Basename;
-use RBM qw(capture_exec);
+use RBM;
+use RBM::CaptureExec qw(capture_exec);
 use Cwd qw(getcwd);
 use File::Temp;
 use File::Path qw(make_path);



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/rbm/-/commit/efd874abee2d4afe652feb6c79c1d929f70d136b

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/rbm/-/commit/efd874abee2d4afe652feb6c79c1d929f70d136b
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Revert "Update rbm for rbm#40068 and rbm#40069"

2024-02-07 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
125e1e35 by Nicolas Vigier at 2024-02-08T07:45:45+01:00
Revert "Update rbm for rbm#40068 and rbm#40069"

Revert until rbm#40072 is fixed.

This reverts commit cc41e2d784b213696146fafa514c6f9e667cf007.

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 067c30ee4cf3baa1c0b7e3674d785cf9e5bec8fe
+Subproject commit b5e5b04aaf677c4bacfb5ace45598313286bfdf6



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/125e1e35143fd6f789622dab289568d3dfc97b55

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/125e1e35143fd6f789622dab289568d3dfc97b55
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Update rbm for rbm#40068 and rbm#40069

2024-02-07 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
cc41e2d7 by Nicolas Vigier at 2024-02-07T10:51:09+01:00
Update rbm for rbm#40068 and rbm#40069

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit b5e5b04aaf677c4bacfb5ace45598313286bfdf6
+Subproject commit 067c30ee4cf3baa1c0b7e3674d785cf9e5bec8fe



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/cc41e2d784b213696146fafa514c6f9e667cf007

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/cc41e2d784b213696146fafa514c6f9e667cf007
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Add developer name to AppStream metadata

2024-02-06 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
0a20f448 by asciiwolf at 2024-02-03T22:22:28+00:00
Add developer name to AppStream metadata
- - - - -


1 changed file:

- share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml


Changes:

=
share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml
=
@@ -7,6 +7,7 @@
  CC0-1.0
  MIT
  Tor Browser Launcher
+ Tor Project
  A program to help you download, keep updated, and run the Tor 
Browser Bundle
  
   Tor Browser Launcher is intended to make the Tor Browser Bundle (TBB) 
easier to maintain and use for GNU/Linux users. It downloads the same TBB from 
torproject.org that everyone else uses, and it doesn't alter it in any way. But 
it does make it much more usable, and it makes the task of keeping it 
up-to-date more secure.



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/0a20f44802b5fc89f9713cb75273c6d0c40a85f3

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/0a20f44802b5fc89f9713cb75273c6d0c40a85f3
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Update rbm for rbm#40068 and rbm#40069

2024-01-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
cfa73f9c by Nicolas Vigier at 2024-01-30T16:46:23+01:00
Update rbm for rbm#40068 and rbm#40069

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit b5e5b04aaf677c4bacfb5ace45598313286bfdf6
+Subproject commit 067c30ee4cf3baa1c0b7e3674d785cf9e5bec8fe



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/cfa73f9c6b77c26a23db8285c88dd28783823bdc

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/cfa73f9c6b77c26a23db8285c88dd28783823bdc
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41072: Set correct updater_url for Mullvad Browser nightly builds

2024-01-30 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
f1ecbc88 by Nicolas Vigier at 2024-01-30T09:05:17+01:00
Bug 41072: Set correct updater_url for Mullvad Browser nightly builds

- - - - -


1 changed file:

- projects/firefox/config


Changes:

=
projects/firefox/config
=
@@ -89,6 +89,7 @@ targets:
   branding_directory_prefix: 'mb'
   gitlab_project: 
https://gitlab.torproject.org/tpo/applications/mullvad-browser
   updater_url: 'https://cdn.mullvad.net/browser/update_responses/update_1/'
+  nightly_updates_publish_dir_prefix: mullvadbrowser-
 
   linux-x86_64:
 var:



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f1ecbc8882766070ea2c90bc594432dd7f599c9b

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f1ecbc8882766070ea2c90bc594432dd7f599c9b
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41073: Add required packages for container-less build

2024-01-29 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
056eeab3 by Mynacol at 2024-01-30T08:38:35+01:00
Bug 41073: Add required packages for container-less build

jq and 7zip are both absolutely required, 7zip just recently.
bison, tcl, gyp and python3-venv are scattered around as dependency.
wget is also definitely required, but it's not available in a minimal
docker image.

Besides this, python3, not python2 is required, similarly jdk 11 instead
of 8.

- - - - -


1 changed file:

- README


Changes:

=
README
=
@@ -222,15 +222,19 @@ of containers: the container-image project is still 
called, but it will
 just create an empty file instead of a real container image.
 
 The build without containers is currently only supported for the Android
-builds, and will require that you run Debian Buster and install build
-dependencies for all the components that are built. This can be done
-with the following command:
+builds, and will require that you run Debian Bullseye or Bookworm and
+install build dependencies for all the components that are built. This can
+be done with the following command:
 
-  # apt-get install build-essential python automake libtool zip unzip \
-autoconf2.13 openjdk-8-jdk gettext-base autotools-dev \
+  # apt-get install build-essential python3 automake libtool zip unzip \
+autoconf2.13 openjdk-11-jdk gettext-base autotools-dev \
 automake autoconf libtool autopoint libssl-dev \
 pkg-config zlib1g-dev libparallel-forkmanager-perl \
-libfile-slurp-perl bzip2 xz-utils apksigner yasm
+libfile-slurp-perl bzip2 xz-utils apksigner yasm wget \
+   bison gyp tcl python3-venv 7zip jq
+
+Note that Debian Bullseye requires the bullseye-backports repository to
+get the 7zip package.
 
 
 Common Build Errors



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/056eeab3bb005f20fb5b7e1a033b14c218a01251

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/056eeab3bb005f20fb5b7e1a033b14c218a01251
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Update rbm for rbm#40067

2024-01-25 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
af1c78b5 by Nicolas Vigier at 2024-01-25T11:19:16+01:00
Update rbm for rbm#40067

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 40acf540fe75055df2eb78454f070f57d0804729
+Subproject commit b5e5b04aaf677c4bacfb5ace45598313286bfdf6



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/af1c78b5ba82b7d550337f9119bcd6ce0d4a6a16

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/af1c78b5ba82b7d550337f9119bcd6ce0d4a6a16
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Update rbm for rbm#40067

2024-01-25 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
83a1a381 by Nicolas Vigier at 2024-01-25T11:17:52+01:00
Update rbm for rbm#40067

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 40acf540fe75055df2eb78454f070f57d0804729
+Subproject commit b5e5b04aaf677c4bacfb5ace45598313286bfdf6



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/83a1a381aea279e202a343f46e0b0e714d028afb

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/83a1a381aea279e202a343f46e0b0e714d028afb
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-115.7.0esr-13.0-1] fixup! Bug 41668: Tweaks to the Base Browser updater for Tor Browser

2024-01-25 Thread boklm (@boklm) via tor-commits


boklm pushed to branch tor-browser-115.7.0esr-13.0-1 at The Tor Project / 
Applications / Tor Browser


Commits:
6292bbc9 by Nicolas Vigier at 2024-01-25T10:26:11+01:00
fixup! Bug 41668: Tweaks to the Base Browser updater for Tor Browser

Bug 42293: Don't disable updater when run by torbrowser-launcher flatpak

When the TORBROWSER_LAUNCHER environment variable is set (which
is set by torbrowser-launcher since version 0.3.7) we assume that Tor
Browser is not installed by a Flatkpak. Although torbrowser-launcher
itself can be installed by a Flatpak, this should not prevent the
updater from working.

- - - - -


1 changed file:

- widget/gtk/WidgetUtilsGtk.cpp


Changes:

=
widget/gtk/WidgetUtilsGtk.cpp
=
@@ -138,6 +138,11 @@ void SetLastMousePressEvent(GdkEvent* aEvent) {
 bool IsRunningUnderSnap() { return !!GetSnapInstanceName(); }
 
 bool IsRunningUnderFlatpak() {
+  // tor-browser#42293: Don't disable updater when run by torbrowser-launcher 
flatpak
+  const char* torbrowserLauncher = g_getenv("TORBROWSER_LAUNCHER");
+  if (torbrowserLauncher) {
+return false;
+  }
   // 
https://gitlab.gnome.org/GNOME/gtk/-/blob/4300a5c609306ce77cbc8a3580c19201dccd8d13/gdk/gdk.c#L472
   static bool sRunning = [] {
 return g_file_test("/.flatpak-info", G_FILE_TEST_EXISTS);



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6292bbc911e1ece4413d6386f6f6350ef8281abf

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6292bbc911e1ece4413d6386f6f6350ef8281abf
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-115.7.0esr-13.5-1] fixup! Bug 41668: Tweaks to the Base Browser updater for Tor Browser

2024-01-25 Thread boklm (@boklm) via tor-commits


boklm pushed to branch tor-browser-115.7.0esr-13.5-1 at The Tor Project / 
Applications / Tor Browser


Commits:
5898a9ab by Nicolas Vigier at 2024-01-25T10:21:48+01:00
fixup! Bug 41668: Tweaks to the Base Browser updater for Tor Browser

Bug 42293: Don't disable updater when run by torbrowser-launcher flatpak

When the TORBROWSER_LAUNCHER environment variable is set (which
is set by torbrowser-launcher since version 0.3.7) we assume that Tor
Browser is not installed by a Flatkpak. Although torbrowser-launcher
itself can be installed by a Flatpak, this should not prevent the
updater from working.

- - - - -


1 changed file:

- widget/gtk/WidgetUtilsGtk.cpp


Changes:

=
widget/gtk/WidgetUtilsGtk.cpp
=
@@ -138,6 +138,11 @@ void SetLastMousePressEvent(GdkEvent* aEvent) {
 bool IsRunningUnderSnap() { return !!GetSnapInstanceName(); }
 
 bool IsRunningUnderFlatpak() {
+  // tor-browser#42293: Don't disable updater when run by torbrowser-launcher 
flatpak
+  const char* torbrowserLauncher = g_getenv("TORBROWSER_LAUNCHER");
+  if (torbrowserLauncher) {
+return false;
+  }
   // 
https://gitlab.gnome.org/GNOME/gtk/-/blob/4300a5c609306ce77cbc8a3580c19201dccd8d13/gdk/gdk.c#L472
   static bool sRunning = [] {
 return g_file_test("/.flatpak-info", G_FILE_TEST_EXISTS);



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5898a9ab6d1386fb139851bd6b512381af5b1519

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5898a9ab6d1386fb139851bd6b512381af5b1519
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Update the Flatpak name

2024-01-17 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
96594666 by asciiwolf at 2024-01-17T13:22:42+00:00
Update the Flatpak name
- - - - -


1 changed file:

- README.md


Changes:

=
README.md
=
@@ -27,11 +27,11 @@ Install Flatpak using these 
[instructions](https://flatpak.org/setup/).
 Then install `torbrowser-launcher` like this:
 
 ```
-flatpak install flathub com.github.micahflee.torbrowser-launcher -y
+flatpak install flathub org.torproject.torbrowser-launcher -y
 ```
 
 Run `torbrowser-launcher` either by using the GUI desktop launcher, or by 
running:
 
 ```
-flatpak run com.github.micahflee.torbrowser-launcher
+flatpak run org.torproject.torbrowser-launcher
 ```



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/96594666ab8b92e036f6962387177830f8f289f3

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/96594666ab8b92e036f6962387177830f8f289f3
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Add script to tag new release (#13)

2024-01-15 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
899ea231 by Nicolas Vigier at 2024-01-12T11:13:05+01:00
Add script to tag new release (#13)

- - - - -


1 changed file:

- + git-tag_release.sh


Changes:

=
git-tag_release.sh
=
@@ -0,0 +1,6 @@
+#!/bin/sh
+# Make a signed git tag for the current commit, for a new release
+set -e
+VERSION=$(cat share/torbrowser-launcher/version)
+git tag -s --message="torbrowser-launcher version $VERSION" v$VERSION
+echo "Created git tag v$VERSION"



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/899ea231701f6483720c6e8f90d1a49b0c3d63f2

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/899ea231701f6483720c6e8f90d1a49b0c3d63f2
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher] Pushed new tag v0.3.7

2024-01-12 Thread boklm (@boklm) via tor-commits


boklm pushed new tag v0.3.7 at The Tor Project / Applications / 
torbrowser-launcher

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tree/v0.3.7
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Version bump to 0.3.7 and update changelog

2024-01-12 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
e4bb9790 by Nicolas Vigier at 2024-01-11T20:00:16+01:00
Version bump to 0.3.7 and update changelog

- - - - -


3 changed files:

- CHANGELOG.md
- share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml
- share/torbrowser-launcher/version


Changes:

=
CHANGELOG.md
=
@@ -1,5 +1,19 @@
 # Tor Browser Launcher Changelog
 
+## 0.3.7
+
+* Use Tor Browser 13.0 new filenames
+* Adapt AppArmor profile for Tor Browser 13.0
+* Set the TORBROWSER_LAUNCHER environment variable to make it easier
+  for Tor Browser to see that it is being run by torbrowser-launcher
+* Use a proper rDNS ID in AppStream metainfo
+* Update to latest version of the Tor Browser OpenPGP signing key
+* Remove some unused code to fix a warning
+* Add dbus-glib to the rpm package dependencies
+* Maintenance of torbrowser-launcher has been handed to Tor Project,
+  and the git repository moved to
+  https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
+
 ## 0.3.6
 
 * Tor Browser 12.0 no longer uses locales, so the download URL and local path 
have changed


=
share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml
=
@@ -31,6 +31,7 @@
  bo...@torproject.org
  
  
+  
   
  
 


=
share/torbrowser-launcher/version
=
@@ -1 +1 @@
-0.3.6
+0.3.7



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/e4bb97903de08267f9520b5bc6900bd8dbc006b3

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/e4bb97903de08267f9520b5bc6900bd8dbc006b3
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Remove gnupg_import_ok_pattern from torbrowser_launcher/common.py (#12)

2024-01-11 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
10a13e3f by Nicolas Vigier at 2024-01-11T13:33:31+01:00
Remove gnupg_import_ok_pattern from torbrowser_launcher/common.py (#12)

According to https://github.com/torproject/torbrowser-launcher/pull/716
the definition of `gnupg_import_ok_pattern` in
`torbrowser_launcher/common.py` is causing some warnings.

But it looks like it is not being used since
83fa1d38c44f16a76dd98407e321b9cc9b5b5743, so we can remove it.

Thanks to meator for reporting the issue.

- - - - -


1 changed file:

- torbrowser_launcher/common.py


Changes:

=
torbrowser_launcher/common.py
=
@@ -41,15 +41,6 @@ SHARE = os.getenv("TBL_SHARE", sys.prefix + "/share") + 
"/torbrowser-launcher"
 
 gettext.install("torbrowser-launcher")
 
-# We're looking for output which:
-#
-#  1. The first portion must be `[GNUPG:] IMPORT_OK`
-#  2. The second must be an integer between [0, 15], inclusive
-#  3. The third must be an uppercased hex-encoded 160-bit fingerprint
-gnupg_import_ok_pattern = re.compile(
-b"(\[GNUPG\:\]) (IMPORT_OK) ([0-9]|[1]?[0-5]) ([A-F0-9]{40})"
-)
-
 
 class Common(object):
 def __init__(self, tbl_version):



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/10a13e3fac9c152cf03fb081ed334996bb55a244

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/10a13e3fac9c152cf03fb081ed334996bb55a244
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Depend on dbus-glib

2024-01-11 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
961da39f by Vecna at 2024-01-11T09:57:30+00:00
Depend on dbus-glib

- - - - -


1 changed file:

- build_rpm.sh


Changes:

=
build_rpm.sh
=
@@ -6,7 +6,7 @@ VERSION=$(cat share/torbrowser-launcher/version)
 rm -r build dist
 
 # build binary package
-python3 setup.py bdist_rpm --requires="python3-qt5, python3-gpg, 
python3-requests, python3-pysocks, python3-packaging, gnupg2"
+python3 setup.py bdist_rpm --requires="python3-qt5, python3-gpg, 
python3-requests, python3-pysocks, python3-packaging, gnupg2, dbus-glib"
 
 # install it
 echo ""



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/961da39f8a3af088f1face50a3efb0f2d808ca44

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/961da39f8a3af088f1face50a3efb0f2d808ca44
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Update share/torbrowser-launcher/tor-browser-developers.asc (#10)

2024-01-08 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
9140e6a4 by Nicolas Vigier at 2024-01-08T13:54:51+01:00
Update share/torbrowser-launcher/tor-browser-developers.asc (#10)

Update Tor Browser gpg key, with new expiration date on the current
subkey.

- - - - -


1 changed file:

- share/torbrowser-launcher/tor-browser-developers.asc


Changes:

=
share/torbrowser-launcher/tor-browser-developers.asc
=
@@ -70,40 +70,40 @@ 
df1B0nicivxYAGb0Nc8ICl89WMfKp+/LMzD08Alzz26Mfmglv6zJx2J0b8puMEtT
 iM4ESrDVrMxewibZ4cI9e1g86WXGPlIZ0ApicFlr69bTIPzIYNmYwWqab2tqm0MQ
 VRpNDWMIkWJ/r3TTmNN+Fqv827Fo7qR8zjPVi8DyoKmFzfgya2ZoE7od5bGg7lcM
 7UhzEPfwZUMqKaawlrnzqy1sGLJi0QZErUhHo3tU9sHYqAtUENvs4LC7dEG5Ag0E
-WwnQdAEQAK8MRUxjsvvZFGt3dScnI20cvlL4LM3ReesedqrFEOcZP8q5kVxiu3n1
-zT64BXRza2EiYPttymbh56ynLk/SxxcM1qdGhn1qwdCEav//TYJK4eE0ZRPbdOL6
-YY9hkfBPZUONBD+YYnohsOUnAYRNaRsSjlAwsaoDauJMSOGl7Fam0E2GDvzAYeCE
-jE9SYFwW1jGGmvEKjAV9zqjeMwH0A7NWYuTo9VXmCyxRPPhAKw/3XsMuJ1WOnL9r
-Pz4yo2ZQlyLf342IFKpvQLw+H3NqRYpJa8P5bi1cKYGHP97UZFHLOu5rzvoyFmTU
-82H0oc2BQDIacZzwmVVwyM0wOg4evdRXmv/2KvtuwxosF58kXZTtCQ7miWRWUPGM
-X4PR71I70KBBDcLWZMptmW8Ey+oE7DjOUMv77sGeBZdF/pBW0Oy4qgNF/tX//Nko
-I2dKBBuEQMikQLgfuEoGF/5zueWJdLjEDESeZB9nXgWEaADwiH+nzcuUYivCYR2y
-szRpRTv2GwcUoYbT1Cb8L3Qy77xq21BiOxs5OWylfUS0yLZN9XOP/qwa5MDPmpS1
-kAw3IcBf9MA825PFxXQY/mv9rvd5gmip+vfwBT8F3ZvXzQHAWBF0bXTONmp/Cxuj
-jE1PkJBQ+mOg5x/wyYEVw+HkfZgSIwfVFFJ+MXkKYeXXVHg5+lubABEBAAGJBHIE
-GAEKACYCGwIWIQTvbiht2oXqKkun3mhOLG6HkymCkAUCYL9srAUJBsp3OAJACRBO
-LG6HkymCkMF0IAQZAQoAHRYhBBEHdbXRAfs2vGyRG+t3RJHZ/wbiBQJbCdB0AAoJ
-EOt3RJHZ/wbi170P/0Rvg0uBdrHsnKOjfqwPZ6k4I1Wwx2tpkrsb4wKVVxoRTZFO
-iF1DE33gZ1Dkf1jczfwdpBZQbC70gkaLz2WpbbBRtg6RIZQO53psM+wmYRO1C4P+
-ByMJ9bf8V28pzKTsBV3jU3ACp2uNWft7wIzUq/6AHHf6RgVvikglC+RcUxLbOHdX
-zLpgM8ItzotD3UBq+g67um3VG1HC3/1RaA+tqvrg/uehEjhiC753XYgz2VkHlRVV
-oM74KoXC3HKxChwArpT5lAfqwUwvcvvOiPL4ZsBivl452tQOPfef9XBgV7LSQnS1
-Wy8x0L+ncClP8OiEdC3DpZSgZKeFJ1V+xsis9V0Bzs/Pv4VH+s7spvm1Al7BwkNX
-Qkxn2csaws1lIuS7cfB6sbdkNNGxAeQSOfCLOCWJU01niy/NVRQiEEjbhCSMHwj1
-AEf6B+sGghmj5BEfCdfB27o4eCrv/xQCJri7g0FlYFypnaxc/lHojNQZZCAHA3Av
-/RCcbEoBQ1JBdR2f9oUQ86ZJtHVbUKU4k39jSA/b8eqSQQB6y/2dkNdW2VnXiM/A
-i8aj1FJQTX4K+j5pCGy/+AR241qfeImr3JtMav2SrkfuD72dUPbKowFeKq3M0p39
-12peoH82PVnLgsD7uhRTYbhLUOefYG8JvoovnhQH6X9RvMEQ3aZyvRfgkNyR8MoP
-/ifP1xddz4quT5XNyrg8z1rwVVDogGigFm2IumnGh/UFNB/dL0JlXV4tmYNeLaKy
-/7YSmNMP1MnMWR+FbY8VWFreFZqWMcsk4AaN+fQXzMFJjZ9hbSyBSOpL1TZ20nnI
-w0Ant8cuH2LSFPJnlE+KZfzneN6n1o9Wo0lvFwswPxYpHJOkrDyDMeLrkDf6/Kfj
-Kq5QujlVJpfOOYgINXUDnvOTotHbOpqRULU6elaKGJbdRByB2cN0lbPJjcOx6GXs
-UNqAGO0VcS7CVn6KByxI0MFPbwmK8sZ/MUiJZnnUuB9x3X+Rf2UPRdOyIl3/jc/s
-8AAQcvWm7fuxcCOgqK6BPP4S7tpiuYaeI44MhW2H6ndwO49KI7jaoIf0Vk2c2OCy
-MsGf5G3djcDnZ70hEEQdr+2h2yaOPkr5j3oAxugA3pRG0rnX7SPol3xnsahkbexW
-VltWIA/ZR6RoZpYDT2nAh4vfTzDGCe7SeNMzhuZhvPvJS62XLQcz4zCBbz9LZgtq
-nRxpaYjCyY7RQXngVHzy98ImiNmdgfxw1FD+qW2FyC5cN2fgLU8X8hpql9/P68eu
-AIA7U6w7fVji3F3Uul0FuqERX6p9ZObfot2LsFZIUoYqUemNt2gqHuzKKZyIjt6Q
-3dAx5AUwZE27KZWfpfNbww/HaNtTPqD6ULtvRdQiXheV
-=GYln
+YUSBvAEQALxuQqEliMOMGpoVXWK7uIPHXmV8U/kUuAtda3Mfo7vySXUgqv3Cgia+
+pszIXa5BYx3GCCx2W+H+EYzyB80Nw/Qz2kAX03+wJ/gaioQfRkNEcZi8cvWS08px
+TVpKkaPMRuhSk0eCXAXmikDOUvzxqeB7U/IPBdsZJJoQk5vfOJX1vA0ZvdHwW+uZ
+C69rJctAqZ+qaEtOO94i9o+MfUq+ovHPflYM5o27w8oC9LKmTJVa6vMg88dLRkJp
+nXHe0Xr8Xq6seJZIfixu1RvFA5OLvxJvEySKwI2HJ+Fn56AnPZKb64YA67PLe/j+
+201w+svGh71FFbjxyrxOTGDdeZ9AMHJ6IRvdhtgvh6ZxceWHKSqDxkZo5BgfKmkK
+Y9V+PNmpa/h7jEA+531L67j1o0B1dgmnvHobiixTiTMI7tPTAs9fsXg2RWs+L+nP
+VHQLTHqOMRRsD0sv/W2cCrydNN3w7e1Fbv1Ka55AAu1uslO+XJehkbqb5GojaAGM
+4DowintgyfEYP4BKl299lD5/w4e1NsO8o7xkU9oswzNT57jocla0P3jFVSdvg75+
+H9qUnp52k0BZO4ynQLreaUpUxax4H9L38iE5ClgX5vJ+4fCEyqyIhAVEhFGpjDJ+
+TG1EB2ljE7PjCKUg+OK+Xf42F5BrZmji1fpAsKiOhSwHs7lj8gcVABEBAAGJBHIE
+GAEKACYCGwIWIQTvbiht2oXqKkun3mhOLG6HkymCkAUCZZmnzAUJBYRfEAJACRBO
+LG6HkymCkMF0IAQZAQoAHRYhBGExiPxb4hduPtVJAeU9mJqeLUe/BQJhRIG8AAoJ
+EOU9mJqeLUe/vKEP/2+AD/ZAqQQRSGbvkh0TIMjLkBpS5lyVA1rHtTOzhAmtCnoi
+0x0Dd6w8d81yjNuvfGhijdxPOjUicA+9tEWHKb3AszV8JL72vC2OJl3Qod+C9N55
+907r+EL41A4Ew7bLYz5DifQBoVt/qzTjUIZdpNbz/oDHr75R3bm8QwKSVrj0mia/
+l1rCCLBVAFAaF59VIS/KjyRo5wPqUaUkxU5A1MH/FXcRXaukO4ontNqaZpV+P1c9
++duQnAI1dXEDpIgCya+4kJDazBKLn3HtPYf758qNj0qAMl+Z3zeGPmdFx5dIV5IQ
+wxjQopnjHg6rBTLqGGQvD9OLpCXsCrahEF0BXrVRHVBL5yJih+XO12eIoMX/PnDT
+Sd3SodO0W3Pfp6MHMx6QSox8r5OJdi+WrrSwZBBg3UQL82+SBdJMDhxFutyGQ6rj
+Wt1EdOOfOLlH97dl2z4jCmstXAc7pPC7XNOFz3zZbJmjBV++Ax9T0Bh5zLfvvzHx
+s0j05wlQTiVJZBlGLAecMosdWzf1J6xqaQY2fOn/psF110iWLQMhrsiIXcjeUrFa
+g17DCVuB5v6lHxYpcy9KnYQQs7AHrSQHbd22Tw7I+bwdtsKNVLgrg+qGxitbW/kc
+/tM17NAHcVrXohP/NUx3QbJ6Ild14EjuFSWlU1Z9TU7PmIzP8TPyiruxv8IqpB0Q
+AIFc7W4zMoYaonNZ10tVLhyjwOUAlDwf2B0Iwy15ctr07Kn6bMeMZULFpXhExCw7
+2mtnAK4jHRphR5m7t7mSYxMwSP5HAffFZpkx8YQHYq2ZSe+yIxXeRwraMdO7POJg
+tPt730xoBB7Cra2t1yQj9KuIewuy1qZhjn+upabH4x6OVox1gZcoj+cxZ5mSV+9C
+Hkypgl9VQZWAjG36Y8rJ//3KFAizJLwGP3XAtUx9cId75mWCz8SJwroadoVrk1dR
+IQ2HPZEjmbhWKXR5InJNg0BgHh3qT1bW1tu8xKHqauukrz

[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Update self.min_version to 13.0 (#9)

2024-01-08 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
7b9b5b9c by Nicolas Vigier at 2024-01-08T13:53:33+01:00
Update self.min_version to 13.0 (#9)

- - - - -


1 changed file:

- torbrowser_launcher/launcher.py


Changes:

=
torbrowser_launcher/launcher.py
=
@@ -72,7 +72,7 @@ class Launcher(QtWidgets.QMainWindow):
 self.force_redownload = False
 
 # This is the current version of Tor Browser, which should get updated 
with every release
-self.min_version = "12.0"
+self.min_version = "13.0"
 
 # Init launcher
 self.set_state(None, "", [])



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/7b9b5b9cb0a909646d27f84bf015993507a69c0e

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/7b9b5b9cb0a909646d27f84bf015993507a69c0e
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Set the TORBROWSER_LAUNCHER environment variable (#8)

2024-01-08 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
f4d2e314 by Nicolas Vigier at 2024-01-08T11:32:06+01:00
Set the TORBROWSER_LAUNCHER environment variable (#8)

Set an environment variable to make it easier for Tor Browser to see
that torbrowser-launcher is being used.

- - - - -


1 changed file:

- torbrowser_launcher/__init__.py


Changes:

=
torbrowser_launcher/__init__.py
=
@@ -64,6 +64,10 @@ def main():
 settings = bool(args.settings)
 url_list = args.url
 
+# Set the TORBROWSER_LAUNCHER env variable to make it easier to
+# detect that torbrowser-launcher is being used
+os.environ["TORBROWSER_LAUNCHER"] = "1"
+
 # Load the version and print the banner
 with open(os.path.join(SHARE, "version")) as buf:
 tor_browser_launcher_version = buf.read().strip()



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/f4d2e314bfafaed8f24a00401a64c0605ac93270

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/f4d2e314bfafaed8f24a00401a64c0605ac93270
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41057: Also fetch mullvad-browser.git in `make fetch`

2023-12-21 Thread boklm (@boklm) via tor-commits


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/264191d6e833696c606ec5f4b3a3b9e65624d44d

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/264191d6e833696c606ec5f4b3a3b9e65624d44d
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] 2 commits: Bug 41056: Make it possible to use templates in var/torbrowser_incremental_from

2023-12-21 Thread boklm (@boklm) via tor-commits


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/2ff8efa48b9a8340e3ea69be22027b394639b61d...6733294bde2b9d728c19b27f926b5261184379c7

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/2ff8efa48b9a8340e3ea69be22027b394639b61d...6733294bde2b9d728c19b27f926b5261184379c7
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41056: Make it possible to use templates in var/torbrowser_incremental_from

2023-12-20 Thread boklm (@boklm) via tor-commits


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/6858c6bd7d9aefca5c542dfd8fb2fd925d6b7d62

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6858c6bd7d9aefca5c542dfd8fb2fd925d6b7d62
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41041: Sign mullvad-browser nightly updates

2023-12-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
fd32e065 by Nicolas Vigier at 2023-12-19T14:01:33+01:00
Bug 41041: Sign mullvad-browser nightly updates

- - - - -


1 changed file:

- tools/signing/nightly/config.yml


Changes:

=
tools/signing/nightly/config.yml
=
@@ -13,16 +13,14 @@ torbrowser:
   nss_db_dir: nssdb
   appname_marfile: tor-browser
   appname_bundle: tor-browser
-basebrowser:
+mullvadbrowser:
   publish_dirs:
-- basebrowser-nightly-linux-x86_64
-- basebrowser-nightly-linux-i686
-- basebrowser-nightly-windows-x86_64
-- basebrowser-nightly-windows-i686
-- basebrowser-nightly-macos
-  nss_db_dir: nssdb-basebrowser-1
-  appname_marfile: base-browser
-  appname_bundle: base-browser
+- mullvadbrowser-nightly-linux-x86_64
+- mullvadbrowser-nightly-windows-x86_64
+- mullvadbrowser-nightly-macos
+  nss_db_dir: nssdb-mullvadbrowser-1
+  appname_marfile: mullvad-browser
+  appname_bundle: mullvad-browser
 nss_certname: nightly-marsigner
 gpg_keyring: keyring/torbrowser-nightly.gpg
 rsync_dest: /srv/tbb-nightlies-master.torproject.org/htdocs/nightly-updates/



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/fd32e065f27a2ad609eef7e38b7c11f2188271bd

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/fd32e065f27a2ad609eef7e38b7c11f2188271bd
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/mullvad-browser][mullvad-browser-115.6.0esr-13.0-1] squash! MB 79: Add Mullvad Browser MAR signing keys

2023-12-14 Thread boklm (@boklm) via tor-commits


boklm pushed to branch mullvad-browser-115.6.0esr-13.0-1 at The Tor Project / 
Applications / Mullvad Browser


Commits:
65b3f1db by Nicolas Vigier at 2023-12-14T16:46:37+01:00
squash! MB 79: Add Mullvad Browser MAR signing keys

MB 256: Add mullvad-browser nightly mar signing key

- - - - -


2 changed files:

- toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der
- toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der


Changes:

=
toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der
=
Binary files a/toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der 
and b/toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der differ


=
toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der
=
Binary files 
a/toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der and 
b/toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der differ



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/65b3f1db403eb99f05db77bbc1270ff7571b3c01

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/65b3f1db403eb99f05db77bbc1270ff7571b3c01
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Bug 41039: Keep download-*.json files from previous version when new version does not include them

2023-12-12 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
7a02d02f by Nicolas Vigier at 2023-12-12T10:51:04+01:00
Bug 41039: Keep download-*.json files from previous version when new version 
does not include them

- - - - -


1 changed file:

- tools/signing/upload-update_responses-to-staticiforme


Changes:

=
tools/signing/upload-update_responses-to-staticiforme
=
@@ -26,8 +26,22 @@ test -n "$(git status --porcelain=v1 | grep -v '^?')" \
 is_project torbrowser && cd update_3
 is_project mullvadbrowser && cd update_1
 
-rm -Rf "$tbb_version_type"
+old_ur=$(mktemp -d)
+trap "rm -Rf $old_ur" EXIT
+mv "$tbb_version_type" "$old_ur/$tbb_version_type"
 tar -xf "$update_responses_tar"
+
+# Keep download-*.json files from previous release if they are not in
+# the new release. This happens when a release does not include some
+# platforms. See tor-browser-build#41039.
+IFS=$'\n'
+for file in $(ls -1 "$old_ur/$tbb_version_type"/download-*.json)
+do
+  fname=$(basename "$file")
+  test -f "$tbb_version_type/$fname" && continue
+  mv "$file" "$tbb_version_type/$fname"
+done
+
 git add "$tbb_version_type"
 git commit -m "$tbb_version_type: new version, $tbb_version"
 git push



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7a02d02f2c6784828269335ca7c353a5c25aca94

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7a02d02f2c6784828269335ca7c353a5c25aca94
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 41039: Keep download-*.json files from previous version when new version does not include them

2023-12-12 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
315cf59e by Nicolas Vigier at 2023-12-12T10:09:13+01:00
Bug 41039: Keep download-*.json files from previous version when new version 
does not include them

- - - - -


1 changed file:

- tools/signing/upload-update_responses-to-staticiforme


Changes:

=
tools/signing/upload-update_responses-to-staticiforme
=
@@ -26,8 +26,22 @@ test -n "$(git status --porcelain=v1 | grep -v '^?')" \
 is_project torbrowser && cd update_3
 is_project mullvadbrowser && cd update_1
 
-rm -Rf "$tbb_version_type"
+old_ur=$(mktemp -d)
+trap "rm -Rf $old_ur" EXIT
+mv "$tbb_version_type" "$old_ur/$tbb_version_type"
 tar -xf "$update_responses_tar"
+
+# Keep download-*.json files from previous release if they are not in
+# the new release. This happens when a release does not include some
+# platforms. See tor-browser-build#41039.
+IFS=$'\n'
+for file in $(ls -1 "$old_ur/$tbb_version_type"/download-*.json)
+do
+  fname=$(basename "$file")
+  test -f "$tbb_version_type/$fname" && continue
+  mv "$file" "$tbb_version_type/$fname"
+done
+
 git add "$tbb_version_type"
 git commit -m "$tbb_version_type: new version, $tbb_version"
 git push



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/315cf59ee498f76a828132de313d19481443cf61

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/315cf59ee498f76a828132de313d19481443cf61
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-bundle-testsuite][main] Bug 40079: Clean mullvadbrowser builds using browser-all-desktop instead of browser-all target

2023-12-08 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-bundle-testsuite


Commits:
c59310fb by Nicolas Vigier at 2023-12-08T09:57:35+01:00
Bug 40079: Clean mullvadbrowser builds using browser-all-desktop instead of 
browser-all target

- - - - -


1 changed file:

- rbm-config/tb-build-06.torproject.org.rbm.local.conf


Changes:

=
rbm-config/tb-build-06.torproject.org.rbm.local.conf
=
@@ -70,7 +70,7 @@ var:
   - project: release
 target:
   - nightly
-  - browser-all
+  - browser-all-desktop
   - mullvadbrowser
   #
   ### If you are doing 'release' builds in the maint-7.0 branch and



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite/-/commit/c59310fb105087ec4c05ef21354e0610fdb4a05b

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite/-/commit/c59310fb105087ec4c05ef21354e0610fdb4a05b
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Restore release/download-android-*.json from 13.0.4

2023-12-07 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
1f03f584 by Nicolas Vigier at 2023-12-07T12:49:53+01:00
Restore release/download-android-*.json from 13.0.4

tor-browser-build#41039.

- - - - -


4 changed files:

- + update_3/release/download-android-aarch64.json
- + update_3/release/download-android-armv7.json
- + update_3/release/download-android-x86.json
- + update_3/release/download-android-x86_64.json


Changes:

=
update_3/release/download-android-aarch64.json
=
@@ -0,0 +1 @@
+{"binary":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-aarch64-13.0.4.apk","git_tag":"tbb-13.0.4-build1","sig":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-aarch64-13.0.4.apk.asc","version":"13.0.4"}
\ No newline at end of file


=
update_3/release/download-android-armv7.json
=
@@ -0,0 +1 @@
+{"binary":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-armv7-13.0.4.apk","git_tag":"tbb-13.0.4-build1","sig":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-armv7-13.0.4.apk.asc","version":"13.0.4"}
\ No newline at end of file


=
update_3/release/download-android-x86.json
=
@@ -0,0 +1 @@
+{"binary":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-x86-13.0.4.apk","git_tag":"tbb-13.0.4-build1","sig":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-x86-13.0.4.apk.asc","version":"13.0.4"}
\ No newline at end of file


=
update_3/release/download-android-x86_64.json
=
@@ -0,0 +1 @@
+{"binary":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-x86_64-13.0.4.apk","git_tag":"tbb-13.0.4-build1","sig":"https://dist.torproject.org/torbrowser/13.0.4/tor-browser-android-x86_64-13.0.4.apk.asc","version":"13.0.4"}
\ No newline at end of file



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/1f03f5841a69f794e3bbad45c7385e42effb1655

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/1f03f5841a69f794e3bbad45c7385e42effb1655
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] 2 commits: Bug 41036: Remove go_vendor-lyrebird-nightly makefile target

2023-12-05 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
f3939e09 by Nicolas Vigier at 2023-12-05T16:44:03+01:00
Bug 41036: Remove go_vendor-lyrebird-nightly makefile target

Since after #40948 we don't check lyrebird-vendor sha256sum in nightly,
we don't need to use the `go_vendor-lyrebird-nightly` makefile target
anymore.

- - - - -
38fc8374 by Nicolas Vigier at 2023-12-05T16:46:01+01:00
Bug 41036: Rename go_vendor-$project-alpha make targets to go_vendor-$project

Since we don't have a `-nightly` target anymore, we don't need to keep
`-alpha` in the other targets.

- - - - -


2 changed files:

- Makefile
- doc/how-to-update-go-dependencies.txt


Changes:

=
Makefile
=
@@ -631,21 +631,18 @@ cargo_vendor-application-services: submodule-update
 cargo_vendor-cbindgen: submodule-update
$(rbm) build cbindgen --step cargo_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-snowflake-alpha: submodule-update
+go_vendor-snowflake: submodule-update
$(rbm) build snowflake --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-conjure-alpha: submodule-update
+go_vendor-conjure: submodule-update
$(rbm) build conjure --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-webtunnel-alpha: submodule-update
+go_vendor-webtunnel: submodule-update
$(rbm) build webtunnel --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-lyrebird-alpha: submodule-update
+go_vendor-lyrebird: submodule-update
$(rbm) build lyrebird --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-lyrebird-nightly: submodule-update
-   $(rbm) build lyrebird --step go_vendor --target nightly --target 
torbrowser-linux-x86_64
-
 
 #
 # rcodesign #


=
doc/how-to-update-go-dependencies.txt
=
@@ -2,8 +2,7 @@ When the dependencies of a go project ($project in the 
following lines)
 are changing:
 
 - the go.mod and go.sum files in $project.git are updated
-- in tor-browser-build, run `make go_vendor-$project-alpha` or
-  `make go_vendor-$project-nightly`
+- in tor-browser-build, run `make go_vendor-$project`
 - find the new file created in directory `out/$project/go_vendor` and
   compute its sha256sum
 - in `projects/$project/config`, update `norec/sha256sum` for `go_vendor`



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/bfc545e40437cfaae25eaf27c3a88a9da0199d8e...38fc83743f8fc15081af4a5d714e5853cab7d8f3

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/bfc545e40437cfaae25eaf27c3a88a9da0199d8e...38fc83743f8fc15081af4a5d714e5853cab7d8f3
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 41036: Remove go_vendor-lyrebird-nightly makefile target

2023-12-05 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
8e7cef63 by Nicolas Vigier at 2023-12-05T16:16:45+01:00
Bug 41036: Remove go_vendor-lyrebird-nightly makefile target

Since after #40948 we don't check lyrebird-vendor sha256sum in nightly,
we don't need to use the `go_vendor-lyrebird-nightly` makefile target
anymore.

- - - - -
db02c9d4 by Nicolas Vigier at 2023-12-05T16:32:00+01:00
Bug 41036: Rename go_vendor-$project-alpha make targets to go_vendor-$project

Since we don't have a `-nightly` target anymore, we don't need to keep
`-alpha` in the other targets.

- - - - -


2 changed files:

- Makefile
- doc/how-to-update-go-dependencies.txt


Changes:

=
Makefile
=
@@ -637,21 +637,18 @@ cargo_vendor-wasm-bindgen: submodule-update
 cargo_vendor-lox: submodule-update
$(rbm) build lox-wasm --step cargo_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-snowflake-alpha: submodule-update
+go_vendor-snowflake: submodule-update
$(rbm) build snowflake --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-conjure-alpha: submodule-update
+go_vendor-conjure: submodule-update
$(rbm) build conjure --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-webtunnel-alpha: submodule-update
+go_vendor-webtunnel: submodule-update
$(rbm) build webtunnel --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-lyrebird-alpha: submodule-update
+go_vendor-lyrebird: submodule-update
$(rbm) build lyrebird --step go_vendor --target alpha --target 
torbrowser-linux-x86_64
 
-go_vendor-lyrebird-nightly: submodule-update
-   $(rbm) build lyrebird --step go_vendor --target nightly --target 
torbrowser-linux-x86_64
-
 
 #
 # rcodesign #


=
doc/how-to-update-go-dependencies.txt
=
@@ -2,8 +2,7 @@ When the dependencies of a go project ($project in the 
following lines)
 are changing:
 
 - the go.mod and go.sum files in $project.git are updated
-- in tor-browser-build, run `make go_vendor-$project-alpha` or
-  `make go_vendor-$project-nightly`
+- in tor-browser-build, run `make go_vendor-$project`
 - find the new file created in directory `out/$project/go_vendor` and
   compute its sha256sum
 - in `projects/$project/config`, update `norec/sha256sum` for `go_vendor`



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/226e45d911f67eba9ec8cc342f606c383e754726...db02c9d4d26f2b55a957f2fdbef4fd8cd72b9e39

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/226e45d911f67eba9ec8cc342f606c383e754726...db02c9d4d26f2b55a957f2fdbef4fd8cd72b9e39
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Revert "Bug 40933: Add symlinks to have incrementals between 12.5.x and 13.0"

2023-12-01 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
e0f8b589 by Richard Pospesel at 2023-11-30T14:41:29+00:00
Revert "Bug 40933: Add symlinks to have incrementals between 12.5.x and 
13.0"

This reverts commit a21969281d18941b69a94b994b0797f8b88ad45f.

Bug 40936: We are no longer building incrementals from the 12.5 series so its 
time for this patch to go

- - - - -


3 changed files:

- Makefile
- projects/release/config
- − projects/release/link_old_mar_filenames


Changes:

=
Makefile
=
@@ -183,7 +183,6 @@ torbrowser-testbuild-src: submodule-update
 torbrowser-incrementals-release: submodule-update
$(rbm) build release --step update_responses_config --target release 
--target create_unsigned_incrementals --target torbrowser
tools/update-responses/download_missing_versions release
-   $(rbm) build release --step link_old_mar_filenames --target release 
--target torbrowser
tools/update-responses/gen_incrementals release
$(rbm) build release --step hash_incrementals --target release --target 
torbrowser
 
@@ -196,7 +195,6 @@ torbrowser-incrementals-release-unsigned: submodule-update
 torbrowser-incrementals-alpha: submodule-update
$(rbm) build release --step update_responses_config --target alpha 
--target create_unsigned_incrementals --target torbrowser
tools/update-responses/download_missing_versions alpha
-   $(rbm) build release --step link_old_mar_filenames --target alpha 
--target torbrowser
tools/update-responses/gen_incrementals alpha
$(rbm) build release --step hash_incrementals --target alpha --target 
torbrowser
 
@@ -223,14 +221,12 @@ torbrowser-dmg2mar-release: submodule-update
$(rbm) build release --step update_responses_config --target release 
--target signed --target torbrowser
$(rbm) build release --step dmg2mar --target release --target signed 
--target torbrowser
tools/update-responses/download_missing_versions release
-   $(rbm) build release --step link_old_mar_filenames --target release 
--target torbrowser
CHECK_CODESIGNATURE_EXISTS=1 MAR_SKIP_EXISTING=1 
tools/update-responses/gen_incrementals release
 
 torbrowser-dmg2mar-alpha: submodule-update
$(rbm) build release --step update_responses_config --target alpha 
--target signed --target torbrowser
$(rbm) build release --step dmg2mar --target alpha --target signed 
--target torbrowser
tools/update-responses/download_missing_versions alpha
-   $(rbm) build release --step link_old_mar_filenames --target alpha 
--target torbrowser
CHECK_CODESIGNATURE_EXISTS=1 MAR_SKIP_EXISTING=1 
tools/update-responses/gen_incrementals alpha
 
 torbrowser-compare-windows-signed-unsigned-release: submodule-update
@@ -527,7 +523,6 @@ mullvadbrowser-testbuild-src: submodule-update
 mullvadbrowser-incrementals-release: submodule-update
$(rbm) build release --step update_responses_config --target release 
--target create_unsigned_incrementals --target mullvadbrowser
tools/update-responses/download_missing_versions release
-   $(rbm) build release --step link_old_mar_filenames --target release 
--target mullvadbrowser
tools/update-responses/gen_incrementals release
$(rbm) build release --step hash_incrementals --target release --target 
mullvadbrowser
 
@@ -540,7 +535,6 @@ mullvadbrowser-incrementals-release-unsigned: 
submodule-update
 mullvadbrowser-incrementals-alpha: submodule-update
$(rbm) build release --step update_responses_config --target alpha 
--target create_unsigned_incrementals --target mullvadbrowser
tools/update-responses/download_missing_versions alpha
-   $(rbm) build release --step link_old_mar_filenames --target alpha 
--target mullvadbrowser
tools/update-responses/gen_incrementals alpha
$(rbm) build release --step hash_incrementals --target alpha --target 
mullvadbrowser
 
@@ -567,14 +561,12 @@ mullvadbrowser-dmg2mar-release: submodule-update
$(rbm) build release --step update_responses_config --target release 
--target signed --target mullvadbrowser
$(rbm) build release --step dmg2mar --target release --target signed 
--target mullvadbrowser
tools/update-responses/download_missing_versions release
-   $(rbm) build release --step link_old_mar_filenames --target release 
--target mullvadbrowser
CHECK_CODESIGNATURE_EXISTS=1 MAR_SKIP_EXISTING=1 
tools/update-responses/gen_incrementals release
 
 mullvadbrowser-dmg2mar-alpha: submodule-update
$(rbm) build release --step update_responses_config --target alpha 
--target signed --target mullvadbrowser
$(rbm) build release --step dmg2mar --target alpha --target signed 
--target mullvadbrowser
tools/update-responses/download_missing_versions alpha
-   $(rbm) build release --step link_old_mar_filenames

[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] 2 commits: Bug 40995: Use cdn.stagemole.eu instead of cdn.devmole.eu in...

2023-11-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
01186a55 by Nicolas Vigier at 2023-11-28T10:34:19+01:00
Bug 40995: Use cdn.stagemole.eu instead of cdn.devmole.eu in 
download-unsigned-sha256sums-gpg-signatures-from-people-tpo

- - - - -
9aa0d30b by Nicolas Vigier at 2023-11-28T10:34:29+01:00
Bug 41027: Remove tb-build-04 and tb-build-05 from 
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo

- - - - -


1 changed file:

- tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo


Changes:

=
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo
=
@@ -11,15 +11,13 @@ do
 chmod 644 "$tmpfile"
 if test "$builder" = 'jb'; then
   file="$file.gpg"
-  
urls=("https://cdn.devmole.eu/hashes//$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";)
+  
urls=("https://cdn.stagemole.eu/hashes/$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";)
 else
   file="$file.asc"
   urls=( \
 
"https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-02.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-03.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
-
"https://tb-build-04.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
-
"https://tb-build-05.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
   )
 fi
 for url in "${urls[@]}"



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/c8c6221f7de472660a26c189ab6e8f6c47083e45...9aa0d30bc25a25307d892eb5cab6fef4d5d80615

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/c8c6221f7de472660a26c189ab6e8f6c47083e45...9aa0d30bc25a25307d892eb5cab6fef4d5d80615
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 40995: Use cdn.stagemole.eu instead of cdn.devmole.eu in...

2023-11-28 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
187add7c by Nicolas Vigier at 2023-11-28T10:24:07+01:00
Bug 40995: Use cdn.stagemole.eu instead of cdn.devmole.eu in 
download-unsigned-sha256sums-gpg-signatures-from-people-tpo

- - - - -
433eaf71 by Nicolas Vigier at 2023-11-28T10:25:00+01:00
Bug 41027: Remove tb-build-04 and tb-build-05 from 
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo

- - - - -


1 changed file:

- tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo


Changes:

=
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo
=
@@ -11,15 +11,13 @@ do
 chmod 644 "$tmpfile"
 if test "$builder" = 'jb'; then
   file="$file.gpg"
-  
urls=("https://cdn.devmole.eu/hashes//$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";)
+  
urls=("https://cdn.stagemole.eu/hashes/$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";)
 else
   file="$file.asc"
   urls=( \
 
"https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-02.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
 
"https://tb-build-03.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
-
"https://tb-build-04.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
-
"https://tb-build-05.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file";
 \
   )
 fi
 for url in "${urls[@]}"



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/e37d729fcf93668fbddf7ef30057dfc2769c5d98...433eaf71c24ba2e699c42f5d6912757563f793e2

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/e37d729fcf93668fbddf7ef30057dfc2769c5d98...433eaf71c24ba2e699c42f5d6912757563f793e2
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Update git repository URL (#7)

2023-11-24 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
e1e16dbb by Nicolas Vigier at 2023-11-23T16:36:58+01:00
Update git repository URL (#7)

- - - - -


8 changed files:

- .github/ISSUE_TEMPLATE/bug_report.md
- README.md
- setup.py
- torbrowser-launcher
- torbrowser_launcher/__init__.py
- torbrowser_launcher/common.py
- torbrowser_launcher/launcher.py
- torbrowser_launcher/settings.py


Changes:

=
.github/ISSUE_TEMPLATE/bug_report.md
=
@@ -7,5 +7,5 @@ assignees: ''
 
 ---
 
-_**Are you getting an error?** Sometimes updates in Tor Browser itself will 
break Tor Browser Launcher. There's a good chance that the problem you're 
experiencing has already been fixed in the [newest 
version](https://github.com/micahflee/torbrowser-launcher/releases). Try 
installing from Flatpak (instructions below), or [build from 
source](/BUILD.md)._
+_**Are you getting an error?** Sometimes updates in Tor Browser itself will 
break Tor Browser Launcher. There's a good chance that the problem you're 
experiencing has already been fixed in the [newest 
version](https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tags).
 Try installing from Flatpak (instructions below), or [build from 
source](/BUILD.md)._
  - [ ] I am using the latest version and the problem persists.


=
README.md
=
@@ -1,6 +1,6 @@
 # Tor Browser Launcher
 
-_**Are you getting an error?** Sometimes updates in Tor Browser itself will 
break Tor Browser Launcher. There's a good chance that the problem you're 
experiencing has already been fixed in the [newest 
version](https://github.com/micahflee/torbrowser-launcher/releases). Try 
installing from Flatpak (instructions below), or [build from 
source](/BUILD.md)._
+_**Are you getting an error?** Sometimes updates in Tor Browser itself will 
break Tor Browser Launcher. There's a good chance that the problem you're 
experiencing has already been fixed in the [newest 
version](https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tags).
 Try installing from Flatpak (instructions below), or [build from 
source](/BUILD.md)._
 
 Tor Browser Launcher is intended to make Tor Browser easier to install and use 
for GNU/Linux users. You install ```torbrowser-launcher``` from your 
distribution's package manager and it handles everything else:
 


=
setup.py
=
@@ -1,6 +1,6 @@
 """
 Tor Browser Launcher
-https://github.com/micahflee/torbrowser-launcher/
+https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
 
 Copyright (c) 2013-2017 Micah Lee 
 
@@ -100,7 +100,7 @@ setup(
 version=version,
 author="Micah Lee",
 author_email="mi...@micahflee.com",
-url="https://www.github.com/micahflee/torbrowser-launcher";,
+url="https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/";,
 platforms=["GNU/Linux"],
 license="MIT",
 description="A program to help you securely download and run Tor Browser",


=
torbrowser-launcher
=
@@ -1,7 +1,7 @@
 #!/usr/bin/env python3
 """
 Tor Browser Launcher
-https://github.com/micahflee/torbrowser-launcher/
+https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
 
 Copyright (c) 2013-2017 Micah Lee 
 


=
torbrowser_launcher/__init__.py
=
@@ -1,6 +1,6 @@
 """
 Tor Browser Launcher
-https://github.com/micahflee/torbrowser-launcher/
+https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
 
 Copyright (c) 2013-2021 Micah Lee 
 
@@ -71,7 +71,7 @@ def main():
 print(_("Tor Browser Launcher"))
 print(_("By Micah Lee, licensed under MIT"))
 print(_("version {0}").format(tor_browser_launcher_version))
-print("https://github.com/micahflee/torbrowser-launcher";)
+
print("https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/";)
 
 common = Common(tor_browser_launcher_version)
 app = Application()


=
torbrowser_launcher/common.py
=
@@ -1,6 +1,6 @@
 """
 Tor Browser Launcher
-https://github.com/micahflee/torbrowser-launcher/
+https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
 
 Copyright (c) 2013-2021 Micah Lee 
 


=
torbrowser_launcher/launcher.py
=
@@ -1,6 +1,6 @@
 """
 Tor Browser Launcher
-https://github.com/micahflee/torbrowser-launcher/
+https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
 
 Copyright (c) 2013-2021 Micah Lee 
 
@@ -407,7 +407,7 @@ class Launcher(QtWidgets.QMainWindow):
 "A copy of the Tor Browser files you downloaded have been 
saved here:\n"
 

[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Update rbm for rbm#40063 and rbm#40064

2023-11-24 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
b2b814be by Nicolas Vigier at 2023-11-24T10:18:16+01:00
Update rbm for rbm#40063 and rbm#40064

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 0a47c75f7b9b3c6ccc4086b44336be0b85e5fbef
+Subproject commit 40acf540fe75055df2eb78454f070f57d0804729



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b2b814bed85cf7fb8ec038f8cd3cc503f3fb03eb

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b2b814bed85cf7fb8ec038f8cd3cc503f3fb03eb
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Update rbm for rbm#40063 and rbm#40064

2023-11-24 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
feaeac7c by Nicolas Vigier at 2023-11-24T10:17:23+01:00
Update rbm for rbm#40063 and rbm#40064

- - - - -


1 changed file:

- rbm


Changes:

=
rbm
=
@@ -1 +1 @@
-Subproject commit 0a47c75f7b9b3c6ccc4086b44336be0b85e5fbef
+Subproject commit 40acf540fe75055df2eb78454f070f57d0804729



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/feaeac7c72cfa67c7383bdb836fe56e787229af6

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/feaeac7c72cfa67c7383bdb836fe56e787229af6
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] release: new version, 13.0.4

2023-11-21 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
649c46dc by Nicolas Vigier at 2023-11-21T18:18:07+01:00
release: new version, 13.0.4

- - - - -


30 changed files:

- update_3/release/.htaccess
- − update_3/release/12.5.5-13.0.1-linux-i686-ALL.xml
- − update_3/release/12.5.5-13.0.1-linux-x86_64-ALL.xml
- − update_3/release/12.5.5-13.0.1-macos-ALL.xml
- − update_3/release/12.5.5-13.0.1-windows-i686-ALL.xml
- − update_3/release/12.5.5-13.0.1-windows-x86_64-ALL.xml
- − update_3/release/12.5.6-13.0.1-linux-i686-ALL.xml
- − update_3/release/12.5.6-13.0.1-linux-x86_64-ALL.xml
- − update_3/release/12.5.6-13.0.1-macos-ALL.xml
- − update_3/release/12.5.6-13.0.1-windows-i686-ALL.xml
- − update_3/release/12.5.6-13.0.1-windows-x86_64-ALL.xml
- + update_3/release/12.5.6-13.0.4-linux-i686-ALL.xml
- + update_3/release/12.5.6-13.0.4-linux-x86_64-ALL.xml
- + update_3/release/12.5.6-13.0.4-macos-ALL.xml
- + update_3/release/12.5.6-13.0.4-windows-i686-ALL.xml
- + update_3/release/12.5.6-13.0.4-windows-x86_64-ALL.xml
- − update_3/release/13.0-13.0.1-linux-i686-ALL.xml
- − update_3/release/13.0-13.0.1-linux-x86_64-ALL.xml
- − update_3/release/13.0-13.0.1-macos-ALL.xml
- − update_3/release/13.0-13.0.1-windows-i686-ALL.xml
- − update_3/release/13.0-13.0.1-windows-x86_64-ALL.xml
- + update_3/release/13.0-13.0.4-linux-i686-ALL.xml
- + update_3/release/13.0-13.0.4-linux-x86_64-ALL.xml
- + update_3/release/13.0-13.0.4-macos-ALL.xml
- + update_3/release/13.0-13.0.4-windows-i686-ALL.xml
- + update_3/release/13.0-13.0.4-windows-x86_64-ALL.xml
- + update_3/release/13.0.1-13.0.4-linux-i686-ALL.xml
- + update_3/release/13.0.1-13.0.4-linux-x86_64-ALL.xml
- + update_3/release/13.0.1-13.0.4-macos-ALL.xml
- + update_3/release/13.0.1-13.0.4-windows-i686-ALL.xml


The diff was not included because it is too large.


View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/649c46dc527c5e3fad512ee9b24f95861c0fef39

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/649c46dc527c5e3fad512ee9b24f95861c0fef39
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Use a proper rDNS ID in AppStream metainfo

2023-11-07 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
torbrowser-launcher


Commits:
34bdd4d0 by AsciiWolf at 2023-11-02T18:12:06+01:00
Use a proper rDNS ID in AppStream metainfo

- - - - -


1 changed file:

- share/metainfo/torbrowser.appdata.xml → 
share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml


Changes:

=
share/metainfo/torbrowser.appdata.xml → 
share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml
=
@@ -1,7 +1,8 @@
 
 
 
- torbrowser.desktop
+ org.torproject.torbrowser-launcher
+ torbrowser.desktop
  CC0-1.0
  MIT
  Tor Browser Launcher



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/34bdd4d0b1094c26d8a146f4ab57d26e01ac8807

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/34bdd4d0b1094c26d8a146f4ab57d26e01ac8807
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-update-responses][main] Add release/download-linux-x86_64.json and release/download-windows-x86_64.json

2023-10-23 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / Tor Browser 
update responses


Commits:
2b5dd5b4 by Nicolas Vigier at 2023-10-23T15:28:07+02:00
Add release/download-linux-x86_64.json and release/download-windows-x86_64.json

tor-browser-build#40991

- - - - -


2 changed files:

- + update_3/release/download-linux-x86_64.json
- + update_3/release/download-windows-x86_64.json


Changes:

=
update_3/release/download-linux-x86_64.json
=
@@ -0,0 +1 @@
+{"binary":"https://dist.torproject.org/torbrowser/13.0/tor-browser-linux-x86_64-13.0.tar.xz","git_tag":"tbb-13.0-build1","sig":"https://dist.torproject.org/torbrowser/13.0/tor-browser-linux-x86_64-13.0.tar.xz.asc","version":"13.0"}
\ No newline at end of file


=
update_3/release/download-windows-x86_64.json
=
@@ -0,0 +1 @@
+{"binary":"https://dist.torproject.org/torbrowser/13.0/tor-browser-windows-x86_64-portable-13.0.exe","git_tag":"tbb-13.0-build1","sig":"https://dist.torproject.org/torbrowser/13.0/tor-browser-windows-x86_64-portable-13.0.exe.asc","version":"13.0"}
\ No newline at end of file



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/2b5dd5b4a60ede24edf511b512fb36a8b4650ba8

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses/-/commit/2b5dd5b4a60ede24edf511b512fb36a8b4650ba8
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.0] Bug 40989: Add .nobackup files to reproducible and disposable directories

2023-10-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch maint-13.0 at The Tor Project / Applications / 
tor-browser-build


Commits:
6fdfa43f by Richard Pospesel at 2023-10-20T08:18:52+02:00
Bug 40989: Add .nobackup files to reproducible and disposable directories

- - - - -


7 changed files:

- + git_clones/.nobackup
- + hg_clones/.nobackup
- + mullvadbrowser/.nobackup
- + out/.nobackup
- + testbuild/.nobackup
- + tmp/.nobackup
- + torbrowser/.nobackup


Changes:

=
git_clones/.nobackup
=


=
hg_clones/.nobackup
=


=
mullvadbrowser/.nobackup
=


=
out/.nobackup
=


=
testbuild/.nobackup
=


=
tmp/.nobackup
=


=
torbrowser/.nobackup
=



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6fdfa43f9167bf2cfdf1bccaccc00095669d4a5d

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6fdfa43f9167bf2cfdf1bccaccc00095669d4a5d
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [Git][tpo/applications/tor-browser-build][main] Bug 40989: Add .nobackup files to reproducible and disposable directories

2023-10-19 Thread boklm (@boklm) via tor-commits


boklm pushed to branch main at The Tor Project / Applications / 
tor-browser-build


Commits:
6ed1f805 by Richard Pospesel at 2023-10-19T21:08:33+00:00
Bug 40989: Add .nobackup files to reproducible and disposable directories

- - - - -


7 changed files:

- + git_clones/.nobackup
- + hg_clones/.nobackup
- + mullvadbrowser/.nobackup
- + out/.nobackup
- + testbuild/.nobackup
- + tmp/.nobackup
- + torbrowser/.nobackup


Changes:

=
git_clones/.nobackup
=


=
hg_clones/.nobackup
=


=
mullvadbrowser/.nobackup
=


=
out/.nobackup
=


=
testbuild/.nobackup
=


=
tmp/.nobackup
=


=
torbrowser/.nobackup
=



View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6ed1f8059b15e883bff49c3c5de060dc069c6c65

-- 
View it on GitLab: 
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6ed1f8059b15e883bff49c3c5de060dc069c6c65
You're receiving this email because of your account on gitlab.torproject.org.


___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


  1   2   >