public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Mattias Ellert <mattias.ellert@physics.uu.se>
To: git-commits@fedoraproject.org
Subject: [rpms/xrootd] rawhide: Update to version 6.0.3
Date: Wed, 03 Jun 2026 17:31:50 GMT	[thread overview]
Message-ID: <178050791000.1.17099348321149491014.rpms-xrootd-c0cfe0cb194b@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/xrootd
Branch : rawhide
Commit : c0cfe0cb194b7e79052a464eeb97433341acc61b
Author : Mattias Ellert <mattias.ellert@physics.uu.se>
Date   : 2026-06-02T13:02:41+02:00
Stats  : +5/-34 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xrootd/c/c0cfe0cb194b7e79052a464eeb97433341acc61b?branch=rawhide

Log:
Update to version 6.0.3

---
diff --git a/0001-XrdClHttp-Fix-bug-preventing-the-configuration-of-th.patch b/0001-XrdClHttp-Fix-bug-preventing-the-configuration-of-th.patch
deleted file mode 100644
index 9526c32..0000000
--- a/0001-XrdClHttp-Fix-bug-preventing-the-configuration-of-th.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 71ea4b5b2c68937500f4c7b70a9d775781776eb5 Mon Sep 17 00:00:00 2001
-From: Brian Bockelman <bbockelman@morgridge.org>
-Date: Thu, 21 May 2026 08:44:03 -0500
-Subject: [PATCH] [XrdClHttp] Fix bug preventing the configuration of threads
-
-Appears a prior refactoring caused the thread configuration to use
-the wrong variable, causing 8 worker threads to be used regardless
-of the current configuration.
----
- src/XrdClHttp/XrdClHttpFactory.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/XrdClHttp/XrdClHttpFactory.cc b/src/XrdClHttp/XrdClHttpFactory.cc
-index 81413eff4..08d8ef8bd 100644
---- a/src/XrdClHttp/XrdClHttpFactory.cc
-+++ b/src/XrdClHttp/XrdClHttpFactory.cc
-@@ -194,7 +194,7 @@ Factory::Initialize()
-         auto &cache = XrdClHttp::VerbsCache::Instance();
- 
-         // Startup curl workers after we've set the configs to avoid race conditions
--        for (unsigned idx=0; idx<m_poll_threads; idx++) {
-+        for (int idx=0; idx<num_threads; idx++) {
-             auto wk = std::make_unique<XrdClHttp::CurlWorker>(m_queue, cache, m_log);
-             auto wkp = wk.get();
-             std::thread t(XrdClHttp::CurlWorker::RunStatic, wkp);
--- 
-2.54.0
-

diff --git a/sources b/sources
index 8c2cb71..21816ab 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xrootd-6.0.2.tar.gz) = 29fe0138b06e03210ece9c3130785967016f1e076be888c1f3147e8c9ade7e506eb2047364c76f251bbae3bf8a067abc16f6929c3d8e7f615ee41c8f6f8a8263
+SHA512 (xrootd-6.0.3.tar.gz) = 9f0517dcecc679f5aa385831184c9eb93ad7ad2d42bda1340a9cada7f444998fed0a212738142beaf3de6c2f26670137839ca48ca9ac5ab7d5834feb5d309aa8

diff --git a/xrootd.spec b/xrootd.spec
index 88f128a..11d07d4 100644
--- a/xrootd.spec
+++ b/xrootd.spec
@@ -13,7 +13,7 @@
 
 Name:		xrootd
 Epoch:		1
-Version:	6.0.2
+Version:	6.0.3
 Release:	1%{?dist}
 Summary:	Extended ROOT file server
 License:	LGPL-3.0-or-later AND BSD-2-Clause AND BSD-3-Clause AND curl AND MIT AND Zlib AND Apache-2.0 AND MPL-2.0
@@ -27,9 +27,6 @@ Patch0:		0001-Unbundle-tinyxml.patch
 #		https://github.com/xrootd/xrootd/pull/2802
 Patch1:		0001-XrdCrypto-XrdTls-XrdVoms-Adapt-to-OpenSSL-4.0.patch
 Patch2:		0002-XrdCrypto-Preserve-ABI.patch
-#		Backport fix from upstream
-#		https://github.com/xrootd/xrootd/pull/2799
-Patch3:		0001-XrdClHttp-Fix-bug-preventing-the-configuration-of-th.patch
 
 BuildRequires:	cmake
 BuildRequires:	gcc-c++
@@ -270,7 +267,6 @@ This package contains the API documentation of the xrootd libraries.
 %patch -P0 -p1
 %patch -P1 -p1
 %patch -P2 -p1
-%patch -P3 -p1
 
 %build
 %cmake \
@@ -665,6 +661,9 @@ fi
 %doc %{_pkgdocdir}
 
 %changelog
+* Tue Jun 02 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:6.0.3-1
+- Update to version 6.0.3
+
 * Thu May 21 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:6.0.2-1
 - Update to version 6.0.2
 - Adapt to OpenSSL 4.0

                 reply	other threads:[~2026-06-03 17:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178050791000.1.17099348321149491014.rpms-xrootd-c0cfe0cb194b@fedoraproject.org \
    --to=mattias.ellert@physics.uu.se \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox