Compare commits
80 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4ad3a28d2 | ||
|
|
532cdeacb7 | ||
|
|
f904ae3077 | ||
|
|
fac6715ea9 | ||
|
|
11db6b2e2b | ||
|
|
ecd1ba1adf | ||
|
|
c0cfe0cb19 | ||
|
|
8acacae375 | ||
|
|
5ee6a46add | ||
|
|
1bf67be74a | ||
|
|
1ded0f02fb | ||
|
|
db5cfc1332 | ||
|
|
d990e6af59 | ||
|
|
2f40bdab19 | ||
|
|
c6772173e1 | ||
|
|
7410fb1c04 | ||
|
|
e7d8ccb573 | ||
|
|
6a14539323 | ||
|
|
337a27ddf3 | ||
|
|
a1df29a855 | ||
|
|
51e5176cee | ||
|
|
83ce3e63ce | ||
|
|
8fc3e7a48d | ||
|
|
18f68e3bba | ||
|
acdcf3a99d |
|||
|
|
546174db8d | ||
|
|
c279cfe4c0 | ||
|
|
d77792cf7c | ||
|
|
ccc05e4af5 | ||
|
|
fc28d9f969 | ||
|
|
e528e0f40d | ||
|
|
bb8882e8c4 | ||
|
|
16309d3441 | ||
|
|
b996dc7685 | ||
|
|
e4c1b94872 | ||
|
|
1f974eeaf8 | ||
|
|
60461f50b1 | ||
|
|
0a46bf1aee | ||
|
|
453125606c | ||
|
|
e8cf9f1591 | ||
|
|
97467c8e51 | ||
|
|
13f1004571 | ||
|
|
2af0de9eaf | ||
|
|
b7f4c1ccbd | ||
|
|
07036ad772 | ||
|
|
39ef4b7110 | ||
|
|
3aad3e6c66 | ||
|
|
534722bfd5 | ||
|
|
b887d840a6 | ||
|
|
952cde512c | ||
|
|
cc79f998e7 | ||
|
|
5b0f89fc4c | ||
|
|
3f77bfd6e4 | ||
|
|
218ba72428 | ||
|
|
2f93511396 | ||
|
|
4a1d594f3f | ||
|
|
0da0854aeb | ||
|
|
be730e7036 | ||
|
|
51203b0d39 | ||
|
|
669673f6ce | ||
|
|
f94c69aaa8 | ||
|
|
10dab32577 | ||
|
|
bf46b8db60 | ||
|
|
d28735c510 | ||
|
|
f8d47b195d | ||
|
|
1d9cd4a9c9 | ||
|
|
49ba8e46ae | ||
|
|
4e3b0d188c | ||
|
|
be87b10612 | ||
|
|
8d3975aac6 | ||
|
|
8008df982f | ||
|
|
19eaab2284 | ||
|
|
b57980167b | ||
|
|
d3dab6243e | ||
|
|
9c466e1ca1 | ||
|
|
3c4a5ea821 | ||
|
|
8573f12011 | ||
|
|
450b10ec4c | ||
|
|
cc7a2b3f44 | ||
|
|
911021d9ff |
7 changed files with 617 additions and 241 deletions
|
|
@ -1,44 +0,0 @@
|
||||||
From 0b185f6ee52096929ff58ef6fa94a53d2babc1f8 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
|
||||||
Date: Wed, 27 Oct 2021 22:42:18 +0200
|
|
||||||
Subject: [PATCH] Do not hardcode error numbers
|
|
||||||
|
|
||||||
The error numbers defined on Linux can not be reused on other systems
|
|
||||||
since this causes clashes.
|
|
||||||
|
|
||||||
On Linux ECHRNG is 44, but defining ECHRNG to be 44 on systems that do
|
|
||||||
not define ECHRNG is not appropriate. On e.g. kFreeBSD this will clash
|
|
||||||
with ESOCKTNOSUPPORT, which is defined as 44 on that system.
|
|
||||||
---
|
|
||||||
src/XrdPosix/XrdPosixMap.cc | 8 ++++----
|
|
||||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/XrdPosix/XrdPosixMap.cc b/src/XrdPosix/XrdPosixMap.cc
|
|
||||||
index 23075e0a5..a5a06230a 100644
|
|
||||||
--- a/src/XrdPosix/XrdPosixMap.cc
|
|
||||||
+++ b/src/XrdPosix/XrdPosixMap.cc
|
|
||||||
@@ -44,6 +44,10 @@
|
|
||||||
#define ENOSR ENOSPC
|
|
||||||
#endif
|
|
||||||
|
|
||||||
+#ifndef ECHRNG
|
|
||||||
+#define ECHRNG EINVAL
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/******************************************************************************/
|
|
||||||
/* S t a t i c M e m b e r s */
|
|
||||||
/******************************************************************************/
|
|
||||||
@@ -80,10 +84,6 @@ mode_t XrdPosixMap::Flags2Mode(dev_t *rdv, uint32_t flags)
|
|
||||||
/* Private: m a p C o d e */
|
|
||||||
/******************************************************************************/
|
|
||||||
|
|
||||||
-#ifndef ECHRNG
|
|
||||||
-#define ECHRNG 44
|
|
||||||
-#endif
|
|
||||||
-
|
|
||||||
int XrdPosixMap::mapCode(int rc)
|
|
||||||
{
|
|
||||||
switch(rc)
|
|
||||||
--
|
|
||||||
2.31.1
|
|
||||||
|
|
||||||
30
0001-Make-documentation-self-contained.patch
Normal file
30
0001-Make-documentation-self-contained.patch
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
From 8b924dbc92d3cce474421fbd7974f3d22d64d51c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
||||||
|
Date: Wed, 12 Aug 2026 17:00:45 +0200
|
||||||
|
Subject: [PATCH] Make documentation self-contained
|
||||||
|
|
||||||
|
---
|
||||||
|
README.md | 9 +--------
|
||||||
|
1 file changed, 1 insertion(+), 8 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/README.md b/README.md
|
||||||
|
index bafd1112d..167d476e0 100644
|
||||||
|
--- a/README.md
|
||||||
|
+++ b/README.md
|
||||||
|
@@ -1,12 +1,5 @@
|
||||||
|
-[](https://repology.org/project/xrootd/packages)
|
||||||
|
-[](https://my.cdash.org/index.php?project=XRootD)
|
||||||
|
-[](https://github.com/xrootd/xrootd/actions/workflows/ABI.yml)
|
||||||
|
-[](https://github.com/xrootd/xrootd/actions/workflows/CI.yml)
|
||||||
|
-[](https://www.bestpractices.dev/projects/11900)
|
||||||
|
-[](https://insights.linuxfoundation.org/project/xrootd)
|
||||||
|
-
|
||||||
|
<p align="center">
|
||||||
|
- <img src="https://xrootd.org/images/xrootd-logo.png"/>
|
||||||
|
+ <img src="xrootd-logo.png"/>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## XRootD: eXtended ROOT Daemon
|
||||||
|
--
|
||||||
|
2.55.0
|
||||||
|
|
||||||
25
0001-Unbundle-gtest.patch
Normal file
25
0001-Unbundle-gtest.patch
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
From cd11f615e749a1fcdd353edd30505c4e8da897db Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
||||||
|
Date: Tue, 11 Aug 2026 23:53:15 +0200
|
||||||
|
Subject: [PATCH] Unbundle gtest
|
||||||
|
|
||||||
|
---
|
||||||
|
cmake/XRootDFindLibs.cmake | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/cmake/XRootDFindLibs.cmake b/cmake/XRootDFindLibs.cmake
|
||||||
|
index e47dfb83e..3788f5ed4 100644
|
||||||
|
--- a/cmake/XRootDFindLibs.cmake
|
||||||
|
+++ b/cmake/XRootDFindLibs.cmake
|
||||||
|
@@ -89,7 +89,7 @@ if( ENABLE_XRDOSSARC )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if( ENABLE_TESTS )
|
||||||
|
- add_subdirectory(vendor/googletest EXCLUDE_FROM_ALL)
|
||||||
|
+ find_package( GTest REQUIRED )
|
||||||
|
|
||||||
|
set( BUILD_TESTS TRUE )
|
||||||
|
|
||||||
|
--
|
||||||
|
2.55.0
|
||||||
|
|
||||||
62
0001-Unbundle-tinyxml.patch
Normal file
62
0001-Unbundle-tinyxml.patch
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
From bd81e2e922bd44c755ad77cf29ca45570cc934ec Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
||||||
|
Date: Tue, 21 Apr 2026 00:38:07 +0200
|
||||||
|
Subject: [PATCH] Unbundle tinyxml
|
||||||
|
|
||||||
|
---
|
||||||
|
cmake/FindTinyXml.cmake | 18 ++++++++++++++++++
|
||||||
|
src/XrdXml/tinyxml/CMakeLists.txt | 12 ++++++++++++
|
||||||
|
2 files changed, 30 insertions(+)
|
||||||
|
create mode 100644 cmake/FindTinyXml.cmake
|
||||||
|
|
||||||
|
diff --git a/cmake/FindTinyXml.cmake b/cmake/FindTinyXml.cmake
|
||||||
|
new file mode 100644
|
||||||
|
index 000000000..75c752707
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/cmake/FindTinyXml.cmake
|
||||||
|
@@ -0,0 +1,18 @@
|
||||||
|
+FIND_PATH(TINYXML_INCLUDE_DIR tinyxml.h
|
||||||
|
+ HINTS
|
||||||
|
+ ${TINYXML_DIR}
|
||||||
|
+ $ENV{TINYXML_DIR}
|
||||||
|
+ /usr
|
||||||
|
+ PATH_SUFFIXES include
|
||||||
|
+)
|
||||||
|
+
|
||||||
|
+FIND_LIBRARY(TINYXML_LIBRARIES tinyxml
|
||||||
|
+ HINTS
|
||||||
|
+ ${TINYXML_DIR}
|
||||||
|
+ $ENV{TINYXML_DIR}
|
||||||
|
+ /usr
|
||||||
|
+ PATH_SUFFIXES lib
|
||||||
|
+)
|
||||||
|
+
|
||||||
|
+INCLUDE(FindPackageHandleStandardArgs)
|
||||||
|
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(TinyXml DEFAULT_MSG TINYXML_LIBRARIES TINYXML_INCLUDE_DIR)
|
||||||
|
diff --git a/src/XrdXml/tinyxml/CMakeLists.txt b/src/XrdXml/tinyxml/CMakeLists.txt
|
||||||
|
index db7d4924e..f87ed8f46 100644
|
||||||
|
--- a/src/XrdXml/tinyxml/CMakeLists.txt
|
||||||
|
+++ b/src/XrdXml/tinyxml/CMakeLists.txt
|
||||||
|
@@ -1,3 +1,13 @@
|
||||||
|
+find_package(TinyXml)
|
||||||
|
+
|
||||||
|
+if(TINYXML_FOUND)
|
||||||
|
+
|
||||||
|
+add_library(XrdTinyXml INTERFACE IMPORTED GLOBAL)
|
||||||
|
+set_property(TARGET XrdTinyXml PROPERTY INTERFACE_INCLUDE_DIRECTORIES "${TINYXML_INCLUDE_DIR}")
|
||||||
|
+set_property(TARGET XrdTinyXml PROPERTY INTERFACE_LINK_LIBRARIES "${TINYXML_LIBRARIES}")
|
||||||
|
+
|
||||||
|
+else()
|
||||||
|
+
|
||||||
|
add_library(XrdTinyXml OBJECT
|
||||||
|
tinystr.cpp tinystr.h
|
||||||
|
tinyxml.cpp tinyxml.h
|
||||||
|
@@ -13,3 +23,5 @@ set_target_properties(XrdTinyXml
|
||||||
|
target_include_directories(XrdTinyXml
|
||||||
|
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
||||||
|
)
|
||||||
|
+
|
||||||
|
+endif()
|
||||||
|
--
|
||||||
|
2.53.0
|
||||||
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (xrootd-5.3.3.tar.gz) = f92f9a0971e4a71b72d200a9e97725b28f719f3d50da643c1d53557f123a890733bc0c02d95f450ed0f1ec31ffb84cf17a7cb07c1cad857a4e07779f03585d29
|
SHA512 (xrootd-6.1.1.tar.gz) = ac1286cc54c60611bf17b6140b8cd7ef17a8318a4082cae38e5da040199ce4405490e583b376074c3ed29cf2d87c9bbda5da15c6a3091c83c7877abdc3343ebf
|
||||||
|
|
|
||||||
2
xrootd-sysusers.conf
Normal file
2
xrootd-sysusers.conf
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Name ID GECOS Home directory Shell
|
||||||
|
u xrootd 194 "XRootD runtime user" /var/spool/xrootd -
|
||||||
689
xrootd.spec
689
xrootd.spec
|
|
@ -1,8 +1,3 @@
|
||||||
%ifarch %{ix86} %{arm}
|
|
||||||
# LTO does not work for the POSIX preload code on 32 bit architectures
|
|
||||||
%define _lto_cflags %{nil}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{?fedora}%{!?fedora:0}
|
%if %{?fedora}%{!?fedora:0}
|
||||||
%ifarch %{ix86} %{arm}
|
%ifarch %{ix86} %{arm}
|
||||||
%global ceph 0
|
%global ceph 0
|
||||||
|
|
@ -13,63 +8,78 @@
|
||||||
%global ceph 0
|
%global ceph 0
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%undefine __cmake_in_source_build
|
|
||||||
%undefine __cmake3_in_source_build
|
|
||||||
|
|
||||||
Name: xrootd
|
Name: xrootd
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 5.3.3
|
Version: 6.1.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Extended ROOT file server
|
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
|
||||||
|
URL: https://xrootd.web.cern.ch
|
||||||
|
Source0: %{url}/download/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
Source1: %{name}-sysusers.conf
|
||||||
|
|
||||||
License: LGPLv3+
|
# Unbundle tinyxml library
|
||||||
URL: https://xrootd.slac.stanford.edu/
|
Patch0: 0001-Unbundle-tinyxml.patch
|
||||||
Source0: https://xrootd.slac.stanford.edu/download/v%{version}/%{name}-%{version}.tar.gz
|
# Unbundle googletest/googlemock
|
||||||
# Do not hardcode error numbers
|
Patch1: 0001-Unbundle-gtest.patch
|
||||||
# https://github.com/xrootd/xrootd/pull/1542
|
# Make documentation self-contained
|
||||||
Patch0: 0001-Do-not-hardcode-error-numbers.patch
|
Patch2: 0001-Make-documentation-self-contained.patch
|
||||||
|
|
||||||
|
BuildRequires: cmake
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
|
||||||
BuildRequires: cmake3 >= 3.1
|
|
||||||
%else
|
|
||||||
BuildRequires: cmake >= 3.1
|
|
||||||
%endif
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: fuse-devel
|
BuildRequires: fuse-devel
|
||||||
BuildRequires: krb5-devel
|
BuildRequires: krb5-devel
|
||||||
BuildRequires: libcurl-devel
|
BuildRequires: libcurl-devel
|
||||||
BuildRequires: tinyxml-devel
|
BuildRequires: tinyxml-devel
|
||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
|
BuildRequires: libzip-devel
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
|
%if %{?fedora}%{!?fedora:0}
|
||||||
|
# picojson not in RHEL/EPEL
|
||||||
|
BuildRequires: picojson-devel
|
||||||
|
%endif
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRequires: doxygen
|
|
||||||
BuildRequires: graphviz
|
|
||||||
BuildRequires: selinux-policy-devel
|
BuildRequires: selinux-policy-devel
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
BuildRequires: systemd-devel
|
BuildRequires: systemd-devel
|
||||||
%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 8
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-pip
|
||||||
%endif
|
BuildRequires: python3-setuptools
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
BuildRequires: python3-wheel
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python%{python3_pkgversion}-devel
|
|
||||||
BuildRequires: python%{python3_other_pkgversion}-devel
|
|
||||||
BuildRequires: python2-sphinx
|
|
||||||
%endif
|
|
||||||
BuildRequires: json-c-devel
|
BuildRequires: json-c-devel
|
||||||
|
BuildRequires: json-devel
|
||||||
BuildRequires: libmacaroons-devel
|
BuildRequires: libmacaroons-devel
|
||||||
BuildRequires: libuuid-devel
|
BuildRequires: libuuid-devel
|
||||||
BuildRequires: voms-devel >= 2.0.6
|
BuildRequires: voms-devel
|
||||||
BuildRequires: scitokens-cpp-devel
|
BuildRequires: scitokens-cpp-devel
|
||||||
BuildRequires: davix-devel
|
BuildRequires: libxcrypt-devel
|
||||||
%if %{ceph}
|
%if %{ceph}
|
||||||
BuildRequires: librados-devel
|
BuildRequires: librados-devel
|
||||||
BuildRequires: libradosstriper-devel
|
BuildRequires: libradosstriper-devel
|
||||||
%endif
|
%endif
|
||||||
|
%ifnarch %{ix86}
|
||||||
|
BuildRequires: isa-l-devel
|
||||||
|
%endif
|
||||||
|
# For documentation
|
||||||
|
BuildRequires: doxygen
|
||||||
|
BuildRequires: graphviz
|
||||||
|
BuildRequires: python3-sphinx
|
||||||
|
# For tests
|
||||||
|
BuildRequires: attr
|
||||||
|
BuildRequires: curl
|
||||||
|
BuildRequires: gtest-devel
|
||||||
|
BuildRequires: gmock-devel
|
||||||
|
BuildRequires: jq
|
||||||
|
BuildRequires: krb5-server
|
||||||
|
BuildRequires: krb5-workstation
|
||||||
|
BuildRequires: openssl
|
||||||
|
BuildRequires: procps
|
||||||
|
BuildRequires: sqlite
|
||||||
|
|
||||||
Requires: %{name}-server%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-server%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
Requires: %{name}-selinux = %{epoch}:%{version}-%{release}
|
Requires: %{name}-selinux = %{epoch}:%{version}-%{release}
|
||||||
|
|
@ -94,7 +104,7 @@ Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
Requires: %{name}-server-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-server-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
Requires: expect
|
Requires: expect
|
||||||
Requires: logrotate
|
Requires: logrotate
|
||||||
Requires(pre): shadow-utils
|
%{?sysusers_requires_compat}
|
||||||
%{?systemd_requires}
|
%{?systemd_requires}
|
||||||
|
|
||||||
%description server
|
%description server
|
||||||
|
|
@ -131,6 +141,8 @@ development.
|
||||||
|
|
||||||
%package client-libs
|
%package client-libs
|
||||||
Summary: Libraries used by xrootd clients
|
Summary: Libraries used by xrootd clients
|
||||||
|
Provides: xrdcl-http = %{epoch}:%{version}-%{release}
|
||||||
|
Obsoletes: xrdcl-http < 1:6.0.0
|
||||||
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description client-libs
|
%description client-libs
|
||||||
|
|
@ -171,6 +183,7 @@ Summary: Private xrootd headers
|
||||||
Requires: %{name}-devel%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-devel%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
Requires: %{name}-client-devel%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-client-devel%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
Requires: %{name}-server-devel%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-server-devel%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description private-devel
|
%description private-devel
|
||||||
This package contains some private xrootd headers. Backward and forward
|
This package contains some private xrootd headers. Backward and forward
|
||||||
|
|
@ -213,7 +226,9 @@ The VOMS attribute extractor plugin for XRootD.
|
||||||
|
|
||||||
%package scitokens
|
%package scitokens
|
||||||
Summary: SciTokens authorization support for XRootD
|
Summary: SciTokens authorization support for XRootD
|
||||||
|
License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause
|
||||||
Requires: %{name}-server%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-server%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description scitokens
|
%description scitokens
|
||||||
This ACC (authorization) plugin for the XRootD framework utilizes the
|
This ACC (authorization) plugin for the XRootD framework utilizes the
|
||||||
|
|
@ -222,58 +237,26 @@ SciToken passed during a transfer. Configured appropriately, this
|
||||||
allows the XRootD server admin to delegate authorization decisions for
|
allows the XRootD server admin to delegate authorization decisions for
|
||||||
a subset of the namespace to an external issuer.
|
a subset of the namespace to an external issuer.
|
||||||
|
|
||||||
%package -n xrdcl-http
|
|
||||||
Summary: HTTP client plugin for XRootD
|
|
||||||
Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
|
||||||
License: BSD
|
|
||||||
|
|
||||||
%description -n xrdcl-http
|
|
||||||
xrdcl-http is an XRootD client plugin which allows XRootD to interact
|
|
||||||
with HTTP repositories.
|
|
||||||
|
|
||||||
%if %{ceph}
|
%if %{ceph}
|
||||||
%package ceph
|
%package ceph
|
||||||
Summary: XRootD plugin for interfacing with the Ceph storage platform
|
Summary: XRootD plugin for interfacing with the Ceph storage platform
|
||||||
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
Requires: %{name}-server-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description ceph
|
%description ceph
|
||||||
The xrootd-ceph is an OSS layer plugin for the XRootD server for
|
The xrootd-ceph is an OSS layer plugin for the XRootD server for
|
||||||
interfacing with the Ceph storage platform.
|
interfacing with the Ceph storage platform.
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
%package -n python3-%{name}
|
||||||
%package -n python2-%{name}
|
|
||||||
Summary: Python 2 bindings for xrootd
|
|
||||||
%{?python_provide:%python_provide python2-%{name}}
|
|
||||||
Provides: %{name}-python = %{epoch}:%{version}-%{release}
|
|
||||||
Obsoletes: %{name}-python < 1:4.6.1-6
|
|
||||||
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
|
||||||
Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
|
||||||
|
|
||||||
%description -n python2-%{name}
|
|
||||||
This package contains Python 2 bindings for xrootd.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%package -n python%{python3_pkgversion}-%{name}
|
|
||||||
Summary: Python 3 bindings for xrootd
|
Summary: Python 3 bindings for xrootd
|
||||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
|
%py_provides python3-%{name}
|
||||||
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description -n python%{python3_pkgversion}-%{name}
|
%description -n python3-%{name}
|
||||||
This package contains Python 3 bindings for xrootd.
|
This package contains Python 3 bindings for xrootd.
|
||||||
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
|
||||||
%package -n python%{python3_other_pkgversion}-%{name}
|
|
||||||
Summary: Python 3 bindings for xrootd
|
|
||||||
%{?python_provide:%python_provide python%{?python3_other_pkgversion}-%{name}}
|
|
||||||
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
|
||||||
Requires: %{name}-client-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
|
||||||
|
|
||||||
%description -n python%{python3_other_pkgversion}-%{name}
|
|
||||||
This package contains Python 3 bindings for xrootd.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
Summary: Developer documentation for the xrootd libraries
|
Summary: Developer documentation for the xrootd libraries
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
@ -283,89 +266,99 @@ This package contains the API documentation of the xrootd libraries.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
|
||||||
|
%patch -P0 -p1
|
||||||
|
%patch -P1 -p1
|
||||||
|
%patch -P2 -p1
|
||||||
|
|
||||||
|
# Delete bundled dependencies
|
||||||
|
rm src/XrdXml/tinyxml/tiny*
|
||||||
|
rm -r vendor/bats
|
||||||
|
rm -r vendor/googletest
|
||||||
|
%if %{?fedora}%{!?fedora:0}
|
||||||
|
# picojson not in RHEL/EPEL
|
||||||
|
rm -r vendor/picojson
|
||||||
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake3 \
|
%cmake \
|
||||||
%if %{?fedora}%{!?fedora:0} >= 36
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||||
-DWITH_OPENSSL3:BOOL=ON \
|
-DFORCE_ENABLED:BOOL=ON \
|
||||||
%endif
|
-DENABLE_TESTS:BOOL=ON \
|
||||||
%if %{ceph}
|
%if %{ceph}
|
||||||
-DXRDCEPH_SUBMODULE:BOOL=ON \
|
-DENABLE_CEPH:BOOL=ON \
|
||||||
%endif
|
%endif
|
||||||
-DXRDCLHTTP_SUBMODULE:BOOL=ON \
|
%ifnarch %{ix86}
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
-DENABLE_XRDEC:BOOL=ON \
|
||||||
-DPYTHON_EXECUTABLE:PATH=%{__python2}
|
%endif
|
||||||
|
%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 9
|
||||||
|
-DPIP_OPTIONS="--no-deps --use-pep517 --no-build-isolation --disable-pip-version-check --verbose" \
|
||||||
%else
|
%else
|
||||||
-DPYTHON_EXECUTABLE:PATH=%{__python3}
|
-DPIP_OPTIONS="--no-deps --disable-pip-version-check --verbose" \
|
||||||
%endif
|
%endif
|
||||||
%cmake3_build
|
-DXRD_PYTHON_REQ_VERSION=%{python3_version}
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
make -C config -f /usr/share/selinux/devel/Makefile
|
||||||
pushd %{_vpath_builddir}/bindings/python
|
|
||||||
%py3_build
|
|
||||||
%py3_other_build
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
make -C packaging/common -f /usr/share/selinux/devel/Makefile
|
|
||||||
|
|
||||||
doxygen Doxyfile
|
doxygen Doxyfile
|
||||||
|
cp -p docs/images/xrootd-logo.png doxydoc/html
|
||||||
export LD_LIBRARY_PATH=${PWD}/%{_vpath_builddir}/src/XrdCl:${PWD}/%{_vpath_builddir}/src
|
|
||||||
%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 8
|
|
||||||
export PYTHONPATH=$(cd %{_vpath_builddir}/bindings/python/build/lib.*-%{python3_version} ; pwd)
|
|
||||||
make -C bindings/python/docs html SPHINXBUILD=sphinx-build-3
|
|
||||||
%endif
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
|
||||||
export PYTHONPATH=$(cd %{_vpath_builddir}/bindings/python/build/lib.*-%{python2_version} ; pwd)
|
|
||||||
make -C bindings/python/docs html
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%cmake3_install
|
%cmake_install
|
||||||
|
|
||||||
rm -f %{buildroot}%{_libdir}/libXrdCephPosix.so
|
rm -f %{buildroot}%{_libdir}/libXrdCephPosix.so
|
||||||
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
rm -f %{buildroot}%{_bindir}/xrdshmap
|
||||||
pushd %{_vpath_builddir}/bindings/python
|
|
||||||
%py3_install
|
rm -f %{buildroot}%{python3_sitearch}/xrootd-*.*-info/direct_url.json
|
||||||
%py3_other_install
|
rm -f %{buildroot}%{python3_sitearch}/xrootd-*.*-info/RECORD
|
||||||
popd
|
[ -r %{buildroot}%{python3_sitearch}/xrootd-*.*-info/INSTALLER ] && \
|
||||||
%endif
|
sed s/pip/rpm/ \
|
||||||
|
-i %{buildroot}%{python3_sitearch}/xrootd-*.*-info/INSTALLER
|
||||||
|
|
||||||
|
rm -f %{buildroot}%{_libdir}/cmake/XRootD/uninstall.cmake
|
||||||
|
|
||||||
|
LD_LIBRARY_PATH=%{buildroot}%{_libdir} \
|
||||||
|
PYTHONPATH=%{buildroot}%{python3_sitearch} \
|
||||||
|
PYTHONDONTWRITEBYTECODE=1 \
|
||||||
|
make -C python/docs html
|
||||||
|
|
||||||
# Service unit files
|
# Service unit files
|
||||||
mkdir -p %{buildroot}%{_unitdir}
|
mkdir -p %{buildroot}%{_unitdir}
|
||||||
install -m 644 packaging/common/xrootd@.service %{buildroot}%{_unitdir}
|
install -m 644 -p systemd/xrootd@.service %{buildroot}%{_unitdir}
|
||||||
install -m 644 packaging/common/xrootd@.socket %{buildroot}%{_unitdir}
|
install -m 644 -p systemd/xrootd@.socket %{buildroot}%{_unitdir}
|
||||||
install -m 644 packaging/common/xrdhttp@.socket %{buildroot}%{_unitdir}
|
install -m 644 -p systemd/xrdhttp@.socket %{buildroot}%{_unitdir}
|
||||||
install -m 644 packaging/common/cmsd@.service %{buildroot}%{_unitdir}
|
install -m 644 -p systemd/cmsd@.service %{buildroot}%{_unitdir}
|
||||||
install -m 644 packaging/common/frm_xfrd@.service %{buildroot}%{_unitdir}
|
install -m 644 -p systemd/frm_xfrd@.service %{buildroot}%{_unitdir}
|
||||||
install -m 644 packaging/common/frm_purged@.service %{buildroot}%{_unitdir}
|
install -m 644 -p systemd/frm_purged@.service %{buildroot}%{_unitdir}
|
||||||
mkdir -p %{buildroot}%{_tmpfilesdir}
|
|
||||||
install -m 644 packaging/rhel/xrootd.tmpfiles %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
mkdir -p %{buildroot}%{_sysusersdir}
|
||||||
|
install -m 644 -p %{SOURCE1} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||||
|
|
||||||
# Server config
|
# Server config
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/%{name}
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}
|
||||||
install -m 644 -p packaging/common/%{name}-clustered.cfg \
|
install -m 644 -p config/%{name}-clustered.cfg \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/%{name}-clustered.cfg
|
%{buildroot}%{_sysconfdir}/%{name}/%{name}-clustered.cfg
|
||||||
install -m 644 -p packaging/common/%{name}-standalone.cfg \
|
install -m 644 -p config/%{name}-standalone.cfg \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/%{name}-standalone.cfg
|
%{buildroot}%{_sysconfdir}/%{name}/%{name}-standalone.cfg
|
||||||
install -m 644 -p packaging/common/%{name}-filecache-clustered.cfg \
|
install -m 644 -p config/%{name}-filecache-clustered.cfg \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/%{name}-filecache-clustered.cfg
|
%{buildroot}%{_sysconfdir}/%{name}/%{name}-filecache-clustered.cfg
|
||||||
install -m 644 -p packaging/common/%{name}-filecache-standalone.cfg \
|
install -m 644 -p config/%{name}-filecache-standalone.cfg \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/%{name}-filecache-standalone.cfg
|
%{buildroot}%{_sysconfdir}/%{name}/%{name}-filecache-standalone.cfg
|
||||||
sed 's!/usr/lib64/!!' packaging/common/%{name}-http.cfg > \
|
install -m 644 -p config/%{name}-http.cfg \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/%{name}-http.cfg
|
%{buildroot}%{_sysconfdir}/%{name}/%{name}-http.cfg
|
||||||
|
|
||||||
# Client config
|
# Client config
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/client.plugins.d
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/client.plugins.d
|
||||||
install -m 644 -p packaging/common/client.conf \
|
install -m 644 -p config/client.conf \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/client.conf
|
%{buildroot}%{_sysconfdir}/%{name}/client.conf
|
||||||
sed 's!/usr/lib/!!' packaging/common/client-plugin.conf.example > \
|
install -m 644 -p config/client.plugins.d/http.conf \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/client.plugins.d/client-plugin.conf.example
|
%{buildroot}%{_sysconfdir}/%{name}/client.plugins.d/http.conf
|
||||||
sed 's!/usr/local/lib/!!' src/XrdClHttp/config/http.client.conf.example > \
|
install -m 644 -p config/client.plugins.d/recorder.conf \
|
||||||
%{buildroot}%{_sysconfdir}/%{name}/client.plugins.d/xrdcl-http-plugin.conf
|
%{buildroot}%{_sysconfdir}/%{name}/client.plugins.d/recorder.conf
|
||||||
|
install -m 644 -p config/client.plugins.d/s3.conf \
|
||||||
|
%{buildroot}%{_sysconfdir}/%{name}/client.plugins.d/s3.conf
|
||||||
|
|
||||||
chmod 644 %{buildroot}%{_datadir}/%{name}/utils/XrdCmsNotify.pm
|
chmod 644 %{buildroot}%{_datadir}/%{name}/utils/XrdCmsNotify.pm
|
||||||
|
|
||||||
|
|
@ -380,32 +373,61 @@ mkdir -p %{buildroot}%{_sysconfdir}/%{name}/config.d
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_localstatedir}/log/%{name}
|
mkdir -p %{buildroot}%{_localstatedir}/log/%{name}
|
||||||
mkdir -p %{buildroot}%{_localstatedir}/spool/%{name}
|
mkdir -p %{buildroot}%{_localstatedir}/spool/%{name}
|
||||||
|
mkdir -p %{buildroot}%{_rundir}/%{name}
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
|
mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
|
||||||
install -m 644 -p packaging/common/%{name}.logrotate \
|
install -m 644 -p config/%{name}.logrotate \
|
||||||
%{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
%{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/selinux/packages/%{name}
|
mkdir -p %{buildroot}%{_datadir}/selinux/packages/%{name}
|
||||||
install -m 644 -p packaging/common/%{name}.pp \
|
install -m 644 -p config/%{name}.pp \
|
||||||
%{buildroot}%{_datadir}/selinux/packages/%{name}
|
%{buildroot}%{_datadir}/selinux/packages/%{name}
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
mkdir -p %{buildroot}%{_pkgdocdir}
|
mkdir -p %{buildroot}%{_pkgdocdir}
|
||||||
cp -pr doxydoc/html %{buildroot}%{_pkgdocdir}
|
cp -pr doxydoc/html %{buildroot}%{_pkgdocdir}
|
||||||
|
|
||||||
cp -pr bindings/python/docs/build/html %{buildroot}%{_pkgdocdir}/python
|
cp -pr python/docs/build/html %{buildroot}%{_pkgdocdir}/python
|
||||||
rm %{buildroot}%{_pkgdocdir}/python/.buildinfo
|
rm %{buildroot}%{_pkgdocdir}/python/.buildinfo
|
||||||
|
|
||||||
%ldconfig_scriptlets libs
|
%check
|
||||||
|
export HOSTNAME=localhost
|
||||||
|
|
||||||
%ldconfig_scriptlets client-libs
|
# Reduce socket path lengths used during tests
|
||||||
|
# rpm 4.20 uses a longer path to the build directory than earlier versions
|
||||||
|
# Tests fail with sockets in the build directory with rpm 4.20
|
||||||
|
adminpath=$(mktemp -d -p /var/tmp)
|
||||||
|
trap "rm -rf ${adminpath}" EXIT
|
||||||
|
|
||||||
%ldconfig_scriptlets server-libs
|
sed "s!all.adminpath .*!all.adminpath ${adminpath}/XRootD!" \
|
||||||
|
-i tests/XRootD/common.cfg
|
||||||
|
|
||||||
|
for x in authenticated_cluster badredir cluster TPCTests xcachewithcsi ; do
|
||||||
|
sed "s!all.adminpath .*!all.adminpath ${adminpath}/${x}!" \
|
||||||
|
-i %{_vpath_builddir}/tests/${x}/common.cfg
|
||||||
|
done
|
||||||
|
|
||||||
|
# The badredir test fails when there is no network - exclude
|
||||||
|
# The posix test is broken for 32 bit archs ...
|
||||||
|
# https://github.com/xrootd/xrootd/issues/2559
|
||||||
|
|
||||||
|
touch testfile
|
||||||
|
if ( setfattr -n user.testattr -v testvalue testfile ) ; then
|
||||||
|
%ctest -- -E \
|
||||||
|
XRootD::badredir\|\
|
||||||
|
%ifarch %{ix86} %{arm}
|
||||||
|
XRootD::posix\|\
|
||||||
|
%endif
|
||||||
|
XrdCl::FileSystemTest.PlugInTest\|\
|
||||||
|
XrdCl::FileTest.PlugInTest
|
||||||
|
else
|
||||||
|
echo "Extended file attributes not supported by file system"
|
||||||
|
echo "*** NOT RUNNING TESTS ***"
|
||||||
|
fi
|
||||||
|
rm testfile
|
||||||
|
|
||||||
%pre server
|
%pre server
|
||||||
getent group %{name} >/dev/null || groupadd -r %{name}
|
%sysusers_create_compat %{SOURCE1}
|
||||||
getent passwd %{name} >/dev/null || useradd -r -g %{name} -s /sbin/nologin \
|
|
||||||
-d %{_localstatedir}/spool/%{name} -c "XRootD runtime user" %{name}
|
|
||||||
|
|
||||||
%post server
|
%post server
|
||||||
if [ $1 -eq 1 ] ; then
|
if [ $1 -eq 1 ] ; then
|
||||||
|
|
@ -470,14 +492,16 @@ fi
|
||||||
%dir %{_datadir}/%{name}
|
%dir %{_datadir}/%{name}
|
||||||
%{_datadir}/%{name}/utils
|
%{_datadir}/%{name}/utils
|
||||||
%{_unitdir}/*
|
%{_unitdir}/*
|
||||||
%{_tmpfilesdir}/%{name}.conf
|
%{_sysusersdir}/%{name}.conf
|
||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
||||||
%dir %{_sysconfdir}/%{name}/config.d
|
%dir %{_sysconfdir}/%{name}/config.d
|
||||||
%attr(-,xrootd,xrootd) %config(noreplace) %{_sysconfdir}/%{name}/*.cfg
|
%attr(-,xrootd,xrootd) %config(noreplace) %{_sysconfdir}/%{name}/*.cfg
|
||||||
%attr(-,xrootd,xrootd) %{_localstatedir}/log/%{name}
|
%attr(-,xrootd,xrootd) %{_localstatedir}/log/%{name}
|
||||||
%attr(-,xrootd,xrootd) %{_localstatedir}/spool/%{name}
|
%attr(-,xrootd,xrootd) %{_localstatedir}/spool/%{name}
|
||||||
|
%ghost %attr(-,xrootd,xrootd) %{_rundir}/%{name}
|
||||||
|
|
||||||
%files selinux
|
%files selinux
|
||||||
|
%dir %{_datadir}/selinux/packages/%{name}
|
||||||
%{_datadir}/selinux/packages/%{name}/%{name}.pp
|
%{_datadir}/selinux/packages/%{name}/%{name}.pp
|
||||||
|
|
||||||
%files libs
|
%files libs
|
||||||
|
|
@ -487,18 +511,18 @@ fi
|
||||||
%{_libdir}/libXrdUtils.so.*
|
%{_libdir}/libXrdUtils.so.*
|
||||||
%{_libdir}/libXrdXml.so.*
|
%{_libdir}/libXrdXml.so.*
|
||||||
# Plugins
|
# Plugins
|
||||||
%{_libdir}/libXrdCksCalczcrc32-5.so
|
%{_libdir}/libXrdCksCalczcrc32-6.so
|
||||||
%{_libdir}/libXrdCryptossl-5.so
|
%{_libdir}/libXrdCryptossl-6.so
|
||||||
%{_libdir}/libXrdSec-5.so
|
%{_libdir}/libXrdSec-6.so
|
||||||
%{_libdir}/libXrdSecProt-5.so
|
%{_libdir}/libXrdSecProt-6.so
|
||||||
%{_libdir}/libXrdSecgsi-5.so
|
%{_libdir}/libXrdSecgsi-6.so
|
||||||
%{_libdir}/libXrdSecgsiAUTHZVO-5.so
|
%{_libdir}/libXrdSecgsiAUTHZVO-6.so
|
||||||
%{_libdir}/libXrdSecgsiGMAPDN-5.so
|
%{_libdir}/libXrdSecgsiGMAPDN-6.so
|
||||||
%{_libdir}/libXrdSeckrb5-5.so
|
%{_libdir}/libXrdSeckrb5-6.so
|
||||||
%{_libdir}/libXrdSecpwd-5.so
|
%{_libdir}/libXrdSecpwd-6.so
|
||||||
%{_libdir}/libXrdSecsss-5.so
|
%{_libdir}/libXrdSecsss-6.so
|
||||||
%{_libdir}/libXrdSecunix-5.so
|
%{_libdir}/libXrdSecunix-6.so
|
||||||
%{_libdir}/libXrdSecztn-5.so
|
%{_libdir}/libXrdSecztn-6.so
|
||||||
%license COPYING* LICENSE
|
%license COPYING* LICENSE
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
|
|
@ -518,11 +542,14 @@ fi
|
||||||
%{_libdir}/libXrdCryptoLite.so
|
%{_libdir}/libXrdCryptoLite.so
|
||||||
%{_libdir}/libXrdUtils.so
|
%{_libdir}/libXrdUtils.so
|
||||||
%{_libdir}/libXrdXml.so
|
%{_libdir}/libXrdXml.so
|
||||||
%dir %{_datadir}/%{name}
|
%{_libdir}/cmake/XRootD
|
||||||
%{_datadir}/%{name}/cmake
|
%{_mandir}/man1/xrootd-config.1*
|
||||||
|
|
||||||
%files client-libs
|
%files client-libs
|
||||||
%{_libdir}/libXrdCl.so.*
|
%{_libdir}/libXrdCl.so.*
|
||||||
|
%ifnarch %{ix86}
|
||||||
|
%{_libdir}/libXrdEc.so.*
|
||||||
|
%endif
|
||||||
%{_libdir}/libXrdFfs.so.*
|
%{_libdir}/libXrdFfs.so.*
|
||||||
%{_libdir}/libXrdPosix.so.*
|
%{_libdir}/libXrdPosix.so.*
|
||||||
%{_libdir}/libXrdPosixPreload.so.*
|
%{_libdir}/libXrdPosixPreload.so.*
|
||||||
|
|
@ -531,14 +558,20 @@ fi
|
||||||
%{_libdir}/libXrdSsiLib.so.*
|
%{_libdir}/libXrdSsiLib.so.*
|
||||||
%{_libdir}/libXrdSsiShMap.so.*
|
%{_libdir}/libXrdSsiShMap.so.*
|
||||||
# Plugins
|
# Plugins
|
||||||
%{_libdir}/libXrdClProxyPlugin-5.so
|
%{_libdir}/libXrdClHttp-6.so
|
||||||
|
%{_libdir}/libXrdClProxyPlugin-6.so
|
||||||
|
%{_libdir}/libXrdClRecorder-6.so
|
||||||
|
%{_libdir}/libXrdClS3-6.so
|
||||||
%dir %{_sysconfdir}/%{name}
|
%dir %{_sysconfdir}/%{name}
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/client.conf
|
%config(noreplace) %{_sysconfdir}/%{name}/client.conf
|
||||||
%dir %{_sysconfdir}/%{name}/client.plugins.d
|
%dir %{_sysconfdir}/%{name}/client.plugins.d
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/client.plugins.d/client-plugin.conf.example
|
%config(noreplace) %{_sysconfdir}/%{name}/client.plugins.d/http.conf
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/client.plugins.d/recorder.conf
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/client.plugins.d/s3.conf
|
||||||
|
|
||||||
%files client-devel
|
%files client-devel
|
||||||
%{_includedir}/%{name}/XrdCl
|
%{_includedir}/%{name}/XrdCl
|
||||||
|
%{_includedir}/%{name}/XrdClHttp
|
||||||
%{_includedir}/%{name}/XrdPosix
|
%{_includedir}/%{name}/XrdPosix
|
||||||
%{_libdir}/libXrdCl.so
|
%{_libdir}/libXrdCl.so
|
||||||
%{_libdir}/libXrdFfs.so
|
%{_libdir}/libXrdFfs.so
|
||||||
|
|
@ -548,22 +581,28 @@ fi
|
||||||
%{_libdir}/libXrdHttpUtils.so.*
|
%{_libdir}/libXrdHttpUtils.so.*
|
||||||
%{_libdir}/libXrdServer.so.*
|
%{_libdir}/libXrdServer.so.*
|
||||||
# Plugins
|
# Plugins
|
||||||
%{_libdir}/libXrdBlacklistDecision-5.so
|
%{_libdir}/libXrdBlacklistDecision-6.so
|
||||||
%{_libdir}/libXrdBwm-5.so
|
%{_libdir}/libXrdBwm-6.so
|
||||||
%{_libdir}/libXrdCmsRedirectLocal-5.so
|
%{_libdir}/libXrdCmsRedirectLocal-6.so
|
||||||
%{_libdir}/libXrdFileCache-5.so
|
%{_libdir}/libXrdFileCache-6.so
|
||||||
%{_libdir}/libXrdHttp-5.so
|
%{_libdir}/libXrdHttp-6.so
|
||||||
%{_libdir}/libXrdHttpTPC-5.so
|
%{_libdir}/libXrdHttpCors-6.so
|
||||||
%{_libdir}/libXrdMacaroons-5.so
|
%{_libdir}/libXrdHttpTPC-6.so
|
||||||
%{_libdir}/libXrdN2No2p-5.so
|
%{_libdir}/libXrdMacaroons-6.so
|
||||||
%{_libdir}/libXrdOssCsi-5.so
|
%{_libdir}/libXrdN2No2p-6.so
|
||||||
%{_libdir}/libXrdOssSIgpfsT-5.so
|
%{_libdir}/libXrdOfsPrepGPI-6.so
|
||||||
%{_libdir}/libXrdPfc-5.so
|
%{_libdir}/libXrdOssArc-6.so
|
||||||
%{_libdir}/libXrdPss-5.so
|
%{_libdir}/libXrdOssCsi-6.so
|
||||||
%{_libdir}/libXrdSsi-5.so
|
%{_libdir}/libXrdOssMirage-6.so
|
||||||
%{_libdir}/libXrdSsiLog-5.so
|
%{_libdir}/libXrdOssSIgpfsT-6.so
|
||||||
%{_libdir}/libXrdThrottle-5.so
|
%{_libdir}/libXrdOssStats-6.so
|
||||||
%{_libdir}/libXrdXrootd-5.so
|
%{_libdir}/libXrdPfc-6.so
|
||||||
|
%{_libdir}/libXrdPfcPurgeQuota-6.so
|
||||||
|
%{_libdir}/libXrdPss-6.so
|
||||||
|
%{_libdir}/libXrdSsi-6.so
|
||||||
|
%{_libdir}/libXrdSsiLog-6.so
|
||||||
|
%{_libdir}/libXrdThrottle-6.so
|
||||||
|
%{_libdir}/libXrdXrootd-6.so
|
||||||
|
|
||||||
%files server-devel
|
%files server-devel
|
||||||
%{_includedir}/%{name}/XrdAcc
|
%{_includedir}/%{name}/XrdAcc
|
||||||
|
|
@ -579,18 +618,24 @@ fi
|
||||||
|
|
||||||
%files private-devel
|
%files private-devel
|
||||||
%{_includedir}/%{name}/private
|
%{_includedir}/%{name}/private
|
||||||
|
%ifnarch %{ix86}
|
||||||
|
%{_libdir}/libXrdEc.so
|
||||||
|
%endif
|
||||||
%{_libdir}/libXrdSsiLib.so
|
%{_libdir}/libXrdSsiLib.so
|
||||||
%{_libdir}/libXrdSsiShMap.so
|
%{_libdir}/libXrdSsiShMap.so
|
||||||
|
|
||||||
%files client
|
%files client
|
||||||
%{_bindir}/xrdadler32
|
%{_bindir}/xrdadler32
|
||||||
|
%{_bindir}/xrdcks
|
||||||
%{_bindir}/xrdcopy
|
%{_bindir}/xrdcopy
|
||||||
%{_bindir}/xrdcp
|
%{_bindir}/xrdcp
|
||||||
|
%{_bindir}/xrdcrc32c
|
||||||
%{_bindir}/xrdfs
|
%{_bindir}/xrdfs
|
||||||
%{_bindir}/xrdgsiproxy
|
%{_bindir}/xrdgsiproxy
|
||||||
%{_bindir}/xrdgsitest
|
%{_bindir}/xrdgsitest
|
||||||
%{_bindir}/xrdmapc
|
%{_bindir}/xrdmapc
|
||||||
%{_bindir}/xrdpinls
|
%{_bindir}/xrdpinls
|
||||||
|
%{_bindir}/xrdreplay
|
||||||
%{_mandir}/man1/xrdadler32.1*
|
%{_mandir}/man1/xrdadler32.1*
|
||||||
%{_mandir}/man1/xrdcopy.1*
|
%{_mandir}/man1/xrdcopy.1*
|
||||||
%{_mandir}/man1/xrdcp.1*
|
%{_mandir}/man1/xrdcp.1*
|
||||||
|
|
@ -604,52 +649,308 @@ fi
|
||||||
%{_mandir}/man1/xrootdfs.1*
|
%{_mandir}/man1/xrootdfs.1*
|
||||||
|
|
||||||
%files voms
|
%files voms
|
||||||
%{_libdir}/libXrdVoms-5.so
|
%{_libdir}/libXrdVoms-6.so
|
||||||
%{_libdir}/libXrdHttpVOMS-5.so
|
%{_libdir}/libXrdHttpVOMS-6.so
|
||||||
%{_libdir}/libXrdSecgsiVOMS-5.so
|
%{_libdir}/libXrdSecgsiVOMS-6.so
|
||||||
%doc %{_mandir}/man1/libXrdVoms.1*
|
%doc %{_mandir}/man1/libXrdVoms.1*
|
||||||
%doc %{_mandir}/man1/libXrdSecgsiVOMS.1*
|
%doc %{_mandir}/man1/libXrdSecgsiVOMS.1*
|
||||||
|
%doc src/XrdVoms/README.md
|
||||||
|
|
||||||
%files scitokens
|
%files scitokens
|
||||||
%{_libdir}/libXrdAccSciTokens-5.so
|
%{_libdir}/libXrdAccSciTokens-6.so
|
||||||
%doc src/XrdSciTokens/README.md
|
%doc src/XrdSciTokens/README.md
|
||||||
|
|
||||||
%files -n xrdcl-http
|
|
||||||
%{_libdir}/libXrdClHttp-5.so
|
|
||||||
%{_sysconfdir}/xrootd/client.plugins.d/xrdcl-http-plugin.conf
|
|
||||||
%license src/XrdClHttp/LICENSE
|
|
||||||
%doc src/XrdClHttp/README.md
|
|
||||||
|
|
||||||
%if %{ceph}
|
%if %{ceph}
|
||||||
%files ceph
|
%files ceph
|
||||||
%{_libdir}/libXrdCeph-5.so
|
%{_libdir}/libXrdCeph-6.so
|
||||||
%{_libdir}/libXrdCephXattr-5.so
|
%{_libdir}/libXrdCephXattr-6.so
|
||||||
%{_libdir}/libXrdCephPosix.so.*
|
%{_libdir}/libXrdCephPosix.so.*
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
%files -n python3-%{name}
|
||||||
%files -n python2-%{name}
|
%{python3_sitearch}/xrootd-*.*-info
|
||||||
%{python2_sitearch}/xrootd-*.egg-info
|
|
||||||
%{python2_sitearch}/pyxrootd
|
|
||||||
%{python2_sitearch}/XRootD
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files -n python%{python3_pkgversion}-%{name}
|
|
||||||
%{python3_sitearch}/xrootd-*.egg-info
|
|
||||||
%{python3_sitearch}/pyxrootd
|
%{python3_sitearch}/pyxrootd
|
||||||
%{python3_sitearch}/XRootD
|
%{python3_sitearch}/XRootD
|
||||||
|
|
||||||
%if %{?rhel}%{!?rhel:0} == 7
|
|
||||||
%files -n python%{python3_other_pkgversion}-%{name}
|
|
||||||
%{python3_other_sitearch}/xrootd-*.egg-info
|
|
||||||
%{python3_other_sitearch}/pyxrootd
|
|
||||||
%{python3_other_sitearch}/XRootD
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%doc %{_pkgdocdir}
|
%doc %{_pkgdocdir}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 12 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:6.1.1-1
|
||||||
|
- Update to version 6.1.1
|
||||||
|
|
||||||
|
* Wed Jul 22 2026 Python Maint <python-maint@redhat.com> - 1:6.1.0-3
|
||||||
|
- Rebuilt for Python 3.15.0b4 ABI change
|
||||||
|
|
||||||
|
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 23 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:6.1.0-1
|
||||||
|
- Update to version 6.1.0
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Sat Jun 13 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 1:6.0.3-3
|
||||||
|
- Rebuilt for openssl 4.0
|
||||||
|
|
||||||
|
* Thu Jun 04 2026 Python Maint <python-maint@redhat.com> - 1:6.0.3-2
|
||||||
|
- Rebuilt for Python 3.15
|
||||||
|
|
||||||
|
* 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
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:6.0.0-1
|
||||||
|
- Update to version 6.0.0
|
||||||
|
|
||||||
|
* Fri Mar 27 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.9.2-1
|
||||||
|
- Update to version 5.9.2
|
||||||
|
- Drop patches accepted upstream or previously backported
|
||||||
|
|
||||||
|
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.9.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.9.1-1
|
||||||
|
- Update to version 5.9.1
|
||||||
|
|
||||||
|
* Fri Oct 10 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.9.0-1
|
||||||
|
- Update to version 5.9.0
|
||||||
|
|
||||||
|
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 1:5.8.4-4
|
||||||
|
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||||
|
|
||||||
|
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 1:5.8.4-3
|
||||||
|
- Rebuilt for Python 3.14.0rc2 bytecode
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.8.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 13 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.8.4-1
|
||||||
|
- Update to version 5.8.4
|
||||||
|
|
||||||
|
* Fri Jun 06 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.8.3-1
|
||||||
|
- Update to version 5.8.3
|
||||||
|
|
||||||
|
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 1:5.8.2-2
|
||||||
|
- Rebuilt for Python 3.14
|
||||||
|
|
||||||
|
* Sun May 11 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.8.2-1
|
||||||
|
- Update to version 5.8.2
|
||||||
|
- Use reserved uid and gid 194 for the xrootd user
|
||||||
|
- https://pagure.io/packaging-committee/issue/1444
|
||||||
|
- https://src.fedoraproject.org/rpms/setup/pull-request/27
|
||||||
|
|
||||||
|
* Wed Apr 16 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.8.1-1
|
||||||
|
- Update to version 5.8.1
|
||||||
|
|
||||||
|
* Sat Mar 22 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.8.0-1
|
||||||
|
- Update to version 5.8.0
|
||||||
|
|
||||||
|
* Sat Mar 08 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.3-4
|
||||||
|
- Move user/group creation logic to sysusers.d fragment
|
||||||
|
|
||||||
|
* Wed Feb 19 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.3-3
|
||||||
|
- Set HOSTNAME to localhost during testing
|
||||||
|
|
||||||
|
* Sat Feb 01 2025 Björn Esser <besser82@fedoraproject.org> - 1:5.7.3-2
|
||||||
|
- Add explicit BR: libxcrypt-devel
|
||||||
|
|
||||||
|
* Wed Jan 29 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.3-1
|
||||||
|
- Update to version 5.7.3
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.2-4
|
||||||
|
- Use CMAKE_BUILD_TYPE RelWithDebInfo to avoid -Werror in compiler flags
|
||||||
|
|
||||||
|
* Sun Jan 19 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.2-3
|
||||||
|
- Fix compilation errors with GCC 15
|
||||||
|
|
||||||
|
* Sun Dec 08 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.2-2
|
||||||
|
- Fix errors in format strings
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.2-1
|
||||||
|
- Update to version 5.7.2
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Mon Sep 16 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.1-2
|
||||||
|
- Workaround doxygen non-reproducibility - make doc package noarch again
|
||||||
|
- Increase client timeouts for XRootD server tests
|
||||||
|
|
||||||
|
* Wed Sep 04 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.1-1
|
||||||
|
- Update to version 5.7.1
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.7.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 04 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.0-2
|
||||||
|
- Fix compilation error due to hidden overloaded virtual
|
||||||
|
- Make documentation package not noarch due to non-reproducible filenames
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.7.0-1
|
||||||
|
- Update to version 5.7.0
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
- Drop EPEL 7 support from spec file (EOL)
|
||||||
|
|
||||||
|
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 1:5.6.9-3
|
||||||
|
- Rebuilt for Python 3.13
|
||||||
|
|
||||||
|
* Mon Jun 03 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.9-2
|
||||||
|
- Reduce socket path lengths used by tests for rpm 4.20 compatibility
|
||||||
|
- Avoid test failures due to using the same port numbers in different tests
|
||||||
|
|
||||||
|
* Sat Mar 16 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.9-1
|
||||||
|
- Update to version 5.6.9
|
||||||
|
|
||||||
|
* Sat Feb 24 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.8-1
|
||||||
|
- Update to version 5.6.8
|
||||||
|
- Disable tests that require file attributes if the file system doesn't
|
||||||
|
support them
|
||||||
|
|
||||||
|
* Tue Feb 06 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.7-1
|
||||||
|
- Update to version 5.6.7
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.6-1
|
||||||
|
- Update to version 5.6.6
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.5-1
|
||||||
|
- Update to version 5.6.5
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Wed Jan 17 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.4-2
|
||||||
|
- Fix printf null pointer error
|
||||||
|
|
||||||
|
* Mon Dec 11 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.4-1
|
||||||
|
- Update to version 5.6.4
|
||||||
|
- Drop patches accepted upstream or previously backported
|
||||||
|
|
||||||
|
* Tue Dec 05 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.3-3
|
||||||
|
- Avoid /tmp when running some tests
|
||||||
|
- Fail gracefully in case of unsupported extended file attributes
|
||||||
|
- Avoid null bytes in error message strings
|
||||||
|
- Fix include path in XRootDConfig.cmake
|
||||||
|
- Avoid dereferencing unaligned pointers
|
||||||
|
- Support big endian in XrdZip
|
||||||
|
|
||||||
|
* Sun Nov 19 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.3-2
|
||||||
|
- Enable erasure code support (XrdEc)
|
||||||
|
|
||||||
|
* Fri Oct 27 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.3-1
|
||||||
|
- Update to version 5.6.3
|
||||||
|
- Drop patches accepted upstream or previously backported
|
||||||
|
- Enable tests and add check section
|
||||||
|
|
||||||
|
* Mon Sep 18 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.2-2
|
||||||
|
- Backport fix for Authfile parsing regression
|
||||||
|
|
||||||
|
* Fri Sep 15 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.2-1
|
||||||
|
- Update to version 5.6.2
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.6.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 12 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.1-1
|
||||||
|
- Update to version 5.6.1
|
||||||
|
- Add --use-pep517 --no-build-isolation to pip options for Fedora and EPEL 9+
|
||||||
|
|
||||||
|
* Sun Jul 02 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.6.0-1
|
||||||
|
- Update to version 5.6.0
|
||||||
|
- Drop patches (changes implemented upstream)
|
||||||
|
|
||||||
|
* Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 1:5.5.5-3
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Sun May 21 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.5-2
|
||||||
|
- Fix build failure with latest glibc
|
||||||
|
|
||||||
|
* Tue May 09 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.5-1
|
||||||
|
- Update to version 5.5.5
|
||||||
|
|
||||||
|
* Fri Mar 24 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.4-1
|
||||||
|
- Update to version 5.5.4
|
||||||
|
|
||||||
|
* Sat Feb 18 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.3-1
|
||||||
|
- Update to version 5.5.3
|
||||||
|
|
||||||
|
* Thu Feb 09 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.2-1
|
||||||
|
- Update to version 5.5.2
|
||||||
|
- Drop patches accepted upstream or previously backported
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.5.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 17 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.1-2
|
||||||
|
- Add missing include - fixes build failure with gcc 13
|
||||||
|
- Fix build failure due to possible large memory allocation
|
||||||
|
|
||||||
|
* Wed Oct 19 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.1-1
|
||||||
|
- Update to version 5.5.1
|
||||||
|
- Drop doxygen patch accepted upstream
|
||||||
|
- Check all sizes (8, 16, 32, 64) in <atomic> check
|
||||||
|
- Check operator++ in <atomic> check
|
||||||
|
|
||||||
|
* Fri Aug 26 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.5.0-1
|
||||||
|
- Update to version 5.5.0
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
- Address some warnings from Doxygen
|
||||||
|
- Build using devtoolset 7 on EPEL 7
|
||||||
|
|
||||||
|
* Sun Aug 21 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.3-4
|
||||||
|
- Add BR systemd (no longer a dependency of systemd-devel)
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.4.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 1:5.4.3-2
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Fri Jun 10 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.3-1
|
||||||
|
- Update to version 5.4.3
|
||||||
|
- Drop patches accepted upstream or previously backported
|
||||||
|
- Add BR python3-pip and python3-wheel
|
||||||
|
|
||||||
|
* Sat Apr 23 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.2-3
|
||||||
|
- Link with libatomic on some 32-bit architectures
|
||||||
|
- Fix sphinx doc
|
||||||
|
- Backport fixes from upstream git master (OpenSSL 3, Python 3.10)
|
||||||
|
|
||||||
|
* Sat Mar 19 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.2-2
|
||||||
|
- Add BR python3-pip for Fedora 35+
|
||||||
|
|
||||||
|
* Fri Mar 04 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.2-1
|
||||||
|
- Update to version 5.4.2
|
||||||
|
- More OpenSSL 3 fixes
|
||||||
|
|
||||||
|
* Thu Feb 24 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.1-1
|
||||||
|
- Update to version 5.4.1
|
||||||
|
- Drop patches accepted upstream
|
||||||
|
|
||||||
|
* Mon Jan 31 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.0-5
|
||||||
|
- Use openssl 3 compatible code on EPEL 9
|
||||||
|
|
||||||
|
* Mon Jan 24 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.0-4
|
||||||
|
- Fix compiler warnings from gcc 12
|
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.4.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 14 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.0-2
|
||||||
|
- Don't use unimplemented regex functions on EPEL 7.
|
||||||
|
- Add missing include (GNU/Hurd)
|
||||||
|
- Define ENODATA if not defined (kFreeBSD)
|
||||||
|
|
||||||
|
* Fri Dec 10 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.4.0-1
|
||||||
|
- Update to version 5.4.0
|
||||||
|
- Drop patch accepted upstream: 0001-Do-not-hardcode-error-numbers.patch
|
||||||
|
- Fix build failure on platforms where char is unsigned
|
||||||
|
- Fix build failure with regex on EPEL 7
|
||||||
|
|
||||||
|
* Tue Nov 30 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.3.4-1
|
||||||
|
- Update to version 5.3.4
|
||||||
|
|
||||||
* Tue Nov 16 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.3.3-1
|
* Tue Nov 16 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 1:5.3.3-1
|
||||||
- Update to version 5.3.3
|
- Update to version 5.3.3
|
||||||
- Drop patches accepted upstream:
|
- Drop patches accepted upstream:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue