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 2025-04-22 17:30:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
and /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-release-tools"
Tue Apr 22 17:30:11 2025 rev:533 rq:1271576 version:20250415.4b9e2c35
Changes:
--------
---
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2025-04-10 22:00:13.015026820 +0200
+++
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.30101/openSUSE-release-tools.changes
2025-04-22 17:30:47.525404967 +0200
@@ -1,0 +2,18 @@
+Tue Apr 15 09:47:25 UTC 2025 - [email protected]
+
+- Update to version 20250415.4b9e2c35:
+ * ttm: add a new match pattern for the package naming in Leap 16
+
+-------------------------------------------------------------------
+Thu Apr 10 10:54:58 UTC 2025 - [email protected]
+
+- Update to version 20250410.ecae7c5c:
+ * verify-build-and-generatelists: Update default Gitea URL to use SSH
authentication
+
+-------------------------------------------------------------------
+Thu Apr 10 10:08:28 UTC 2025 - [email protected]
+
+- Update to version 20250410.c8a6692d:
+ * verify-build-and-generate: For SLFO based products, wait for
SUSE:SLFO:Main:Build to be done building.
+
+-------------------------------------------------------------------
Old:
----
openSUSE-release-tools-20250409.44b68ff9.obscpio
New:
----
openSUSE-release-tools-20250415.4b9e2c35.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.NyZxpG/_old 2025-04-22 17:30:48.233434708 +0200
+++ /var/tmp/diff_new_pack.NyZxpG/_new 2025-04-22 17:30:48.237434875 +0200
@@ -21,7 +21,7 @@
%define announcer_filename factory-package-news
%define services osrt-slsa.target [email protected]
[email protected] [email protected] [email protected]
Name: openSUSE-release-tools
-Version: 20250409.44b68ff9
+Version: 20250415.4b9e2c35
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.NyZxpG/_old 2025-04-22 17:30:48.285436892 +0200
+++ /var/tmp/diff_new_pack.NyZxpG/_new 2025-04-22 17:30:48.289437059 +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">44b68ff98b096eb775df3147a86bc2cc0f3abafa</param>
+ <param
name="changesrevision">4b9e2c359c551b553f75d2c227accc9f17446958</param>
</service>
</servicedata>
++++++ openSUSE-release-tools-20250409.44b68ff9.obscpio ->
openSUSE-release-tools-20250415.4b9e2c35.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20250409.44b68ff9/ttm/releaser.py
new/openSUSE-release-tools-20250415.4b9e2c35/ttm/releaser.py
--- old/openSUSE-release-tools-20250409.44b68ff9/ttm/releaser.py
2025-04-09 11:44:51.000000000 +0200
+++ new/openSUSE-release-tools-20250415.4b9e2c35/ttm/releaser.py
2025-04-15 11:45:54.000000000 +0200
@@ -87,13 +87,13 @@
arch=self.project.image_products[0].archs[0])
def maxsize_for_package(self, package, arch):
- if re.match(r'.*-mini-.*', package):
+ if re.match(r'.*[-_]mini[-_].*', package):
return 737280000 # a CD needs to match
- if re.match(r'.*-dvd5-.*', package):
+ if re.match(r'.*[-_]dvd5[-_].*', package):
return 4700372992 # a DVD needs to match
- if re.match(r'.*-(dvd9-dvd|cd-DVD)-.*', package):
+ if re.match(r'.*[-_](dvd9[-_]dvd|cd[-_]DVD)[-_].*', package):
return 8539996159
# Other types don't have a fixed size limit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20250409.44b68ff9/verify-build-and-generatelists
new/openSUSE-release-tools-20250415.4b9e2c35/verify-build-and-generatelists
--- old/openSUSE-release-tools-20250409.44b68ff9/verify-build-and-generatelists
2025-04-09 11:44:51.000000000 +0200
+++ new/openSUSE-release-tools-20250415.4b9e2c35/verify-build-and-generatelists
2025-04-15 11:45:54.000000000 +0200
@@ -3,7 +3,8 @@
PROJECT=$1
LOG_DIR="/var/log/openSUSE-release-tools/${PROJECT}"
IBS_PRODUCT_PREFIX="SUSE:SLFO:Products:"
-GITEA_PRODUCTS_URL="https://src.suse.de/products/"
+SLFO_MAIN_BUILD="SUSE:SLFO:Main:Build"
+GITEA_PRODUCTS_URL="[email protected]:products/"
[ ! -d "${LOG_DIR}" ] && mkdir ${LOG_DIR}
@@ -25,9 +26,11 @@
echo "$1" >> ${LOG_DIR}/pkglistgen.log
}
-polling_repo() {
- logger "[CHECKING] Checking standard repository from ${PROJECT}"
- OUTPUT=$(timeout 3m
/usr/share/openSUSE-release-tools/verify-repo-built-successful.py -A ${API_URL}
-p ${PROJECT} -r standard 2>&1)
+polling_project_repo() {
+ local build_system_project="$1"
+ local build_system_repo="$2"
+ logger "[CHECKING] Checking ${build_system_repo} repository from
${build_system_project}"
+ OUTPUT=$(timeout 3m
/usr/share/openSUSE-release-tools/verify-repo-built-successful.py -A ${API_URL}
-p ${build_system_project} -r ${build_system_repo} 2>&1)
RETURNCODE=$?
if [ ${RETURNCODE} -eq 0 ]; then
logger "[READY] Repository is NOT building"
@@ -53,6 +56,13 @@
return ${RETURNCODE}
}
+polling_repo() {
+ if [[ ${PROJECT} =~ ^${IBS_PRODUCT_PREFIX}.* ]] ; then
+ polling_project_repo ${SLFO_MAIN_BUILD} standard
+ fi
+ polling_project_repo ${PROJECT} standard
+}
+
logger "[START] Start osrt-pkglistgen@${PROJECT}.service: polling repository
results"
polling_repo
# Check if repository building
++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.NyZxpG/_old 2025-04-22 17:30:49.301479571 +0200
+++ /var/tmp/diff_new_pack.NyZxpG/_new 2025-04-22 17:30:49.301479571 +0200
@@ -1,5 +1,5 @@
name: openSUSE-release-tools
-version: 20250409.44b68ff9
-mtime: 1744191891
-commit: 44b68ff98b096eb775df3147a86bc2cc0f3abafa
+version: 20250415.4b9e2c35
+mtime: 1744710354
+commit: 4b9e2c359c551b553f75d2c227accc9f17446958