public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/khal] rawhide: v0.14.0
@ 2026-07-10 1:39 Dick Marinus
0 siblings, 0 replies; only message in thread
From: Dick Marinus @ 2026-07-10 1:39 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/khal
Branch : rawhide
Commit : 2ea3230f4bc13903ccf351301945f78f9bf8d25f
Author : Dick Marinus <dick@mrns.nl>
Date : 2026-07-07T21:24:06+02:00
Stats : +42/-70 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/khal/c/2ea3230f4bc13903ccf351301945f78f9bf8d25f?branch=rawhide
Log:
v0.14.0
---
diff --git a/0001-remove-sphinxfeed.patch b/0001-remove-sphinxfeed.patch
new file mode 100644
index 0000000..072a685
--- /dev/null
+++ b/0001-remove-sphinxfeed.patch
@@ -0,0 +1,38 @@
+From a76a911d4e0cdc9388a465e5dc23a9854cd7244c Mon Sep 17 00:00:00 2001
+From: Dick Marinus <dick@mrns.nl>
+Date: Tue, 7 Jul 2026 21:20:16 +0200
+Subject: [PATCH] remove sphinxfeed
+
+---
+ doc/source/conf.py | 1 -
+ pyproject.toml | 2 --
+ 2 files changed, 3 deletions(-)
+
+diff --git a/doc/source/conf.py b/doc/source/conf.py
+index 3e4bf23..0150b07 100644
+--- a/doc/source/conf.py
++++ b/doc/source/conf.py
+@@ -103,7 +103,6 @@ extensions = [
+ "sphinx.ext.autodoc",
+ "sphinx.ext.intersphinx",
+ "sphinx.ext.todo",
+- "sphinxfeed",
+ ]
+
+ # Add any paths that contain templates here, relative to this directory.
+diff --git a/pyproject.toml b/pyproject.toml
+index 67a1c3e..c4c494f 100644
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -48,8 +48,6 @@ test = [
+ ]
+ docs = [
+ "sphinx!=1.6.1",
+- "sphinxfeed-lsaffre",
+- "sphinx-rtd-theme",
+ ]
+
+ # install all optional dependencies
+--
+2.55.0
+
diff --git a/khal-0.13.0-reduce-setuptools-req.patch b/khal-0.13.0-reduce-setuptools-req.patch
deleted file mode 100644
index 60f545f..0000000
--- a/khal-0.13.0-reduce-setuptools-req.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -u -Nr -U5 khal-0.13.0/pyproject.toml khal-0.13.0.reduce-setuptools-req/pyproject.toml
---- khal-0.13.0/pyproject.toml 2025-04-15 05:18:21.000000000 -0400
-+++ khal-0.13.0.reduce-setuptools-req/pyproject.toml 2025-07-14 23:29:24.000228441 -0400
-@@ -64,11 +64,11 @@
- [project.scripts]
- khal = "khal.cli:main_khal"
- ikhal = "khal.cli:main_ikhal"
-
- [build-system]
--requires = ["setuptools>=77", "setuptools_scm>=8"]
-+requires = ["setuptools>=73", "setuptools_scm>=8"]
- build-backend = "setuptools.build_meta"
-
- [tool.setuptools.packages.find]
- include = ["khal*"]
-
diff --git a/khal-0.13.0-support-py3.14.patch b/khal-0.13.0-support-py3.14.patch
deleted file mode 100644
index dbc7280..0000000
--- a/khal-0.13.0-support-py3.14.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From ea11f8615ffd367603fb180db6cd1361d06dbaca Mon Sep 17 00:00:00 2001
-From: Ben Boeckel <mathstuf@gmail.com>
-Date: Wed, 9 Jul 2025 21:34:23 -0400
-Subject: [PATCH 2/2] python: support Python 3.14
-
-Fedora Rawhide has it. CI doesn't test it because Github doesn't have
-3.14 Python setup yet.
----
- CHANGELOG.rst | 1 +
- pyproject.toml | 3 ++-
- tox.ini | 1 +
- 3 files changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index 46434d19b..2a39b7e40 100644
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -20,10 +20,11 @@ classifiers = [
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- "Programming Language :: Python :: 3.13",
-+ "Programming Language :: Python :: 3.14",
- "Topic :: Communications",
- "Topic :: Utilities",
- ]
--requires-python = ">=3.9,<3.14"
-+requires-python = ">=3.9,<3.15"
- dependencies = [
- "click>=3.2",
- "click_log>=0.2.0",
-diff --git a/tox.ini b/tox.ini
-index bc48d85f5..797a3317a 100644
---- a/tox.ini
-+++ b/tox.ini
-@@ -22,6 +22,7 @@ python =
- 3.11: py311
- 3.12: py312
- 3.13: py313
-+ 3.14: py314
-
- [testenv:docs]
- allowlist_externals = make
diff --git a/khal.spec b/khal.spec
index 907614d..e58c8a6 100644
--- a/khal.spec
+++ b/khal.spec
@@ -3,7 +3,7 @@
%bcond_with tests
Name: khal
-Version: 0.13.0
+Version: 0.14.0
Release: %autorelease
Summary: CLI calendar application
@@ -12,14 +12,8 @@ URL: https://github.com/pimutils/%{name}
Source: https://files.pythonhosted.org/packages/source/k/%{name}/%{name}-%{version}.tar.gz
# In theory documentation requires sphinxcontrib.newsfeed to generate
-# a blog of the changelog. We only need the manpage. We also fix a Makefile error
-# which happens when using .tar.gz
-Patch: khal-0.8.2-sphinx-docfix.patch
-# Support Python 3.14.
-# https://github.com/pimutils/khal/pull/1417
-Patch: khal-0.13.0-support-py3.14.patch
-# Reduce setuptools requirement. Fedora 42 lacks setuptools 77+.
-Patch: khal-0.13.0-reduce-setuptools-req.patch
+# a blog of the changelog. We only need the manpage.
+Patch: 0001-remove-sphinxfeed.patch
BuildArch: noarch
BuildRequires: make
diff --git a/sources b/sources
index fdface2..e32d824 100644
--- a/sources
+++ b/sources
@@ -1,3 +1 @@
-SHA512 (khal-0.11.2.tar.gz) = 378a81c9f9a21a4af77ccdc5eabbcb62d109bcf5f2e2d3407c6fb504e15efd7dde545428153673cfeb46f60d9e9921efcad6805db2944884f124053e7922ab45
-SHA512 (khal-0.11.3.tar.gz) = 1f7f82e04ad913df9e2e4bd315a70b9832b1af3f6d2db794018c780645f5bdb6df39efb45a36b38e3c1327932a1cb91d4c735f578b29a9326ef0f163fecd7bba
-SHA512 (khal-0.13.0.tar.gz) = 728240af85a16a37b462457e22b0f19dc980ba700d89c64a1ce3d34eae04adaaf941a080a10fc78fb2da4d514a067cef24860af9a215a1ffc54aaf9c06e57649
+SHA512 (khal-0.14.0.tar.gz) = 3a16b140c068e48359a9f29623abd4b645ef5cc5d794d39a6c82ee95fca456e1946ea419c28d3734c9fc2171a09d307ff651666d51a4969ceee0e68ee24b0757
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-10 1:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-10 1:39 [rpms/khal] rawhide: v0.14.0 Dick Marinus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox