Commit Graph

253 Commits

Author SHA1 Message Date
Bruce Dubbs
d8c3e3f4b3 A few more tags 2024-02-19 18:11:28 -06:00
Pierre Labastie
ab4fdfccf8 Change all xml decl to encoding=utf-8 2024-01-19 22:39:35 +01:00
Xi Ruoyao
d5b06a4ddb
seamonkey: Document sudo/su may kill $PATH_PY311
Like rustc.  Move the unset command out of the <screen> for
installation because if we use sudo --preserve-env=PATH_PY311 -s for a
shell as root to install the package, "unset PATH_PY311" will only
unset it in this shell, not the shell building the package.

Also fix a grammar issue in rustc, and unset LIBSSH2_SYS_USE_PKG_CONFIG
after installing rustc too.
2024-01-05 02:16:19 +08:00
Xi Ruoyao
f94402b44d
seamonkey: Fix usage of Python 3.11
The mach of seamonkey is more nasty than FF or TB :(.

Q: Why not just export PATH=/opt/python3.11/bin:$PATH?
A: This will be too easy forgetting to unset it.  And an explicit
   PATH=$PATH_PY311 also helps sudo (sudo PATH=$PATH_PY311 mach install
   will work perfectly fine, but export PATH=$PATH_PY311; sudo ... won't
   work as sudo will reset $PATH).
2023-12-30 04:41:02 +08:00
Douglas R. Reno
67f44136c7 Mozilla packages: drop ./mach configure
This command is no longer needed as './mach build' will run it for us
automatically.
2023-12-28 13:37:41 -06:00
Douglas R. Reno
6848f3f59b Seamonkey: adapt to the new Python 3.11 installation method. 2023-12-26 21:41:42 -06:00
Pierre Labastie
1859ee6872 Remove links to deleted wiki pages
See https://wiki.linuxfromscratch.org/blfs/ticket/18952
2023-12-23 13:40:25 +01:00
Pierre Labastie
5edfa7f011 Make sed for python-3.11 nodump in seamonkey 2023-12-21 17:57:51 +01:00
Douglas R. Reno
4b3d2071e1 Update to Seamonkey-2.53.18 2023-12-20 15:49:54 -06:00
Pierre Labastie
493ec31a2a Reinstate disable-goncf in seamonkey mozconfig 2023-12-07 14:17:06 +01: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
Bruce Dubbs
18454ac795 Archive GConf. 2023-11-11 11:15:40 -06: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
Pierre Labastie
15726a7c25 Typo 2023-11-07 21:48:20 +01: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
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
Bruce Dubbs
eebff7b81a Typos 2023-10-26 17:52:05 -05: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
Douglas R. Reno
1d817374e1 Update to seamonkey-2.53.17.1 (Security Update) 2023-09-27 23:57:09 -05:00
Douglas R. Reno
8ccec7df30 Seamonkey: remove old and outdated Python2 dependency 2023-09-15 09:56:17 -05:00
Bruce Dubbs
1bf0fac85d Tag all of xsoft except libreoffice 2023-08-24 18:54:26 -05:00
Douglas R. Reno
c5f665192f Update to seamonkey-2.53.17 (Security Update) 2023-08-04 14:25:39 -05:00
Xi Ruoyao
42ddc3001a
treewide: Replace "User Notes" with "Editor Notes" 2023-06-30 02:18:51 +08:00
Douglas R. Reno
03adc377dc Update to seamonkey-2.53.16 (Security Update) 2023-04-07 12:46:37 -05:00
Douglas R. Reno
0945dd2d1a Fix building Seamonkey with LLVM-16.
See Ticket #17852
2023-03-23 16:22:00 -05:00
Douglas R. Reno
2b5deeec8e Fix seamonkey crash if Seamonkey is compiled with rustc-1.67 or later.
See ad8c88d4ad
for more details.
2023-02-27 20:46:48 -06:00
Bruce Dubbs
6fe9820e19 Tag xsoft packages 2023-02-20 23:23:04 -06:00
Pierre Labastie
e3b16bb22d Fix sed for seamonkey
The number of <spaces> is important for indenting in python.
2023-02-17 08:47:20 +01:00
Douglas R. Reno
8a71122cdf Update to seamonkey-2.53.15 2023-02-13 19:16:04 -06:00
Xi Ruoyao
17aa21c551
Change all http://*.sourceforge.net/ URLs to https
Now all sourceforge.net subdomains have a valid SSL certificate.  The
changes are automatically done via a sed.  I've reviewed the changes and
reverted the changes in archive/*, pst/xml/docbook-xsl.xml, and
stylesheets/lfs-xsl/lfs-l10n.xml.  Other changes should (hopefully) be
fine.
2023-01-29 12:35:23 +08: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
28eef6489e Fix seamonkey for python-3.11 2022-11-10 18:24:09 +01:00
Pierre Labastie
d7ba6b4ddd Fix sed in mozilla apps
Sorry for forgetting the "xargs"
2022-11-04 15:27:38 +01:00
Pierre Labastie
16218efb30 Some fixes to mozilla apps due to python-3.11
This may not be the only thing needed for ff and tb.
2022-11-01 22:31:52 +01:00
Pierre Labastie
bdfd2764aa seamonkey requires cbindgen 2022-10-30 19:28:37 +01:00
Pierre Labastie
b5cd03d969 Update to seamonkey-2.53.14 2022-09-29 18:24:52 +02:00
Pierre Labastie
88dd6e72b5 Disable debug symbols for seamonkey
There are some reasons for this:
- it is needed to build on i686
- it decreases the build size by 20 % (on x86_64)
2022-08-31 15:51:41 +02:00
Pierre Labastie
f572dbb2c6 Building mozilla apps with gcc is broken on i686
We used to sed the double_t definition to allow building, but now
we use clang, so that the build passes without sed. Say that using
GCC breaks the build in command explanations too.
2022-08-28 21:03:28 +02:00
Pierre Labastie
5c3f3e0dd9 Three tags 2022-08-27 09:21:27 +02:00
Douglas R. Reno
c2051dbdc3 Five Security Updates:
Update to node.js-16.16.0
Update to php-8.1.8
Add security patch for Dovecot (fixes CVE-2022-30550)
Update to seamonkey-2.53.13
Update to gnupg-2.3.7
Mark git as a security update
2022-07-13 17:12:03 -05:00
Ken Moffat
3e7f3ee191 SeaMonkey - only CC and CXX need to be specified for clang. 2022-06-26 18:22:50 +01:00
Ken Moffat
532e5c9717 SeaMonkey - use clang instead of gcc. 2022-06-26 17:50:09 +01:00
Ken Moffat
99fede1f20 Reword intro text for SeaMonkey. 2022-06-26 17:08:26 +01:00
Douglas R. Reno
b74c79f4b0 Package Updates and a security patch
Update to samba-4.16.1
Update to dovecot-2.3.19
Patch Seamonkey against CVE-2022-1802
2022-05-26 00:37:40 -05:00
Bruce Dubbs
9e863382d7 Update to seamonkey-2.53.12. 2022-05-09 11:22:28 -05:00
Bruce Dubbs
cf31c27e48 Update to seamonkey-2.53.11.1. 2022-03-26 18:28:32 -05:00
Douglas R. Reno
0fc5bfd7a8 Package updates, build fix, and security patch
Update to thunderbird-91.6.2
Update to curl-7.82.0
Patch Seamonkey against CVE-2022-26485
Fix building inkscape with poppler-22.03.0
2022-03-08 15:56:17 -06:00