Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libstorage-ng for openSUSE:Factory 
checked in at 2025-12-12 21:40:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old)
 and      /work/SRC/openSUSE:Factory/.libstorage-ng.new.1939 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libstorage-ng"

Fri Dec 12 21:40:25 2025 rev:318 rq:1322185 version:4.5.280

Changes:
--------
--- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes      
2025-11-24 14:05:50.220828806 +0100
+++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.1939/libstorage-ng.changes    
2025-12-12 21:40:40.543565304 +0100
@@ -1,0 +2,7 @@
+Thu Dec 11 10:22:41 UTC 2025 - [email protected]
+
+- merge gh#openSUSE/libstorage-ng#1043
+- test with gcc and clang
+- 4.5.280
+
+--------------------------------------------------------------------

Old:
----
  libstorage-ng-4.5.279.tar.xz

New:
----
  libstorage-ng-4.5.280.tar.xz

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

Other differences:
------------------
++++++ libstorage-ng.spec ++++++
--- /var/tmp/diff_new_pack.qPB1j8/_old  2025-12-12 21:40:41.319598012 +0100
+++ /var/tmp/diff_new_pack.qPB1j8/_new  2025-12-12 21:40:41.323598181 +0100
@@ -18,7 +18,7 @@
 
 %define libname %{name}1
 Name:           libstorage-ng
-Version:        4.5.279
+Version:        4.5.280
 Release:        0
 Summary:        Library for storage management
 License:        GPL-2.0-only

++++++ libstorage-ng-4.5.279.tar.xz -> libstorage-ng-4.5.280.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.279/.github/workflows/ci-leap.yml 
new/libstorage-ng-4.5.280/.github/workflows/ci-leap.yml
--- old/libstorage-ng-4.5.279/.github/workflows/ci-leap.yml     2025-11-21 
16:22:53.000000000 +0100
+++ new/libstorage-ng-4.5.280/.github/workflows/ci-leap.yml     2025-12-11 
11:22:41.000000000 +0100
@@ -10,7 +10,7 @@
     steps:
 
     - name: Install additional packages
-      run: zypper --non-interactive in --no-recommends autoconf automake 
doxygen gcc-c++ gettext-runtime glibc-locale graphviz libboost_headers-devel 
libboost_test-devel libjson-c-devel libtool libxml2-devel make python3-devel 
ruby-devel swig xz
+      run: zypper --non-interactive install --no-recommends autoconf automake 
doxygen gcc-c++ gettext-runtime glibc-locale graphviz libboost_headers-devel 
libboost_test-devel libjson-c-devel libtool libxml2-devel make python3-devel 
ruby-devel swig xz
 
     - name: List installed packages
       run: rpm -qa | sort
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libstorage-ng-4.5.279/.github/workflows/ci-tumbleweed.yml 
new/libstorage-ng-4.5.280/.github/workflows/ci-tumbleweed.yml
--- old/libstorage-ng-4.5.279/.github/workflows/ci-tumbleweed.yml       
2025-11-21 16:22:53.000000000 +0100
+++ new/libstorage-ng-4.5.280/.github/workflows/ci-tumbleweed.yml       
2025-12-11 11:22:41.000000000 +0100
@@ -7,10 +7,21 @@
     runs-on: ubuntu-latest
     container: opensuse/tumbleweed
 
+    strategy:
+      fail-fast: false
+      matrix:
+        compiler: [gcc, clang]
+
     steps:
 
     - name: Install additional packages
-      run: zypper --non-interactive in --no-recommends autoconf automake awk 
doxygen gcc-c++ gettext-runtime glibc-locale graphviz libboost_headers-devel 
libboost_test-devel libjson-c-devel libtool libxml2-devel make python3-devel 
ruby-devel swig xz
+      run: |
+        if [ "${{ matrix.compiler }}" = "gcc" ]; then
+          zypper --non-interactive install --no-recommends gcc-c++
+        elif [ "${{ matrix.compiler }}" = "clang" ]; then
+          zypper --non-interactive install --no-recommends clang
+        fi
+        zypper --non-interactive install --no-recommends autoconf automake awk 
doxygen gettext-runtime glibc-locale graphviz libboost_headers-devel 
libboost_test-devel libjson-c-devel libtool libxml2-devel make python3-devel 
ruby-devel swig xz
 
     - name: List installed packages
       run: rpm -qa | sort
@@ -19,7 +30,15 @@
       uses: actions/checkout@v1
 
     - name: Configure
-      run: make -f Makefile.repo
+      run: |
+        if [ "${{ matrix.compiler }}" = "gcc" ]; then
+          export CC=gcc
+          export CXX=g++
+        elif [ "${{ matrix.compiler }}" = "clang" ]; then
+          export CC=clang
+          export CXX=clang++
+        fi
+        make -f Makefile.repo
 
     - name: Compile
       run: make -j 2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.279/VERSION 
new/libstorage-ng-4.5.280/VERSION
--- old/libstorage-ng-4.5.279/VERSION   2025-11-21 16:22:53.000000000 +0100
+++ new/libstorage-ng-4.5.280/VERSION   2025-12-11 11:22:41.000000000 +0100
@@ -1 +1 @@
-4.5.279
+4.5.280

Reply via email to