From 1ec95c9d33237698102cd4f83e4f5a6d88df9058 Mon Sep 17 00:00:00 2001 From: desert-sailor Date: Fri, 11 Jul 2025 18:36:20 +0800 Subject: [PATCH] Fix package file missing --- python-ablog.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/python-ablog.spec b/python-ablog.spec index 5884001..89b8c41 100644 --- a/python-ablog.spec +++ b/python-ablog.spec @@ -1,6 +1,6 @@ Name: python-ablog Version: 0.11.12 -Release: 1 +Release: 2 Summary: A Sphinx extension that converts any documentation or personal website project into a full-fledged blog. License: MIT @@ -40,6 +40,9 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=%{version} %install %pyproject_install +cp -p -r src/ablog/stylesheets %{buildroot}%{python3_sitelib}/ablog/stylesheets +cp -p -r src/ablog/templates %{buildroot}%{python3_sitelib}/ablog/templates +cp -p -r src/ablog/locales %{buildroot}%{python3_sitelib}/ablog/locales %check # skip test_not_safe_for_parallel_read for ci noweb @@ -55,6 +58,9 @@ k="${k-}${k+ and }not feed" %{_bindir}/ablog %changelog +* Fri Jul 11 2025 Dongxing Wang - 0.11.12-2 +- Fix package file missing + * Fri May 23 2025 Dongxing Wang - 0.11.12-1 - Update package to version 0.11.12 Improve ablog-configuration-options.rst -- Gitee