Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package openSUSE-release-tools for
openSUSE:Factory checked in at 2026-06-05 17:39:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
and /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-release-tools"
Fri Jun 5 17:39:17 2026 rev:554 rq:1357541 version:20260529.ebc6e9d1
Changes:
--------
---
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2026-05-23 23:27:23.236736409 +0200
+++
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.2375/openSUSE-release-tools.changes
2026-06-05 17:39:31.900118288 +0200
@@ -1,0 +2,18 @@
+Fri May 29 12:30:08 UTC 2026 - [email protected]
+
+- Update to version 20260529.ebc6e9d1:
+ * Avoid division by zero.
+
+-------------------------------------------------------------------
+Mon May 25 10:51:47 UTC 2026 - [email protected]
+
+- Update to version 20260525.08c7ac85:
+ * Enable pkglistgen on Leap 16.0 again for the images respin
+
+-------------------------------------------------------------------
+Sat May 23 07:02:19 UTC 2026 - [email protected]
+
+- Update to version 20260522.0dca9cec:
+ * fix: skip changes updated check on gitea empty PRs
+
+-------------------------------------------------------------------
Old:
----
openSUSE-release-tools-20260515.6fd49568.obscpio
New:
----
openSUSE-release-tools-20260529.ebc6e9d1.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.wReJfz/_old 2026-06-05 17:39:34.948244558 +0200
+++ /var/tmp/diff_new_pack.wReJfz/_new 2026-06-05 17:39:34.972245552 +0200
@@ -21,7 +21,7 @@
%define announcer_filename factory-package-news
%define services osrt-slsa.target [email protected]
[email protected] [email protected] [email protected]
[email protected] [email protected]
Name: openSUSE-release-tools
-Version: 20260515.6fd49568
+Version: 20260529.ebc6e9d1
Release: 0
Summary: Tools to aid in staging and release work for openSUSE/SUSE
License: GPL-2.0-or-later AND MIT
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.wReJfz/_old 2026-06-05 17:39:35.148252843 +0200
+++ /var/tmp/diff_new_pack.wReJfz/_new 2026-06-05 17:39:35.152253009 +0200
@@ -1,7 +1,7 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
- <param
name="changesrevision">6fd49568590cfbab90ecabffbf35cd8a624e7e43</param>
+ <param
name="changesrevision">ebc6e9d15ec31f9fe6b2a7ffdca556e54e043010</param>
</service>
</servicedata>
++++++ openSUSE-release-tools-20260515.6fd49568.obscpio ->
openSUSE-release-tools-20260529.ebc6e9d1.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20260515.6fd49568/check_source.py
new/openSUSE-release-tools-20260529.ebc6e9d1/check_source.py
--- old/openSUSE-release-tools-20260515.6fd49568/check_source.py
2026-05-15 14:30:08.000000000 +0200
+++ new/openSUSE-release-tools-20260529.ebc6e9d1/check_source.py
2026-05-29 14:28:31.000000000 +0200
@@ -484,7 +484,14 @@
if subprocess.run(["cmp", "-s", os.path.join(old, changes),
os.path.join(directory, changes)]).returncode:
changes_updated = True
- if not changes_updated:
+ new_package = False
+ if self.platform_type == "GITEA":
+ # On Gitea new package submission is an empty PR with no commits
+ if self.request.actions[0].src_rev ==
self.request.actions[0].tgt_rev:
+ new_package = True
+ self.logger.info("Empty PR; skipping changes_updated check")
+
+ if not changes_updated and not new_package:
self.review_messages['declined'] = "No changelog. Please use 'osc
vc' to update the changes file(s)."
return False
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20260515.6fd49568/gocd/pkglistgen.opensuse.gocd.yaml
new/openSUSE-release-tools-20260529.ebc6e9d1/gocd/pkglistgen.opensuse.gocd.yaml
---
old/openSUSE-release-tools-20260515.6fd49568/gocd/pkglistgen.opensuse.gocd.yaml
2026-05-15 14:30:08.000000000 +0200
+++
new/openSUSE-release-tools-20260529.ebc6e9d1/gocd/pkglistgen.opensuse.gocd.yaml
2026-05-29 14:28:31.000000000 +0200
@@ -188,3 +188,20 @@
- repo-checker
tasks:
- script: ./pkglistgen.py --verbose -A https://api.opensuse.org
update_and_solve --project openSUSE:Leap:16.1:Products --scope target --engine
product_composer --force
+ OfflineInstaller.PackageLists.Leap_16_0:
+ group: Leap
+ lock_behavior: unlockWhenFinished
+ environment_variables:
+ OSC_CONFIG: /home/go/config/oscrc-staging-bot
+ timer:
+ spec: 0 0 * ? * *
+ only_on_changes: false
+ materials:
+ git:
+ git: https://github.com/openSUSE/openSUSE-release-tools.git
+ stages:
+ - Update.000productcompose.dvd:
+ resources:
+ - repo-checker
+ tasks:
+ - script: ./pkglistgen.py --verbose -A https://api.opensuse.org
update_and_solve --project openSUSE:Leap:16.0:Products --scope target --engine
product_composer --force
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20260515.6fd49568/gocd/pkglistgen.opensuse.gocd.yaml.erb
new/openSUSE-release-tools-20260529.ebc6e9d1/gocd/pkglistgen.opensuse.gocd.yaml.erb
---
old/openSUSE-release-tools-20260515.6fd49568/gocd/pkglistgen.opensuse.gocd.yaml.erb
2026-05-15 14:30:08.000000000 +0200
+++
new/openSUSE-release-tools-20260529.ebc6e9d1/gocd/pkglistgen.opensuse.gocd.yaml.erb
2026-05-29 14:28:31.000000000 +0200
@@ -143,3 +143,20 @@
- repo-checker
tasks:
- script: ./pkglistgen.py --verbose -A https://api.opensuse.org
update_and_solve --project openSUSE:Leap:16.1:Products --scope target --engine
product_composer --force
+ OfflineInstaller.PackageLists.Leap_16_0:
+ group: Leap
+ lock_behavior: unlockWhenFinished
+ environment_variables:
+ OSC_CONFIG: /home/go/config/oscrc-staging-bot
+ timer:
+ spec: 0 0 * ? * *
+ only_on_changes: false
+ materials:
+ git:
+ git: https://github.com/openSUSE/openSUSE-release-tools.git
+ stages:
+ - Update.000productcompose.dvd:
+ resources:
+ - repo-checker
+ tasks:
+ - script: ./pkglistgen.py --verbose -A https://api.opensuse.org
update_and_solve --project openSUSE:Leap:16.0:Products --scope target --engine
product_composer --force
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20260515.6fd49568/osclib/stagingapi.py
new/openSUSE-release-tools-20260529.ebc6e9d1/osclib/stagingapi.py
--- old/openSUSE-release-tools-20260515.6fd49568/osclib/stagingapi.py
2026-05-15 14:30:08.000000000 +0200
+++ new/openSUSE-release-tools-20260529.ebc6e9d1/osclib/stagingapi.py
2026-05-29 14:28:31.000000000 +0200
@@ -839,6 +839,9 @@
def project_status_build_percent(self, status):
final, tobuild = self.project_status_build_sum(status)
+ if (final + tobuild) == 0:
+ return None
+
return final / float(final + tobuild) * 100
def project_status_build_sum(self, status):
++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.wReJfz/_old 2026-06-05 17:39:37.516350942 +0200
+++ /var/tmp/diff_new_pack.wReJfz/_new 2026-06-05 17:39:37.520351107 +0200
@@ -1,5 +1,5 @@
name: openSUSE-release-tools
-version: 20260515.6fd49568
-mtime: 1778848208
-commit: 6fd49568590cfbab90ecabffbf35cd8a624e7e43
+version: 20260529.ebc6e9d1
+mtime: 1780057711
+commit: ebc6e9d15ec31f9fe6b2a7ffdca556e54e043010