Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-samba-client for 
openSUSE:Factory checked in at 2025-02-18 19:08:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-samba-client (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-samba-client.new.8181 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-samba-client"

Tue Feb 18 19:08:45 2025 rev:117 rq:1246480 version:5.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-samba-client/yast2-samba-client.changes    
2023-10-20 23:17:47.704770380 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-samba-client.new.8181/yast2-samba-client.changes
  2025-02-18 19:09:04.604422798 +0100
@@ -1,0 +2,6 @@
+Mon Feb  3 09:40:11 UTC 2025 - Samuel Cabrero <[email protected]>
+
+- Remove nscd-related code (bsc#1236308)
+- 5.0.1
+
+-------------------------------------------------------------------

Old:
----
  yast2-samba-client-5.0.0.tar.bz2

New:
----
  yast2-samba-client-5.0.1.tar.bz2

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

Other differences:
------------------
++++++ yast2-samba-client.spec ++++++
--- /var/tmp/diff_new_pack.ft8m5E/_old  2025-02-18 19:09:05.292451488 +0100
+++ /var/tmp/diff_new_pack.ft8m5E/_new  2025-02-18 19:09:05.296451655 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-samba-client
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2025 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-samba-client
-Version:        5.0.0
+Version:        5.0.1
 Release:        0
 Summary:        YaST2 - Samba Client Configuration
 License:        GPL-2.0-only

++++++ yast2-samba-client-5.0.0.tar.bz2 -> yast2-samba-client-5.0.1.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-5.0.0/.github/workflows/ci.yml 
new/yast2-samba-client-5.0.1/.github/workflows/ci.yml
--- old/yast2-samba-client-5.0.0/.github/workflows/ci.yml       2023-10-18 
23:20:02.000000000 +0200
+++ new/yast2-samba-client-5.0.1/.github/workflows/ci.yml       2025-02-17 
17:34:37.000000000 +0100
@@ -1,29 +1,30 @@
-
 # See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
 
 name: CI
 
-on: [push, pull_request]
+on: [ push, pull_request ]
 
 jobs:
   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
 
   # downloading the Docker image takes some time so bundling several fast
   # checks into one job avoids that overhead
@@ -33,18 +34,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-samba-client-5.0.0/.github/workflows/submit.yml 
new/yast2-samba-client-5.0.1/.github/workflows/submit.yml
--- old/yast2-samba-client-5.0.0/.github/workflows/submit.yml   1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-samba-client-5.0.1/.github/workflows/submit.yml   2025-02-17 
17:34:37.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-samba-client-5.0.0/README.md 
new/yast2-samba-client-5.0.1/README.md
--- old/yast2-samba-client-5.0.0/README.md      2023-10-18 23:20:02.000000000 
+0200
+++ new/yast2-samba-client-5.0.1/README.md      2025-02-17 17:34:37.000000000 
+0100
@@ -2,5 +2,4 @@
 
 [![Workflow 
Status](https://github.com/yast/yast-samba-client/workflows/CI/badge.svg?branch=master)](
 https://github.com/yast/yast-samba-client/actions?query=branch%3Amaster)
-[![Jenkins 
Status](https://ci.opensuse.org/buildStatus/icon?job=yast-yast-samba-client-master)](
-https://ci.opensuse.org/view/Yast/job/yast-yast-samba-client-master/)
+[![OBS](https://github.com/yast/yast-samba-client/actions/workflows/submit.yml/badge.svg)](https://github.com/yast/yast-samba-client/actions/workflows/submit.yml)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-samba-client-5.0.0/package/yast2-samba-client.changes 
new/yast2-samba-client-5.0.1/package/yast2-samba-client.changes
--- old/yast2-samba-client-5.0.0/package/yast2-samba-client.changes     
2023-10-18 23:20:02.000000000 +0200
+++ new/yast2-samba-client-5.0.1/package/yast2-samba-client.changes     
2025-02-17 17:34:37.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Mon Feb  3 09:40:11 UTC 2025 - Samuel Cabrero <[email protected]>
+
+- Remove nscd-related code (bsc#1236308)
+- 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-samba-client-5.0.0/package/yast2-samba-client.spec 
new/yast2-samba-client-5.0.1/package/yast2-samba-client.spec
--- old/yast2-samba-client-5.0.0/package/yast2-samba-client.spec        
2023-10-18 23:20:02.000000000 +0200
+++ new/yast2-samba-client-5.0.1/package/yast2-samba-client.spec        
2025-02-17 17:34:37.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-samba-client
-Version:        5.0.0
+Version:        5.0.1
 Release:        0
 Summary:        YaST2 - Samba Client Configuration
 License:        GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-samba-client-5.0.0/src/include/samba-client/dialogs.rb 
new/yast2-samba-client-5.0.1/src/include/samba-client/dialogs.rb
--- old/yast2-samba-client-5.0.0/src/include/samba-client/dialogs.rb    
2023-10-18 23:20:02.000000000 +0200
+++ new/yast2-samba-client-5.0.1/src/include/samba-client/dialogs.rb    
2025-02-17 17:34:37.000000000 +0100
@@ -580,11 +580,6 @@
           Right(PushButton(Id(:ntp), _("N&TP Configuration...")))
         )
 
-      # checkbox label
-      text_nscd = _("Disable Name Service Cache")
-      # checkbox label
-      text_fam = _("Start File Alteration Monitor")
-
       firewall_widget = CWMFirewallInterfaces.CreateOpenFirewallWidget(
         { "services" => ["samba"], "display_details" => true }
       )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-5.0.0/src/modules/SambaWinbind.pm 
new/yast2-samba-client-5.0.1/src/modules/SambaWinbind.pm
--- old/yast2-samba-client-5.0.0/src/modules/SambaWinbind.pm    2023-10-18 
23:20:02.000000000 +0200
+++ new/yast2-samba-client-5.0.1/src/modules/SambaWinbind.pm    2025-02-17 
17:34:37.000000000 +0100
@@ -95,12 +95,6 @@
     my $ret = Nsswitch->Write();
     y2error("Nsswitch->Write() failed") if (!$ret);
 
-    # remove the passwd and group cache for nscd
-    if (!$write_only && PackageSystem->Installed ("nscd")) {
-       SCR->Execute (".target.bash", "/usr/sbin/nscd -i passwd");
-       SCR->Execute (".target.bash", "/usr/sbin/nscd -i group");
-       Service->RunInitScript ("nscd", "try-restart");
-    }
     # restart zmd (#174589)
     if (!$write_only && PackageSystem->Installed ("zmd") &&
        Service->Status ("novell-zmd") == 0)

Reply via email to