Commit Graph

2848 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
e9a9932ac6 Update to inkscape-1.3.2 2023-11-27 23:44:42 -06:00
Douglas R. Reno
f9155d11d9 Libreoffice: fix the patch URL (add a missing &) 2023-11-26 18:08:44 -06:00
Douglas R. Reno
b2737395de Update to libreoffice-7.6.3.2
Contains a patch as well to build with libxml2-2.12.x
2023-11-26 18:04:40 -06:00
Douglas R. Reno
35eafd887b Update the URL for OTS in Abiword 2023-11-23 20:48:46 -06:00
Douglas R. Reno
1ba9c6f0fa Update to Thunderbird-115.5.0 2023-11-22 18:29:02 -06:00
Ken Moffat
00aedafbcb Update to firefox-115.5.0. 2023-11-21 20:39:11 +00:00
Douglas R. Reno
0bc6318296 Update to inkscape-1.3.1 2023-11-20 15:22:06 -06:00
Douglas R. Reno
4de66bc72d Add some more dependencies on Qt6.
I've marked most of these as 'role=nodep' so that jhalfs doesn't pick up
multiples in cases where it's not needed.

Transmission, Libreoffice, CMake, Poppler, and Appstream now have Qt6
ports working well.

I have left Qca, gpgme, polkit-qt, and other KDE-related packages alone.
They do have support for Qt6, but we should not list them as they are
incompatible with the Qt5 versions and we could end up causing
unintentional breakage by doing this.
2023-11-20 13:16:18 -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
Xi Ruoyao
540854ca89
balsa: Change "WebKitGTK+" to "WebKitGTK"
GTK+ was renamed to GTK in GTK 4, and WebKitGTK+ was renamed to WebKitGTK
correspondingly.

I've not touched the ChangeLog but we should avoid "+" in the future
ChangeLog entries.

Link: https://bugs.webkit.org/show_bug.cgi?id=264161
2023-11-17 01:32:53 +08:00
Pierre Labastie
6433bc258d GIMP: some tweaks to the help file installation
- Use ./configure instead of .autogen.sh
- don't tell to use the online help, since it is in the same state
  as the local one.
2023-11-11 21:45:38 +01:00
Xi Ruoyao
aea2dbdf92
gimp: libxml2py2 is not needed anymore
Now the libxml2 Python 3 module is used.
2023-11-12 04:39:21 +08:00
Bruce Dubbs
18454ac795 Archive GConf. 2023-11-11 11:15:40 -06:00
Pierre Labastie
048e89d050 Archive lcms 2023-11-10 10:51:17 +01:00
Xi Ruoyao
4e7ec17c2e
autoconf213: Archive
With a simple hack in SeaMonkey, autoconf-2.13 is not needed anymore.

Fixes: #18459
2023-11-10 14:35:47 +08:00
Bruce Dubbs
dec570ad8e Fix gimp-help version 2023-11-09 10:41:04 -06:00
Bruce Dubbs
41cf461475 Change abiword and wv URLs to anduin. 2023-11-08 18:28:46 -06:00
Douglas R. Reno
9cdfee76e6 Update to Thunderbird-115.4.2 2023-11-08 16:28:10 -06:00
Douglas R. Reno
88a654dd4f Update to GIMP-2.10.36 2023-11-08 13:44:04 -06:00
Pierre Labastie
00b933f310 Fix libreoffice for ICU 74 2023-11-07 22:04:58 +01:00
Pierre Labastie
15726a7c25 Typo 2023-11-07 21:48:20 +01:00
Douglas R. Reno
2226a0f3bb Update to epiphany-45.1 2023-11-07 14:05:50 -06:00
Xi Ruoyao
7be485e948
seamonkey: Add ICU 74 workaround
Note that it's slightly different from Firefox.
2023-11-07 23:42:57 +08:00
Xi Ruoyao
f56feddcab
seamonkey: Add Python-3.12 workaround
Bonus task: may we avoid the additional download?  I couldn't figure out
a solution w/o it.
2023-11-07 23:35:17 +08:00
Xi Ruoyao
248d3509e1
firefox, thunderbird: Minor alignment fix 2023-11-07 23:25:33 +08:00
Xi Ruoyao
29ef9b8f0c
seamonkey: Sync some configuration in mozconfig from Firefox
- Remove --enable-optimize=-O2 as it's the default.
- Use RELR for saving several MB from libxul.so, like Firefox.
- Update the comment for --disable-rust-simd.
- Copy a comment with legal implication from Firefox.
2023-11-07 22:46:49 +08:00
Xi Ruoyao
eedb6d02a0
seamonkey: Move CC=clang CXX=clang++ from command line into mozconfig
"export CC=clang CXX=clang++" is bad because it contaminates the
environment, thus if some packages are built after seamonkey in the same
shell and the user wouldn't have unset CC and CXX, those package may be
built with an untested configuration.

Move them into mozconfig.  A test build has shown they still works
there.
2023-11-07 22:46:49 +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
Douglas R. Reno
a476ebef5c Update to gnumeric-1.12.56 2023-11-03 13:36:53 -05: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
Xi Ruoyao
a7373507f5
firefox: Tweak mozconfig
1. Drop --enable-optimize because it's the default.
2. Use -Wl,-z,pack-relative-relocs as a replacement for elf-hack.
3. Add --enable-rust-simd for SIMD optimization, like Arch and Gentoo.
4. Make the formatting (captialization and punctuation) of comments more
   consistent.
2023-11-03 18:28:06 +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
Xi Ruoyao
b05b7e3a94
firefox: Add a comment for ICU 74 workaround 2023-11-02 15:13:24 +08:00
Xi Ruoyao
2281985533
firefox: Add ICU-74 workaround 2023-11-02 15:09:04 +08:00
Xi Ruoyao
e86ded4104
firefox: Add Python 3.12 work around 2023-11-02 14:45:41 +08:00
Bruce Dubbs
eebff7b81a Typos 2023-10-26 17:52:05 -05:00
Ken Moffat
ea5703f312 Package updates:
firefox-115.4.0.
spidermonkey-115.4.0.
2023-10-24 18:11:23 +01: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
f3250b96d3 Fix several security vulnerabilities in Seamonkey's bundled libvpx.
Seamonkey 2.53.18 appears to be almost out the door though, with
internationalization updates being applied earlier today.
2023-10-16 13:10:33 -05:00
Pierre Labastie
f4ac71418d Remove many more forgotten ftp urls 2023-10-15 23:14:18 +02:00
Pierre Labastie
e1e58be454 Remove all ftp urls
neither firefox nor epiphany can download them, and they are not
well maintained, because rarely tested.
This is WIP because the "(HTTP)" part of "Download (HTTP)" will
need to be removed too.
But let's see what users think first...
2023-10-15 21:43:08 +02:00
Bruce Dubbs
50c46ae41c Update to xscreensaver-6.08. 2023-10-12 22:26:43 -05:00
Rahul Chandra
c2a5b8fd3e Update to feh-3.10.1 2023-10-04 19:51:21 -04:00