- Feb 13, 2023
-
- Feb 09, 2023
-
- Feb 01, 2023
-
-
If clang is insalled, building hfsplus-tools should work without container.
-
libdmg-hfsplus fails to build with openssl1.1: https://github.com/planetbeing/libdmg-hfsplus/issues/14
-
Pier Angelo Vendrame authored
-
Pier Angelo Vendrame authored
-
Pier Angelo Vendrame authored
Use the new tools from the previous commit to build the DMG from a HFS filesystem, and configure it to show the custom volume icon.
-
Pier Angelo Vendrame authored
To show the DMG icon it seems we need to create the DMG from a HFS filesystem, rather than an ISO one. So, to then do so, with this commit I am switching to Mozilla's fork of libdmg-hfsplus, I am updating its build script and using it to build also the hfsplus tool. Also, add the hfsplus project, which is needed to create the HFS filesystem in the first place.
-
- Jan 24, 2023
-
-
boklm authored
Fix the regexp used to find android apk files (to exclude .apk.asc files).
-
- Jan 23, 2023
- Jan 19, 2023
-
-
boklm authored
-
- Jan 18, 2023
-
-
boklm authored
The pt_config.json file is causing issues with macos code-signing.
- Jan 16, 2023
-
-
Richard Pospesel authored
Bug 40739: tor-expert-bundle should include ClientTransportPlugin torrc lines for each pluggable transport
- Jan 12, 2023
-
-
boklm authored
-
Pier Angelo Vendrame authored
Co-authored-by:
Nicolas Vigier <boklm@torproject.org>
-
- Jan 09, 2023
-
-
Removing stun.stunprotocol.org:3478 and stun.altar.com.pl:3478. Also, removing stun.sonetel.com, since it is an alias of stun.sonetel.net. (cherry picked from commit fc89e8b1)
-
- Dec 22, 2022
-
-
Richard Pospesel authored
(cherry picked from commit f228c0cd)
-
- Dec 19, 2022
-
-
boklm authored
-
- Dec 15, 2022
-
-
boklm authored
- Dec 09, 2022
-
-
Richard Pospesel authored
-
Specifying compiler-rt as a project in LLVM is going to be deprecated. It should be compiled with runtimes, instead, or alone, if it will be still allowed. The only platform in which we were compiling compiler-rt with LLVM was Linux. But Firefox seems not to actually use it, and just use GCC's runtime, instead. However, we were also compiling compiler-rt for Android in the same project, which prevents to share the artifact with Windows and macOS. So, I have moved it to another project on its own.
-
boklm authored
-
boklm authored
-
boklm authored
-
boklm authored
Install a few more packages in the default containers to reduce the number of custom containers we use.
-
boklm authored
-
- Dec 06, 2022
-
- Dec 05, 2022
-
-
boklm authored
-
- Dec 04, 2022
-
-
boklm authored
-
- Dec 02, 2022
-
-
Richard Pospesel authored
-
Richard Pospesel authored
-
Richard Pospesel authored
updated rbm submodule to use gitlab url
-
Richard Pospesel authored
-
- Nov 30, 2022
-
- Nov 29, 2022
-
-
Pier Angelo Vendrame authored
-
boklm authored
In input_files in projects/firefox-l10n/config we are doing this: my $locales = project_config($project, 'var/locales', $options); foreach my $locale (@$locales) { $locale = process_template($project, $locale, '.'); In this foreach loop, `$locale` is pointing to the real string from `var/locales` and not a copy, and we are updating it with the output from `process_template`. This means that the template will be processed the first time the function is called (for example for a linux-x86_64 build) and the processed value from the first call reused on subsequent calls (for example a macos build, where the `ja` locale is supposed to be different). This is what caused the reproducibility issue in !591 (comment 2857042) To fix that we just use a separate variable to store the processed template.
-