Commit Graph

25936 Commits

Author SHA1 Message Date
Xi Ruoyao
e59834d2c0
rust: Promote curl to required
It's needed for downloading the stage 0 binaries.
2023-03-27 15:55:43 +08:00
Douglas R. Reno
2ecc6822ff Update to mercurial-6.4 2023-03-26 23:20:24 -05:00
Douglas R. Reno
eff86d9762 Update to librsvg-2.56.0 2023-03-26 23:17:05 -05:00
Douglas R. Reno
8f9e533c5b Update to rust-1.68.1 2023-03-26 23:15:43 -05:00
Douglas R. Reno
6dc20c13ba Update to Thunderbird-102.9.0 (Security Update) 2023-03-26 23:13:52 -05:00
Douglas R. Reno
d1e4f4304e Add a patch to GDB to prevent it from crashing during rust tests. 2023-03-26 23:12:38 -05:00
Douglas R. Reno
218e13ce4b Revert back to LLVM-15.0.7 for now.
This should fix miscompilations and crashes with Thunderbird and
Firefox.
2023-03-25 18:36:50 -05:00
Thomas Trepl
0f8922e088 Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk 2023-03-24 09:44:09 +01:00
Thomas Trepl
0de5b82f0a Upgrade cmake-3.26.1 2023-03-24 09:43:48 +01:00
Xi Ruoyao
9b3319034f
building-notes: Update stripping script to preserve hard links 2023-03-24 16:22:43 +08:00
Xi Ruoyao
00bb36f7bb
gnome-session: Systemd is runtime dependency, but elogind is build-time
It needs libsystemd (note that we don't use -Dsystemd=false for sysv).
And it invokes logind APIs like sd_login_monitor_new etc.
2023-03-24 16:02:53 +08:00
Xi Ruoyao
ab1e97d118
gnome-shell: Make elogind and systemd dependencies runtime
On systemd, it uses libsystemd but it's already installed in LFS.  On
sysv, we use -Dsystemd=false so libsystemd (a.k.a libelogind) not
needed.

But it invokes logind API via D-bus call (in js/ui/endSessionDialog.js),
so logind is a runtime dependency.
2023-03-24 15:57:00 +08:00
Xi Ruoyao
2cb8524231
gvfs: Make systemd dependency runtime 2023-03-24 15:53:15 +08:00
Xi Ruoyao
0fab41a9df
accountsservice: Make systemd dependency runtime 2023-03-24 15:51:50 +08:00
Xi Ruoyao
bf28f8fc71
gnome-bluetooth: Drop systemd and elogind dependencies 2023-03-24 15:50:22 +08:00
Xi Ruoyao
c2172dd48d
gnome-settings-daemon: Drop systemd and elogind dependencies
I cannot see how g-s-d needs systemd or elogind.  The only reference to
systemd from g-s-d is through gnome-desktop (using
sd_pid_get_user_unit), which should be satisified by LFS systemd, and
useless with sysv.
2023-03-24 15:48:28 +08:00
Xi Ruoyao
4a00a6dac5
udisks2: Make systemd dependency runtime 2023-03-24 15:48:28 +08:00
Xi Ruoyao
b125bbf2ab
colord: Make systemd dependency runtime, and add elogind dependency
It uses logind API in libsystemd.so/libelogind.so.  Not sure if it's
strong enough to be "recommended", we may demote it later.

Q: Why systemd dependency is runtime, but elogind not?
A: LFS systemd provides libsystemd.so, which contains the logind APIs.
But these APIs will fail at runtime because systemd-logind is missing in
LFS, so we need a runtime dependency.  LFS sysv does not provide
libsystemd.so, and libsystemd.so is a symlink to libelogind.so which is
a part of elogind, so it's a build time dependency.
2023-03-24 15:48:28 +08:00
Xi Ruoyao
30b01dbd10
dbus: Demote systemd dependency and clarify what it is for 2023-03-24 15:48:27 +08:00
Xi Ruoyao
bb4bb1db9a
systemd: PAM is not strictly required, but also something "higher than recommended"
Make PAM recommended and add a big note about it.
2023-03-24 15:48:27 +08: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
02458f1856 Update to intel-media-driver-23.1.4 2023-03-23 15:34:14 -05:00
Douglas R. Reno
f2b888ddd5 Update to intel-gmmlib-22.3.5 2023-03-23 15:33:13 -05:00
Douglas R. Reno
510580fe0e Typo fix in make-ca.
Thanks goes to ruhbarbpieguy on blfs-dev
2023-03-23 15:01:09 -05:00
Douglas R. Reno
9a34555d6f opencv: NumPy is now in BLFS, so let's make that optional dep internal. 2023-03-21 19:15:31 -05:00
Douglas R. Reno
01264e5538 xine-lib: Remove unneeded sed for binutils-2.39
It seems to have been fixed in xine-lib-1.2.13
2023-03-21 19:00:55 -05:00
Bruce Dubbs
a2ff52a407 Make xorg-libinput-driver label lower case 2023-03-21 10:47:25 -05:00
Pierre Labastie
d5e731dfd3 xserver cannot use polkit, even at run time
also add role="runtime" for run time deps
2023-03-21 14:32:55 +01:00
Xi Ruoyao
adf287b1be
xorg-server: Mark both elogind and systemd dependencies runtime
xorg-server itself does not need libelogind/libsystemd to invoke the
logind D-Bus API.  elogind/systemd-logind works for Xorg server when you
login: once you've logged in on a TTY, pam_systemd or pam_elogind
invokes systemd-logind or elogind to modify the ACL of the device node
of GPU for you:

    $ getfacl /dev/dri/card1
    getfacl: Removing leading '/' from absolute path names
    # file: dev/dri/card1
    # owner: root
    # group: video
    user::rw-
    user:xry111:rw-
    group::rw-
    mask::rw-
    other::---

Note that the "user:xry111:rw-" line allows the user logged in (in this
example, xry111, my user account) to operate on the GPU.  If
systemd-logind or elogind is not installed, there will be no such a line
and you need to setuid bit for Xorg executable, which is not
recommended.

FWIW logind is smart enough not to add the ACL entry if you've logged in
via SSH.

You may need to logout and login again to use startx if you've installed
pam_{elogind,systemd} and Xorg server & xinit in a continous login
session, but this is already mentioned on xorg-config.xml.

You may ask why Xorg server links to libsystemd or libelogind.  It uses
sd_notify and sd_listen_fds API so the Xorg server can function as a
socket-activated systemd service.  This is useless in SysV: elogind is
a logind, not a service manager.  In Systemd the libsystemd.so installed
in LFS should be enough, and we've never provided instructions to run
Xorg server in BLFS as a systemd service.

Reported-by: Rainer Fiebig <jrf@mailbox.org>
2023-03-21 15:23:40 +08:00
Pierre Labastie
e65bf5e7a1 aspell: show how to install the English dictionary 2023-03-20 14:30:21 +01:00
Pierre Labastie
70d6ea499f Sysv: fix deps between dbus, X libs, and elogind
also remove a useless switch on dbus configure for sysv
2023-03-20 14:12:09 +01:00
Xi Ruoyao
4e992e567d
nss: Remove an unneeded chmod command
Reported-by: Dragan <dk@draakict.com>
Link: https://hg.mozilla.org/projects/nss/rev/734f3d2aab2
2023-03-20 19:06:31 +08:00
Xi Ruoyao
21114f6af6
make-ca: Mark p11-kit again as runtime, and ...
add a note about running make-ca itself in the installation section.
2023-03-20 19:05:26 +08:00
Xi Ruoyao
ad7f3b72dd
building-notes: Restructure my runtime addition to align with changes from Pierre
BTW, mention external optional dependencies.
2023-03-20 15:27:31 +08:00
Douglas R. Reno
686afa983c Fix building Firefox with LLVM-16. 2023-03-19 21:42:29 -05:00
Bruce Dubbs
b8a95d0d73 Clarify p11-kit dependencies 2023-03-19 13:44:15 -05:00
Pierre Labastie
3345cfea4d Remove the hint for circular dep in polkit
now elogind is not circular anymore. Also add missing "and" to the
systemd version
2023-03-19 15:55:33 +01:00
Pierre Labastie
47581826c7 make-ca: try to clarify the dependency on p11-kit 2023-03-19 15:23:08 +01:00
Xi Ruoyao
bca432de82
building-notes: Explain runtime dependencies 2023-03-19 21:52:58 +08:00
Xi Ruoyao
e746d7338c
remove old changelog .txt files
Well, now we are rotating changelog after each release, so why keeping
those old changelogs here?

If you need some historical reference, you can get them back from
version control anyway.
2023-03-19 21:52:54 +08:00
Pierre Labastie
992c9e7238 Fix elogind dependencies
- dbus is not needed for building (and strictly speaking, it is
not needed for running, but strongly recommended)
- polkit was said to be runtime but role="runtime" was missing
- only valgrind is needed for tests
- there is no trace of gobject-introspection in the deps.
2023-03-19 14:15:21 +01:00
Thomas Trepl
dc133d43c8 Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk 2023-03-19 13:20:48 +01:00
Pierre Labastie
00231066f1 Clarify the role of runtime deps in conventions 2023-03-19 13:17:01 +01:00
Thomas Trepl
e4d0419fe0 Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk 2023-03-19 11:36:21 +01:00
Thomas Trepl
f19f84bc20 Upgrade bind-9.18.13 2023-03-19 11:34:35 +01:00
Xi Ruoyao
bb6209fca0
llvm: Update content and short descriptions 2023-03-19 16:26:58 +08:00
Xi Ruoyao
17418d43e2
Update to rustc-1.68.0 (#17822) 2023-03-19 15:57:52 +08:00
Xi Ruoyao
b30ce9bd3e
Update to LLVM-16.0.0 (#17799) 2023-03-19 15:32:43 +08:00
Bruce Dubbs
f8b4f14d63 Minor changes.
Remove unzipi ftp url.
Add jemalloc as an optional external dependency for bind.
2023-03-18 18:48:39 -05:00
Pierre Labastie
005fa60314 A few fixes to recent updates
- fix gobject-instrospection download url
- libXaw tarball is now .xz
2023-03-18 10:29:01 +01:00