Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-samba-provision for
openSUSE:Factory checked in at 2026-03-26 21:08:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-samba-provision (Old)
and /work/SRC/openSUSE:Factory/.yast2-samba-provision.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-samba-provision"
Thu Mar 26 21:08:10 2026 rev:5 rq:1342729 version:1.0.6
Changes:
--------
---
/work/SRC/openSUSE:Factory/yast2-samba-provision/yast2-samba-provision.changes
2021-04-24 23:09:35.767432387 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-samba-provision.new.8177/yast2-samba-provision.changes
2026-03-27 06:53:39.020225278 +0100
@@ -1,0 +2,6 @@
+Wed Mar 25 17:45:35 UTC 2026 - Michal Filka <[email protected]>
+
+- jsc#PED-14507
+ - Removed reference to update-desktop-files from spec file
+ - 1.0.6
+-------------------------------------------------------------------
Old:
----
yast2-samba-provision-1.0.5.tar.bz2
New:
----
yast2-samba-provision-1.0.6.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-samba-provision.spec ++++++
--- /var/tmp/diff_new_pack.swzJeX/_old 2026-03-27 06:53:39.488244601 +0100
+++ /var/tmp/diff_new_pack.swzJeX/_new 2026-03-27 06:53:39.488244601 +0100
@@ -1,7 +1,7 @@
#
# spec file for package yast2-samba-provision
#
-# Copyright (c) 2021 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-samba-provision
-Version: 1.0.5
+Version: 1.0.6
Release: 0
Summary: YaST2 - Samba AD DC provision
License: GPL-2.0-only
@@ -25,7 +25,6 @@
URL: https://github.com/yast/yast-samba-provision
Source0: %{name}-%{version}.tar.bz2
BuildRequires: perl-XML-Writer
-BuildRequires: update-desktop-files
BuildRequires: yast2 >= 3.3.8
BuildRequires: yast2-devtools >= 4.4.0
BuildRequires: yast2-perl-bindings
++++++ yast2-samba-provision-1.0.5.tar.bz2 ->
yast2-samba-provision-1.0.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-samba-provision-1.0.5/.github/workflows/ci.yml
new/yast2-samba-provision-1.0.6/.github/workflows/ci.yml
--- old/yast2-samba-provision-1.0.5/.github/workflows/ci.yml 2021-04-21
07:51:52.000000000 +0200
+++ new/yast2-samba-provision-1.0.6/.github/workflows/ci.yml 2026-03-26
09:28:34.000000000 +0100
@@ -1,33 +1,47 @@
-
# 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
- container: registry.opensuse.org/yast/head/containers/yast-ruby:latest
- steps:
+ strategy:
+ fail-fast: false
+ matrix:
+ distro: [ "tumbleweed" ]
+
+ container:
+ image:
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
- - name: Git Checkout
- uses: actions/checkout@v2
+ steps:
+ - 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
Checks:
runs-on: ubuntu-latest
- container: registry.opensuse.org/yast/head/containers/yast-ruby:latest
- steps:
+ strategy:
+ fail-fast: false
+ matrix:
+ distro: [ "tumbleweed" ]
- - name: Git Checkout
- uses: actions/checkout@v2
+ container:
+ image:
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
+
+ steps:
+ - 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-samba-provision-1.0.5/.github/workflows/submit.yml
new/yast2-samba-provision-1.0.6/.github/workflows/submit.yml
--- old/yast2-samba-provision-1.0.5/.github/workflows/submit.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/yast2-samba-provision-1.0.6/.github/workflows/submit.yml
2026-03-26 09:28:34.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-provision-1.0.5/CONTRIBUTING.md
new/yast2-samba-provision-1.0.6/CONTRIBUTING.md
--- old/yast2-samba-provision-1.0.5/CONTRIBUTING.md 2021-04-21
07:51:52.000000000 +0200
+++ new/yast2-samba-provision-1.0.6/CONTRIBUTING.md 2026-03-26
09:28:34.000000000 +0100
@@ -85,5 +85,5 @@
If you have any question, feel free to ask at the [development mailing
list](http://lists.opensuse.org/yast-devel/) or at the
-[#yast](http://webchat.freenode.net/?channels=%23yast) IRC channel on freenode.
+[#yast](https://web.libera.chat/#yast) IRC channel on libera.chat.
We'll do our best to provide a timely and accurate answer.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-samba-provision-1.0.5/README.md
new/yast2-samba-provision-1.0.6/README.md
--- old/yast2-samba-provision-1.0.5/README.md 2021-04-21 07:51:52.000000000
+0200
+++ new/yast2-samba-provision-1.0.6/README.md 2026-03-26 09:28:34.000000000
+0100
@@ -2,5 +2,4 @@
[](
https://github.com/yast/yast-samba-provision/actions?query=branch%3Amaster)
-[](
-https://ci.opensuse.org/view/Yast/job/yast-yast-samba-provision-master/)
+[](https://github.com/yast/yast-samba-provision/actions/workflows/submit.yml)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-samba-provision-1.0.5/package/yast2-samba-provision.changes
new/yast2-samba-provision-1.0.6/package/yast2-samba-provision.changes
--- old/yast2-samba-provision-1.0.5/package/yast2-samba-provision.changes
2021-04-21 07:51:52.000000000 +0200
+++ new/yast2-samba-provision-1.0.6/package/yast2-samba-provision.changes
2026-03-26 09:28:34.000000000 +0100
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Wed Mar 25 17:45:35 UTC 2026 - Michal Filka <[email protected]>
+
+- jsc#PED-14507
+ - Removed reference to update-desktop-files from spec file
+ - 1.0.6
+-------------------------------------------------------------------
Tue Apr 20 18:14:05 UTC 2021 - Dirk Müller <[email protected]>
- stop packaging docdir, it only contained the license which
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-samba-provision-1.0.5/package/yast2-samba-provision.spec
new/yast2-samba-provision-1.0.6/package/yast2-samba-provision.spec
--- old/yast2-samba-provision-1.0.5/package/yast2-samba-provision.spec
2021-04-21 07:51:52.000000000 +0200
+++ new/yast2-samba-provision-1.0.6/package/yast2-samba-provision.spec
2026-03-26 09:28:34.000000000 +0100
@@ -17,7 +17,7 @@
Name: yast2-samba-provision
-Version: 1.0.5
+Version: 1.0.6
Release: 0
Summary: YaST2 - Samba AD DC provision
License: GPL-2.0-only
@@ -25,7 +25,6 @@
URL: https://github.com/yast/yast-samba-provision
Source0: %{name}-%{version}.tar.bz2
BuildRequires: perl-XML-Writer
-BuildRequires: update-desktop-files
BuildRequires: yast2 >= 3.3.8
BuildRequires: yast2-devtools >= 4.4.0
BuildRequires: yast2-perl-bindings