Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2026-08-26 19:52:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/crmsh (Old)
 and      /work/SRC/openSUSE:Factory/.crmsh.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "crmsh"

Wed Aug 26 19:52:16 2026 rev:419 rq:1373720 version:5.1.0+20260826.a973bf9a

Changes:
--------
--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes      2026-08-14 
22:09:19.241055265 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new.1258/crmsh.changes    2026-08-26 
19:53:00.799236925 +0200
@@ -1,0 +2,41 @@
+Wed Aug 26 04:34:08 UTC 2026 - [email protected]
+
+- Update to version 5.1.0+20260826.a973bf9a:
+  * Chore: github-actions: automate building CI container
+  * Dev: build: make docdir configurable
+  * Dev: build: replace version.in with crmsh/build_config.py.in
+  * Dev: build: simplify config variables and options
+  * Dev: build: Migrate build system from Autotools and setuptools to Meson
+
+-------------------------------------------------------------------
+Tue Aug 25 10:29:40 UTC 2026 - [email protected]
+
+- Update to version 5.1.0+20260825.c11725f1:
+  * Chore: Changelog: Update ChangeLog for release 5.1.0
+
+-------------------------------------------------------------------
+Tue Aug 25 06:24:34 UTC 2026 - [email protected]
+
+- Update to version 5.1.0+20260825.538cfc25:
+  * Fix: ui_sbd: Resolve SBD device aliases on removal
+
+-------------------------------------------------------------------
+Thu Aug 20 11:43:22 UTC 2026 - [email protected]
+
+- Update to version 5.1.0+20260820.18176afc:
+  * Dev: workflows: Add timeout for general_check
+
+-------------------------------------------------------------------
+Wed Aug 19 12:50:56 UTC 2026 - [email protected]
+
+- Update to version 5.1.0+20260819.09544e8a:
+  * Dev: crash_test: Prefer nft for split-brain blocking
+
+-------------------------------------------------------------------
+Wed Aug 19 04:25:06 UTC 2026 - [email protected]
+
+- Update to version 5.1.0+20260819.c1ccc992:
+  * Dev: behave: Increase timeout for expect in bootstrap_password.feature
+  * Dev: behave: Report expect timeouts in bootstrap_password.feature
+
+-------------------------------------------------------------------

Old:
----
  crmsh-5.1.0+20260814.d9688661.tar.bz2

New:
----
  crmsh-5.1.0+20260826.a973bf9a.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ crmsh.spec ++++++
--- /var/tmp/diff_new_pack.pYbb9N/_old  2026-08-26 19:53:02.332291069 +0200
+++ /var/tmp/diff_new_pack.pYbb9N/_new  2026-08-26 19:53:02.334291140 +0200
@@ -20,7 +20,6 @@
 
 %global gname haclient
 %global uname hacluster
-%global crmsh_docdir %{_defaultdocdir}/%{name}
 
 %global upstream_version tip
 %global upstream_prefix crmsh
@@ -41,7 +40,7 @@
 Summary:        High Availability cluster command-line interface
 License:        GPL-2.0-or-later
 Group:          %{pkg_group}
-Version:        5.1.0+20260814.d9688661
+Version:        5.1.0+20260826.a973bf9a
 Release:        0
 URL:            http://crmsh.github.io
 Source0:        %{name}-%{version}.tar.bz2
@@ -61,9 +60,6 @@
 Recommends:     bash-completion
 BuildRequires:  python3-PyYAML
 BuildRequires:  python3-lxml
-BuildRequires:  python3-pip
-BuildRequires:  python3-setuptools
-BuildRequires:  python3-wheel
 
 %if 0%{?suse_version}
 # only require csync2 on SUSE since bootstrap
@@ -90,8 +86,8 @@
 
 # Required for core functionality
 BuildRequires:  asciidoc
-BuildRequires:  autoconf
-BuildRequires:  automake
+BuildRequires:  meson
+BuildRequires:  ninja
 BuildRequires:  pkgconfig
 BuildRequires:  python3
 
@@ -158,22 +154,12 @@
 sed -i -e '1{\@^#!%{_bindir}/python3@d}' crmsh/report/core.py
 
 %build
-./autogen.sh
-
-%{configure}            \
-    --sysconfdir=%{_sysconfdir} \
-    --localstatedir=%{_var}             \
-    --with-version=%{version}    \
-    --docdir=%{crmsh_docdir}
-
-%if 0%{?suse_version}
-%python3_pyproject_wheel
-%else
-%pyproject_buildrequires -t
-%pyproject_wheel
-%endif
-
-make all
+%meson \
+    -Dpackage_version=%{version} \
+    -Ddocdir=%{_docdir}/%{name} \
+    -Dtmpfilesdir=%{_tmpfilesdir} \
+    -Dfwdefdir=%{_fwdefdir}
+%meson_build
 
 %if %{with regression_tests}
 tox
@@ -184,13 +170,7 @@
 %endif
 
 %install
-%if 0%{?suse_version}
-%python3_pyproject_install
-%else
-%pyproject_install
-%endif
-
-make DESTDIR=%{buildroot} tmpfilesdir=%{_tmpfilesdir} fwdefdir=%{_fwdefdir} 
install
+%meson_install
 
 if [ -f %{buildroot}%{_bindir}/crm ]; then
        install -d %{buildroot}%{_sbindir}/
@@ -243,7 +223,7 @@
 
 %{_tmpfilesdir}/%{name}.conf
 
-%doc doc/*.html
+%doc %{_docdir}/%{name}/*.html
 %doc COPYING AUTHORS ChangeLog README.md
 %doc contrib/*
 %{_mandir}/man8/*

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.pYbb9N/_old  2026-08-26 19:53:02.421294212 +0200
+++ /var/tmp/diff_new_pack.pYbb9N/_new  2026-08-26 19:53:02.433294636 +0200
@@ -9,7 +9,7 @@
 </service>
 <service name="tar_scm">
   <param name="url">https://github.com/ClusterLabs/crmsh.git</param>
-  <param 
name="changesrevision">436d1a557e54a00fee045ad677e9aa0b8d601b5d</param>
+  <param 
name="changesrevision">411552db411b5e79e0cd5f2309d8a005fc28b5c4</param>
 </service>
 </servicedata>
 (No newline at EOF)

++++++ crmsh-5.1.0+20260814.d9688661.tar.bz2 -> 
crmsh-5.1.0+20260826.a973bf9a.tar.bz2 ++++++
++++ 1944 lines of diff (skipped)

Reply via email to