From e0f435887cd01b09926fb12c829a15e7ae014b330cdc339534172ee8b74d2eed Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 17 Aug 2023 13:31:46 +0000 Subject: [PATCH 1/3] Accepting request 1104401 from home:kukuk:no-utmp - Use logind as Y2038 safe utmp replacement [jsc#PED-3144] - drop libutempter - use-logind-not-utmp.patch: agetty, wall, write: use logind instead of utmp OBS-URL: https://build.opensuse.org/request/show/1104401 OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=529 --- use-logind-not-utmp.patch | 353 ++++++++++++++++++++++++++++++++++++++ util-linux.changes | 8 + util-linux.spec | 6 + 3 files changed, 367 insertions(+) create mode 100644 use-logind-not-utmp.patch diff --git a/use-logind-not-utmp.patch b/use-logind-not-utmp.patch new file mode 100644 index 0000000..0527240 --- /dev/null +++ b/use-logind-not-utmp.patch @@ -0,0 +1,353 @@ +diff --git a/configure.ac b/configure.ac +index d631b062d2..17d3ab703b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -2491,6 +2491,7 @@ AS_IF([test "x$with_systemd" != xno], [ + [*:yes], + AC_DEFINE([HAVE_LIBSYSTEMD], [1], [Define if libsystemd is available]) + AC_DEFINE([USE_SYSTEMD], [1], [Define if systemd support is wanted ]) ++ AC_CHECK_DECLS([sd_session_get_username], [], [], [#include ]) + ) + ]) + AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$have_systemd" = xyes]) +diff --git a/term-utils/Makemodule.am b/term-utils/Makemodule.am +index 07004d43ca..1542320422 100644 +--- a/term-utils/Makemodule.am ++++ b/term-utils/Makemodule.am +@@ -98,6 +98,10 @@ dist_noinst_DATA += term-utils/wall.1.adoc + wall_CFLAGS = $(SUID_CFLAGS) $(AM_CFLAGS) + wall_LDFLAGS = $(SUID_LDFLAGS) $(AM_LDFLAGS) + wall_LDADD = $(LDADD) libcommon.la ++if HAVE_SYSTEMD ++wall_LDADD += $(SYSTEMD_LIBS) ++wall_CFLAGS += $(SYSTEMD_CFLAGS) ++endif + if USE_TTY_GROUP + if MAKEINSTALL_DO_CHOWN + install-exec-hook-wall:: +diff --git a/term-utils/wall.c b/term-utils/wall.c +index c601d3e5b7..313b1bdee5 100644 +--- a/term-utils/wall.c ++++ b/term-utils/wall.c +@@ -61,6 +61,11 @@ + #include + #include + ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++# include ++# include ++#endif ++ + #include "nls.h" + #include "xalloc.h" + #include "strutils.h" +@@ -246,6 +251,37 @@ int main(int argc, char **argv) + + iov.iov_base = mbuf; + iov.iov_len = mbufsize; ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++ if (sd_booted() > 0) { ++ char **sessions_list; ++ int sessions; ++ ++ sessions = sd_get_sessions(&sessions_list); ++ if (sessions < 0) ++ errx(EXIT_FAILURE, _("error getting sessions: %s"), ++ strerror(-sessions)); ++ ++ for (int i = 0; i < sessions; i++) { ++ char *name, *tty; ++ int r; ++ ++ if ((r = sd_session_get_username(sessions_list[i], &name)) < 0) ++ errx(EXIT_FAILURE, _("get user name failed: %s"), strerror (-r)); ++ ++ if (!(group_buf && !is_gr_member(name, group_buf))) { ++ if (sd_session_get_tty(sessions_list[i], &tty) >= 0) { ++ if ((p = ttymsg(&iov, 1, tty, timeout)) != NULL) ++ warnx("%s", p); ++ ++ free(tty); ++ } ++ } ++ free(name); ++ free(sessions_list[i]); ++ } ++ free(sessions_list); ++ } else { ++#endif + while((utmpptr = getutxent())) { + if (!utmpptr->ut_user[0]) + continue; +@@ -269,6 +305,9 @@ int main(int argc, char **argv) + warnx("%s", p); + } + endutxent(); ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++ } ++#endif + free(mbuf); + free_group_workspace(group_buf); + exit(EXIT_SUCCESS); + +From e915e6baeba3cbce154336a4f1f24a8be93e85ae Mon Sep 17 00:00:00 2001 +From: Thorsten Kukuk +Date: Wed, 31 May 2023 08:57:01 +0200 +Subject: [PATCH 2/3] agetty: use sd_get_sessions() for number of users (#2088) + +--- + term-utils/Makemodule.am | 4 ++++ + term-utils/agetty.c | 28 ++++++++++++++++++++++------ + 2 files changed, 26 insertions(+), 6 deletions(-) + +diff --git a/term-utils/Makemodule.am b/term-utils/Makemodule.am +index 1542320422..b7037fb116 100644 +--- a/term-utils/Makemodule.am ++++ b/term-utils/Makemodule.am +@@ -58,6 +58,10 @@ endif + if HAVE_ECONF + agetty_LDADD += -leconf + endif ++if HAVE_SYSTEMD ++agetty_LDADD += $(SYSTEMD_LIBS) ++agetty_CFLAGS = $(SYSTEMD_CFLAGS) ++endif + endif # BUILD_AGETTY + + +diff --git a/term-utils/agetty.c b/term-utils/agetty.c +index cf8725537b..6bc3e5b5a8 100644 +--- a/term-utils/agetty.c ++++ b/term-utils/agetty.c +@@ -73,6 +73,11 @@ + # endif + #endif + ++#ifdef USE_SYSTEMD ++# include ++# include ++#endif ++ + #ifdef __linux__ + # include + # define USE_SYSLOG +@@ -2864,12 +2869,23 @@ static void output_special_char(struct issue *ie, + case 'U': + { + int users = 0; +- struct utmpx *ut; +- setutxent(); +- while ((ut = getutxent())) +- if (ut->ut_type == USER_PROCESS) +- users++; +- endutxent(); ++#ifdef USE_SYSTEMD ++ if (sd_booted() > 0) { ++ users = sd_get_sessions(NULL); ++ if (users < 0) ++ users = 0; ++ } else { ++#endif ++ users = 0; ++ struct utmpx *ut; ++ setutxent(); ++ while ((ut = getutxent())) ++ if (ut->ut_type == USER_PROCESS) ++ users++; ++ endutxent(); ++#ifdef USE_SYSTEMD ++ } ++#endif + if (c == 'U') + fprintf(ie->output, P_("%d user", "%d users", users), users); + else + +From 5c62c27001467f3ef0baaa66ae4e3bb80a0298a6 Mon Sep 17 00:00:00 2001 +From: Thorsten Kukuk +Date: Wed, 31 May 2023 09:00:09 +0200 +Subject: [PATCH 3/3] write: query logind for list of users with tty (#2088) + +--- + term-utils/Makemodule.am | 4 ++ + term-utils/write.c | 130 +++++++++++++++++++++++++++++++++++---- + 2 files changed, 123 insertions(+), 11 deletions(-) + +diff --git a/term-utils/Makemodule.am b/term-utils/Makemodule.am +index b7037fb116..1efe1c57e3 100644 +--- a/term-utils/Makemodule.am ++++ b/term-utils/Makemodule.am +@@ -126,6 +126,10 @@ write_SOURCES = term-utils/write.c + write_CFLAGS = $(SUID_CFLAGS) $(AM_CFLAGS) + write_LDFLAGS = $(SUID_LDFLAGS) $(AM_LDFLAGS) + write_LDADD = $(LDADD) libcommon.la ++if HAVE_SYSTEMD ++write_LDADD += $(SYSTEMD_LIBS) ++write_CFLAGS += $(SYSTEMD_CFLAGS) ++endif + + if USE_TTY_GROUP + if MAKEINSTALL_DO_CHOWN +diff --git a/term-utils/write.c b/term-utils/write.c +index 8b86e9a9d5..8aa450d563 100644 +--- a/term-utils/write.c ++++ b/term-utils/write.c +@@ -59,6 +59,11 @@ + #include + #include + ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++# include ++# include ++#endif ++ + #include "c.h" + #include "carefulputc.h" + #include "closestream.h" +@@ -131,19 +136,56 @@ static int check_utmp(const struct write_control *ctl) + { + struct utmpx *u; + int res = 1; +- +- utmpxname(_PATH_UTMP); +- setutxent(); +- +- while ((u = getutxent())) { +- if (strncmp(ctl->dst_login, u->ut_user, sizeof(u->ut_user)) == 0 && +- strncmp(ctl->dst_tty_name, u->ut_line, sizeof(u->ut_line)) == 0) { +- res = 0; +- break; ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++ if (sd_booted() > 0) { ++ char **sessions_list; ++ int sessions = sd_get_sessions(&sessions_list); ++ if (sessions < 0) ++ errx(EXIT_FAILURE, _("error getting sessions: %s"), ++ strerror(-sessions)); ++ ++ for (int i = 0; i < sessions; i++) { ++ ++ char *name, *tty; ++ int r; ++ ++ if ((r = sd_session_get_username(sessions_list[i], &name)) < 0) ++ errx(EXIT_FAILURE, _("get user name failed: %s"), strerror (-r)); ++ if (sd_session_get_tty(sessions_list[i], &tty) < 0) { ++ free(name); ++ continue; ++ } ++ ++ if (strcmp(ctl->dst_login, name) == 0 && ++ strcmp(ctl->dst_tty_name, tty) == 0) { ++ free(name); ++ free(tty); ++ res = 0; ++ break; ++ } ++ free(name); ++ free(tty); ++ } ++ for (int i = 0; i < sessions; i++) ++ free(sessions_list[i]); ++ free(sessions_list); ++ } else { ++#endif ++ utmpxname(_PATH_UTMP); ++ setutxent(); ++ ++ while ((u = getutxent())) { ++ if (strncmp(ctl->dst_login, u->ut_user, sizeof(u->ut_user)) == 0 && ++ strncmp(ctl->dst_tty_name, u->ut_line, sizeof(u->ut_line)) == 0) { ++ res = 0; ++ break; ++ } + } +- } + +- endutxent(); ++ endutxent(); ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++ } ++#endif + return res; + } + +@@ -163,6 +205,69 @@ static void search_utmp(struct write_control *ctl) + struct utmpx *u; + time_t best_atime = 0, tty_atime; + int num_ttys = 0, valid_ttys = 0, tty_writeable = 0, user_is_me = 0; ++ ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++ if (sd_booted() > 0) { ++ char path[256]; ++ char **sessions_list; ++ int sessions = sd_get_sessions(&sessions_list); ++ if (sessions < 0) ++ errx(EXIT_FAILURE, _("error getting sessions: %s"), ++ strerror(-sessions)); ++ ++ for (int i = 0; i < sessions; i++) { ++ char *name, *tty; ++ int r; ++ ++ if ((r = sd_session_get_username(sessions_list[i], &name)) < 0) ++ errx(EXIT_FAILURE, _("get user name failed: %s"), strerror (-r)); ++ ++ if (strcmp(ctl->dst_login, name) != 0) { ++ free(name); ++ continue; ++ } ++ ++ if (sd_session_get_tty(sessions_list[i], &tty) < 0) { ++ free(name); ++ continue; ++ } ++ ++ num_ttys++; ++ snprintf(path, sizeof(path), "/dev/%s", tty); ++ if (check_tty(path, &tty_writeable, &tty_atime, 0)) { ++ /* bad term? skip */ ++ free(name); ++ free(tty); ++ continue; ++ } ++ if (ctl->src_uid && !tty_writeable) { ++ /* skip ttys with msgs off */ ++ free(name); ++ free(tty); ++ continue; ++ } ++ if (strcmp(tty, ctl->src_tty_name) == 0) { ++ user_is_me = 1; ++ free(name); ++ free(tty); ++ /* don't write to yourself */ ++ continue; ++ } ++ valid_ttys++; ++ if (best_atime < tty_atime) { ++ best_atime = tty_atime; ++ free(ctl->dst_tty_path); ++ ctl->dst_tty_path = xstrdup(path); ++ ctl->dst_tty_name = ctl->dst_tty_path + 5; ++ } ++ free(name); ++ free(tty); ++ } ++ for (int i = 0; i < sessions; i++) ++ free(sessions_list[i]); ++ free(sessions_list); ++ } else { ++#endif + char path[sizeof(u->ut_line) + 6]; + + utmpxname(_PATH_UTMP); +@@ -197,6 +302,9 @@ static void search_utmp(struct write_control *ctl) + } + + endutxent(); ++#if defined(USE_SYSTEMD) && HAVE_DECL_SD_SESSION_GET_USERNAME == 1 ++ } ++#endif + if (num_ttys == 0) + errx(EXIT_FAILURE, _("%s is not logged in"), ctl->dst_login); + if (valid_ttys == 0) { diff --git a/util-linux.changes b/util-linux.changes index 28962a6..b2f6211 100644 --- a/util-linux.changes +++ b/util-linux.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Thu Aug 17 08:03:09 UTC 2023 - Thorsten Kukuk + +- Use logind as Y2038 safe utmp replacement [jsc#PED-3144] + - drop libutempter + - use-logind-not-utmp.patch: agetty, wall, write: use logind + instead of utmp + ------------------------------------------------------------------- Fri Aug 4 18:17:29 UTC 2023 - Antonio Teixeira diff --git a/util-linux.spec b/util-linux.spec index 0e68ca5..774fbf7 100644 --- a/util-linux.spec +++ b/util-linux.spec @@ -114,6 +114,8 @@ Patch3: util-linux-bash-completion-su-chsh-l.patch Patch4: 0001-Revert-libblkid-try-LUKS2-first-when-probing.patch # PATCH-FIX-UPSTREAM util-linux-fix-tests-with-64k-pagesize.patch -- fadvise: fix tests with 64k pagesize Patch5: util-linux-fix-tests-with-64k-pagesize.patch +# https://github.com/util-linux/util-linux/pull/2100 +Patch6: use-logind-not-utmp.patch BuildRequires: audit-devel BuildRequires: bc @@ -130,7 +132,9 @@ BuildRequires: ncurses-devel BuildRequires: pam-devel BuildRequires: pkg-config BuildRequires: readline-devel +%if 0%{?suse_version} < 1600 BuildRequires: utempter-devel +%endif BuildRequires: zlib-devel Requires(post): permissions Requires(verify):permissions @@ -480,7 +484,9 @@ configure_options+="--with-systemd " --with-ncursesw\ --with-readline\ --with-selinux\ +%if 0%{?suse_version} < 1600 --with-utempter\ +%endif --with-bashcompletiondir=%{_datadir}/bash-completion/completions\ --with-systemdsystemunitdir=%{_unitdir}\ --enable-libuuid-force-uuidd\ From 82331b4196b69021c4ce906ca39125d55a5e5dc7a7a317bc4a2eb5668810d3a7 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 8 Sep 2023 22:16:47 +0000 Subject: [PATCH 2/3] Accepting request 1109871 from home:ateixeira:branches:Base:System - Upgrade to version 2.39.2: * build-sys: add AX_COMPARE_VERSION * column: fix -l * libblkid: fix topology chain types mismatch * libmount: * (python) work around python 3.12 bug * (utils) fix statx fallback * check for linux/mount.h * check for struct statx * cleanup --fake mode * handle failure to apply flags as part of a mount operation * ifdef statx() call * improve EPERM interpretation * update documentation for MNT_ERR_APPLYFLAGS * use mount(2) for remount on Linux < 5.14 * use some MS_* flags as superblock flags * po: update es.po, hr.po, ja.po, sr.po * setarch: add PER_LINUX_FDPIC fallback * uuidd: improve man page for -cont-clock * wall: do not error for ttys that do not exist * zramctl: add hint about supported algorithms * other changes, see: https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.39/v2.39.2-ReleaseNotes OBS-URL: https://build.opensuse.org/request/show/1109871 OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=530 --- util-linux-2.39.1.tar.sign | 16 ---------------- util-linux-2.39.1.tar.xz | 3 --- util-linux-2.39.2.tar.sign | 16 ++++++++++++++++ util-linux-2.39.2.tar.xz | 3 +++ util-linux.changes | 27 +++++++++++++++++++++++++++ util-linux.spec | 2 +- 6 files changed, 47 insertions(+), 20 deletions(-) delete mode 100644 util-linux-2.39.1.tar.sign delete mode 100644 util-linux-2.39.1.tar.xz create mode 100644 util-linux-2.39.2.tar.sign create mode 100644 util-linux-2.39.2.tar.xz diff --git a/util-linux-2.39.1.tar.sign b/util-linux-2.39.1.tar.sign deleted file mode 100644 index 07b56f1..0000000 --- a/util-linux-2.39.1.tar.sign +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCAAdFiEEsMZNFDAcxu+u32Dk5LcdXuw5woQFAmSa2ZsACgkQ5LcdXuw5 -woT0eg/+KxzwVA1xH5/NFJclvXMpNNUYwuHkMHFt7WKXs/K9FG1dELEIhm7h2tUs -v87uiG5sr1EKOjY0CjWULiVklqNIksxBTmPcg1sxm1S7Mef8kgsylxiXoL8npGVR -5t2A7VMpY9/WxaN/9IYD7t5Zb9mc/WnZuJrExclaXRY/mqfpnfTgyvH8cobNBQNg -NgrXqZP17eacK+cpKGzqL/3UXY8G16Wu2TjUvWUk+CajCMc/rCv/zPtHgH+mTP9r -GJwV7Ps8OU87k2zJh5awfOLdEePcE9ZzlmEpi9bF0BFdIJ6kIqU1j6ATQCp8E4y/ -0pjYZVKavS+UcOJ98ykwRdDGEd02vLXntGUIdWb+eYZud1w/2MAtIBbRsRt0nKOZ -i2WmbsN77u99yX87L6pIDZ212lFWyBfobZHn2rUwpYhLtFJem2ujzSKslIvkOrNs -sDk5TYx12BdzHt9q0YuYFKW+bIyqtjelxI3TFFdmltDG9FkKh606Ff0GAPRTL8i6 -EJ4pVLdc6k035+fwYi+QlIBYo7tzRYdqjOyFbnYDBAjykzIBojL1QqzbMys530TW -7Wg2JFYv3xgbYqZlLEVQc77kkF+ZRSa7/T6JmmevXS0SxsQxTS9AMDx9pcitnkVQ -p3nJXirz+pqrDVwjLYAs93WTP0CzclsOU12LYPboNiEH9VPSP9o= -=6Jlu ------END PGP SIGNATURE----- diff --git a/util-linux-2.39.1.tar.xz b/util-linux-2.39.1.tar.xz deleted file mode 100644 index 945bf81..0000000 --- a/util-linux-2.39.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:890ae8ff810247bd19e274df76e8371d202cda01ad277681b0ea88eeaa00286b -size 8351164 diff --git a/util-linux-2.39.2.tar.sign b/util-linux-2.39.2.tar.sign new file mode 100644 index 0000000..0de9c98 --- /dev/null +++ b/util-linux-2.39.2.tar.sign @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCAAdFiEEsMZNFDAcxu+u32Dk5LcdXuw5woQFAmTd5c8ACgkQ5LcdXuw5 +woSKLA/+L8rMZSGrVE8uxxji92mUHqsrYuk3yP3kdEQL2cqE/7/kAwb3J8LHS9jO +1eFLJBcJv7eqtO/n42Gl9HNQ2Lbs0wnZzBT1B+TDeF1+HXF6jM9DnvfszngDm6vP +8lDlxv0rxaoBc1w6ajEhYheH4v+baXGsgAFxfbCGgL15AVHPiuA5x2DklOr79Miz +xssPi3kdf4gb0P9iKCOZxkYORFYCCCdd1o7Rp1ZR5rIpClHzaXT21agIJVDAMIg/ +DQQCVkoy6AdG5iiv6C1x8Yrg2uKuLdeKOXYQkBigDdozuEChmn2FZy3Wdo/ZtadC +IqWLZY++q453SpZR1OqX0oAlkFJ2CRP+mEMu/17TnHhdmrQ/b5J2cdjubZf4gOrA +98Ihb7VLxib4M9Ipg9BR5abKRqKrNMW0TJ013Ar9sdaFXaISfdPZtIhDNu9lkSXF +xzz+AZOOn70j0aYWiMmbys+Ixu8Vm3YtRtkp/eikp946kIZdIkcEg+5a9Ok5Dk1i +gxFjQkm5bx4nuWjc5W3e0NjbTXu15vxmGn/cZLK5VI3Mx6U9v4yQVoATWZGeYirB +7N798kvwNRJn6W3yY7Se8vHfkI5HD8M7LN607f6/8lgi4vLx5ffjShrp97peQlsX +E/RDdQoYm0u/sGh9rezwvvmk+8Nnt5mUtlqS+eJVX6guJk2rT0M= +=oAmP +-----END PGP SIGNATURE----- diff --git a/util-linux-2.39.2.tar.xz b/util-linux-2.39.2.tar.xz new file mode 100644 index 0000000..9486ddb --- /dev/null +++ b/util-linux-2.39.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87abdfaa8e490f8be6dde976f7c80b9b5ff9f301e1b67e3899e1f05a59a1531f +size 8362220 diff --git a/util-linux.changes b/util-linux.changes index b2f6211..ffe19e6 100644 --- a/util-linux.changes +++ b/util-linux.changes @@ -1,3 +1,30 @@ +------------------------------------------------------------------- +Fri Sep 8 20:13:24 UTC 2023 - Antonio Teixeira + +- Upgrade to version 2.39.2: + * build-sys: add AX_COMPARE_VERSION + * column: fix -l + * libblkid: fix topology chain types mismatch + * libmount: + * (python) work around python 3.12 bug + * (utils) fix statx fallback + * check for linux/mount.h + * check for struct statx + * cleanup --fake mode + * handle failure to apply flags as part of a mount operation + * ifdef statx() call + * improve EPERM interpretation + * update documentation for MNT_ERR_APPLYFLAGS + * use mount(2) for remount on Linux < 5.14 + * use some MS_* flags as superblock flags + * po: update es.po, hr.po, ja.po, sr.po + * setarch: add PER_LINUX_FDPIC fallback + * uuidd: improve man page for -cont-clock + * wall: do not error for ttys that do not exist + * zramctl: add hint about supported algorithms + * other changes, see: + https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.39/v2.39.2-ReleaseNotes + ------------------------------------------------------------------- Thu Aug 17 08:03:09 UTC 2023 - Thorsten Kukuk diff --git a/util-linux.spec b/util-linux.spec index 774fbf7..a2de2d2 100644 --- a/util-linux.spec +++ b/util-linux.spec @@ -85,7 +85,7 @@ Group: Development/Languages/Python %endif # ulbuild == python -Version: 2.39.1 +Version: 2.39.2 Release: 0 License: GPL-2.0-or-later URL: https://www.kernel.org/pub/linux/utils/util-linux/ From 81aa838370616de55127d94d48b7a199171f462758d21c0dec47dad4d588638a Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 8 Sep 2023 22:18:39 +0000 Subject: [PATCH 3/3] remove nondescript (to the end-user) entries OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=531 --- util-linux.changes | 9 --------- 1 file changed, 9 deletions(-) diff --git a/util-linux.changes b/util-linux.changes index ffe19e6..fcb2ca8 100644 --- a/util-linux.changes +++ b/util-linux.changes @@ -2,22 +2,13 @@ Fri Sep 8 20:13:24 UTC 2023 - Antonio Teixeira - Upgrade to version 2.39.2: - * build-sys: add AX_COMPARE_VERSION - * column: fix -l * libblkid: fix topology chain types mismatch * libmount: - * (python) work around python 3.12 bug - * (utils) fix statx fallback - * check for linux/mount.h - * check for struct statx - * cleanup --fake mode * handle failure to apply flags as part of a mount operation - * ifdef statx() call * improve EPERM interpretation * update documentation for MNT_ERR_APPLYFLAGS * use mount(2) for remount on Linux < 5.14 * use some MS_* flags as superblock flags - * po: update es.po, hr.po, ja.po, sr.po * setarch: add PER_LINUX_FDPIC fallback * uuidd: improve man page for -cont-clock * wall: do not error for ttys that do not exist