Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-drbd for openSUSE:Factory 
checked in at 2026-03-26 21:08:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-drbd (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-drbd.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-drbd"

Thu Mar 26 21:08:01 2026 rev:42 rq:1342569 version:5.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-drbd/yast2-drbd.changes    2023-10-19 
22:53:49.604592892 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-drbd.new.8177/yast2-drbd.changes  
2026-03-27 06:53:09.947025012 +0100
@@ -1,0 +2,6 @@
+Tue Mar 10 09:00:28 UTC 2026 - Michal Filka <[email protected]>
+
+- jsc#PED-14507
+  - Removed reference to update-desktop-files from spec file 
+  - 5.0.1
+-------------------------------------------------------------------

Old:
----
  yast2-drbd-5.0.0.tar.bz2

New:
----
  yast2-drbd-5.0.1.tar.bz2

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

Other differences:
------------------
++++++ yast2-drbd.spec ++++++
--- /var/tmp/diff_new_pack.3txvBW/_old  2026-03-27 06:53:10.495047637 +0100
+++ /var/tmp/diff_new_pack.3txvBW/_new  2026-03-27 06:53:10.495047637 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-drbd
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define _fwdefdir %{_prefix}/lib/firewalld/services
 Name:           yast2-drbd
-Version:        5.0.0
+Version:        5.0.1
 Release:        0
 Summary:        YaST2 - DRBD Configuration
 License:        GPL-2.0-or-later
@@ -28,7 +28,6 @@
 Source1:        drbd.firewalld.xml
 BuildRequires:  firewall-macros
 BuildRequires:  ruby
-BuildRequires:  update-desktop-files
 # SuSEFirewall2 replaced by Firewalld(fate#323460)
 BuildRequires:  yast2 >= 4.0.39
 BuildRequires:  yast2-devtools >= 4.2.2

++++++ yast2-drbd-5.0.0.tar.bz2 -> yast2-drbd-5.0.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-drbd-5.0.0/.github/workflows/ci.yml 
new/yast2-drbd-5.0.1/.github/workflows/ci.yml
--- old/yast2-drbd-5.0.0/.github/workflows/ci.yml       2023-10-18 
23:15:24.000000000 +0200
+++ new/yast2-drbd-5.0.1/.github/workflows/ci.yml       2026-03-25 
18:31:36.000000000 +0100
@@ -1,12 +1,11 @@
-
 # See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
 
 name: CI
 
-on: [push, pull_request]
+on: [ push, pull_request ]
 
 jobs:
-# FIXME: No unit tests here :-(
+  # FIXME: No unit tests here :-(
   # Tests:
   #   runs-on: ubuntu-latest
   #   container: registry.opensuse.org/yast/head/containers/yast-ruby:latest
@@ -32,7 +31,7 @@
   #     with:
   #       github-token: ${{ secrets.GITHUB_TOKEN }}
 
-# FIXME: Rubocop not used
+  # FIXME: Rubocop not used
   # Rubocop:
   #   runs-on: ubuntu-latest
   #   container: registry.opensuse.org/yast/head/containers/yast-ruby:latest
@@ -46,23 +45,25 @@
   #     run: rake check:rubocop
 
   Package:
+    # skip in master, but run in forks
+    if:  github.ref_name != 'master' || github.repository_owner != 'yast'
+
     runs-on: ubuntu-latest
 
     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
@@ -70,18 +71,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
@@ -91,15 +91,14 @@
     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: 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-drbd-5.0.0/.github/workflows/submit.yml 
new/yast2-drbd-5.0.1/.github/workflows/submit.yml
--- old/yast2-drbd-5.0.0/.github/workflows/submit.yml   1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-drbd-5.0.1/.github/workflows/submit.yml   2026-03-25 
18:31:36.000000000 +0100
@@ -0,0 +1,29 @@
+# See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
+
+name: OBS
+
+on:
+  # only when committing to master
+  push:
+    branches: master
+
+  # allow running manually from GitHub Web
+  workflow_dispatch:
+
+jobs:
+  submit:
+    # do not run in forks
+    if: github.repository_owner == 'yast'
+
+    runs-on: ubuntu-latest
+
+    # the default timeout is 6 hours, do not wait for that long if osc gets 
stucked
+    timeout-minutes: 30
+
+    steps:
+      - name: Submit the package
+        # see https://github.com/yast/actions/blob/master/submit/action.yml
+        uses: yast/actions/submit@master
+        with:
+          obs_user:     ${{ secrets.OBS_USER }}
+          obs_password: ${{ secrets.OBS_PASSWORD }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-drbd-5.0.0/README.md 
new/yast2-drbd-5.0.1/README.md
--- old/yast2-drbd-5.0.0/README.md      2023-10-18 23:15:24.000000000 +0200
+++ new/yast2-drbd-5.0.1/README.md      2026-03-25 18:31:36.000000000 +0100
@@ -2,5 +2,4 @@
 
 [![Workflow 
Status](https://github.com/yast/yast-drbd/workflows/CI/badge.svg?branch=master)](
 https://github.com/yast/yast-drbd/actions?query=branch%3Amaster)
-[![Jenkins 
Status](https://ci.opensuse.org/buildStatus/icon?job=yast-yast-drbd-master)](
-https://ci.opensuse.org/view/Yast/job/yast-yast-drbd-master/)
+[![OBS](https://github.com/yast/yast-drbd/actions/workflows/submit.yml/badge.svg)](https://github.com/yast/yast-drbd/actions/workflows/submit.yml)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-drbd-5.0.0/package/yast2-drbd.changes 
new/yast2-drbd-5.0.1/package/yast2-drbd.changes
--- old/yast2-drbd-5.0.0/package/yast2-drbd.changes     2023-10-18 
23:15:24.000000000 +0200
+++ new/yast2-drbd-5.0.1/package/yast2-drbd.changes     2026-03-25 
18:31:36.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Tue Mar 10 09:00:28 UTC 2026 - Michal Filka <[email protected]>
+
+- jsc#PED-14507
+  - Removed reference to update-desktop-files from spec file 
+  - 5.0.1
+-------------------------------------------------------------------
 Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <[email protected]>
 
 - 5.0.0 (bsc#1185510)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-drbd-5.0.0/package/yast2-drbd.spec 
new/yast2-drbd-5.0.1/package/yast2-drbd.spec
--- old/yast2-drbd-5.0.0/package/yast2-drbd.spec        2023-10-18 
23:15:24.000000000 +0200
+++ new/yast2-drbd-5.0.1/package/yast2-drbd.spec        2026-03-25 
18:31:36.000000000 +0100
@@ -18,7 +18,7 @@
 
 %define _fwdefdir %{_prefix}/lib/firewalld/services
 Name:           yast2-drbd
-Version:        5.0.0
+Version:        5.0.1
 Release:        0
 Summary:        YaST2 - DRBD Configuration
 License:        GPL-2.0-or-later
@@ -28,7 +28,6 @@
 Source1:        drbd.firewalld.xml
 BuildRequires:  firewall-macros
 BuildRequires:  ruby
-BuildRequires:  update-desktop-files
 # SuSEFirewall2 replaced by Firewalld(fate#323460)
 BuildRequires:  yast2 >= 4.0.39
 BuildRequires:  yast2-devtools >= 4.2.2

Reply via email to