public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/xtl] epel10: Update to latest version.
Date: Sat, 11 Jul 2026 22:45:26 GMT	[thread overview]
Message-ID: <178380992619.1.12400677035571907481.rpms-xtl-a5366b553e0a@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/xtl
Branch : epel10
Commit : a5366b553e0a4860244e9456d78405f3ba714538
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2018-08-14T20:27:08-04:00
Stats  : +50/-76 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/xtl/c/a5366b553e0a4860244e9456d78405f3ba714538?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 2fbc78b..3966f97 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /xtl-0.4.4.tar.gz
 /xtl-0.4.7.tar.gz
 /xtl-0.4.13.tar.gz
+/xtl-0.4.14.tar.gz

diff --git a/0001-Fix-complex-test.patch b/0001-Fix-complex-test.patch
new file mode 100644
index 0000000..759501f
--- /dev/null
+++ b/0001-Fix-complex-test.patch
@@ -0,0 +1,43 @@
+From bb3fdf2fb8468ffc1e256491b7bbd029c4880978 Mon Sep 17 00:00:00 2001
+From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
+Date: Wed, 8 Aug 2018 00:03:32 -0400
+Subject: [PATCH] Fix complex test.
+
+Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
+---
+ test/test_xcomplex.cpp | 17 +++++++++++++----
+ 1 file changed, 13 insertions(+), 4 deletions(-)
+
+diff --git a/test/test_xcomplex.cpp b/test/test_xcomplex.cpp
+index d238f33..a8a96c9 100644
+--- a/test/test_xcomplex.cpp
++++ b/test/test_xcomplex.cpp
+@@ -253,12 +253,21 @@ namespace xtl
+     TEST(xcomplex, power)
+     {
+         complex_type c(1., 2.);
++        complex_type r, sr;
+         std::complex<double> sc(c);
+         double d = 1.5;
+-        EXPECT_EQ(pow(c, c), complex_type(std::pow(sc, sc)));
+-        EXPECT_EQ(pow(c, d), complex_type(std::pow(sc, d)));
+-        EXPECT_EQ(pow(d, c), complex_type(std::pow(d, sc)));
+-        EXPECT_EQ(sqrt(c), complex_type(std::sqrt(sc)));
++#define EXPECT_COMPLEX_EQ(a, b) \
++        do { \
++                r = a; \
++                sr = b; \
++                EXPECT_DOUBLE_EQ(r.real(), sr.real()); \
++                EXPECT_DOUBLE_EQ(r.imag(), sr.imag()); \
++        } while (0)
++        EXPECT_COMPLEX_EQ(pow(c, c), complex_type(std::pow(sc, sc)));
++        EXPECT_COMPLEX_EQ(pow(c, d), complex_type(std::pow(sc, d)));
++        EXPECT_COMPLEX_EQ(pow(d, c), complex_type(std::pow(d, sc)));
++        EXPECT_COMPLEX_EQ(sqrt(c), complex_type(std::sqrt(sc)));
++#undef EXPECT_COMPLEX_EQ
+     }
+ 
+     TEST(xcomplex, trigonometric)
+-- 
+2.17.1
+

diff --git a/0001-Remove-march-native-flag.patch b/0001-Remove-march-native-flag.patch
deleted file mode 100644
index 3c09525..0000000
--- a/0001-Remove-march-native-flag.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 3fa975ff766523ccc656f8f8104994ac455c9f27 Mon Sep 17 00:00:00 2001
-From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
-Date: Tue, 20 Mar 2018 05:15:08 -0400
-Subject: [PATCH 1/2] Remove march=native flag.
-
-Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
----
- test/CMakeLists.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
-index 6e8b081..eddec87 100644
---- a/test/CMakeLists.txt
-+++ b/test/CMakeLists.txt
-@@ -23,8 +23,8 @@ include(CheckCXXCompilerFlag)
- string(TOUPPER "${CMAKE_BUILD_TYPE}" U_CMAKE_BUILD_TYPE)
- 
- if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES "Intel")
--    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wunused-parameter -Wextra -Wreorder -Wconversion -Wsign-conversion")
--    #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wunused-parameter -Wextra -Wreorder -Wconversion")
-+    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wunused-parameter -Wextra -Wreorder -Wconversion -Wsign-conversion")
-+    #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wunused-parameter -Wextra -Wreorder -Wconversion")
-     CHECK_CXX_COMPILER_FLAG("-std=c++14" HAS_CPP14_FLAG)
- 
-     if (HAS_CPP14_FLAG)
--- 
-2.17.1
-

diff --git a/0002-Fix-complex-test.patch b/0002-Fix-complex-test.patch
deleted file mode 100644
index f26b3f6..0000000
--- a/0002-Fix-complex-test.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 2dd7b359a17669f10203cd6b6b588780d46c6907 Mon Sep 17 00:00:00 2001
-From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
-Date: Wed, 8 Aug 2018 00:03:32 -0400
-Subject: [PATCH 2/2] Fix complex test.
-
-Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
----
- test/test_xcomplex.cpp | 17 +++++++++++++----
- 1 file changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/test/test_xcomplex.cpp b/test/test_xcomplex.cpp
-index d238f33..a8a96c9 100644
---- a/test/test_xcomplex.cpp
-+++ b/test/test_xcomplex.cpp
-@@ -253,12 +253,21 @@ namespace xtl
-     TEST(xcomplex, power)
-     {
-         complex_type c(1., 2.);
-+        complex_type r, sr;
-         std::complex<double> sc(c);
-         double d = 1.5;
--        EXPECT_EQ(pow(c, c), complex_type(std::pow(sc, sc)));
--        EXPECT_EQ(pow(c, d), complex_type(std::pow(sc, d)));
--        EXPECT_EQ(pow(d, c), complex_type(std::pow(d, sc)));
--        EXPECT_EQ(sqrt(c), complex_type(std::sqrt(sc)));
-+#define EXPECT_COMPLEX_EQ(a, b) \
-+        do { \
-+                r = a; \
-+                sr = b; \
-+                EXPECT_DOUBLE_EQ(r.real(), sr.real()); \
-+                EXPECT_DOUBLE_EQ(r.imag(), sr.imag()); \
-+        } while (0)
-+        EXPECT_COMPLEX_EQ(pow(c, c), complex_type(std::pow(sc, sc)));
-+        EXPECT_COMPLEX_EQ(pow(c, d), complex_type(std::pow(sc, d)));
-+        EXPECT_COMPLEX_EQ(pow(d, c), complex_type(std::pow(d, sc)));
-+        EXPECT_COMPLEX_EQ(sqrt(c), complex_type(std::sqrt(sc)));
-+#undef EXPECT_COMPLEX_EQ
-     }
- 
-     TEST(xcomplex, trigonometric)
--- 
-2.17.1
-

diff --git a/sources b/sources
index d72e355..6093444 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xtl-0.4.13.tar.gz) = 0bb041f34cc85a4fa2671fc82cfa31b504db9769d477e149d3a77cc2307609c086f88451106326a3a5a40ab9ba93eef450902d917548edb364c5be77288df7fa
+SHA512 (xtl-0.4.14.tar.gz) = 33a012240a83d9ab53316e3287983fe03eeebf44372008a59b8500df7cb1dcb26d9c34466dc8c3767029661aa7d3a8f1cfc9df3eedc2a17268985b0e2a1dff87

diff --git a/xtl.spec b/xtl.spec
index 00627b0..6a00cd1 100644
--- a/xtl.spec
+++ b/xtl.spec
@@ -2,16 +2,14 @@
 %global debug_package %{nil}
 
 Name:           xtl
-Version:        0.4.13
+Version:        0.4.14
 Release:        1%{?dist}
 License:        BSD
 Summary:        QuantStack tools library
 Url:            https://github.com/QuantStack/xtl
 Source0:        https://github.com/QuantStack/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
-# Just used in testing, and it breaks on some arches.
-Patch0001:      0001-Remove-march-native-flag.patch
 # https://github.com/QuantStack/xtl/issues/97
-Patch0002:      0002-Fix-complex-test.patch
+Patch0001:      0001-Fix-complex-test.patch
 
 BuildRequires:  binutils
 BuildRequires:  cmake
@@ -82,6 +80,9 @@ make xtest
 
 
 %changelog
+* Tue Aug 14 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.4.14-1
+- Update to latest version
+
 * Tue Aug 07 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.4.13-1
 - Update to latest version
 

             reply	other threads:[~2026-07-11 22:45 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-11 22:45 Elliott Sales de Andrade [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-07-11 22:45 [rpms/xtl] epel10: Update to latest version sergesanspaille
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade
2026-07-11 22:45 Elliott Sales de Andrade

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=178380992619.1.12400677035571907481.rpms-xtl-a5366b553e0a@fedoraproject.org \
    --to=quantum.analyst@gmail.com \
    --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