LISTSERV mailing list manager LISTSERV 16.5

Help for XROOTD-DEV Archives


XROOTD-DEV Archives

XROOTD-DEV Archives


XROOTD-DEV@LISTSERV.SLAC.STANFORD.EDU


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

XROOTD-DEV Home

XROOTD-DEV Home

XROOTD-DEV  November 2022

XROOTD-DEV November 2022

Subject:

[xrootd/xrootd] 0a5c36: [CMake] Make switches for server-only options depe...

From:

simonmichal <[log in to unmask]>

Reply-To:

xrootd developers' list for Scalla/xrootd repository and related issues <[log in to unmask]>

Date:

Fri, 11 Nov 2022 02:10:58 -0800

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (244 lines)

  Branch: refs/heads/master
  Home:   https://github.com/xrootd/xrootd
  Commit: 0a5c36b1b0c0dcae6288f43b91ef546a4945d61d
      https://github.com/xrootd/xrootd/commit/0a5c36b1b0c0dcae6288f43b91ef546a4945d61d
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-08 (Tue, 08 Nov 2022)

  Changed paths:
    M cmake/XRootDDefaults.cmake

  Log Message:
  -----------
  [CMake] Make switches for server-only options dependent on XRCL_ONLY=FALSE

Fixes: ff67c2a0
Closes: #1804


  Commit: 4177404bd825cd64fcddb24de707dc9f4d442926
      https://github.com/xrootd/xrootd/commit/4177404bd825cd64fcddb24de707dc9f4d442926
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-08 (Tue, 08 Nov 2022)

  Changed paths:
    M CMakeLists.txt

  Log Message:
  -----------
  [CMake] Drop setting of CMP0054 policy to OLD behavior

This does not seem to be necessary. Eventually CMake will remove
the old behavior, so it's better to switch to the new behavior.
See "cmake --help-policy CMP0054" for information on this policy.


  Commit: 180d08e1515c51ad0b684a74e89b70b3cb5e30a7
      https://github.com/xrootd/xrootd/commit/180d08e1515c51ad0b684a74e89b70b3cb5e30a7
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-08 (Tue, 08 Nov 2022)

  Changed paths:
    R cmake/FindCPPUnit.cmake
    A cmake/FindCppUnit.cmake
    M cmake/FindKerberos5.cmake
    R cmake/FindLibUuid.cmake
    M cmake/FindReadline.cmake
    R cmake/FindSystemd.cmake
    A cmake/Findlibuuid.cmake
    A cmake/Findsystemd.cmake
    M cmake/XRootDFindLibs.cmake

  Log Message:
  -----------
  [CMake] Fix warnings due to package name mismatches in find modules

CMake generates a warning when a find module like Find<package>.cmake
uses something other than <package> (case-sensitive) in the call to
find_package_handle_standard_args.


  Commit: 2083b95d28d268e5e070e193bb21623aad64ba95
      https://github.com/xrootd/xrootd/commit/2083b95d28d268e5e070e193bb21623aad64ba95
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-08 (Tue, 08 Nov 2022)

  Changed paths:
    R cmake/FindOpenSSL.cmake
    M cmake/XRootDFindLibs.cmake

  Log Message:
  -----------
  [CMake] Use upstream FindOpenSSL.cmake

XRootD's FindOpenSSL.cmake fails when OpenSSL is not found with the
following error:

CMake Error at cmake/FindOpenSSL.cmake:15 (file):
  file STRINGS file
  "/tmp/xrootd/xrootd/OPENSSL_INCLUDE_DIR-NOTFOUND/openssl/opensslv.h" cannot
  be read.
Call Stack (most recent call first):
  cmake/XRootDFindLibs.cmake:44 (find_package)
  CMakeLists.txt:26 (include)

CMake Error at cmake/FindOpenSSL.cmake:16 (string):
  string sub-command REGEX, mode REPLACE needs at least 6 arguments total to
  command.
Call Stack (most recent call first):
  cmake/XRootDFindLibs.cmake:44 (find_package)
  CMakeLists.txt:26 (include)

Since FindOpenSSL.cmake is already provided upstream by CMake 3.1, we
can use that instead and drop our custom module.


  Commit: 957a08e13f3d806687875e6a04fc60c7de8ceedc
      https://github.com/xrootd/xrootd/commit/957a08e13f3d806687875e6a04fc60c7de8ceedc
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-08 (Tue, 08 Nov 2022)

  Changed paths:
    M genversion.sh
    M packaging/makesrpm.sh

  Log Message:
  -----------
  Replace usage of deprecated egrep command with grep -E

The egrep command has been deprecated since 2007. Recently
grep started to warn about it, so replace egrep usage with
grep -E. See release notes of grep at the link below for
more information.

