public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 977ba7cabc8cfc069148fe68817774cb5eed9b84
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-03-25T01:57:44-04:00
Stats  : +8/-4 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/977ba7cabc8cfc069148fe68817774cb5eed9b84?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 4f8af86..c86e4f9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
 /xeus-0.23.5.tar.gz
 /xeus-0.23.6.tar.gz
 /xeus-0.23.8.tar.gz
+/xeus-0.23.9.tar.gz

diff --git a/sources b/sources
index 2a39751..9fc5d9e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.8.tar.gz) = 2b9571cf6fd89ce13838da357b76706676794c5e6b8ecfb467a030fb357ee96b8e971167ff660767941e9c89a9bc55076715537e92570f0c67f9af3d4729e3a7
+SHA512 (xeus-0.23.9.tar.gz) = fe559fac2671bf432a3f73b77ba023634eb33729e1ff0976c53cb15395315530f4a98b057666bb52cac87d841700b7475246d5ff364859cc3318ff717acc680a

diff --git a/xeus.spec b/xeus.spec
index f740659..1afbf3f 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,11 +1,11 @@
 Name:           xeus
-Version:        0.23.8
+Version:        0.23.9
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
-URL:            https://github.com/QuantStack/xeus
-Source0:        https://github.com/QuantStack/xeus/archive/%{version}/%{name}-%{version}.tar.gz
+URL:            https://github.com/jupyter-xeus/xeus
+Source0:        https://github.com/jupyter-xeus/xeus/archive/%{version}/%{name}-%{version}.tar.gz
 
 # xtl is broken on some arches.
 # https://bugzilla.redhat.com/show_bug.cgi?id=1745840
@@ -76,6 +76,9 @@ ctest -V
 
 
 %changelog
+* Wed Mar 25 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.9-1
+- Update to latest version
+
 * Sat Mar 14 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.8-1
 - Update to latest version
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

            A new commit has been pushed.

            Repo   : rpms/xeus
            Branch : epel10
            Commit : d76d0bbca2ee06af4b88dfeadc2d20d46cac34b4
            Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
            Date   : 2021-07-11T20:32:22-04:00
            Stats  : +105/-3 in 5 file(s)
            URL    : https://src.fedoraproject.org/rpms/xeus/c/d76d0bbca2ee06af4b88dfeadc2d20d46cac34b4?branch=epel10

            Log:
            Update to latest version.

Fix various build issues.

---
diff --git a/.gitignore b/.gitignore
index 4075324..b3186f2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@
 /xeus-0.25.3.tar.gz
 /xeus-1.0.0.tar.gz
 /xeus-1.0.1.tar.gz
+/xeus-1.0.3.tar.gz

diff --git a/0001-Fix-build-with-Sphinx-4.patch b/0001-Fix-build-with-Sphinx-4.patch
new file mode 100644
index 0000000..2b111d1
--- /dev/null
+++ b/0001-Fix-build-with-Sphinx-4.patch
@@ -0,0 +1,40 @@
+From 116e9272965094260e056437ca494fc726ba300a Mon Sep 17 00:00:00 2001
+From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
+Date: Sun, 11 Jul 2021 19:22:19 -0400
+Subject: [PATCH 1/2] Fix build with Sphinx 4.
+
+`add_stylesheet` was deprecated in 1.8 and removed in 4.0 [1]. The
+replacement, `add_css_file` was added in 1.0, which is older than any
+version required by `breathe`.
+
+[1] https://www.sphinx-doc.org/en/master/extdev/deprecated.html?highlight=add_stylesheet
+
+Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
+---
+ docs/source/conf.py | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/docs/source/conf.py b/docs/source/conf.py
+index 58386c6..f67e96e 100644
+--- a/docs/source/conf.py
++++ b/docs/source/conf.py
+@@ -15,8 +15,10 @@ html_theme = "sphinx_rtd_theme"
+ 
+ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
+ 
++
+ def setup(app):
+-    app.add_stylesheet("main_stylesheet.css")
++    app.add_css_file("main_stylesheet.css")
++
+ 
+ extensions = ['breathe']
+ breathe_projects = { 'xeus': '../xml' }
+@@ -35,4 +37,3 @@ highlight_language = 'c++'
+ pygments_style = 'sphinx'
+ todo_include_todos = False
+ htmlhelp_basename = 'xeusdoc'
+-
+-- 
+2.31.1
+

diff --git a/0002-Remove-all-RPATH-settings.patch b/0002-Remove-all-RPATH-settings.patch
new file mode 100644
index 0000000..8138350
--- /dev/null
+++ b/0002-Remove-all-RPATH-settings.patch
@@ -0,0 +1,52 @@
+From d31cf19e37c2e847bef8917fd9cf8ed2fbb27b38 Mon Sep 17 00:00:00 2001
+From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
+Date: Sun, 11 Jul 2021 20:14:15 -0400
+Subject: [PATCH 2/2] Remove all RPATH settings.
+
+If you need to set this, it's an environment-specific thing.
+
+Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
+---
+ CMakeLists.txt | 19 -------------------
+ 1 file changed, 19 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 903dcf9..6b3a26d 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -195,13 +195,6 @@ include(CheckCXXCompilerFlag)
+ 
+ string(TOUPPER "${CMAKE_BUILD_TYPE}" U_CMAKE_BUILD_TYPE)
+ 
+-if (NOT APPLE)
+-    set(CMAKE_SKIP_BUILD_RPATH FALSE)
+-    set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
+-endif ()
+-
+-set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib; ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
+-
+ if (XEUS_STATIC_DEPENDENCIES AND NOT MSVC AND NOT APPLE)
+ 	# Explicitly finds and links with libsodium.a
+ 	# because it is not exported as a dependency by
+@@ -223,18 +216,6 @@ macro(xeus_create_target target_name linkage output_name)
+ 
+     add_library(${target_name} ${linkage_upper} ${XEUS_SOURCES} ${XEUS_HEADERS})
+ 
+-    if (APPLE)
+-        set_target_properties(
+-            ${target_name} PROPERTIES
+-            MACOSX_RPATH ON
+-        )
+-    else ()
+-        set_target_properties(
+-            ${target_name} PROPERTIES
+-            BUILD_WITH_INSTALL_RPATH 1
+-        )
+-    endif ()
+-
+     target_include_directories(
+         ${target_name}
+         PUBLIC $<BUILD_INTERFACE:${XEUS_INCLUDE_DIR}>
+-- 
+2.31.1
+

diff --git a/sources b/sources
index e6c6e72..855b118 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-1.0.1.tar.gz) = 65eab4d5caf0e742acb2374f7be7705ed977c11a5312709112e378afd129c42da0ff738233e7d2144ce26ad723afe15767e20b1e842586707d766163e5bfa9c8
+SHA512 (xeus-1.0.3.tar.gz) = e2a8ad892b60989f75eff161ea1a024a012dd46b39ae85604acf8876593c5e46939233002c2fb7e79d45bdd076635bffdf3ada4ae6ae6c9e1fde8339f1c6bce9

diff --git a/xeus.spec b/xeus.spec
index d9387af..2e6cf54 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,11 +1,15 @@
 Name:           xeus
-Version:        1.0.1
+Version:        1.0.3
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
 URL:            https://github.com/jupyter-xeus/xeus
 Source0:        https://github.com/jupyter-xeus/xeus/archive/%{version}/%{name}-%{version}.tar.gz
+# https://github.com/jupyter-xeus/xeus/pull/280
+Patch0001:      0001-Fix-build-with-Sphinx-4.patch
+# https://github.com/jupyter-xeus/xeus/pull/281
+Patch0002:      0002-Remove-all-RPATH-settings.patch
 
 BuildRequires:  cmake >= 3.8
 BuildRequires:  cmake(cppzmq) >= 4.3.0
@@ -43,7 +47,7 @@ Development files for %{name} library.
 
 
 %build
-%cmake -DXEUS_BUILD_STATIC_LIBS=OFF -DXEUS_DISABLE_ARCH_NATIVE=ON
+%cmake -DXEUS_BUILD_STATIC_LIBS=OFF -DXEUS_DISABLE_ARCH_NATIVE=ON -DXEUS_BUILD_TESTS=ON
 %cmake_build
 
 make -C docs SPHINXBUILD=sphinx-build-3 html
@@ -70,6 +74,11 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Sun Jul 11 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.3-1
+- Update to latest version (#1965198)
+- Fix build with Sphinx 4 (#1977665)
+- Remove unnecessary RPATH directories
+
 * Wed Feb 24 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.1-1
 - Update to latest version (#1929422)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 8a83eb1261edd84976847c2521936be7cfcc404f
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2021-02-24T05:13:55-05:00
Stats  : +7/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/8a83eb1261edd84976847c2521936be7cfcc404f?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 559f8e2..4075324 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@
 /xeus-0.25.1.tar.gz
 /xeus-0.25.3.tar.gz
 /xeus-1.0.0.tar.gz
+/xeus-1.0.1.tar.gz

diff --git a/sources b/sources
index f2446ee..e6c6e72 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-1.0.0.tar.gz) = 345587c42786bae1e2191b33aac8416dcbb35400c2d869da354f5c79697546a585a3a9405d606a0c6386aa3e16d623dd0d0b0edcfc0c03395af91f6c72befc8b
+SHA512 (xeus-1.0.1.tar.gz) = 65eab4d5caf0e742acb2374f7be7705ed977c11a5312709112e378afd129c42da0ff738233e7d2144ce26ad723afe15767e20b1e842586707d766163e5bfa9c8

diff --git a/xeus.spec b/xeus.spec
index 5fc44c0..d9387af 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        1.0.0
+Version:        1.0.1
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -7,7 +7,6 @@ License:        BSD
 URL:            https://github.com/jupyter-xeus/xeus
 Source0:        https://github.com/jupyter-xeus/xeus/archive/%{version}/%{name}-%{version}.tar.gz
 
-BuildRequires: make
 BuildRequires:  cmake >= 3.8
 BuildRequires:  cmake(cppzmq) >= 4.3.0
 BuildRequires:  cmake(nlohmann_json) >= 3.2.0
@@ -16,6 +15,7 @@ BuildRequires:  doxygen
 BuildRequires:  gcc-c++
 BuildRequires:  gtest-devel
 BuildRequires:  libuuid-devel
+BuildRequires:  make
 BuildRequires:  openssl-devel >= 1.0.1
 BuildRequires:  pkgconfig(libzmq) >= 4.2.5
 BuildRequires:  python3dist(breathe)
@@ -70,6 +70,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Wed Feb 24 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.1-1
+- Update to latest version (#1929422)
+
 * Sun Feb 07 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.0-1
 - Update to latest version (#1919068)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 6b46ea4ee1924a8ec0e60b6b6c3b07154a9829de
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2021-02-07T18:29:32-05:00
Stats  : +8/-4 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/6b46ea4ee1924a8ec0e60b6b6c3b07154a9829de?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index e36b795..559f8e2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@
 /xeus-0.25.0.tar.gz
 /xeus-0.25.1.tar.gz
 /xeus-0.25.3.tar.gz
+/xeus-1.0.0.tar.gz

diff --git a/sources b/sources
index ef157df..f2446ee 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.25.3.tar.gz) = 78fd02821f366806abfb02697cbbab0d0c214362d76b6549d19afeee87f2c1d93e871e4b9ba8fef1d96a950ce47b3fbbff3a025825e894915cad0c625195c011
+SHA512 (xeus-1.0.0.tar.gz) = 345587c42786bae1e2191b33aac8416dcbb35400c2d869da354f5c79697546a585a3a9405d606a0c6386aa3e16d623dd0d0b0edcfc0c03395af91f6c72befc8b

diff --git a/xeus.spec b/xeus.spec
index 73f7d87..5fc44c0 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,6 +1,6 @@
 Name:           xeus
-Version:        0.25.3
-Release:        2%{?dist}
+Version:        1.0.0
+Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
@@ -11,7 +11,7 @@ BuildRequires: make
 BuildRequires:  cmake >= 3.8
 BuildRequires:  cmake(cppzmq) >= 4.3.0
 BuildRequires:  cmake(nlohmann_json) >= 3.2.0
-BuildRequires:  cmake(xtl) >= 0.5
+BuildRequires:  cmake(xtl) >= 0.7
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
 BuildRequires:  gtest-devel
@@ -70,6 +70,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Sun Feb 07 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.0-1
+- Update to latest version (#1919068)
+
 * Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.3-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 592df094d83cd72df519aec32691d2c6bf9a6b9c
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-12-12T04:40:19-05:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/592df094d83cd72df519aec32691d2c6bf9a6b9c?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 07bfcee..e36b795 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@
 /xeus-0.24.4.tar.gz
 /xeus-0.25.0.tar.gz
 /xeus-0.25.1.tar.gz
+/xeus-0.25.3.tar.gz

diff --git a/sources b/sources
index 4b7812e..ef157df 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.25.1.tar.gz) = 7724f2b192068d1a6ea95c451cf94ce755845d7991eb02e8136f487f28368fbe12164979d4cdb617f458e28053b0adde697a9822fc2babdb325911c850b3f7a2
+SHA512 (xeus-0.25.3.tar.gz) = 78fd02821f366806abfb02697cbbab0d0c214362d76b6549d19afeee87f2c1d93e871e4b9ba8fef1d96a950ce47b3fbbff3a025825e894915cad0c625195c011

diff --git a/xeus.spec b/xeus.spec
index a738a16..b726a49 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.25.1
+Version:        0.25.3
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -69,6 +69,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Sat Dec 12 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.3-1
+- Update to latest version (#1906253)
+
 * Sat Nov 28 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.1-1
 - Update to latest version (#1900027)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : db3d07b08bb1fff655fe6622c07c2111eb98a212
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-11-28T02:43:36-05:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/db3d07b08bb1fff655fe6622c07c2111eb98a212?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 30fb419..07bfcee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@
 /xeus-0.24.3.tar.gz
 /xeus-0.24.4.tar.gz
 /xeus-0.25.0.tar.gz
+/xeus-0.25.1.tar.gz

diff --git a/sources b/sources
index 4c902e8..4b7812e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.25.0.tar.gz) = 025d9fde54ae17f1a3ef3f1d1b48174eb46608b200dc37882b7c633e410571cabe6fa70d24adafa880e269f86a71bc11e5e0e4f076f3084816d8a0c2ea997367
+SHA512 (xeus-0.25.1.tar.gz) = 7724f2b192068d1a6ea95c451cf94ce755845d7991eb02e8136f487f28368fbe12164979d4cdb617f458e28053b0adde697a9822fc2babdb325911c850b3f7a2

diff --git a/xeus.spec b/xeus.spec
index 42c7904..a738a16 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.25.0
+Version:        0.25.1
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -69,6 +69,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Sat Nov 28 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.1-1
+- Update to latest version (#1900027)
+
 * Thu Nov 19 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.0-1
 - Update to latest version (#1898255)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : c47d50233761587cdf4a672468efdeea2918fb46
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-11-19T01:30:33-05:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/c47d50233761587cdf4a672468efdeea2918fb46?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 85ea91b..30fb419 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@
 /xeus-0.24.2.tar.gz
 /xeus-0.24.3.tar.gz
 /xeus-0.24.4.tar.gz
+/xeus-0.25.0.tar.gz

diff --git a/sources b/sources
index 7f35e4c..4c902e8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.24.4.tar.gz) = 58ea771880ad98d44e8528bfb79a11b675178a786b7e8686394a9c5dc82d2c1abc7f6cf4be226030d7175af97fbc89b5ba373c8028f17e0eb08a03e136b480fb
+SHA512 (xeus-0.25.0.tar.gz) = 025d9fde54ae17f1a3ef3f1d1b48174eb46608b200dc37882b7c633e410571cabe6fa70d24adafa880e269f86a71bc11e5e0e4f076f3084816d8a0c2ea997367

diff --git a/xeus.spec b/xeus.spec
index d32de0f..42c7904 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.24.4
+Version:        0.25.0
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -69,6 +69,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Thu Nov 19 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.0-1
+- Update to latest version (#1898255)
+
 * Mon Nov 09 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.4-1
 - Update to latest version (#1896206)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 6c4287e111c3cc2f66934617a3d6e93466b73db6
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-11-09T22:25:04-05:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/6c4287e111c3cc2f66934617a3d6e93466b73db6?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 80081ab..85ea91b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
 /xeus-0.24.1.tar.gz
 /xeus-0.24.2.tar.gz
 /xeus-0.24.3.tar.gz
+/xeus-0.24.4.tar.gz

diff --git a/sources b/sources
index 8e90b30..7f35e4c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.24.3.tar.gz) = 7da96c405eb9471f189b579e78a522c0aa1cc73a3ce7f901f115f2db5e67d8afb91e4342fdb16b04ce10e6ea38521b23d497a4e5828baf2630117940d8f94daf
+SHA512 (xeus-0.24.4.tar.gz) = 58ea771880ad98d44e8528bfb79a11b675178a786b7e8686394a9c5dc82d2c1abc7f6cf4be226030d7175af97fbc89b5ba373c8028f17e0eb08a03e136b480fb

diff --git a/xeus.spec b/xeus.spec
index cdf695b..d32de0f 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.24.3
+Version:        0.24.4
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -69,6 +69,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Mon Nov 09 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.4-1
+- Update to latest version (#1896206)
+
 * Sun Nov 08 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.3-1
 - Update to latest version (#1895579)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : d5ace9e40c97b2d6a802fe9c52d0de678162fd35
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-11-08T04:03:40-05:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/d5ace9e40c97b2d6a802fe9c52d0de678162fd35?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 3099b68..80081ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,4 @@
 /xeus-0.24.0.tar.gz
 /xeus-0.24.1.tar.gz
 /xeus-0.24.2.tar.gz
+/xeus-0.24.3.tar.gz

diff --git a/sources b/sources
index abc91af..8e90b30 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.24.2.tar.gz) = 565e8d6aef8038958a4a5cdfdf87e6fb14f57545556f95275475d8771633c384e442cb742a1905ecea33dc0751254370a8ec5b7390f703665a95df265d717abf
+SHA512 (xeus-0.24.3.tar.gz) = 7da96c405eb9471f189b579e78a522c0aa1cc73a3ce7f901f115f2db5e67d8afb91e4342fdb16b04ce10e6ea38521b23d497a4e5828baf2630117940d8f94daf

diff --git a/xeus.spec b/xeus.spec
index 3281ffb..cdf695b 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.24.2
+Version:        0.24.3
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -69,6 +69,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Sun Nov 08 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.3-1
+- Update to latest version (#1895579)
+
 * Tue Oct 06 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.2-1
 - Update to latest version (#1884918)
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 8741881598c7cae826555c5add319b1094edd3fd
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-10-06T22:37:07-04:00
Stats  : +7/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/8741881598c7cae826555c5add319b1094edd3fd?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 804cdd2..3099b68 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@
 /xeus-0.23.14.tar.gz
 /xeus-0.24.0.tar.gz
 /xeus-0.24.1.tar.gz
+/xeus-0.24.2.tar.gz

diff --git a/sources b/sources
index 5dabf30..abc91af 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.24.1.tar.gz) = 85985bef9e0feef5d81473c561626d3d5ea658f5718559c454b4008f40ee3bcbac2862e7fb9d5fbcade37edb42681cf9e63b59a11bf3955b05495045c5667173
+SHA512 (xeus-0.24.2.tar.gz) = 565e8d6aef8038958a4a5cdfdf87e6fb14f57545556f95275475d8771633c384e442cb742a1905ecea33dc0751254370a8ec5b7390f703665a95df265d717abf

diff --git a/xeus.spec b/xeus.spec
index e5cd71f..3281ffb 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,6 +1,6 @@
 Name:           xeus
-Version:        0.24.1
-Release:        3%{?dist}
+Version:        0.24.2
+Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
@@ -69,6 +69,9 @@ rm docs/build/html/.buildinfo
 
 
 %changelog
+* Tue Oct 06 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.2-1
+- Update to latest version (#1884918)
+
 * Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-3
 - Second attempt - Rebuilt for
   https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 2d847226c9144fc885ff9b365fed64a2081282f9
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-06-26T23:27:52-04:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/2d847226c9144fc885ff9b365fed64a2081282f9?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 8e46d26..804cdd2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
 /xeus-0.23.9.tar.gz
 /xeus-0.23.14.tar.gz
 /xeus-0.24.0.tar.gz
+/xeus-0.24.1.tar.gz

diff --git a/sources b/sources
index 4040fa5..5dabf30 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.24.0.tar.gz) = af5b82797dcd1057bd3d669f5c35cc0d29bc43d0743236674ed89076f09a6e79ba4b96df9b5252e7a69665f4c2e7b9370aecf07caa397251e97f97df0a4445af
+SHA512 (xeus-0.24.1.tar.gz) = 85985bef9e0feef5d81473c561626d3d5ea658f5718559c454b4008f40ee3bcbac2862e7fb9d5fbcade37edb42681cf9e63b59a11bf3955b05495045c5667173

diff --git a/xeus.spec b/xeus.spec
index 3457a58..2676799 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.24.0
+Version:        0.24.1
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -71,6 +71,9 @@ ctest -V
 
 
 %changelog
+* Fri Jun 26 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.1-1
+- Update to latest version
+
 * Sat Jun 13 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.0-1
 - Update to latest version
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : ac5311daea337a2fe7b2a070b8627cd22cfb73c4
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-06-13T01:39:30-04:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/ac5311daea337a2fe7b2a070b8627cd22cfb73c4?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 4a8234a..8e46d26 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
 /xeus-0.23.8.tar.gz
 /xeus-0.23.9.tar.gz
 /xeus-0.23.14.tar.gz
+/xeus-0.24.0.tar.gz

diff --git a/sources b/sources
index e70296f..4040fa5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.14.tar.gz) = 950411e57c52aee0343b8eb28c0ad9b15be49fb87e64cf62d83b4b711e3c08c8da44ed7ba8980df0a8a9c0ae8b00fc8c681f5caa4bb18dc29ffdf33ab663feaf
+SHA512 (xeus-0.24.0.tar.gz) = af5b82797dcd1057bd3d669f5c35cc0d29bc43d0743236674ed89076f09a6e79ba4b96df9b5252e7a69665f4c2e7b9370aecf07caa397251e97f97df0a4445af

diff --git a/xeus.spec b/xeus.spec
index c3e1b4a..3457a58 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.23.14
+Version:        0.24.0
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -71,6 +71,9 @@ ctest -V
 
 
 %changelog
+* Sat Jun 13 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.0-1
+- Update to latest version
+
 * Mon May 18 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.14-1
 - Update to latest version
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 3937d792dddbe8ecce3c9d19bf471463d8ce3edb
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-05-18T04:05:08-04:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/3937d792dddbe8ecce3c9d19bf471463d8ce3edb?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index c86e4f9..4a8234a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /xeus-0.23.6.tar.gz
 /xeus-0.23.8.tar.gz
 /xeus-0.23.9.tar.gz
+/xeus-0.23.14.tar.gz

diff --git a/sources b/sources
index 9fc5d9e..e70296f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.9.tar.gz) = fe559fac2671bf432a3f73b77ba023634eb33729e1ff0976c53cb15395315530f4a98b057666bb52cac87d841700b7475246d5ff364859cc3318ff717acc680a
+SHA512 (xeus-0.23.14.tar.gz) = 950411e57c52aee0343b8eb28c0ad9b15be49fb87e64cf62d83b4b711e3c08c8da44ed7ba8980df0a8a9c0ae8b00fc8c681f5caa4bb18dc29ffdf33ab663feaf

diff --git a/xeus.spec b/xeus.spec
index 1afbf3f..24732f9 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.23.9
+Version:        0.23.14
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -76,6 +76,9 @@ ctest -V
 
 
 %changelog
+* Mon May 18 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.14-1
+- Update to latest version
+
 * Wed Mar 25 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.9-1
 - Update to latest version
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : ff34109acd443ccc280dcf0b9da7fcce913013db
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-03-14T20:27:34-04:00
Stats  : +7/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/ff34109acd443ccc280dcf0b9da7fcce913013db?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 8beaa1d..4f8af86 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
 /xeus-0.23.3.tar.gz
 /xeus-0.23.5.tar.gz
 /xeus-0.23.6.tar.gz
+/xeus-0.23.8.tar.gz

diff --git a/sources b/sources
index 16b86d8..2a39751 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.6.tar.gz) = fc0fe42dac41faec9de318ccef617cf1bd86ecf581bf72e81f8fdf56db6710aa2ebb8f699b936fd17ba005f5e07777945364c99ffcfdfbf30714d458572f2640
+SHA512 (xeus-0.23.8.tar.gz) = 2b9571cf6fd89ce13838da357b76706676794c5e6b8ecfb467a030fb357ee96b8e971167ff660767941e9c89a9bc55076715537e92570f0c67f9af3d4729e3a7

diff --git a/xeus.spec b/xeus.spec
index 2b3f2f0..f740659 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.23.6
+Version:        0.23.8
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -48,7 +48,7 @@ Development files for %{name} library.
 
 %build
 mkdir build && cd build
-%cmake -DBUILD_STATIC_LIBS=OFF -DDISABLE_ARCH_NATIVE=ON ..
+%cmake -DXEUS_BUILD_STATIC_LIBS=OFF -DXEUS_DISABLE_ARCH_NATIVE=ON ..
 %make_build
 
 make -C ../docs SPHINXBUILD=sphinx-build-3 html BUILDDIR=${PWD}
@@ -76,6 +76,9 @@ ctest -V
 
 
 %changelog
+* Sat Mar 14 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.8-1
+- Update to latest version
+
 * Tue Mar 03 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.6-1
 - Update to latest version
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 852ad70c4da410c7b7dc1e813784721a88079240
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-03-03T02:17:27-05:00
Stats  : +6/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/852ad70c4da410c7b7dc1e813784721a88079240?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index e99933f..8beaa1d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /xeus-0.23.2.tar.gz
 /xeus-0.23.3.tar.gz
 /xeus-0.23.5.tar.gz
+/xeus-0.23.6.tar.gz

diff --git a/sources b/sources
index f64672d..16b86d8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.5.tar.gz) = 529882f1b93f57a7b6d79dbedc1ea09ad4479a7e4332ed2c5d8d355a4298aeb97dce65f8561c6bf86b71fbeb9a9eb1a3bf3e00974e35eaf6e0629b2d07e6ea1e
+SHA512 (xeus-0.23.6.tar.gz) = fc0fe42dac41faec9de318ccef617cf1bd86ecf581bf72e81f8fdf56db6710aa2ebb8f699b936fd17ba005f5e07777945364c99ffcfdfbf30714d458572f2640

diff --git a/xeus.spec b/xeus.spec
index 1462711..2b3f2f0 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,5 +1,5 @@
 Name:           xeus
-Version:        0.23.5
+Version:        0.23.6
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
@@ -76,6 +76,9 @@ ctest -V
 
 
 %changelog
+* Tue Mar 03 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.6-1
+- Update to latest version
+
 * Fri Feb 14 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.5-1
 - Update to latest version
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : a0ee3c53514e2f81a8f39a49b157631bffe45f9d
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-02-14T22:06:49-05:00
Stats  : +7/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/a0ee3c53514e2f81a8f39a49b157631bffe45f9d?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 40eec2a..e99933f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /xeus-0.23.1.tar.gz
 /xeus-0.23.2.tar.gz
 /xeus-0.23.3.tar.gz
+/xeus-0.23.5.tar.gz

diff --git a/sources b/sources
index af2efdd..f64672d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.3.tar.gz) = 9bae84618e1c48251800e4c83f4eaf70956fff6048b8c2d7a1cb3089c071208a86b1705e3d32810ba35b1f07ed4f237946b9fa243a9242a88b557b87df9e716e
+SHA512 (xeus-0.23.5.tar.gz) = 529882f1b93f57a7b6d79dbedc1ea09ad4479a7e4332ed2c5d8d355a4298aeb97dce65f8561c6bf86b71fbeb9a9eb1a3bf3e00974e35eaf6e0629b2d07e6ea1e

diff --git a/xeus.spec b/xeus.spec
index 1ba7ebb..1462711 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,6 +1,6 @@
 Name:           xeus
-Version:        0.23.3
-Release:        2%{?dist}
+Version:        0.23.5
+Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
@@ -76,6 +76,9 @@ ctest -V
 
 
 %changelog
+* Fri Feb 14 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.5-1
+- Update to latest version
+
 * Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.3-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : c46db4e1f09bbc83941b836ccec8c58708c38763
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2020-01-09T04:55:52-05:00
Stats  : +7/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/c46db4e1f09bbc83941b836ccec8c58708c38763?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index d2443a4..40eec2a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /xeus-0.23.1.tar.gz
 /xeus-0.23.2.tar.gz
+/xeus-0.23.3.tar.gz

diff --git a/sources b/sources
index 1724683..af2efdd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.2.tar.gz) = c322503ae6686f79028717cfb5e2355dc8dc5a5395537f76d0d1803d1dd6cf664010b8e59d5c9be140324a6bb74c580857cef3f06010b66c623b253db0a3e7db
+SHA512 (xeus-0.23.3.tar.gz) = 9bae84618e1c48251800e4c83f4eaf70956fff6048b8c2d7a1cb3089c071208a86b1705e3d32810ba35b1f07ed4f237946b9fa243a9242a88b557b87df9e716e

diff --git a/xeus.spec b/xeus.spec
index 31c7182..fa3c41b 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,6 +1,6 @@
 Name:           xeus
-Version:        0.23.2
-Release:        2%{?dist}
+Version:        0.23.3
+Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
@@ -76,6 +76,9 @@ ctest -V
 
 
 %changelog
+* Thu Jan 09 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.3-1
+- Update to latest version
+
 * Tue Sep 24 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.2-2
 - rebuilt
 

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [rpms/xeus] epel10: Update to latest version.
@ 2026-07-11 22:27 Elliott Sales de Andrade
  0 siblings, 0 replies; 18+ messages in thread
From: Elliott Sales de Andrade @ 2026-07-11 22:27 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/xeus
Branch : epel10
Commit : 43ab3d7193e004208fd1196d27c4d893fb1802cc
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date   : 2019-09-23T20:06:12-04:00
Stats  : +6/-9 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/xeus/c/43ab3d7193e004208fd1196d27c4d893fb1802cc?branch=epel10

Log:
Update to latest version.

---
diff --git a/.gitignore b/.gitignore
index 450f093..d2443a4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /xeus-0.23.1.tar.gz
+/xeus-0.23.2.tar.gz

diff --git a/sources b/sources
index 42383e7..1724683 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xeus-0.23.1.tar.gz) = a016f0f76150a3cab5b5fe1f1978983e0a19eb4c9aee0985a55b2b6342ad2c29ca5f7a8b0fb81db578a0e300a8c3bc06c7c57fb84d164bad3d05b40377ad22ed
+SHA512 (xeus-0.23.2.tar.gz) = c322503ae6686f79028717cfb5e2355dc8dc5a5395537f76d0d1803d1dd6cf664010b8e59d5c9be140324a6bb74c580857cef3f06010b66c623b253db0a3e7db

diff --git a/xeus.spec b/xeus.spec
index 234fc8d..7a767b9 100644
--- a/xeus.spec
+++ b/xeus.spec
@@ -1,18 +1,11 @@
 Name:           xeus
-Version:        0.23.1
+Version:        0.23.2
 Release:        1%{?dist}
 Summary:        C++ implementation of the Jupyter kernel protocol
 
 License:        BSD
 URL:            https://github.com/QuantStack/xeus
 Source0:        https://github.com/QuantStack/xeus/archive/%{version}/%{name}-%{version}.tar.gz
-# https://github.com/QuantStack/xeus/issues/182
-# https://github.com/QuantStack/xeus/issues/183
-Patch0001:      https://github.com/QuantStack/xeus/pull/184.patch
-# https://github.com/QuantStack/xeus/pull/187
-Patch0002:      fix-tests-cmake.patch
-# https://github.com/QuantStack/xeus/pull/188
-Patch0003:      0001-Don-t-set-_any_-options-if-DISABLE_ARCH_NATIVE-ON.patch
 
 # xtl is broken on some arches.
 # https://bugzilla.redhat.com/show_bug.cgi?id=1745840
@@ -83,5 +76,8 @@ ctest -V
 
 
 %changelog
+* Mon Sep 23 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.2-1
+- Update to latest version
+
 * Sat Sep 07 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.23.1-1
 - Initial package release

^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2026-07-11 22:27 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-11 22:27 [rpms/xeus] epel10: Update to latest version Elliott Sales de Andrade
  -- strict thread matches above, loose matches on Subject: below --
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade
2026-07-11 22:27 Elliott Sales de Andrade

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox