Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-auth-server for openSUSE:Factory checked in at 2026-08-01 18:27:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-auth-server (Old) and /work/SRC/openSUSE:Factory/.yast2-auth-server.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-auth-server" Sat Aug 1 18:27:05 2026 rev:32 rq:1368201 version:5.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-auth-server/yast2-auth-server.changes 2023-10-20 23:18:04.761392703 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-auth-server.new.16738/yast2-auth-server.changes 2026-08-01 18:27:08.147311348 +0200 @@ -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 +------------------------------------------------------------------- @@ -237 +242,0 @@ - Old: ---- yast2-auth-server-5.0.0.tar.bz2 New: ---- yast2-auth-server-5.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-auth-server.spec ++++++ --- /var/tmp/diff_new_pack.XAm2gS/_old 2026-08-01 18:27:08.663328978 +0200 +++ /var/tmp/diff_new_pack.XAm2gS/_new 2026-08-01 18:27:08.667329115 +0200 @@ -1,7 +1,7 @@ # # spec file for package yast2-auth-server # -# 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 @@ -19,14 +19,13 @@ Name: yast2-auth-server Group: System/YaST Summary: A tool for creating identity management server instances -Version: 5.0.0 +Version: 5.0.1 Release: 0 License: GPL-2.0-or-later URL: https://github.com/yast/yast-auth-server Source0: %{name}-%{version}.tar.bz2 -BuildRequires: update-desktop-files BuildRequires: yast2 BuildRequires: yast2-devtools >= 4.2.2 BuildRequires: rubygem(%{rb_default_ruby_abi}:yast-rake) ++++++ yast2-auth-server-5.0.0.tar.bz2 -> yast2-auth-server-5.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-auth-server-5.0.0/.github/workflows/ci.yml new/yast2-auth-server-5.0.1/.github/workflows/ci.yml --- old/yast2-auth-server-5.0.0/.github/workflows/ci.yml 2023-10-18 23:14:11.000000000 +0200 +++ new/yast2-auth-server-5.0.1/.github/workflows/ci.yml 2026-07-28 15:30:27.000000000 +0200 @@ -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 }} # FIXME: Rubocop is not used # Rubocop: @@ -54,23 +52,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 @@ -78,18 +78,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 @@ -99,18 +98,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-auth-server-5.0.0/.github/workflows/submit.yml new/yast2-auth-server-5.0.1/.github/workflows/submit.yml --- old/yast2-auth-server-5.0.0/.github/workflows/submit.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-auth-server-5.0.1/.github/workflows/submit.yml 2026-07-28 15:30:27.000000000 +0200 @@ -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-auth-server-5.0.0/README.md new/yast2-auth-server-5.0.1/README.md --- old/yast2-auth-server-5.0.0/README.md 2023-10-18 23:14:11.000000000 +0200 +++ new/yast2-auth-server-5.0.1/README.md 2026-07-28 15:30:27.000000000 +0200 @@ -2,8 +2,6 @@ []( https://github.com/yast/yast-auth-server/actions?query=branch%3Amaster) -[]( -https://ci.opensuse.org/view/Yast/job/yast-yast-auth-server-master/) The program assists system administrators to create new directory server and Kerberos server instances that help to maintain centralised user identity diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-auth-server-5.0.0/package/yast2-auth-server.changes new/yast2-auth-server-5.0.1/package/yast2-auth-server.changes --- old/yast2-auth-server-5.0.0/package/yast2-auth-server.changes 2023-10-18 23:14:11.000000000 +0200 +++ new/yast2-auth-server-5.0.1/package/yast2-auth-server.changes 2026-07-28 15:30:27.000000000 +0200 @@ -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) @@ -234,7 +240,6 @@ - replace deprecated Service calls ------------------------------------------------------------------- - Fri Jan 31 23:44:25 UTC 2014 - [email protected] - Fix the requirement yast2-ldap-client -> yast2-ldap diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-auth-server-5.0.0/package/yast2-auth-server.spec new/yast2-auth-server-5.0.1/package/yast2-auth-server.spec --- old/yast2-auth-server-5.0.0/package/yast2-auth-server.spec 2023-10-18 23:14:11.000000000 +0200 +++ new/yast2-auth-server-5.0.1/package/yast2-auth-server.spec 2026-07-28 15:30:27.000000000 +0200 @@ -18,7 +18,7 @@ Name: yast2-auth-server Group: System/YaST Summary: A tool for creating identity management server instances -Version: 5.0.0 +Version: 5.0.1 Release: 0 License: GPL-2.0-or-later Url: https://github.com/yast/yast-auth-server @@ -28,7 +28,6 @@ BuildRequires: yast2 BuildRequires: yast2-devtools >= 4.2.2 BuildRequires: rubygem(%{rb_default_ruby_abi}:yast-rake) -BuildRequires: update-desktop-files Requires: net-tools Requires: yast2-ruby-bindings
