public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/systemd] rawhide: Version 262~rc1
@ 2026-09-03  8:28 
  0 siblings, 0 replies; only message in thread
From:  @ 2026-09-03  8:28 UTC (permalink / raw)
  To: git-commits

            A new commit has been pushed.

            Repo   : rpms/systemd
            Branch : rawhide
            Commit : bde1d0acee9d46a425527805d1a86598e2c34a20
            Author : Zbigniew Jędrzejewski-Szmek <zbyszek@amutable.com>
            Date   : 2026-09-03T10:28:05+02:00
            Stats  : +9/-95 in 5 file(s)
            URL    : https://src.fedoraproject.org/rpms/systemd/c/bde1d0acee9d46a425527805d1a86598e2c34a20?branch=rawhide

            Log:
            Version 262~rc1

- See https://raw.githubusercontent.com/systemd/systemd/v262-rc1/NEWS.
  Too many changes to list or discuss here.

---
diff --git a/0001-core-create-userdb-root-directory-with-correct-label.patch b/0001-core-create-userdb-root-directory-with-correct-label.patch
index 9cc2cbd..1cc23ce 100644
--- a/0001-core-create-userdb-root-directory-with-correct-label.patch
+++ b/0001-core-create-userdb-root-directory-with-correct-label.patch
@@ -1,4 +1,4 @@
-From 64a0066cfaa4dfcf25c5f6d3ae58df4f24dd1108 Mon Sep 17 00:00:00 2001
+From 7d7965620490b28ccfb9cf45a91b8596be811c90 Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
 Date: Sat, 30 Aug 2025 13:55:56 +0200
 Subject: [PATCH 1/2] core: create userdb root directory with correct label
@@ -16,18 +16,18 @@ longer is. Regression introduced in 736349958efe34089131ca88950e2e5bb391d36a.
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 diff --git a/src/core/varlink.c b/src/core/varlink.c
-index 6074c55ab1..acd51fc47e 100644
+index 79a198f14d..f32071a161 100644
 --- a/src/core/varlink.c
 +++ b/src/core/varlink.c
-@@ -8,6 +8,7 @@
+@@ -9,6 +9,7 @@
  #include "json-util.h"
  #include "manager.h"
  #include "metrics.h"
 +#include "mkdir.h"
  #include "path-util.h"
  #include "pidref.h"
- #include "string-util.h"
-@@ -514,7 +515,11 @@ static int varlink_server_listen_many_idempotent_sentinel(
+ #include "stdio-util.h"
+@@ -523,7 +524,11 @@ static int varlink_server_listen_many_idempotent_sentinel(
                  if (!known_fresh && varlink_server_contains_socket(s, address))
                          continue;
  

diff --git a/0002-machined-continue-without-resolve.hook-socket.patch b/0002-machined-continue-without-resolve.hook-socket.patch
index 7de7adf..168cbe6 100644
--- a/0002-machined-continue-without-resolve.hook-socket.patch
+++ b/0002-machined-continue-without-resolve.hook-socket.patch
@@ -1,4 +1,4 @@
-From 786d3f382308d0119cce020e2c88a03ff96a25d9 Mon Sep 17 00:00:00 2001
+From fb62136683406e18f58517ec13c9b18bc2c9cf9a Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
 Date: Wed, 26 Nov 2025 22:29:53 +0100
 Subject: [PATCH 2/2] machined: continue without resolve.hook socket
@@ -8,10 +8,10 @@ Subject: [PATCH 2/2] machined: continue without resolve.hook socket
  1 file changed, 9 insertions(+), 3 deletions(-)
 
 diff --git a/src/machine/machined-varlink.c b/src/machine/machined-varlink.c
-index acc2137f83..d1c9453e41 100644
+index ae121395c0..29c75cc076 100644
 --- a/src/machine/machined-varlink.c
 +++ b/src/machine/machined-varlink.c
-@@ -904,9 +904,15 @@ static int manager_varlink_init_resolve_hook(Manager *m) {
+@@ -914,9 +914,15 @@ static int manager_varlink_init_resolve_hook(Manager *m) {
  
          r = sd_varlink_server_listen_address(s, VARLINK_PATH_MACHINED_RESOLVE_HOOK,
                                               0666 | SD_VARLINK_SERVER_MODE_MKDIR_0755);

diff --git a/42668.patch b/42668.patch
deleted file mode 100644
index 4754a3a..0000000
--- a/42668.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From e6f1190eb6be465432cfbab267a59c851ae990c5 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@amutable.com>
-Date: Fri, 19 Jun 2026 21:38:44 +0200
-Subject: [PATCH] crypto-util: prefer openssl-4
-
-Fedora has switched to openssl 4, and we generate a Requires dependency
-on libcrypto for the systemd-udev subpackage, so preferring openssl-3
-does the wrong thing. So the order in the dlopen note needs to be switched.
-But in general, we want to get rid of openssl-3, so we want to load
-openssl-4 in preference. Change the order in both places.
-
-(The "compat" order can stay in 261-stable for other distros.)
----
- src/shared/crypto-util.c | 3 +--
- src/shared/crypto-util.h | 2 +-
- 2 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/src/shared/crypto-util.c b/src/shared/crypto-util.c
-index ed6d2a269c772..b345475fa4043 100644
---- a/src/shared/crypto-util.c
-+++ b/src/shared/crypto-util.c
-@@ -339,8 +339,7 @@ int dlopen_libcrypto(int log_level) {
- 
-         LIBCRYPTO_NOTE(SD_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED);
- 
--        // FIXME: switch order to prefer libcrypto.so.4 in a future version once it has stabilized
--        FOREACH_STRING(soname, "libcrypto.so.3", "libcrypto.so.4") {
-+        FOREACH_STRING(soname, "libcrypto.so.4", "libcrypto.so.3") {
-                 r = dlopen_many_sym_or_warn(
-                         &libcrypto_dl,
-                         soname,
-diff --git a/src/shared/crypto-util.h b/src/shared/crypto-util.h
-index 980c1c60a2a5f..bd0cb7b67b8dd 100644
---- a/src/shared/crypto-util.h
-+++ b/src/shared/crypto-util.h
-@@ -37,7 +37,7 @@ int dlopen_libcrypto(int log_level);
-         SD_ELF_NOTE_DLOPEN("libcrypto",                                 \
-                            "Support for cryptographic operations",      \
-                            priority,                                    \
--                           "libcrypto.so.3", "libcrypto.so.4")
-+                           "libcrypto.so.4", "libcrypto.so.3")
- 
- #define DLOPEN_LIBCRYPTO(log_level, priority)                           \
-         ({                                                              \

diff --git a/7be9032019015ddd61985e6a6721d813d62dad0b.patch b/7be9032019015ddd61985e6a6721d813d62dad0b.patch
deleted file mode 100644
index c1de086..0000000
--- a/7be9032019015ddd61985e6a6721d813d62dad0b.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 7be9032019015ddd61985e6a6721d813d62dad0b Mon Sep 17 00:00:00 2001
-From: Luca Boccassi <luca.boccassi@gmail.com>
-Date: Sat, 20 Jun 2026 15:21:26 +0100
-Subject: [PATCH] ssl-util: prefer OpenSSL 4
-
-For the next version we can switch to preferring the new version
----
- src/shared/ssl-util.c | 3 +--
- src/shared/ssl-util.h | 2 +-
- 2 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/src/shared/ssl-util.c b/src/shared/ssl-util.c
-index 226120c70e66f..4b7ab2ec29f74 100644
---- a/src/shared/ssl-util.c
-+++ b/src/shared/ssl-util.c
-@@ -40,8 +40,7 @@ int dlopen_libssl(int log_level) {
- 
-         LIBSSL_NOTE(SD_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED);
- 
--        // FIXME: switch order to prefer libssl.so.4 in a future version once it has stabilized
--        FOREACH_STRING(soname, "libssl.so.3", "libssl.so.4") {
-+        FOREACH_STRING(soname, "libssl.so.4", "libssl.so.3") {
-                 r = dlopen_many_sym_or_warn(
-                                 &libssl_dl,
-                                 soname,
-diff --git a/src/shared/ssl-util.h b/src/shared/ssl-util.h
-index aa3b8308665ba..77b5c049f9e3a 100644
---- a/src/shared/ssl-util.h
-+++ b/src/shared/ssl-util.h
-@@ -12,7 +12,7 @@ int dlopen_libssl(int log_level);
-         SD_ELF_NOTE_DLOPEN("libssl",                                    \
-                            "Support for TLS",                           \
-                            priority,                                    \
--                           "libssl.so.3", "libssl.so.4")
-+                           "libssl.so.4", "libssl.so.3")
- 
- #define DLOPEN_LIBSSL(log_level, priority)                              \
-         ({                                                              \

diff --git a/systemd.spec b/systemd.spec
index 6a028bd..356810f 100644
--- a/systemd.spec
+++ b/systemd.spec
@@ -82,7 +82,7 @@ Url:            https://systemd.io
 # But don't do that on OBS, otherwise the version subst fails, and will be
 # like 257-123-gabcd257.1 instead of 257-123-gabcd
 %if %{without obs}
-Version:        %{?version_override}%{!?version_override:261.2}
+Version:        %{?version_override}%{!?version_override:262~rc1}
 %else
 Version:        %{?version_override}%{!?version_override:%(cat meson.version)}
 %endif
@@ -159,10 +159,6 @@ Patch:          0001-core-create-userdb-root-directory-with-correct-label.patch
 
 # Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=2415701
 Patch:          0002-machined-continue-without-resolve.hook-socket.patch
-
-# We want to depend on and load openssl-4 in preference
-Patch:          https://github.com/systemd/systemd/pull/42668.patch
-Patch:          https://github.com/systemd/systemd/commit/7be9032019015ddd61985e6a6721d813d62dad0b.patch
 %endif
 
 %ifarch %{ix86} x86_64 aarch64 riscv64

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

only message in thread, other threads:[~2026-09-03  8:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-03  8:28 [rpms/systemd] rawhide: Version 262~rc1 

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