https://savannah.gnu.org/forum/forum.php?forum_id=10227


  Commit: 915d91f8629927090637fe7e4027a8fb042b137f
      https://github.com/xrootd/xrootd/commit/915d91f8629927090637fe7e4027a8fb042b137f
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-09 (Wed, 09 Nov 2022)

  Changed paths:
    M .github/workflows/build.yml

  Log Message:
  -----------
  [CI] Skip step to upgrade wheel for Python 2.x

Attempting to upgrade it results in the error below.

  Complete output from command python setup.py egg_info:
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/tmp/pip-build-b24Ztv/wheel/setup.py", line 1
      from __future__ import annotations
  SyntaxError: future feature annotations is not defined


  Commit: 2a8e04e5e55b797773ce6f2be331a4a6c7584dbb
      https://github.com/xrootd/xrootd/commit/2a8e04e5e55b797773ce6f2be331a4a6c7584dbb
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-09 (Wed, 09 Nov 2022)

  Changed paths:
    M .github/workflows/build.yml

  Log Message:
  -----------
  [CI] Explicitly set clang/clang++ as C/C++ compilers for macOS

When not setting CMAKE_{C,CXX}_COMPILER explicitly, the default
ones (cc and c++) are picked up, but are not properly setup to
find headers, which causes build failures of the Python bindings.


  Commit: a70e340816fc2ec6ef0127fe94a3615d2b9156e1
      https://github.com/xrootd/xrootd/commit/a70e340816fc2ec6ef0127fe94a3615d2b9156e1
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-09 (Wed, 09 Nov 2022)

  Changed paths:
    M .github/workflows/build.yml

  Log Message:
  -----------
  [CI] Use CMAKE_PREFIX_PATH to simplify finding openssl 3 on macOS


  Commit: e3d11dc1873a5706d8092732f62bffdf7b98794c
      https://github.com/xrootd/xrootd/commit/e3d11dc1873a5706d8092732f62bffdf7b98794c
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-09 (Wed, 09 Nov 2022)

  Changed paths:
    M .github/workflows/build.yml

  Log Message:
  -----------
  [CI] Perform a local installation of Python bindings for testing on Mac

This is required as by default the installed Python doesn't know about
XRootD which was installed into /usr/local/lib/python3.X. Using a local
installation we can work around it. Note that we cannot set --user in
PIP_OPTIONS as it conflicts with --prefix, which is added by the build
system in bindings/python/CMakeLists.txt.


  Commit: 49d1dd9292ac32798adbcd67a437f3dff4a60af4
      https://github.com/xrootd/xrootd/commit/49d1dd9292ac32798adbcd67a437f3dff4a60af4
  Author: Guilherme Amadio <[log in to unmask]>
  Date:   2022-11-11 (Fri, 11 Nov 2022)

  Changed paths:
    M src/XrdTls/XrdTlsContext.cc

  Log Message:
  -----------
  [XrdTls] Replace "#ifdef HAVE_TLS" with a version-based check

This ensures that the right function is used with both shared and static
libraries, as CMake's check_symbol_exists() doesn't work with static
libraries. The release notes for OpenSSL 1.1.0 mention the deprecation
of the old function and recommends using the new TLS_method(). More
information at https://www.openssl.org/news/cl111.txt.


  Commit: 4cd7be55126c2d4841c4a1f795530d7d5b2dd46a
      https://github.com/xrootd/xrootd/commit/4cd7be55126c2d4841c4a1f795530d7d5b2dd46a
  Author: simonmichal <[log in to unmask]>
  Date:   2022-11-11 (Fri, 11 Nov 2022)

  Changed paths:
    M .github/workflows/build.yml
    M CMakeLists.txt
    R cmake/FindCPPUnit.cmake
    A cmake/FindCppUnit.cmake
    M cmake/FindKerberos5.cmake
    R cmake/FindLibUuid.cmake
    R cmake/FindOpenSSL.cmake
    M cmake/FindReadline.cmake
    R cmake/FindSystemd.cmake
    A cmake/Findlibuuid.cmake
    A cmake/Findsystemd.cmake
    M cmake/XRootDDefaults.cmake
    M cmake/XRootDFindLibs.cmake
    M genversion.sh
    M packaging/makesrpm.sh
    M src/XrdTls/XrdTlsContext.cc

  Log Message:
  -----------
  Merge pull request #1823 from amadio/cmake

CMake build system updates


Compare: https://github.com/xrootd/xrootd/compare/399392cea0ae...4cd7be55126c

########################################################################
Use REPLY-ALL to reply to list

To unsubscribe from the XROOTD-DEV list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=XROOTD-DEV&A=1

Top of Message | Previous Page | Permalink

Advanced Options


Options

Log In

Log In

Get Password

Get Password


Search Archives

Search Archives


Subscribe or Unsubscribe

Subscribe or Unsubscribe


Archives

August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010

ATOM RSS1 RSS2



LISTSERV.SLAC.STANFORD.EDU

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager

Privacy Notice, Security Notice and Terms of Use