Commit Graph

400 Commits

Author SHA1 Message Date
Douglas R. Reno
d8aa0d27cb Update to thunderbird-115.5.1 2023-11-28 13:30:27 -06:00
Douglas R. Reno
1ba9c6f0fa Update to Thunderbird-115.5.0 2023-11-22 18:29:02 -06:00
Xi Ruoyao
96e0c17161
mozilla: Drop SHELL=/bin/bash
Note that if you build something relying on $SHELL, it may still fail to
build in chroot.

In the chroot we first use "env -i" to clean the environment variables.
When bash starts with no $SHELL set, it *sets* SHELL=(the login shell
of current user specified in /etc/passwd), but it *does not export this
variable*.

For example:

    $ cat > t.c << EOF
    #include <stdio.h>
    #include <stdlib.h>
    int main() { puts (getenv ("SHELL") ?: "(nullptr)"); }
    $ ./a.out
    /bin/zsh/
    $ cc t.c
    $ env -i bash -c "echo $SHELL"
    /bin/zsh
    $ env -i bash -c "./a.out"
    (nullptr)

We can remove this now only because Mozilla has added a workaround into
their building system at
https://hg.mozilla.org/mozilla-central/rev/5afe7b911f61 for some Mac
builder, inadvertently fixing our issue.

Link: https://lists.linuxfromscratch.org/sympa/arc/blfs-support/2014-11/msg00050.html
Link: https://lists.linuxfromscratch.org/sympa/arc/blfs-dev/2023-11/msg00136.html
2023-11-20 07:01:36 +08:00
Xi Ruoyao
9bfa6854dc
mozilla: Adjust comments in mozconfig <screen>s
If a newline is inside the comment, it won't be rendered.  So we can
avoid an excessive amount of empty lines in seamonkey, and break the
long comments about RELR into multiple lines.
2023-11-20 04:38:28 +08:00
Douglas R. Reno
ae82ff37e1 Update to Thunderbird-115.4.3 2023-11-16 15:55:08 -06:00
Bruce Dubbs
18454ac795 Archive GConf. 2023-11-11 11:15:40 -06:00
Douglas R. Reno
9cdfee76e6 Update to Thunderbird-115.4.2 2023-11-08 16:28:10 -06:00
Xi Ruoyao
248d3509e1
firefox, thunderbird: Minor alignment fix 2023-11-07 23:25:33 +08:00
Xi Ruoyao
39eb0f105d
firefox, thunderbird: Add six as required
We are using system six instead of the shipped copies for Python 3.12.
2023-11-05 21:35:26 +08:00
Xi Ruoyao
dffa9ade12
thunderbird: Tweak mozconfig
1. Drop --enable-optimize=O2 because it's the default.
2. Use -Wl,-z,pack-relative-relocs as a replacement for elf-hack.
   Drop --enable-linker=gold because gold does not support this.
3. Add --enable-rust-simd for SIMD optimization, like Arch and Gentoo.
4. Copy the comment for official branding (with legal implication) from
   Firefox.
2023-11-03 21:18:02 +08:00
Xi Ruoyao
64770a69e6
Revert "thunderbird: Add ICU 74 workaround"
This reverts commit 4ae4523d55.

Phew, we don't use system ICU for TB, at all.  And the bug preventing us
from using system ICU is still not fixed in 74.1.

Carrying this "fix" actually causes the package to FTBFS with shipped
ICU.
2023-11-03 20:57:46 +08:00
Douglas R. Reno
fae2bc2e92 Update to thunderbird-115.4.1 (Security Update) 2023-11-02 11:01:58 -05:00
Xi Ruoyao
4ae4523d55
thunderbird: Add ICU 74 workaround 2023-11-02 15:55:05 +08:00
Xi Ruoyao
1dcb11c64e
thunderbird: Add Python 3.12 workaround 2023-11-02 15:53:46 +08:00
Douglas R. Reno
babb39d49b Update to Thunderbird-115.3.3 2023-10-20 13:56:10 -05:00
Pierre Labastie
4c32ae7ad0 Update to thunderbird-115.3.2 2023-10-17 16:24:07 +02:00
Douglas R. Reno
22df483e5e Update to Thunderbird-115.3.0 (Security Update) 2023-09-27 23:57:09 -05:00
Douglas R. Reno
19e0a87ffb Update to Thunderbird-115.2.2 2023-09-14 13:33:14 -05:00
Bruce Dubbs
990dbf00a0 Remove obsolete references to gtk2 2023-09-11 11:51:23 -05:00
Xi Ruoyao
291b865a13
thunderbird: Remove zip dependency and unneeded sed
By the way, remove a lot of stale (commented out) hot fixes.
2023-09-04 23:42:23 +08:00
Douglas R. Reno
fe66201b46 Update to Thunderbird-115.2.0 (Security Update) 2023-08-30 23:52:34 -05:00
Bruce Dubbs
da5bbd8b73 Thunderbird and Firefox no longer need autoconf213 2023-08-28 18:06:25 -05:00
Douglas R. Reno
0bab4c8a14 Update to thunderbird-115.1.1 2023-08-23 21:26:00 -05:00
Xi Ruoyao
0bb7c72b9c
firefox and thunderbird: Add pciutils as optional runtime dependency
Without pciutils, they output a suspicious line at startup:

Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: libpci missing (t=0.284539) [GFX1-]: glxtest: libpci missing

I'm not sure what it means but I think there will be no harm if we add
pciutils as optional runtime.
2023-07-16 00:32:50 +08:00
Bruce Dubbs
7799a88b74 Minor text change 2023-07-13 10:03:33 -05:00
Pierre Labastie
dda7a23cf0 Fix building thunderbird with gcc-13 2023-07-13 12:53:31 +02:00
Tim Tassonis
9145997820 Update to thunderbird-115.0. 2023-07-12 23:58:53 +02:00
Xi Ruoyao
42ddc3001a
treewide: Replace "User Notes" with "Editor Notes" 2023-06-30 02:18:51 +08:00
Xi Ruoyao
fa47dacd9a
mozilla: Update the desc for consolidated patch
Now the FFI UB fix is included in the tarball, but the patch now
contains some FTBFS workaround with Rustc-1.70.0.
2023-06-16 15:27:29 +08:00
Douglas R. Reno
3586f4f32a Update to thunderbird-102.12.0 2023-06-15 14:25:46 -05:00
Ken Moffat
7f1e70b408 Firefox and thunderbird:
Update the obsolete command for how to list all configure options.

Breakage reported by rhubarbpieguy.
2023-05-26 19:41:22 +01:00
Xi Ruoyao
5f5fe30b54
thunderbird: Update the patch
The new patch includes all contents of the current patch, and fixes for
GCC 13 (adding <cstdint>) and LLVM 16 (avoid Rust UB regarding mutability).
2023-05-15 00:13:14 +08:00
Tim Tassonis
253f44ef7e Update to thunderbird-102.10.1. 2023-04-25 22:49:24 +02:00
Douglas R. Reno
3511835d41 Update to Thunderbird-102.10.0 (Security Update) 2023-04-13 17:06:18 -05:00
Douglas R. Reno
8a742802cd Typo fix from rhubarbpieguy 2023-04-07 08:54:00 -05:00
Douglas R. Reno
a0d8962e58 Fix building Thunderbird with rustc-1.68.x.
I forgot to add the patch when updating to 102.9.0. Let's fix that, and
I will go bump the patch in the patches repository next.
2023-04-03 14:29:19 -05:00
Pierre Labastie
7b0eaab215 thunderbird: remove the sed for ROOT_CLIP_CHAIN
It is now upstream.
Also remove a duplicated sentence
2023-04-01 20:57:01 +02:00
Douglas R. Reno
3291d05f1a Update to Thunderbird-102.9.1 (Security Update) 2023-03-30 19:39:13 -05:00
Douglas R. Reno
6dc20c13ba Update to Thunderbird-102.9.0 (Security Update) 2023-03-26 23:13:52 -05:00
Pierre Labastie
923cfdb469 Remove unneeded sed's in firefox and thunderbird 2023-02-22 18:18:34 +01:00
Douglas R. Reno
02919c3801 Update to Thunderbird-102.8.0 2023-02-21 16:17:14 -06:00
Bruce Dubbs
6fe9820e19 Tag xsoft packages 2023-02-20 23:23:04 -06:00
Douglas R. Reno
1376385133 Update to Thunderbird-102.7.2 (Security Update) 2023-02-13 10:40:16 -06:00
Xi Ruoyao
75b1a338b8
Update more URLs to use https
Mostly plain http -> https replace, if https works.  If there is a HTTP
redirection, use the redirect target (unless it's a mirror or l10n like
"https://kde.org/zh-cn/").

Some non-trivial change:

* www.mnogosearch.org is dead.  Not sure how to replace, so deleted.
* use https://github.com/cacalib/libcaca for libcaca.
  http://caca.zoy.org/wiki/libcaca seems out-of-date.
* http://www.speech.cs.cmu.edu/flite/ is dead, replaced with github repo
  link.
2023-01-29 14:35:01 +08:00
Douglas R. Reno
11977a8a19 Update to Thunderbird-102.6.1 (Security Update) 2022-12-31 14:03:26 -06:00
Pierre Labastie
fbe38a8594 Update to thunderbird-102.6.0 2022-12-15 13:36:57 +01:00
Pierre Labastie
faf2145105 Update to thunderbird-102.5.1 2022-12-02 14:32:00 +01:00
Pierre Labastie
3f2db3a638 Remove sect1info tags
They only contain a date tag that is nowhere used.
2022-11-29 08:58:07 +01:00
Pierre Labastie
4a8d20bdb0 Update to thunderbird-102.5.0 (security update) 2022-11-20 09:42:31 +01:00
Pierre Labastie
53775068ff Fix qtwebengine and thunderbird for python-3.11 2022-11-10 13:15:47 +01:00