public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/kig] epel10: 25.08.0
@ 2026-08-04 19:45 Steve Cossette
0 siblings, 0 replies; only message in thread
From: Steve Cossette @ 2026-08-04 19:45 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/kig
Branch : epel10
Commit : 6cd0b13fe17447539e2800261ab786ce13ea7b0c
Author : Steve Cossette <farchord@gmail.com>
Date : 2025-08-09T13:31:48-04:00
Stats : +6/-58 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/kig/c/6cd0b13fe17447539e2800261ab786ce13ea7b0c?branch=epel10
Log:
25.08.0
---
diff --git a/.gitignore b/.gitignore
index 7275570..3f1279b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -90,3 +90,4 @@
/kig-25.04.3.tar.xz
/kig-25.07.80.tar.xz
/kig-25.07.90.tar.xz
+/kig-25.08.0.tar.xz
diff --git a/6889b48a624b3fea4d0582efc032115a91ef0979.patch b/6889b48a624b3fea4d0582efc032115a91ef0979.patch
deleted file mode 100644
index f3e7bbb..0000000
--- a/6889b48a624b3fea4d0582efc032115a91ef0979.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 6889b48a624b3fea4d0582efc032115a91ef0979 Mon Sep 17 00:00:00 2001
-From: Steve Cossette <farchord@gmail.com>
-Date: Fri, 25 Jul 2025 15:04:15 -0400
-Subject: [PATCH] Fix for python-based kig math formulas
-
----
- CMakeLists.txt | 3 +++
- scripting/python_scripter.cc | 7 +++++++
- 2 files changed, 10 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index d05dae46..a884bf68 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -70,6 +70,9 @@ add_subdirectory( pykig )
- if(BoostPython_FOUND)
- add_subdirectory( scripting )
- add_definitions(-DKIG_ENABLE_PYTHON_SCRIPTING)
-+ get_filename_component(PYTHON_LIBRARY_REALPATH "${PYTHON_LIBRARY}" REALPATH)
-+ get_filename_component(LIB_PYTHON ${PYTHON_LIBRARY_REALPATH} NAME)
-+ add_definitions(-DLIB_PYTHON="${LIB_PYTHON}")
- endif()
-
- set_package_properties(
-diff --git a/scripting/python_scripter.cc b/scripting/python_scripter.cc
-index 35c4dc4d..d105fb41 100644
---- a/scripting/python_scripter.cc
-+++ b/scripting/python_scripter.cc
-@@ -10,6 +10,8 @@
- #include "python_scripter.h"
- #include <Python.h>
-
-+#include <QLibrary>
-+
- #include <iostream>
- #include <string>
-
-@@ -309,6 +311,11 @@ PythonInitializer::PythonInitializer()
- {
- // tell the python interpreter about our API..
-
-+ QLibrary *pythonLib = new QLibrary();
-+ pythonLib->setLoadHints(QLibrary::ExportExternalSymbolsHint);
-+ pythonLib->setFileName(LIB_PYTHON);
-+ pythonLib->load();
-+
- PyImport_AppendInittab("kig", PyInit_kig);
-
- Py_Initialize();
---
-GitLab
-
diff --git a/kig.spec b/kig.spec
index 399ccdd..18c7b61 100644
--- a/kig.spec
+++ b/kig.spec
@@ -3,7 +3,7 @@
Name: kig
Summary: Interactive Geometry
-Version: 25.07.90
+Version: 25.08.0
Release: 1%{?dist}
License: BSD-3-Clause AND GFDL-1.2-or-later AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.1-or-later
@@ -12,10 +12,6 @@ URL: https://invent.kde.org/education/%{name}
Source0: http://download.kde.org/%{stable_kf5}/release-service/%{version}/src/%{name}-%{version}.tar.xz
## upstreamable patches
-# https://bugzilla.redhat.com/show_bug.cgi?id=1238113
-# https://bugs.kde.org/show_bug.cgi?id=335965#c23
-# https://git.reviewboard.kde.org/r/126549/
-Patch1: 6889b48a624b3fea4d0582efc032115a91ef0979.patch
## upstream patches
@@ -101,6 +97,9 @@ desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.%{name}.d
%changelog
+* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
+- 25.08.0
+
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
- 25.07.90
diff --git a/sources b/sources
index c3e4c52..56c0f1b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (kig-25.07.90.tar.xz) = 576f73b03e8c65978abe63a8e319f20e18e4084df275f2203044acc65c31fc8070645b2ac18377b8ca0e2aaa625a064fedc349911de854e4a811125902819c32
+SHA512 (kig-25.08.0.tar.xz) = 669fa11aacb9fb5adf5a9bb78cbbe6cab2a8b7ca8ffccb9cd182cb1b5c36b3f918b5e7d4606dc9c61f391fb75f397903caf73eeccf5718239a3a7a7cf9c44425
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-04 19:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-04 19:45 [rpms/kig] epel10: 25.08.0 Steve Cossette
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox