Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-perl-bindings for 
openSUSE:Factory checked in at 2026-01-17 14:51:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-perl-bindings (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-perl-bindings.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-perl-bindings"

Sat Jan 17 14:51:32 2026 rev:53 rq:1327417 version:5.0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-perl-bindings/yast2-perl-bindings.changes  
2024-04-08 17:37:52.525793149 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-perl-bindings.new.1928/yast2-perl-bindings.changes
        2026-01-17 14:52:29.921543102 +0100
@@ -1,0 +2,6 @@
+Thu Jan 15 08:26:47 UTC 2026 - Ladislav Slezák <[email protected]>
+
+- Drop libyui dependency in SLES (related to bsc#1254978)
+- 5.0.5
+
+-------------------------------------------------------------------

Old:
----
  yast2-perl-bindings-5.0.4.tar.bz2

New:
----
  yast2-perl-bindings-5.0.5.tar.bz2

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

Other differences:
------------------
++++++ yast2-perl-bindings.spec ++++++
--- /var/tmp/diff_new_pack.SC8kDo/_old  2026-01-17 14:52:30.901583864 +0100
+++ /var/tmp/diff_new_pack.SC8kDo/_new  2026-01-17 14:52:30.905584031 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-perl-bindings
 #
-# Copyright (c) 2024 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
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-perl-bindings
-Version:        5.0.4
+Version:        5.0.5
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -28,13 +28,20 @@
 BuildRequires:  yast2-core-devel
 BuildRequires:  yast2-devtools >= 3.1.10
 BuildRequires:  yast2-ruby-bindings >= 1.0.0
-BuildRequires:  yast2-ycp-ui-bindings-devel
+
+# use the standard UI in openSUSE Tumbleweed or Leap
+%if 0%{?suse_version} == 1699 || 0%{?is_opensuse}
+BuildRequires:  yast2-ycp-ui-bindings-devel >= 2.16.37
+Requires:       yast2-ycp-ui-bindings       >= 2.16.37
+%else
+# use dummy UI in SLES
+Requires:       yast2-ycp-ui-bindings-dummy
+BuildRequires:  yast2-ycp-ui-bindings-dummy-devel
+%endif
 
 # ErrorNamespace
 Requires:       yast2-core >= 3.2.1
-BuildRequires:  yast2-ycp-ui-bindings-devel >= 2.16.37
 Requires:       perl = %{perl_version}
-Requires:       yast2-ycp-ui-bindings       >= 2.16.37
 %if 0%{?suse_version} < 1220
 BuildRequires:  libxcrypt-devel
 %endif

++++++ yast2-perl-bindings-5.0.4.tar.bz2 -> yast2-perl-bindings-5.0.5.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-perl-bindings-5.0.4/.github/workflows/ci.yml 
new/yast2-perl-bindings-5.0.5/.github/workflows/ci.yml
--- old/yast2-perl-bindings-5.0.4/.github/workflows/ci.yml      2024-04-05 
15:59:53.000000000 +0200
+++ new/yast2-perl-bindings-5.0.5/.github/workflows/ci.yml      2026-01-15 
15:33:38.000000000 +0100
@@ -7,6 +7,9 @@
 
 jobs:
   Package:
+    # skip in master, but run in forks
+    if:  github.ref_name != 'master' || github.repository_owner != 'yast'
+
     runs-on: ubuntu-latest
     container:
       image: registry.opensuse.org/yast/head/containers/yast-cpp:latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-perl-bindings-5.0.4/.github/workflows/submit.yml 
new/yast2-perl-bindings-5.0.5/.github/workflows/submit.yml
--- old/yast2-perl-bindings-5.0.4/.github/workflows/submit.yml  1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-perl-bindings-5.0.5/.github/workflows/submit.yml  2026-01-15 
15:33:38.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-perl-bindings-5.0.4/README.md 
new/yast2-perl-bindings-5.0.5/README.md
--- old/yast2-perl-bindings-5.0.4/README.md     2024-04-05 15:59:53.000000000 
+0200
+++ new/yast2-perl-bindings-5.0.5/README.md     2026-01-15 15:33:38.000000000 
+0100
@@ -2,5 +2,4 @@
 
 [![Workflow 
Status](https://github.com/yast/yast-perl-bindings/workflows/CI/badge.svg?branch=master)](
 https://github.com/yast/yast-perl-bindings/actions?query=branch%3Amaster)
-[![Jenkins 
Status](https://ci.opensuse.org/buildStatus/icon?job=yast-yast-perl-bindings-master)](
-https://ci.opensuse.org/view/Yast/job/yast-yast-perl-bindings-master/)
+[![OBS](https://github.com/yast/yast-perl-bindings/actions/workflows/submit.yml/badge.svg)](https://github.com/yast/yast-perl-bindings/actions/workflows/submit.yml)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-perl-bindings-5.0.4/package/yast2-perl-bindings.changes 
new/yast2-perl-bindings-5.0.5/package/yast2-perl-bindings.changes
--- old/yast2-perl-bindings-5.0.4/package/yast2-perl-bindings.changes   
2024-04-05 15:59:53.000000000 +0200
+++ new/yast2-perl-bindings-5.0.5/package/yast2-perl-bindings.changes   
2026-01-15 15:33:38.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Thu Jan 15 08:26:47 UTC 2026 - Ladislav Slezák <[email protected]>
+
+- Drop libyui dependency in SLES (related to bsc#1254978)
+- 5.0.5
+
+-------------------------------------------------------------------
 Fri Apr  5 11:18:46 UTC 2024 - Martin Vidner <[email protected]>
 
 - Fix downstream build failures caused by the previous change (bsc#1222375)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-perl-bindings-5.0.4/package/yast2-perl-bindings.spec 
new/yast2-perl-bindings-5.0.5/package/yast2-perl-bindings.spec
--- old/yast2-perl-bindings-5.0.4/package/yast2-perl-bindings.spec      
2024-04-05 15:59:53.000000000 +0200
+++ new/yast2-perl-bindings-5.0.5/package/yast2-perl-bindings.spec      
2026-01-15 15:33:38.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-perl-bindings
-Version:        5.0.4
+Version:        5.0.5
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -28,13 +28,20 @@
 BuildRequires:  yast2-core-devel
 BuildRequires:  yast2-devtools >= 3.1.10
 BuildRequires:  yast2-ruby-bindings >= 1.0.0
-BuildRequires:  yast2-ycp-ui-bindings-devel
+
+# use the standard UI in openSUSE Tumbleweed or Leap
+%if 0%{?suse_version} == 1699 || 0%{?is_opensuse}
+BuildRequires:  yast2-ycp-ui-bindings-devel >= 2.16.37
+Requires:       yast2-ycp-ui-bindings       >= 2.16.37
+%else
+# use dummy UI in SLES
+Requires:       yast2-ycp-ui-bindings-dummy
+BuildRequires:  yast2-ycp-ui-bindings-dummy-devel
+%endif
 
 # ErrorNamespace
 Requires:       yast2-core >= 3.2.1
-BuildRequires:  yast2-ycp-ui-bindings-devel >= 2.16.37
 Requires:       perl = %{perl_version}
-Requires:       yast2-ycp-ui-bindings       >= 2.16.37
 %if 0%{?suse_version} < 1220
 BuildRequires:  libxcrypt-devel
 %endif

Reply via email to