From 01ef7f25bd9d531292e9d06a0fb89d184b801034 Mon Sep 17 00:00:00 2001 From: emaryn <197520219+emaryn@users.noreply.github.com> Date: Sat, 21 Jun 2025 16:01:49 +0000 Subject: [PATCH] xtensor: 0.25.0 -> 0.26.0 --- ...001-Fix-clang-build-errors-on-darwin.patch | 66 ------------------- pkgs/by-name/xt/xtensor/package.nix | 11 ++-- 2 files changed, 4 insertions(+), 73 deletions(-) delete mode 100644 pkgs/by-name/xt/xtensor/0001-Fix-clang-build-errors-on-darwin.patch diff --git a/pkgs/by-name/xt/xtensor/0001-Fix-clang-build-errors-on-darwin.patch b/pkgs/by-name/xt/xtensor/0001-Fix-clang-build-errors-on-darwin.patch deleted file mode 100644 index 3636d2bd1431..000000000000 --- a/pkgs/by-name/xt/xtensor/0001-Fix-clang-build-errors-on-darwin.patch +++ /dev/null @@ -1,66 +0,0 @@ -From 475bedb15252a3732683f3a62c45cc3f1abbab5c Mon Sep 17 00:00:00 2001 -From: Mykola Vankovych -Date: Tue, 14 Jan 2025 16:48:47 +0100 -Subject: [PATCH] Added fixes for building with clang 19 (more strict template - matching rules) - ---- - include/xtensor/xexpression_traits.hpp | 7 +++---- - include/xtensor/xstorage.hpp | 4 ++-- - include/xtensor/xutils.hpp | 3 ++- - 3 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/include/xtensor/xexpression_traits.hpp b/include/xtensor/xexpression_traits.hpp -index 205de67a5..2f84ae234 100644 ---- a/include/xtensor/xexpression_traits.hpp -+++ b/include/xtensor/xexpression_traits.hpp -@@ -103,16 +103,15 @@ namespace xt - using type = xarray; - }; - --#if defined(__GNUC__) && (__GNUC__ > 6) --#if __cplusplus == 201703L -+// Workaround for rebind_container problems when C++17 feature is enabled -+#ifdef __cpp_template_template_args - template