Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-devtools for openSUSE:Factory checked in at 2024-09-16 17:40:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-devtools (Old) and /work/SRC/openSUSE:Factory/.yast2-devtools.new.29891 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-devtools" Mon Sep 16 17:40:19 2024 rev:111 rq:1201372 version:5.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-devtools/yast2-devtools.changes 2023-10-19 22:49:12.794553235 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-devtools.new.29891/yast2-devtools.changes 2024-09-16 17:40:29.106619686 +0200 @@ -1,0 +2,7 @@ +Mon Sep 16 08:11:39 UTC 2024 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Add "which" to the list of dependencies + (gh#yast/yast-devtools#176). +- 5.0.1 + +------------------------------------------------------------------- Old: ---- yast2-devtools-5.0.0.tar.bz2 New: ---- yast2-devtools-5.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-devtools.spec ++++++ --- /var/tmp/diff_new_pack.Mtjl3F/_old 2024-09-16 17:40:29.566638873 +0200 +++ /var/tmp/diff_new_pack.Mtjl3F/_new 2024-09-16 17:40:29.566638873 +0200 @@ -1,7 +1,7 @@ # # spec file for package yast2-devtools # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 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-devtools -Version: 5.0.0 +Version: 5.0.1 Release: 0 Summary: YaST2 - Development Tools License: GPL-2.0-or-later @@ -33,6 +33,8 @@ BuildRequires: perl-XML-Writer BuildRequires: pkgconfig BuildRequires: sgml-skel +# required by some scripts like y2makepot +Requires: which Requires: yast2-buildtools BuildArch: noarch ++++++ yast2-devtools-5.0.0.tar.bz2 -> yast2-devtools-5.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-5.0.0/.github/workflows/ci.yml new/yast2-devtools-5.0.1/.github/workflows/ci.yml --- old/yast2-devtools-5.0.0/.github/workflows/ci.yml 2023-10-18 23:15:06.000000000 +0200 +++ new/yast2-devtools-5.0.1/.github/workflows/ci.yml 2024-09-16 10:32:23.000000000 +0200 @@ -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-devtools-5.0.0/.github/workflows/submit.yml new/yast2-devtools-5.0.1/.github/workflows/submit.yml --- old/yast2-devtools-5.0.0/.github/workflows/submit.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-devtools-5.0.1/.github/workflows/submit.yml 2024-09-16 10:32:23.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-devtools-5.0.0/README.md new/yast2-devtools-5.0.1/README.md --- old/yast2-devtools-5.0.0/README.md 2023-10-18 23:15:06.000000000 +0200 +++ new/yast2-devtools-5.0.1/README.md 2024-09-16 10:32:23.000000000 +0200 @@ -2,8 +2,7 @@ []( https://github.com/yast/yast-devtools/actions?query=branch%3Amaster) -[]( -https://ci.opensuse.org/view/Yast/job/yast-yast-devtools-master/) +[](https://github.com/yast/yast-devtools/actions/workflows/submit.yml) ## Directory Structure diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-5.0.0/package/yast2-devtools.changes new/yast2-devtools-5.0.1/package/yast2-devtools.changes --- old/yast2-devtools-5.0.0/package/yast2-devtools.changes 2023-10-18 23:15:06.000000000 +0200 +++ new/yast2-devtools-5.0.1/package/yast2-devtools.changes 2024-09-16 10:32:23.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Sep 16 08:11:39 UTC 2024 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Add "which" to the list of dependencies + (gh#yast/yast-devtools#176). +- 5.0.1 + +------------------------------------------------------------------- Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidin...@suse.cz> - 5.0.0 (bsc#1185510) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-devtools-5.0.0/package/yast2-devtools.spec new/yast2-devtools-5.0.1/package/yast2-devtools.spec --- old/yast2-devtools-5.0.0/package/yast2-devtools.spec 2023-10-18 23:15:06.000000000 +0200 +++ new/yast2-devtools-5.0.1/package/yast2-devtools.spec 2024-09-16 10:32:23.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-devtools -Version: 5.0.0 +Version: 5.0.1 Release: 0 Summary: YaST2 - Development Tools License: GPL-2.0-or-later @@ -33,6 +33,8 @@ BuildRequires: perl-XML-Writer BuildRequires: pkgconfig BuildRequires: sgml-skel +# required by some scripts like y2makepot +Requires: which Requires: yast2-buildtools BuildArch: noarch