public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. a96f4600e2e4c1191c4e7bdff6f0ff054dbb8bcb
@ 2023-11-21 19:23 Peter Müller
  0 siblings, 0 replies; only message in thread
From: Peter Müller @ 2023-11-21 19:23 UTC (permalink / raw)
  To: ipfire-scm

[-- Attachment #1: Type: text/plain, Size: 59465 bytes --]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".

The branch, next has been updated
       via  a96f4600e2e4c1191c4e7bdff6f0ff054dbb8bcb (commit)
       via  62c2ba58b49fb55f5c679d4ddf79e98b384669c6 (commit)
       via  5c3c431405660eb20043e1ccefe37e4d41fb9ce8 (commit)
       via  bd0893113d5cf84fd5a7d220899c4e28aa3a7ad1 (commit)
       via  c012d7c0b4fb1078d1b9ccfe0742251fd51419a4 (commit)
       via  b7d83e90e9b1e2d269398abcdbeba1edf95886d9 (commit)
       via  35bb9eac6c16815c9af9fb6c502817ff4c92cf90 (commit)
       via  e40006fe9a29e08bd27a51ac4822f443b3ee2e55 (commit)
      from  314baa5831ad0a066947675f2d78c541ed3cc93b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a96f4600e2e4c1191c4e7bdff6f0ff054dbb8bcb
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date:   Tue Nov 21 19:23:33 2023 +0000

    Core Update 182: Ship sudo
    
    Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>

commit 62c2ba58b49fb55f5c679d4ddf79e98b384669c6
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Fri Nov 10 11:59:07 2023 +0100

    sudo: Update to version 1.9.15p2
    
    - Update from version 1.9.14p2 to 1.9.15p2
    - Update of rootfile
    - Changelog
        1.9.15p2
    	 * Fixed a bug on BSD systems where sudo would not restore the
    	   terminal settings on exit if the terminal had parity enabled.
    	   GitHub issue #326.
        1.9.15p1
    	 * Fixed a bug introduced in sudo 1.9.15 that prevented LDAP-based
    	   sudoers from being able to read the ldap.conf file.
    	   GitHub issue #325.
        1.9.15
    	 * Fixed an undefined symbol problem on older versions of macOS
    	   when "intercept" or "log_subcmds" are enabled in sudoers.
    	   GitHub issue #276.
    	 * Fixed "make check" failure related to getpwent(3) wrapping
    	   on NetBSD.
    	 * Fixed the warning message for "sudo -l command" when the command
    	   is not permitted.  There was a missing space between "list" and
    	   the actual command due to changes in sudo 1.9.14.
    	 * Fixed a bug where output could go to the wrong terminal if
    	   "use_pty" is enabled (the default) and the standard input, output
    	   or error is redirected to a different terminal.  Bug #1056.
    	 * The visudo utility will no longer create an empty file when the
    	   specified sudoers file does not exist and the user exits the
    	   editor without making any changes.  GitHub issue #294.
    	 * The AIX and Solaris sudo packages on www.sudo.ws now support
    	   "log_subcmds" and "intercept" with both 32-bit and 64-bit
    	   binaries.  Previously, they only worked when running binaries
    	   with the same word size as the sudo binary.  GitHub issue #289.
    	 * The sudoers source is now logged in the JSON event log.  This
    	   makes it possible to tell which rule resulted in a match.
    	 * Running "sudo -ll command" now produces verbose output that
    	   includes matching rule as well as the path to the sudoers file
    	   the matching rule came from.  For LDAP sudoers, the name of the
    	   matching sudoRole is printed instead.
    	 * The embedded copy of zlib has been updated to version 1.3.
    	 * The sudoers plugin has been modified to make it more resilient
    	   to ROWHAMMER attacks on authentication and policy matching.
    	   This addresses CVE-2023-42465.
    	 * The sudoers plugin now constructs the user time stamp file path
    	   name using the user-ID instead of the user name.  This avoids a
    	   potential problem with user names that contain a path separator
    	   ('/') being interpreted as part of the path name.  A similar
    	   issue in sudo-rs has been assigned CVE-2023-42456.
    	 * A path separator ('/') in a user, group or host name is now
    	   replaced with an underbar character ('_') when expanding escapes
    	   in @include and @includedir directives as well as the "iolog_file"
    	   and "iolog_dir" sudoers Default settings.
    	 * The "intercept_verify" sudoers option is now only applied when
    	   the "intercept" option is set in sudoers.  Previously, it was
    	   also applied when "log_subcmds" was enabled.  Sudo 1.9.14
    	   contained an incorrect fix for this.  Bug #1058.
    	 * Changes to terminal settings are now performed atomically, where
    	   possible.  If the command is being run in a pseudo-terminal and
    	   the user's terminal is already in raw mode, sudo will not change
    	   the user's terminal settings.  This prevents concurrent sudo
    	   processes from restoring the terminal settings to the wrong values.
    	   GitHub issue #312.
    	 * Reverted a change from sudo 1.9.4 that resulted in PAM session
    	   modules being called with the environment of the command to be
    	   run instead of the environment of the invoking user.
    	   GitHub issue #318.
    	 * New Indonesian translation from translationproject.org.
    	 * The sudo_logsrvd server will now raise its open file descriptor
    	   limit to the maximum allowed value when it starts up.  Each
    	   connection can require up to nine open file descriptors so the
    	   default soft limit may be too low.
    	 * Better log message when rejecting a command if the "intercept"
    	   option is enabled and the "intercept_allow_setid" option is
    	   disabled.  Previously, "command not allowed" would be logged and
    	   the user had no way of knowing what the actual problem was.
    	 * Sudo will now log the invoking user's environment as "submitenv"
    	   in the JSON logs.  The command's environment ("runenv") is no
    	   longer logged for commands rejected by the sudoers file or an
    	   approval plugin.
        1.9.14p3
    	 * Fixed a crash with Python 3.12 when the sudo Python plugin is
    	   unloaded.  This only affects "make check" for the Python plugin.
    	 * Adapted the sudo Python plugin test output to match Python 3.12.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>

commit 5c3c431405660eb20043e1ccefe37e4d41fb9ce8
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Fri Nov 10 11:59:06 2023 +0100

    strace: Update to version 6.6
    
    - Update from version 6.3 to 6.6
    - Update of rootfile not required
    - Changelog
        6.6 (2023-10-31)
    	* Improvements
    	  * Implemented --kill-on-exit option that instructs the tracer to set
    	    PTRACE_O_EXITKILL option to all tracee processes and not to detach them
    	    on cleanup so they will not be left running after the tracer exit.
    	  * Implemented automatic activation of --kill-on-exit option when
    	    --seccomp-bpf is enabled and -p/--attach option is not used.
    	  * Implemented decoding of map_shadow_stack syscall.
    	  * Implemented decoding of FSCONFIG_CMD_CREATE_EXCL fsconfig command.
    	  * Implemented decoding of IFLA_BRPORT_BACKUP_NHID netlink attribute.
    	  * Implemented decoding of SECCOMP_IOCTL_NOTIF_SET_FLAGS ioctl.
    	  * Implemented decoding of UFFDIO_CONTINUE, UFFDIO_POISON, and
    	    UFFDIO_WRITEPROTECT ioctls.
    	  * Updated lists of ARCH_*, BPF_*, DEVCONF_*, IORING_*, KEXEC_*, MAP_*, NT_*,
    	    PTRACE_*, QFMT_*, SEGV_*, UFFD_*, V4L2_*, and XDP_* constants.
    	  * Updated lists of ioctl commands from Linux 6.6.
        6.5 (2023-09-01)
    	* Improvements
    	  * Implemented decoding of cachestat and fchmodat2 syscalls.
    	  * Implemented decoding of SO_PASSPIDFD and SO_PEERPIDFD socket options.
    	  * Implemented decoding of SCM_PIDFD control messages.
    	  * Implemented decoding of BPF_ENABLE_STATS, BPF_ITER_CREATE, BPF_LINK_DETACH,
    	    and BPF_PROG_BIND_MAP bpf syscall commands.
    	  * Updated decoding of BPF_OBJ_PIN and BPF_OBJ_GET bpf syscall commands.
    	  * Updated lists of AT_*, BPF_*, IORING_*, KVM_*, MOVE_MOUNT_*, NFT_*, NT_*,
    	    PR_*, and V4L2_* constants.
    	  * Updated lists of ioctl commands from Linux 6.5.
        6.4 (2023-06-26)
    	* Improvements
    	  * Implemented decoding of IFLA_BRPORT_NEIGH_VLAN_SUPPRESS netlink attribute.
    	  * Implemented decoding of IP_PROTOCOL type control messages and socket option.
    	  * Updated lists of BPF_*, IP_*, KVM_*, MDBA_*, PACKET_*, PR_*, PTRACE_*,
    	    UFFD_*, and V4L2_PIX_FMT_* constants.
    	  * Updated lists of ioctl commands from Linux 6.4.
    	* Bug fixes
    	  * Turn --seccomp-bpf off when --syscall-limit option is specified.
    	  * Fixed --trace-fds filtering support of syscalls taking file descriptor
    	    arguments that do not normally have a path associated with them.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>

commit bd0893113d5cf84fd5a7d220899c4e28aa3a7ad1
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date:   Tue Nov 21 19:21:56 2023 +0000

    Core Update 182: Ship shadow
    
    Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>

commit c012d7c0b4fb1078d1b9ccfe0742251fd51419a4
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Fri Nov 10 11:59:04 2023 +0100

    shadow: Update to version 4.14.2
    
    - Update from version 4.13 to 4.14.2
    - Update of rootfile not required
    - Supress installation of groups patch updated for changed layout of source tarball
    - Changelog
        4.14.2:
    	    libshadow:
    	        Fix build with musl libc.
    	        Avoid NULL dereference.
    	        Update utmp at an initial login
    	    useradd(8):
    	        Set proper SELinux labels for def_usrtemplate
    	    Manual:
    	        Document --prefix in chage(1), chpasswd(8), and passwd(1)
        4.14.1:
    	    Build system:
    	        Merge libshadow and libmisc into a single libshadow. This fixes
    	        problems in the linker, which were reported at least in Gentoo.
        4.14.0
          This release includes some steps toward preparing for the Y2038 (e.g. removing
          lastlog conditionally), a great deal of removal of obsolete function checks (like
          rmdir), and overhaul of some string manipulation functions, of which there is
          more to come. And a great deal more. The abbreviated git log follows:
    	Serge Hallyn: configure.ac: check for strlcpy
    	Michael Vetter: Remove intree website
    	Serge Hallyn: 4.14.0-rc4 pre-release
    	Serge Hallyn: Releases: add etc/shadow-maint to distfiles
    	Serge Hallyn: 4.14.0-rc3
    	Iker Pedrosa: libmisc: include freezero
    	Iker Pedrosa: libmisc: add freezero source code
    	Iker Pedrosa: libmisc: add readpassphrase source code
    	Iker Pedrosa: configure: add with-libbsd option
    	Iker Pedrosa: man: include shadow-man.xsl in tarball
    	Iker Pedrosa: man: include its.rules in tarball
    	Iker Pedrosa: autogen: enable lastlog build
    	Christian Göttsche: Add wrapper for write(2)
    	Serge Hallyn: tag 4.14.0-rc2
    	Michael Vetter: Add new files to libmisc_la_SOURCES
    	Serge Hallyn: Add a make dist CI test
    	Serge Hallyn: 4.14.0-rc1
    	Serge Hallyn: remove xmalloc.c from POTFILES.in
    	Iker Pedrosa: logoutd: add missing <utmp.h> include
    	Iker Pedrosa: CI: compile old utmp interface in Fedora
    	Iker Pedrosa: src: add SELINUX library
    	Iker Pedrosa: libmisc: conditionally compile utmp.c and logind.c
    	Iker Pedrosa: lib: replace USER_NAME_MAX_LENGTH macro
    	Iker Pedrosa: libmisc: call active_sessions_count()
    	Iker Pedrosa: libmisc: implement active_sessions_count()
    	Iker Pedrosa: utmp: update update_utmp()
    	Iker Pedrosa: utmp: move update_utmp
    	Iker Pedrosa: utmp: move failtmp()
    	Iker Pedrosa: libmisc: implement get_session_host()
    	Iker Pedrosa: configure: new option enable-logind
    	xiongshenglan: shadow userdel: add the adaptation to the busybox ps in 01-kill_user_procs.sh
    	Michael Vetter: chsh: warn if root sets a shell not listed in /etc/shells
    	Michael Vetter: doc: mention ci workflow file to learn about deps
    	Serge Hallyn: man/po/Makefile: add a comment to shadow-man-pages.pot
    	Vegard Nossum: newgrp: fix potential string injection
    	Todd Zullinger: lastlog: fix alignment of Latest header
    	Iker Pedrosa: configure: fix lastlog check
    	Alan D. Salewski: subuid.5: reference newusers(8) rather than newusers(1)
    	Iker Pedrosa: CI: build lastlog in Fedora
    	Iker Pedrosa: man: conditionally build lastlog documentation
    	Iker Pedrosa: usermod: conditionally build lastlog functionality
    	Iker Pedrosa: useradd: conditionally build lastlog functionality
    	Iker Pedrosa: login: conditionally build lastlog functionality
    	Iker Pedrosa: lastlog: stop building by default
    	Iker Pedrosa: CI: update debian repos
    	Bernd Kuhls: Fix yescrypt support
    	Jeffrey Bencteux: chgpasswd: fix segfault in command-line options
    	Alejandro Colomar: gpasswd(1): Fix password leak
    	Alejandro Colomar: src/useradd.c: create_mail(): Cosmetic
    	Alejandro Colomar: src/useradd.c: create_home(): Cosmetic
    	Alejandro Colomar: src/useradd.c: create_home(): Cosmetic
    	Alejandro Colomar: src/useradd.c: create_home(): Cosmetic
    	Alejandro Colomar: src/useradd.c: close_group_files(): Cosmetic
    	Alejandro Colomar: src/useradd.c: check_uid_range(): Cosmetic
    	Jaroslav Jindrak: build: link passwd, chpasswd and chage against libdl
    	Jaroslav Jindrak: configure: check whether fgetpwent_r is available before marking xprefix_getpwnam_r as reentrant
    	Jaroslav Jindrak: passwd: fall back to non-PAM code when prefix is used
    	Jaroslav Jindrak: chpasswd: fall back to non-PAM code when prefix is used
    	Jaroslav Jindrak: chpasswd: add --prefix/-P options
    	Jaroslav Jindrak: chage: add --prefix/-P options
    	Jaroslav Jindrak: passwd: Respect --prefix/-P options
    	Michael Vetter: prefix: add prefix support
    	Iker Pedrosa: strtoday: remove unnecessary cast
    	Alejandro Colomar: Use temporary variable
    	Alejandro Colomar: realloc(NULL, ...) is equivalent to malloc(...)
    	Alejandro Colomar: Simplify allocation APIs
    	Christian Göttsche: Drop alloca(3)
    	Christian Göttsche: usermod: fix off-by-one issues
    	Alejandro Colomar: libmisc/csrand.c: Update comments
    	Alejandro Colomar: lib/nss.c: Fix use of invalid p
    	Alejandro Colomar: lib/nss.c: Fix use of uninitialized p
    	Alejandro Colomar: Centralize error handling
    	Alejandro Colomar: Second verse, it gets worse; it gets no better than this
    	Alejandro Colomar: ROFL: Rolling on the floor looping
    	Alejandro Colomar: This ain't no loop
    	Iker Pedrosa: newusers: Improve error message
    	Martin Kletzander: ch(g)passwd: Check selinux permissions upon startup
    	Skyler Ferrante: Check if crypt_method null before dereferencing
    	Alejandro Colomar: xgetXXbyYY: Simplify elifs
    	Alejandro Colomar: xgetXXbyYY: Centralize error handling
    	Alejandro Colomar: xgetXXbyYY: tfix
    	Samanta Navarro: xgetXXbyYY: Avoid duplicated error handling block
    	Samanta Navarro: xgetXXbyYY: Handle DUP_FUNCTION failure
    	Serge Hallyn: sub_[ug]id_{add,remove}: fix return values
    	Martin Kletzander: usermod: Small optimization using memmove for password unlock
    	Alejandro Colomar: Reorder logic to improve comprehensibility
    	Alejandro Colomar: newusers: Fail early
    	Alejandro Colomar: newusers: Add missing error handling
    	Samanta Navarro: libmisc: Use safer chroot/chdir sequence
    	Samanta Navarro: su: Prevent stack overflow in check_perms
    	Samanta Navarro: subsystem: Prevent endless loop
    	Serge Hallyn: def_load: avoid NULL deref
    	Serge Hallyn: def_load: split the econf from non-econf definition
    	Tobias Stoeckmann: Plug econf memory leaks
    	Samanta Navarro: chsh: Verify that login shell path is absolute
    	Samanta Navarro: process_prefix_flag: Drop privileges
    	bubu: Update French translations
    	Samanta Navarro: get_pid.c: Use tighter validation checks
    	Markus Hiereth: replace inadequate German translation of login error message
    	Markus Hiereth: Update German translations
    	Samanta Navarro: Remove some static char arrays
    	Samanta Navarro: commonio: Use do_lock_file again
    	Serge Hallyn: Fix broken docbook translations
    	ed neville: open with O_CREAT when lock path does not exist
    	Samanta Navarro: commonio_open: Remove fcntl call
    	Samanta Navarro: commonio_lock_nowait: Remove deprecated code
    	Samanta Navarro: login_prompt: Simplify login_prompt API
    	Samanta Navarro: login_prompt: Use _exit in signal handler
    	Samanta Navarro: login_prompt: Do not parse environment variables
    	Samanta Navarro: libmisc/yesno.c: Fix regression
    	Alejandro Colomar: libmisc, man: Drop old check and advice for complex character sets in passwords
    	Christian Göttsche: semanage: disconnect to free libsemanage internals
    	Christian Göttsche: commonio: free removed database entries
    	ed neville: run_parts for groupadd and groupdel
    	lilinjie: fix typos
    	Alejandro Colomar: libmisc/yesno.c: Use getline(3) and rpmatch(3)
    	Samanta Navarro: newgrp/useradd: always set SIGCHLD to default
    	Serge Hallyn: Update AUTHORS to add Marek Michałkiewicz
    	Samanta Navarro: Read whole line in yes_or_no
    	Christian Göttsche: useradd/usermod: add --selinux-range argument
    	Alejandro Colomar: CI: Make build logs more readable
    	Iker Pedrosa: ci: remove explicit fedora dependencies
    	Iker Pedrosa: README: add reference to contribution guidelines
    	Iker Pedrosa: doc: add contributions introduction
    	Iker Pedrosa: doc: add license
    	Iker Pedrosa: doc: add releases
    	Iker Pedrosa: doc: add Continuous Integration
    	Iker Pedrosa: doc: add tests
    	Iker Pedrosa: doc: add coding style
    	Iker Pedrosa: doc: add build & install
    	Serge Hallyn: trivial: vipw.8: fix grammar
    	Christian Göttsche: sssd: skip flushing if executable does not exist
    	Christian Göttsche: Overhaul valid_field()
    	Martin Kletzander: semanage: Do not set default SELinux range
    	Michael Vetter: Fix typo in groupadd usage
    	Christian Göttsche: ci: update Differential ShellCheck
    	tomspiderlabs: Added control character check
    	Mike Gilbert: usermod: respect --prefix for --gid option
    	Alejandro Colomar: Fix su(1) silent truncation
    	Alejandro Colomar: Simplify is_my_tty()
    	Alejandro Colomar: Fix is_my_tty() buffer overrun
    	Alejandro Colomar: Add STRLEN(): a constexpr strlen(3) for string literals
    	Alejandro Colomar: Fix crash with large timestamps
    	Paul Eggert: Prefer strcpy(3) to strlcpy(3) when either works
    	Paul Eggert: Fix change_field() buffer underrun
    	Paul Eggert: Omit unneeded test in change_field()
    	Paul Eggert: Simplify change_field() by using strcpy
    	skyler-ferrante: Fix null dereference in basename
    	Iker Pedrosa: CI: script for local container build
    	Iker Pedrosa: CI: build project in containers
    	Iker Pedrosa: container: add fedora
    	Iker Pedrosa: container: add debian
    	Iker Pedrosa: container: add alpine
    	Iker Pedrosa: SECURITY.md: add Iker Pedrosa
    	Christian Göttsche: selinux: use type safe function pointer assignment
    	Christian Göttsche: Use strict prototype in definition
    	Vinícius dos Santos Oliveira: Add .editorconfig
    	Serge Hallyn: run_some: fix shellcheck warning
    	Serge Hallyn: fail on any run_some test failure
    	Serge Hallyn: ignore first test in run_some
    	Serge Hallyn: swap first two tests - does the first one still fail?
    	Serge Hallyn: tests: remove some github runner PATH tweaking
    	Alejandro Colomar: tests: Support git-worktree(1)
    	Serge Hallyn: tests: newuidmap and newgidmap: update expected fail message
    	Serge Hallyn: libsubid: include alloc.h
    	Serge Hallyn: run_some: log stderr
    	Vinícius dos Santos Oliveira: Validate fds created by the user
    	Serge Hallyn: get_pidfd_from_fd: return -1 on error, not 0
    	Serge Hallyn: g-h-a workflow: workaround
    	Serge Hallyn: Fix regression in some translation strings
    	Iker Pedrosa: lib: bit_ceil_wrapul(): stop recursion
    	Iker Pedrosa: lib: define ULONG_WIDTH if non-existent
    	maqi: Update translation
    	Serge Hallyn: newuidmap and newgidmap: support passing pid as fd
    	Alejandro Colomar: Fix use-after-free of pointer after realloc(3)
    	Alejandro Colomar: Use safer allocation macros
    	Alejandro Colomar: libmisc: Add safer allocation macros
    	Alejandro Colomar: Use xreallocarray() instead of its pattern
    	Alejandro Colomar: Use reallocarrayf() instead of its pattern
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>

commit b7d83e90e9b1e2d269398abcdbeba1edf95886d9
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Fri Nov 10 11:59:03 2023 +0100

    sdl2: Update to version 2.18.5
    
    - Update from version 2.28.3 to 2.28.5
    - Update of rootfile
    - Changelog
        2.28.5
    	This is a stable bugfix release, with the following changes:
    	    Added support for the HP HyperX Clutch Gladiate controller
    	    Fixed a crash if a controller is disconnected while SDL is opening it
    	    Fixed a crash on Linux if XInput2 isn't available at runtime
        2.28.4
    	This is a stable bugfix release, with the following changes:
    	    Enable clipping for zero sized rectangles in the SDL renderer
    	    Notify X11 clipboard managers when the clipboard changes
    	    Fixed sensor timestamps for third-party PS5 controllers
    	    Added detection for Logitech and Simagic racing wheels
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>

commit 35bb9eac6c16815c9af9fb6c502817ff4c92cf90
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Fri Nov 10 11:59:01 2023 +0100

    qemu-ga: Update to version 8.1.2
    
    - Update from version 8.1.1 to 8.1.2
    - Update of rootfile not required
    - Changelog is only provided at the 8.1 level and not lower. There is no further info on
       what changes occurred in the changelog. For more details the git repo commits need to
       be reviewed - https://gitlab.com/qemu-project/qemu/-/commits/master
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>

commit e40006fe9a29e08bd27a51ac4822f443b3ee2e55
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Fri Nov 10 11:59:02 2023 +0100

    qemu: Update to version 8.1.2
    
    - Update from version 8.1.1 to 8.1.2
    - Update of rootfile not required
    - Changelog is only provided at the 8.1 level and not lower. There is no further info on
       what changes occurred in the changelog. For more details the git repo commits need to
       be reviewed - https://gitlab.com/qemu-project/qemu/-/commits/master
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 config/rootfiles/common/sudo                       |   1 +
 .../{oldcore/104 => core/182}/filelists/shadow     |   0
 .../{oldcore/112 => core/182}/filelists/sudo       |   0
 config/rootfiles/packages/sdl2                     |   2 +-
 lfs/qemu                                           |   6 +-
 lfs/qemu-ga                                        |   4 +-
 lfs/sdl2                                           |   6 +-
 lfs/shadow                                         |   9 +-
 lfs/strace                                         |   6 +-
 lfs/sudo                                           |   4 +-
 ...adow-4.13-suppress_installation_of_groups.patch | 267 ---------------------
 ...ow-4.14.2-suppress_installation_of_groups.patch | 259 ++++++++++++++++++++
 12 files changed, 279 insertions(+), 285 deletions(-)
 copy config/rootfiles/{oldcore/104 => core/182}/filelists/shadow (100%)
 copy config/rootfiles/{oldcore/112 => core/182}/filelists/sudo (100%)
 delete mode 100644 src/patches/shadow-4.13-suppress_installation_of_groups.patch
 create mode 100644 src/patches/shadow-4.14.2-suppress_installation_of_groups.patch

Difference in files:
diff --git a/config/rootfiles/common/sudo b/config/rootfiles/common/sudo
index 9c8be9974..a09f06b38 100644
--- a/config/rootfiles/common/sudo
+++ b/config/rootfiles/common/sudo
@@ -74,6 +74,7 @@ usr/sbin/visudo
 #usr/share/locale/hr/LC_MESSAGES/sudoers.mo
 #usr/share/locale/hu/LC_MESSAGES/sudo.mo
 #usr/share/locale/hu/LC_MESSAGES/sudoers.mo
+#usr/share/locale/id/LC_MESSAGES/sudo.mo
 #usr/share/locale/it/LC_MESSAGES/sudo.mo
 #usr/share/locale/it/LC_MESSAGES/sudoers.mo
 #usr/share/locale/ja/LC_MESSAGES/sudo.mo
diff --git a/config/rootfiles/core/182/filelists/shadow b/config/rootfiles/core/182/filelists/shadow
new file mode 120000
index 000000000..c0824b7b9
--- /dev/null
+++ b/config/rootfiles/core/182/filelists/shadow
@@ -0,0 +1 @@
+../../../common/shadow
\ No newline at end of file
diff --git a/config/rootfiles/core/182/filelists/sudo b/config/rootfiles/core/182/filelists/sudo
new file mode 120000
index 000000000..0d3c45e04
--- /dev/null
+++ b/config/rootfiles/core/182/filelists/sudo
@@ -0,0 +1 @@
+../../../common/sudo
\ No newline at end of file
diff --git a/config/rootfiles/packages/sdl2 b/config/rootfiles/packages/sdl2
index 519685a8d..10691044c 100644
--- a/config/rootfiles/packages/sdl2
+++ b/config/rootfiles/packages/sdl2
@@ -82,7 +82,7 @@
 #usr/lib/cmake/SDL2/sdl2-config-version.cmake
 #usr/lib/cmake/SDL2/sdl2-config.cmake
 usr/lib/libSDL2-2.0.so.0
-usr/lib/libSDL2-2.0.so.0.2800.3
+usr/lib/libSDL2-2.0.so.0.2800.5
 #usr/lib/libSDL2.la
 usr/lib/libSDL2.so
 #usr/lib/libSDL2_test.a
diff --git a/lfs/qemu b/lfs/qemu
index 1e46f14a1..2c45d7156 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -27,7 +27,7 @@ include Config
 SUMMARY    = Machine emulator and virtualizer
 
 # If you update the version also qemu-ga !!!
-VER        = 8.1.1
+VER        = 8.1.2
 
 THISAPP    = qemu-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -35,7 +35,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = qemu
-PAK_VER    = 40
+PAK_VER    = 41
 
 DEPS       = alsa elfutils libusbredir spice libseccomp libslirp
 
@@ -61,7 +61,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 71220fad7c9f74bed6211879f01566ac1e52835feb3d45eaa1b2fe1d5f95d9fa5db53b7aec72b4ef098c03d0c4070076c907fb3e6b839002de6f56ee5ab44340
+$(DL_FILE)_BLAKE2 = 8f48638cd1f0285356aae2d14862f56cc79da09bb9ff9f09e90221fdca851e9c3f8a3d940039f578d24d0b4435baf19cb52a3e927e97bf978ea674d148ecd746
 
 install : $(TARGET)
 
diff --git a/lfs/qemu-ga b/lfs/qemu-ga
index b05f43a76..ff85ca1cc 100644
--- a/lfs/qemu-ga
+++ b/lfs/qemu-ga
@@ -26,11 +26,11 @@ include Config
 
 SUMMARY    = Guest agent for QEMU
 
-VER        = 8.1.1
+VER        = 8.1.2
 THISAPP    = qemu-ga-$(VER)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = qemu-ga
-PAK_VER    = 6
+PAK_VER    = 7
 
 DEPS       =
 
diff --git a/lfs/sdl2 b/lfs/sdl2
index 387323d05..51d7de8cc 100644
--- a/lfs/sdl2
+++ b/lfs/sdl2
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.28.3
+VER        = 2.28.5
 SUMMARY    = Simple DirectMedia Layer Library
 
 THISAPP    = SDL2-$(VER)
@@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = sdl2
-PAK_VER    = 13
+PAK_VER    = 14
 
 DEPS       = alsa
 
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 1ef8950b7736fbbca4607ed9750114f94b8e6e944b2974941840c13b1677643126524cc41ad8c3ead699ea2f90295898888d3d0b31c7a80079420aa9187035fb
+$(DL_FILE)_BLAKE2 = c96481bc02af6b6d077247238f7e46b0e3ec216664584add29cafb0a91d06dc6ddc637a01519dbd7182d4fa59cfaf26ad6733f72583021cf65849416f9c4b698
 
 install : $(TARGET)
 
diff --git a/lfs/shadow b/lfs/shadow
index 299fb3dea..1c0afc088 100644
--- a/lfs/shadow
+++ b/lfs/shadow
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 4.13
+VER        = 4.14.2
 
 THISAPP    = shadow-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 315ab8a7e598aeefb50c11293e20cfa0982c3c3ae21c35ae243d09a4facf97a13c1d672990876e74ef94f5284402acf14997663743e2aaefa6cfc4369b7d24dc
+$(DL_FILE)_BLAKE2 = 419f0a516753616ef691f71ec9002eef6fd7568c013ac71900d7481eff1bd9165c69d9587b7ca25800543a2eac58cfb7ce4224063e8af7b278f589640485c28f
 
 install : $(TARGET)
 
@@ -70,7 +70,7 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/shadow-4.13-suppress_installation_of_groups.patch
+	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/shadow-4.14.2-suppress_installation_of_groups.patch
 	$(UPDATE_AUTOMAKE)
 	cd $(DIR_APP) && ./configure \
 		--libdir=/lib \
@@ -80,7 +80,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 		--disable-static \
 		--without-selinux \
 		--disable-nls \
-		--with-group-name-max-length=32
+		--with-group-name-max-length=32 \
+		--without-libbsd
 
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
diff --git a/lfs/strace b/lfs/strace
index 8fdbe5a51..2ce9b26d8 100644
--- a/lfs/strace
+++ b/lfs/strace
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = A utility to trace the system calls of a program
 
-VER        = 6.3
+VER        = 6.6
 # SUP_ARCHES = x86_64 aarch64
 
 THISAPP    = strace-$(VER)
@@ -35,7 +35,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = strace
-PAK_VER    = 9
+PAK_VER    = 10
 
 DEPS       = elfutils
 
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 7373ebddd6f23713b752ed91598e536d61e08865907c7825dd3492574c7feb0ad6d56bea0e144e1082ac1882d68bb5f160f25e70bfc6e2fd47571ef2c40403fb
+$(DL_FILE)_BLAKE2 = f1465fec58ac20ccce6a88441a34b1402e5c51f0bb4b7963f69b5ab5019a8c8722e3406c6f93c10c1eea11d17de7f9874895d6f4df24cf9ec42a18f36267687b
 
 install : $(TARGET)
 
diff --git a/lfs/sudo b/lfs/sudo
index cf68bf923..d6bae3c7e 100644
--- a/lfs/sudo
+++ b/lfs/sudo
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.9.14p2
+VER        = 1.9.15p2
 
 THISAPP    = sudo-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = a350136731c1c6eca1317a852ce243b270df61ba275608bd0d0ec11760babdb2f9f489b818529484c15a43345fa53c96efd1aa47ab7cc0591c45928ba75c4c85
+$(DL_FILE)_BLAKE2 = 002f820d6d82b3384a9206545a999765c2924b2650fd7f6331c191e3f631507064d71a042c606b4fcea0d518d38b5a24d3f44964bb09cb5774e50501abc3f524
 
 install : $(TARGET)
 
diff --git a/src/patches/shadow-4.13-suppress_installation_of_groups.patch b/src/patches/shadow-4.13-suppress_installation_of_groups.patch
deleted file mode 100644
index 0ca0de236..000000000
--- a/src/patches/shadow-4.13-suppress_installation_of_groups.patch
+++ /dev/null
@@ -1,267 +0,0 @@
-diff -Naur shadow-4.13.orig/man/cs/Makefile.in shadow-4.13/man/cs/Makefile.in
---- shadow-4.13.orig/man/cs/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/cs/Makefile.in	2023-01-07 23:37:45.110080801 +0100
-@@ -332,12 +332,12 @@
- 	man8/groupadd.8 \
- 	man8/groupdel.8 \
- 	man8/groupmod.8 \
--	man1/groups.1 \
-+	man1/ \
- 	man8/grpck.8 \
- 	man5/gshadow.5 \
- 	man8/lastlog.8 \
- 	man8/nologin.8 \
--	man5/passwd.5 \
-+	man5/ \
- 	man5/shadow.5 \
- 	man1/su.1 \
- 	man8/vipw.8
-diff -Naur shadow-4.13.orig/man/da/Makefile.in shadow-4.13/man/da/Makefile.in
---- shadow-4.13.orig/man/da/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/da/Makefile.in	2023-01-07 23:39:23.687584267 +0100
-@@ -329,7 +329,7 @@
- top_srcdir = @top_srcdir@
- 
- # 2012.01.28 - activate manpages with more than 50% translated messages
--man_MANS = man1/chfn.1 man8/groupdel.8 man1/groups.1 man5/gshadow.5 \
-+man_MANS = man1/chfn.1 man8/groupdel.8 man1/ man5/gshadow.5 \
- 	man8/logoutd.8 man1/newgrp.1 man8/nologin.8 man1/sg.1 \
- 	man8/vigr.8 man8/vipw.8 $(am__append_1)
- man_nopam = 
-diff -Naur shadow-4.13.orig/man/de/Makefile.in shadow-4.13/man/de/Makefile.in
---- shadow-4.13.orig/man/de/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/de/Makefile.in	2023-01-07 23:41:28.644419661 +0100
-@@ -330,11 +330,11 @@
- top_srcdir = @top_srcdir@
- man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
- 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
--	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/passwd.5 \
-+	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/ \
- 	man8/pwck.8 man8/pwconv.8 man8/pwunconv.8 man1/sg.1 \
- 	man3/shadow.3 man5/shadow.5 man1/su.1 man5/suauth.5 \
- 	man8/useradd.8 man8/userdel.8 man8/usermod.8 man8/vigr.8 \
-diff -Naur shadow-4.13.orig/man/fr/Makefile.in shadow-4.13/man/fr/Makefile.in
---- shadow-4.13.orig/man/fr/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/fr/Makefile.in	2023-01-08 12:12:06.805231749 +0100
-@@ -332,11 +332,11 @@
- top_srcdir = @top_srcdir@
- man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
- 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
--	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+  man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/passwd.5 \
-+	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/ \
- 	man8/pwck.8 man8/pwconv.8 man8/pwunconv.8 man1/sg.1 \
- 	man3/shadow.3 man5/shadow.5 man1/su.1 man5/suauth.5 \
- 	man8/useradd.8 man8/userdel.8 man8/usermod.8 man8/vigr.8 \
-diff -Naur shadow-4.13.orig/man/hu/Makefile.in shadow-4.13/man/hu/Makefile.in
---- shadow-4.13.orig/man/hu/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/hu/Makefile.in	2023-01-08 12:12:58.220574975 +0100
-@@ -327,12 +327,12 @@
- man_MANS = \
- 	man1/chsh.1 \
- 	man1/gpasswd.1 \
--	man1/groups.1 \
-+	man1/ \
- 	man8/lastlog.8 \
- 	man1/login.1 \
- 	man1/newgrp.1 \
- 	man1/passwd.1 \
--	man5/passwd.5 \
-+	man5/ \
- 	man1/sg.1 \
- 	man1/su.1
- 
-diff -Naur shadow-4.13.orig/man/it/Makefile.in shadow-4.13/man/it/Makefile.in
---- shadow-4.13.orig/man/it/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/it/Makefile.in	2023-01-08 12:14:02.598918966 +0100
-@@ -330,11 +330,11 @@
- top_srcdir = @top_srcdir@
- man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
- 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
--	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/passwd.5 \
-+	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/ \
- 	man8/pwck.8 man8/pwconv.8 man8/pwunconv.8 man1/sg.1 \
- 	man3/shadow.3 man5/shadow.5 man1/su.1 man5/suauth.5 \
- 	man8/useradd.8 man8/userdel.8 man8/usermod.8 man8/vigr.8 \
-diff -Naur shadow-4.13.orig/man/ja/Makefile.in shadow-4.13/man/ja/Makefile.in
---- shadow-4.13.orig/man/ja/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/ja/Makefile.in	2023-01-08 12:14:59.754116344 +0100
-@@ -328,10 +328,10 @@
- top_srcdir = @top_srcdir@
- man_MANS = man1/chage.1 man1/chfn.1 man8/chpasswd.8 man1/chsh.1 \
- 	man1/expiry.1 man5/faillog.5 man8/faillog.8 man1/gpasswd.1 \
--	man8/groupadd.8 man8/groupdel.8 man8/groupmod.8 man1/groups.1 \
-+	man8/groupadd.8 man8/groupdel.8 man8/groupmod.8 man1/ \
- 	man8/grpck.8 man8/grpconv.8 man8/grpunconv.8 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
-+	man8/newusers.8 man1/passwd.1 man5/ man8/pwck.8 \
- 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man5/shadow.5 \
- 	man1/su.1 man5/suauth.5 man8/useradd.8 man8/userdel.8 \
- 	man8/usermod.8 man8/vigr.8 man8/vipw.8 $(am__append_1)
-diff -Naur shadow-4.13.orig/man/ko/Makefile.in shadow-4.13/man/ko/Makefile.in
---- shadow-4.13.orig/man/ko/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/ko/Makefile.in	2023-01-08 12:15:43.959647149 +0100
-@@ -327,9 +327,9 @@
- man_MANS = \
- 	man1/chfn.1 \
- 	man1/chsh.1 \
--	man1/groups.1 \
-+	man1/ \
- 	man1/login.1 \
--	man5/passwd.5 \
-+	man5/ \
- 	man1/su.1 \
- 	man8/vigr.8 \
- 	man8/vipw.8
-diff -Naur shadow-4.13.orig/man/Makefile.in shadow-4.13/man/Makefile.in
---- shadow-4.13.orig/man/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/Makefile.in	2023-01-08 12:17:08.914132063 +0100
-@@ -396,11 +396,11 @@
- @USE_NLS_TRUE(a)SUBDIRS = po cs da de es fi fr hu id it ja ko pl pt_BR ru sv tr uk zh_CN zh_TW
- man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
- 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
--	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/passwd.5 \
-+	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/ \
- 	man8/pwck.8 man8/pwconv.8 man8/pwunconv.8 man1/sg.1 \
- 	man3/shadow.3 man5/shadow.5 man5/suauth.5 man8/useradd.8 \
- 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
-diff -Naur shadow-4.13.orig/man/pl/Makefile.in shadow-4.13/man/pl/Makefile.in
---- shadow-4.13.orig/man/pl/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/pl/Makefile.in	2023-01-08 12:18:16.339068110 +0100
-@@ -331,8 +331,8 @@
- 
- # 2012.01.28 - activate manpages with more than 50% translated messages
- man_MANS = man1/chage.1 man1/chsh.1 man1/expiry.1 man5/faillog.5 \
--	man8/faillog.8 man3/getspnam.3 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man8/faillog.8 man3/ man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/lastlog.8 man8/logoutd.8 man1/newgrp.1 man1/sg.1 \
- 	man3/shadow.3 man8/userdel.8 man8/usermod.8 man8/vigr.8 \
- 	man8/vipw.8 $(am__append_1)
-diff -Naur shadow-4.13.orig/man/pt_BR/Makefile.in shadow-4.13/man/pt_BR/Makefile.in
---- shadow-4.13.orig/man/pt_BR/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/pt_BR/Makefile.in	2023-01-08 12:18:46.844952016 +0100
-@@ -329,7 +329,7 @@
- 	man8/groupadd.8 \
- 	man8/groupdel.8 \
- 	man8/groupmod.8 \
--	man5/passwd.5 \
-+	man5/ \
- 	man5/shadow.5
- 
- EXTRA_DIST = $(man_MANS)
-diff -Naur shadow-4.13.orig/man/ru/Makefile.in shadow-4.13/man/ru/Makefile.in
---- shadow-4.13.orig/man/ru/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/ru/Makefile.in	2023-01-08 12:20:05.019613396 +0100
-@@ -330,11 +330,11 @@
- top_srcdir = @top_srcdir@
- man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
- 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
--	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/passwd.5 \
-+	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/ \
- 	man8/pwck.8 man8/pwconv.8 man8/pwunconv.8 man1/sg.1 \
- 	man3/shadow.3 man5/shadow.5 man1/su.1 man5/suauth.5 \
- 	man8/useradd.8 man8/userdel.8 man8/usermod.8 man8/vigr.8 \
-diff -Naur shadow-4.13.orig/man/sv/Makefile.in shadow-4.13/man/sv/Makefile.in
---- shadow-4.13.orig/man/sv/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/sv/Makefile.in	2023-01-08 12:21:14.481165613 +0100
-@@ -331,10 +331,10 @@
- 
- # 2012.01.28 - activate manpages with more than 50% translated messages
- man_MANS = man1/chage.1 man1/chsh.1 man1/expiry.1 man5/faillog.5 \
--	man8/faillog.8 man3/getspnam.3 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man8/faillog.8 man3/ man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man5/gshadow.5 man8/lastlog.8 man8/logoutd.8 man1/newgrp.1 \
--	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
-+	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
- 	man1/sg.1 man3/shadow.3 man5/suauth.5 man8/userdel.8 \
- 	man8/vigr.8 man8/vipw.8 $(am__append_1)
- man_nopam = \
-diff -Naur shadow-4.13.orig/man/tr/Makefile.in shadow-4.13/man/tr/Makefile.in
---- shadow-4.13.orig/man/tr/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/tr/Makefile.in	2023-01-08 12:21:46.353681866 +0100
-@@ -332,7 +332,7 @@
- 	man8/groupmod.8 \
- 	man1/login.1 \
- 	man1/passwd.1 \
--	man5/passwd.5 \
-+	man5/ \
- 	man5/shadow.5 \
- 	man1/su.1 \
- 	man8/useradd.8 \
-diff -Naur shadow-4.13.orig/man/zh_CN/Makefile.in shadow-4.13/man/zh_CN/Makefile.in
---- shadow-4.13.orig/man/zh_CN/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/zh_CN/Makefile.in	2023-01-08 12:22:45.888822579 +0100
-@@ -330,11 +330,11 @@
- top_srcdir = @top_srcdir@
- man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
- 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
--	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
--	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
-+	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
-+	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
- 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man8/lastlog.8 \
- 	man1/login.1 man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 \
--	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/passwd.5 \
-+	man8/newusers.8 man8/nologin.8 man1/passwd.1 man5/ \
- 	man8/pwck.8 man8/pwconv.8 man8/pwunconv.8 man1/sg.1 \
- 	man3/shadow.3 man5/shadow.5 man1/su.1 man5/suauth.5 \
- 	man8/useradd.8 man8/userdel.8 man8/usermod.8 man8/vigr.8 \
-diff -Naur shadow-4.13.orig/man/zh_TW/Makefile.in shadow-4.13/man/zh_TW/Makefile.in
---- shadow-4.13.orig/man/zh_TW/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/man/zh_TW/Makefile.in	2023-01-08 12:23:20.354606005 +0100
-@@ -334,7 +334,7 @@
- 	man8/groupadd.8 \
- 	man8/groupdel.8 \
- 	man8/groupmod.8 \
--	man5/passwd.5 \
-+	man5/ \
- 	man1/su.1 \
- 	man8/useradd.8 \
- 	man8/userdel.8 \
-diff -Naur shadow-4.13.orig/src/Makefile.in shadow-4.13/src/Makefile.in
---- shadow-4.13.orig/src/Makefile.in	2022-11-08 17:37:10.000000000 +0100
-+++ shadow-4.13/src/Makefile.in	2023-01-08 12:24:35.952669040 +0100
-@@ -88,8 +88,7 @@
- POST_UNINSTALL = :
- build_triplet = @build@
- host_triplet = @host@
--bin_PROGRAMS = groups$(EXEEXT) login$(EXEEXT) $(am__EXEEXT_1) \
--	$(am__EXEEXT_2)
-+bin_PROGRAMS = login$(EXEEXT) $(am__EXEEXT_1)
- sbin_PROGRAMS = nologin$(EXEEXT)
- ubin_PROGRAMS = faillog$(EXEEXT) lastlog$(EXEEXT) chage$(EXEEXT) \
- 	chfn$(EXEEXT) chsh$(EXEEXT) expiry$(EXEEXT) gpasswd$(EXEEXT) \
diff --git a/src/patches/shadow-4.14.2-suppress_installation_of_groups.patch b/src/patches/shadow-4.14.2-suppress_installation_of_groups.patch
new file mode 100644
index 000000000..91c25c218
--- /dev/null
+++ b/src/patches/shadow-4.14.2-suppress_installation_of_groups.patch
@@ -0,0 +1,259 @@
+diff -Naur shadow-4.14.2.orig/man/cs/Makefile.in shadow-4.14.2/man/cs/Makefile.in
+--- shadow-4.14.2.orig/man/cs/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/cs/Makefile.in	2023-11-09 14:39:12.397603428 +0100
+@@ -334,8 +334,8 @@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/expiry.1 man5/faillog.5 man8/faillog.8 man1/gpasswd.1 \
+-	man8/groupadd.8 man8/groupdel.8 man8/groupmod.8 man1/groups.1 \
+-	man8/grpck.8 man5/gshadow.5 man8/nologin.8 man5/passwd.5 \
++	man8/groupadd.8 man8/groupdel.8 man8/groupmod.8 man1/ \
++	man8/grpck.8 man5/gshadow.5 man8/nologin.8 man5/ \
+ 	man5/shadow.5 man1/su.1 man8/vipw.8 $(am__append_1)
+ EXTRA_DIST = $(man_MANS) \
+ 	man1/id.1 \
+diff -Naur shadow-4.14.2.orig/man/da/Makefile.in shadow-4.14.2/man/da/Makefile.in
+--- shadow-4.14.2.orig/man/da/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/da/Makefile.in	2023-11-09 14:40:35.104051500 +0100
+@@ -337,7 +337,7 @@
+ top_srcdir = @top_srcdir@
+ 
+ # 2012.01.28 - activate manpages with more than 50% translated messages
+-man_MANS = man1/chfn.1 man8/groupdel.8 man1/groups.1 man5/gshadow.5 \
++man_MANS = man1/chfn.1 man8/groupdel.8 man1/ man5/gshadow.5 \
+ 	man8/logoutd.8 man1/newgrp.1 man8/nologin.8 man1/sg.1 \
+ 	man8/vigr.8 man8/vipw.8 $(am__append_1)
+ man_nopam = 
+diff -Naur shadow-4.14.2.orig/man/de/Makefile.in shadow-4.14.2/man/de/Makefile.in
+--- shadow-4.14.2.orig/man/de/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/de/Makefile.in	2023-11-09 14:58:08.953606477 +0100
+@@ -339,11 +339,11 @@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
+ 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
+-	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
++	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
+ 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man3/shadow.3 \
+ 	man5/shadow.5 man1/su.1 man5/suauth.5 man8/useradd.8 \
+ 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
+diff -Naur shadow-4.14.2.orig/man/fr/Makefile.in shadow-4.14.2/man/fr/Makefile.in
+--- shadow-4.14.2.orig/man/fr/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/fr/Makefile.in	2023-11-09 14:57:48.282831779 +0100
+@@ -341,11 +341,11 @@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
+ 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
+-	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
++	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
+ 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man3/shadow.3 \
+ 	man5/shadow.5 man1/su.1 man5/suauth.5 man8/useradd.8 \
+ 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
+diff -Naur shadow-4.14.2.orig/man/hu/Makefile.in shadow-4.14.2/man/hu/Makefile.in
+--- shadow-4.14.2.orig/man/hu/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/hu/Makefile.in	2023-11-09 14:44:53.850447743 +0100
+@@ -333,8 +333,8 @@
+ top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-man_MANS = man1/chsh.1 man1/gpasswd.1 man1/groups.1 man1/login.1 \
+-	man1/newgrp.1 man1/passwd.1 man5/passwd.5 man1/sg.1 man1/su.1 \
++man_MANS = man1/chsh.1 man1/gpasswd.1 man1/ man1/login.1 \
++	man1/newgrp.1 man1/passwd.1 man5/ man1/sg.1 man1/su.1 \
+ 	$(am__append_1)
+ EXTRA_DIST = $(man_MANS)
+ all: all-am
+diff -Naur shadow-4.14.2.orig/man/it/Makefile.in shadow-4.14.2/man/it/Makefile.in
+--- shadow-4.14.2.orig/man/it/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/it/Makefile.in	2023-11-09 14:57:24.455272085 +0100
+@@ -339,11 +339,11 @@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
+ 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
+-	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
++	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
+ 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man3/shadow.3 \
+ 	man5/shadow.5 man1/su.1 man5/suauth.5 man8/useradd.8 \
+ 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
+diff -Naur shadow-4.14.2.orig/man/ja/Makefile.in shadow-4.14.2/man/ja/Makefile.in
+--- shadow-4.14.2.orig/man/ja/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/ja/Makefile.in	2023-11-09 14:56:59.957687244 +0100
+@@ -337,10 +337,10 @@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chpasswd.8 man1/chsh.1 \
+ 	man1/expiry.1 man5/faillog.5 man8/faillog.8 man1/gpasswd.1 \
+-	man8/groupadd.8 man8/groupdel.8 man8/groupmod.8 man1/groups.1 \
++	man8/groupadd.8 man8/groupdel.8 man8/groupmod.8 man1/ \
+ 	man8/grpck.8 man8/grpconv.8 man8/grpunconv.8 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man1/passwd.1 man5/passwd.5 man8/pwck.8 man8/pwconv.8 \
++	man1/passwd.1 man5/ man8/pwck.8 man8/pwconv.8 \
+ 	man8/pwunconv.8 man1/sg.1 man5/shadow.5 man1/su.1 \
+ 	man5/suauth.5 man8/useradd.8 man8/userdel.8 man8/usermod.8 \
+ 	man8/vigr.8 man8/vipw.8 $(am__append_1) $(am__append_2)
+diff -Naur shadow-4.14.2.orig/man/ko/Makefile.in shadow-4.14.2/man/ko/Makefile.in
+--- shadow-4.14.2.orig/man/ko/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/ko/Makefile.in	2023-11-09 14:47:00.355198614 +0100
+@@ -335,9 +335,9 @@
+ man_MANS = \
+ 	man1/chfn.1 \
+ 	man1/chsh.1 \
+-	man1/groups.1 \
++	man1/ \
+ 	man1/login.1 \
+-	man5/passwd.5 \
++	man5/ \
+ 	man1/su.1 \
+ 	man8/vigr.8 \
+ 	man8/vipw.8
+diff -Naur shadow-4.14.2.orig/man/Makefile.in shadow-4.14.2/man/Makefile.in
+--- shadow-4.14.2.orig/man/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/Makefile.in	2023-11-09 14:56:20.699549105 +0100
+@@ -406,11 +406,11 @@
+ @USE_NLS_TRUE(a)SUBDIRS = po cs da de es fi fr hu id it ja ko pl pt_BR ru sv tr uk zh_CN zh_TW
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
+ 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
+-	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
++	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
+ 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man3/shadow.3 \
+ 	man5/shadow.5 man5/suauth.5 man8/useradd.8 man8/userdel.8 \
+ 	man8/usermod.8 man8/vigr.8 man8/vipw.8 $(am__append_1) \
+diff -Naur shadow-4.14.2.orig/man/pl/Makefile.in shadow-4.14.2/man/pl/Makefile.in
+--- shadow-4.14.2.orig/man/pl/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/pl/Makefile.in	2023-11-09 14:49:03.766497242 +0100
+@@ -340,8 +340,8 @@
+ 
+ # 2012.01.28 - activate manpages with more than 50% translated messages
+ man_MANS = man1/chage.1 man1/chsh.1 man1/expiry.1 man5/faillog.5 \
+-	man8/faillog.8 man3/getspnam.3 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man8/faillog.8 man3/ man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/logoutd.8 man1/newgrp.1 man1/sg.1 man3/shadow.3 \
+ 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
+ 	$(am__append_1) $(am__append_2)
+diff -Naur shadow-4.14.2.orig/man/pt_BR/Makefile.in shadow-4.14.2/man/pt_BR/Makefile.in
+--- shadow-4.14.2.orig/man/pt_BR/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/pt_BR/Makefile.in	2023-11-09 14:49:55.465103649 +0100
+@@ -337,7 +337,7 @@
+ 	man8/groupadd.8 \
+ 	man8/groupdel.8 \
+ 	man8/groupmod.8 \
+-	man5/passwd.5 \
++	man5/ \
+ 	man5/shadow.5
+ 
+ EXTRA_DIST = $(man_MANS)
+diff -Naur shadow-4.14.2.orig/man/ru/Makefile.in shadow-4.14.2/man/ru/Makefile.in
+--- shadow-4.14.2.orig/man/ru/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/ru/Makefile.in	2023-11-09 14:51:11.867969686 +0100
+@@ -339,11 +339,11 @@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
+ 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
+-	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
++	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
+ 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man3/shadow.3 \
+ 	man5/shadow.5 man1/su.1 man5/suauth.5 man8/useradd.8 \
+ 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
+diff -Naur shadow-4.14.2.orig/man/sv/Makefile.in shadow-4.14.2/man/sv/Makefile.in
+--- shadow-4.14.2.orig/man/sv/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/sv/Makefile.in	2023-11-09 14:52:06.113337499 +0100
+@@ -340,10 +340,10 @@
+ 
+ # 2012.01.28 - activate manpages with more than 50% translated messages
+ man_MANS = man1/chage.1 man1/chsh.1 man1/expiry.1 man5/faillog.5 \
+-	man8/faillog.8 man3/getspnam.3 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man8/faillog.8 man3/ man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man5/gshadow.5 man8/logoutd.8 man1/newgrp.1 man8/nologin.8 \
+-	man1/passwd.1 man5/passwd.5 man8/pwck.8 man1/sg.1 \
++	man1/passwd.1 man5/ man8/pwck.8 man1/sg.1 \
+ 	man3/shadow.3 man5/suauth.5 man8/userdel.8 man8/vigr.8 \
+ 	man8/vipw.8 $(am__append_1) $(am__append_2)
+ man_nopam = \
+diff -Naur shadow-4.14.2.orig/man/tr/Makefile.in shadow-4.14.2/man/tr/Makefile.in
+--- shadow-4.14.2.orig/man/tr/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/tr/Makefile.in	2023-11-09 14:52:37.971198864 +0100
+@@ -340,7 +340,7 @@
+ 	man8/groupmod.8 \
+ 	man1/login.1 \
+ 	man1/passwd.1 \
+-	man5/passwd.5 \
++	man5/ \
+ 	man5/shadow.5 \
+ 	man1/su.1 \
+ 	man8/useradd.8 \
+diff -Naur shadow-4.14.2.orig/man/zh_CN/Makefile.in shadow-4.14.2/man/zh_CN/Makefile.in
+--- shadow-4.14.2.orig/man/zh_CN/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/zh_CN/Makefile.in	2023-11-09 14:53:19.266080649 +0100
+@@ -339,11 +339,11 @@
+ top_srcdir = @top_srcdir@
+ man_MANS = man1/chage.1 man1/chfn.1 man8/chgpasswd.8 man8/chpasswd.8 \
+ 	man1/chsh.1 man1/expiry.1 man5/faillog.5 man8/faillog.8 \
+-	man3/getspnam.3 man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
+-	man8/groupmems.8 man8/groupmod.8 man1/groups.1 man8/grpck.8 \
++	man3/ man1/gpasswd.1 man8/groupadd.8 man8/groupdel.8 \
++	man8/groupmems.8 man8/groupmod.8 man1/ man8/grpck.8 \
+ 	man8/grpconv.8 man8/grpunconv.8 man5/gshadow.5 man1/login.1 \
+ 	man5/login.defs.5 man8/logoutd.8 man1/newgrp.1 man8/newusers.8 \
+-	man8/nologin.8 man1/passwd.1 man5/passwd.5 man8/pwck.8 \
++	man8/nologin.8 man1/passwd.1 man5/ man8/pwck.8 \
+ 	man8/pwconv.8 man8/pwunconv.8 man1/sg.1 man3/shadow.3 \
+ 	man5/shadow.5 man1/su.1 man5/suauth.5 man8/useradd.8 \
+ 	man8/userdel.8 man8/usermod.8 man8/vigr.8 man8/vipw.8 \
+diff -Naur shadow-4.14.2.orig/man/zh_TW/Makefile.in shadow-4.14.2/man/zh_TW/Makefile.in
+--- shadow-4.14.2.orig/man/zh_TW/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/man/zh_TW/Makefile.in	2023-11-09 14:53:45.617068672 +0100
+@@ -342,7 +342,7 @@
+ 	man8/groupadd.8 \
+ 	man8/groupdel.8 \
+ 	man8/groupmod.8 \
+-	man5/passwd.5 \
++	man5/ \
+ 	man1/su.1 \
+ 	man8/useradd.8 \
+ 	man8/userdel.8 \
+diff -Naur shadow-4.14.2.orig/src/Makefile.in shadow-4.14.2/src/Makefile.in
+--- shadow-4.14.2.orig/src/Makefile.in	2023-10-30 02:10:52.000000000 +0100
++++ shadow-4.14.2/src/Makefile.in	2023-11-09 14:55:13.373692050 +0100
+@@ -88,8 +88,7 @@
+ POST_UNINSTALL = :
+ build_triplet = @build@
+ host_triplet = @host@
+-bin_PROGRAMS = groups$(EXEEXT) login$(EXEEXT) $(am__EXEEXT_1) \
+-	$(am__EXEEXT_2)
++bin_PROGRAMS = login$(EXEEXT) $(am__EXEEXT_1)
+ sbin_PROGRAMS = nologin$(EXEEXT)
+ ubin_PROGRAMS = faillog$(EXEEXT) chage$(EXEEXT) chfn$(EXEEXT) \
+ 	chsh$(EXEEXT) expiry$(EXEEXT) gpasswd$(EXEEXT) newgrp$(EXEEXT) \


hooks/post-receive
--
IPFire 2.x development tree

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-11-21 19:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-21 19:23 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. a96f4600e2e4c1191c4e7bdff6f0ff054dbb8bcb Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox