boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
2793b655 by Nicolas Vigier at 2025-03-28T08:46:47+01:00
Update rbm for rbm#40083
- - - - -
1 changed file:
- rbm
Changes:
=====================================
rbm
=====================================
@@ -1 +1 @@
-Subproject commit 9dedbe520adc16f53935cebc98c85022d410249d
+Subproject commit f04c4f217ad8dbd0caa87d45713a6de576cf0534
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
52b0e12f by Nicolas Vigier at 2025-03-27T15:10:19+00:00
Bug 41419: Add comment in downloads.json to mention that the file is deprecated
- - - - -
1 changed file:
- tools/update-responses/update_responses
Changes:
=====================================
tools/update-responses/update_responses
=====================================
@@ -463,6 +463,7 @@ sub write_downloads_json {
version => "$version",
tag => "$tag",
downloads => get_version_downloads($config, $version),
+ comment => 'This file is deprecated and should not be used. Please use the files download-$platform.json instead.',
};
write_htdocs($channel, '.', 'downloads.json',
JSON->new->utf8->canonical->pretty->encode($data));
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/5…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/5…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / RBM
Commits:
f04c4f21 by Nicolas Vigier at 2025-03-27T14:37:06+01:00
Bug 40083: Make remote_mktemp create directory with mode 0755
In order to make the permission on out/$project be 0755 (see
tor-browser-build#41418), change the permission to 0755 on directories
created by `remote_mktemp`.
- - - - -
1 changed file:
- lib/RBM.pm
Changes:
=====================================
lib/RBM.pm
=====================================
@@ -1209,7 +1209,8 @@ sub build_run {
$cmd = project_config($project, "remote_exec", {
%$options,
exec_cmd => project_config($project,
- "remote_mktemp", $options) || 'mktemp -d -p /var/tmp',
+ "remote_mktemp", $options) ||
+ 'tmpdir=$(mktemp -d -p /var/tmp); chmod 0755 "$tmpdir"; echo "$tmpdir"',
exec_name => 'mktemp',
exec_as_root => 0,
});
View it on GitLab: https://gitlab.torproject.org/tpo/applications/rbm/-/commit/f04c4f217ad8dbd…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/rbm/-/commit/f04c4f217ad8dbd…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
27246fb1 by Nicolas Vigier at 2025-03-27T15:03:36+00:00
MB 415: Load apparmor profile when configuring deb package
Use the command from /usr/share/debhelper/autoscripts/postinst-apparmor
(from dh-apparmor package).
- - - - -
1 changed file:
- projects/linux-packages/debian/postinst.in
Changes:
=====================================
projects/linux-packages/debian/postinst.in
=====================================
@@ -2,11 +2,22 @@
set -e
+apparmor_profile='/etc/apparmor.d/[% c("var/system_pkg/pkg_name") %]'
+
case "$1" in
install|upgrade|configure)
# If abi 4.0 is not present, then remove the apparmor profile config
if [ ! -e /etc/apparmor.d/abi/4.0 ]; then
- rm -f /etc/apparmor.d/[% c("var/system_pkg/pkg_name") %]
+ rm -f "$apparmor_profile"
fi
;;
esac
+
+if [ "$1" = "configure" ]; then
+ if [ -f "$apparmor_profile" ]; then
+ # Reload the profile, including any abstraction updates
+ if aa-enabled --quiet 2>/dev/null; then
+ apparmor_parser -r -T -W "$apparmor_profile" || true
+ fi
+ fi
+fi
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2…
You're receiving this email because of your account on gitlab.torproject.org.