Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-storage-ng for 
openSUSE:Factory checked in at 2024-02-15 20:58:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-storage-ng (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-storage-ng.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-storage-ng"

Thu Feb 15 20:58:39 2024 rev:150 rq:1146228 version:5.0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-storage-ng/yast2-storage-ng.changes        
2023-11-03 22:19:24.210413072 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-storage-ng.new.1815/yast2-storage-ng.changes  
    2024-02-15 20:58:41.992354617 +0100
@@ -1,0 +2,7 @@
+Mon Feb 12 15:18:51 UTC 2024 - Stefan Hundhammer <[email protected]>
+
+- Added new libstorage enum value UF_BCACHEFS to fix build failure
+  (bsc#1219804)
+- 5.0.5
+
+-------------------------------------------------------------------

Old:
----
  yast2-storage-ng-5.0.4.tar.bz2

New:
----
  yast2-storage-ng-5.0.5.tar.bz2

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

Other differences:
------------------
++++++ yast2-storage-ng.spec ++++++
--- /var/tmp/diff_new_pack.y3Gfw5/_old  2024-02-15 20:58:42.684379608 +0100
+++ /var/tmp/diff_new_pack.y3Gfw5/_new  2024-02-15 20:58:42.684379608 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-storage-ng
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-storage-ng
-Version:        5.0.4
+Version:        5.0.5
 Release:        0
 Summary:        YaST2 - Storage Configuration
 License:        GPL-2.0-only OR GPL-3.0-only

++++++ yast2-storage-ng-5.0.4.tar.bz2 -> yast2-storage-ng-5.0.5.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-ng-5.0.4/.github/workflows/ci.yml 
new/yast2-storage-ng-5.0.5/.github/workflows/ci.yml
--- old/yast2-storage-ng-5.0.4/.github/workflows/ci.yml 2023-11-02 
15:20:24.000000000 +0100
+++ new/yast2-storage-ng-5.0.5/.github/workflows/ci.yml 2024-02-12 
16:57:32.000000000 +0100
@@ -1,9 +1,8 @@
-
 # See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
 
 name: CI
 
-on: [push, pull_request]
+on: [ push, pull_request ]
 
 jobs:
   Tests:
@@ -12,33 +11,32 @@
     strategy:
       fail-fast: false
       matrix:
-        distro:  [ "tumbleweed", "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    # just for easier debugging...
-    - name: Inspect Installed Packages
-      run: rpm -qa | sort
-
-    - name: Unit Tests
-      run: rake test:unit
-      # enable code coverage reporting
-      env:
-        COVERAGE: 1
-
-    # send the coverage report to coveralls.io
-    - name: Coveralls Report
-      # send it only from the TW build to avoid duplicate submits
-      if: ${{ matrix.distro == 'tumbleweed' }}
-      uses: coverallsapp/github-action@master
-      with:
-        github-token: ${{ secrets.GITHUB_TOKEN }}
+      # just for easier debugging...
+      - name: Inspect Installed Packages
+        run: rpm -qa | sort
+
+      - name: Unit Tests
+        run: rake test:unit
+        # enable code coverage reporting
+        env:
+          COVERAGE: 1
+
+      # send the coverage report to coveralls.io
+      - name: Coveralls Report
+        # send it only from the TW build to avoid duplicate submits
+        if: ${{ matrix.distro == 'tumbleweed' }}
+        uses: coverallsapp/github-action@master
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}
 
   Rubocop:
     runs-on: ubuntu-latest
@@ -46,18 +44,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro: [ "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Rubocop
-      run: rake check:rubocop
+      - name: Rubocop
+        run: rake check:rubocop
 
   Package:
     runs-on: ubuntu-latest
@@ -65,18 +62,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro:  [ "tumbleweed", "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Package Build
-      run: yast-ci-ruby -o package
+      - name: Package Build
+        run: yast-ci-ruby -o package
 
   Yardoc:
     runs-on: ubuntu-latest
@@ -84,18 +80,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro: [ "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Yardoc
-      run: rake check:doc
+      - name: Yardoc
+        run: rake check:doc
 
   # downloading the Docker image takes some time so bundling several fast
   # checks into one job avoids that overhead
@@ -105,18 +100,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro: [ "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Perl Syntax
-      run: yast-ci-ruby -o perl_syntax
+      - name: Perl Syntax
+        run: yast-ci-ruby -o perl_syntax
 
-    - name: POT Check
-      run: rake check:pot
+      - name: POT Check
+        run: rake check:pot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-ng-5.0.4/package/yast2-storage-ng.changes 
new/yast2-storage-ng-5.0.5/package/yast2-storage-ng.changes
--- old/yast2-storage-ng-5.0.4/package/yast2-storage-ng.changes 2023-11-02 
15:20:24.000000000 +0100
+++ new/yast2-storage-ng-5.0.5/package/yast2-storage-ng.changes 2024-02-12 
16:57:32.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Mon Feb 12 15:18:51 UTC 2024 - Stefan Hundhammer <[email protected]>
+
+- Added new libstorage enum value UF_BCACHEFS to fix build failure
+  (bsc#1219804)
+- 5.0.5
+
+-------------------------------------------------------------------
 Thu Nov  2 13:52:11 UTC 2023 - Ancor Gonzalez Sosa <[email protected]>
 
 - Encryption method TpmFde to be used by Agama (and later by YaST)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-ng-5.0.4/package/yast2-storage-ng.spec 
new/yast2-storage-ng-5.0.5/package/yast2-storage-ng.spec
--- old/yast2-storage-ng-5.0.4/package/yast2-storage-ng.spec    2023-11-02 
15:20:24.000000000 +0100
+++ new/yast2-storage-ng-5.0.5/package/yast2-storage-ng.spec    2024-02-12 
16:57:32.000000000 +0100
@@ -16,7 +16,7 @@
 #
 
 Name:           yast2-storage-ng
-Version:        5.0.4
+Version:        5.0.5
 Release:        0
 Summary:        YaST2 - Storage Configuration
 License:        GPL-2.0-only OR GPL-3.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-ng-5.0.4/src/lib/y2storage/storage_feature.rb 
new/yast2-storage-ng-5.0.5/src/lib/y2storage/storage_feature.rb
--- old/yast2-storage-ng-5.0.4/src/lib/y2storage/storage_feature.rb     
2023-11-02 15:20:24.000000000 +0100
+++ new/yast2-storage-ng-5.0.5/src/lib/y2storage/storage_feature.rb     
2024-02-12 16:57:32.000000000 +0100
@@ -98,6 +98,7 @@
         # Other
         UF_QUOTA:            "quota",
         UF_BCACHE:           "bcache-tools",
+        UF_BCACHEFS:         [], # When implemented: "bcachefs-tools"
         UF_SNAPSHOTS:        "snapper"
       }
 

Reply via email to