public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/clustershell] epel9: Update to 1.10.1
@ 2026-07-16 22:54 Stephane Thiell
  0 siblings, 0 replies; only message in thread
From: Stephane Thiell @ 2026-07-16 22:54 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/clustershell
Branch : epel9
Commit : 81d232c2deccac1ef747ed70baa7a08158cab861
Author : Stephane Thiell <stephane@thiell.com>
Date   : 2026-07-16T22:53:42+00:00
Stats  : +37/-10 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/clustershell/c/81d232c2deccac1ef747ed70baa7a08158cab861?branch=epel9

Log:
Update to 1.10.1

---
diff --git a/.gitignore b/.gitignore
index 4a37fbf..e079031 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,28 @@
+/clustershell-1.3.2.tar.gz
+/clustershell-1.3.3.tar.gz
+/clustershell-1.4.tar.gz
+/clustershell-1.4.1.tar.gz
+/clustershell-1.4.2.tar.gz
+/clustershell-1.4.3.tar.gz
+/clustershell-1.5.tar.gz
+/clustershell-1.5.1.tar.gz
+/clustershell-1.6.tar.gz
+/clustershell-1.7.tar.gz
+/clustershell-1.7.1.tar.gz
+/clustershell-1.7.2.tar.gz
+/clustershell-1.7.3.tar.gz
+/ClusterShell-1.7.81.tar.gz
+/ClusterShell-1.7.82.tar.gz
+/ClusterShell-1.7.91.tar.gz
+/ClusterShell-1.8.tar.gz
+/ClusterShell-1.8.1.tar.gz
+/ClusterShell-1.8.2.tar.gz
+/ClusterShell-1.8.3.tar.gz
 /ClusterShell-1.8.4.tar.gz
 /ClusterShell-1.9.tar.gz
 /ClusterShell-1.9.1.tar.gz
 /ClusterShell-1.9.2.tar.gz
 /ClusterShell-1.9.3.tar.gz
+/ClusterShell-1.9.3.pypi.tar.gz
 /clustershell-1.10.tar.gz
+/clustershell-1.10.1.tar.gz

diff --git a/clustershell.spec b/clustershell.spec
index 9c98a61..f5173d8 100644
--- a/clustershell.spec
+++ b/clustershell.spec
@@ -1,14 +1,12 @@
 %{!?python3_pkgversion: %global python3_pkgversion 3}
 %global python3_pkgprefix python%{python3_pkgversion}
 
-%global srcname ClusterShell
-
 Name:           clustershell
-Version:        1.10
+Version:        1.10.1
 Release:        1%{?dist}
 Summary:        Python framework for efficient cluster administration
 
-License:        LGPLv2+
+License:        LGPL-2.1-or-later
 URL:            https://clustershell.github.io/clustershell/
 Source0:        https://files.pythonhosted.org/packages/source/c/clustershell/clustershell-%{version}.tar.gz
 BuildArch:      noarch
@@ -47,7 +45,9 @@ ClusterShell Python 3 module and related command line tools.
 %{__python3} setup.py install -O1 --skip-build --root %{buildroot}
 
 # move config dir away from default setuptools /usr prefix (if rpm-building as user)
-[ -d %{buildroot}/usr/etc ] && mv %{buildroot}/usr/etc %{buildroot}/%{_sysconfdir}
+if [ -d %{buildroot}/usr/etc ]; then
+    mv %{buildroot}/usr/etc %{buildroot}/%{_sysconfdir}
+fi
 
 # man pages
 install -d %{buildroot}/%{_mandir}/{man1,man5}
@@ -76,17 +76,17 @@ popd
 # Unversioned python3 tools
 
 %files -n %{python3_pkgprefix}-%{name}
-%defattr(-,root,root,-)
+%license COPYING.LGPLv2.1
 %{_bindir}/clubak
 %{_bindir}/cluset
 %{_bindir}/clush
 %{_bindir}/nodeset
 %{python3_sitelib}/ClusterShell/
-%{python3_sitelib}/ClusterShell-*-py?.?.egg-info
+%{python3_sitelib}/ClusterShell-*-py?.*.egg-info
 
 %files
-%defattr(-,root,root,-)
-%doc ChangeLog COPYING.LGPLv2.1 README.md
+%license COPYING.LGPLv2.1
+%doc ChangeLog README.md
 %doc doc/examples
 %doc doc/sphinx
 %{_mandir}/man1/clubak.1*
@@ -118,6 +118,11 @@ popd
 %{bash_completions_dir}/nodeset
 
 %changelog
+* Thu Jul 16 2026 Stephane Thiell <stephane@thiell.com> - 1.10.1-1
+- Update to 1.10.1
+- add license file to the python3 subpackage
+- migrated to SPDX license
+
 * Sat Jul 04 2026 Stephane Thiell <sthiell@stanford.edu> - 1.10-1
 - Update to 1.10
 - Update project URL to https://clustershell.github.io/clustershell/

diff --git a/sources b/sources
index 5914445..cb7d151 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (clustershell-1.10.tar.gz) = 564a89345ecaa4a1c942f98188b6fbbd6342c81867d3804375f31758ed9b5e38e8e32f677c904dd95008759e4ee1ad37d8afe6c472f5f3eca5f50131698786ac
+SHA512 (clustershell-1.10.1.tar.gz) = 779f939be67bdf6462200c66998eed3a54f165d27f6948cd864d88e5db8879ff305fc7c2bc47d9ac644f0f60255565e1ee3835a7b5e39c8c6629e6b95dea2d85

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-16 22:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-16 22:54 [rpms/clustershell] epel9: Update to 1.10.1 Stephane Thiell

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