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-12-16 15:55:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1939 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Tue Dec 16 15:55:02 2025 rev:545 rq:1322960 version:20251208.250a23f3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2025-12-09 12:57:13.833298484 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1939/openSUSE-release-tools.changes
  2025-12-16 16:01:23.467823050 +0100
@@ -1,0 +2,12 @@
+Mon Dec 08 13:54:46 UTC 2025 - [email protected]
+
+- Update to version 20251208.250a23f3:
+  * Leap 16.0: Fix missing openqa host when calling git-openqa-maintenance
+
+-------------------------------------------------------------------
+Mon Dec 08 12:38:35 UTC 2025 - [email protected]
+
+- Update to version 20251208.73cc3a4a:
+  * Use openqa python client to schedule tests
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20251201.8e5d0523.obscpio

New:
----
  openSUSE-release-tools-20251208.250a23f3.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.zhcKSi/_old  2025-12-16 16:01:26.471950112 +0100
+++ /var/tmp/diff_new_pack.zhcKSi/_new  2025-12-16 16:01:26.483950620 +0100
@@ -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:        20251201.8e5d0523
+Version:        20251208.250a23f3
 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.zhcKSi/_old  2025-12-16 16:01:26.879967370 +0100
+++ /var/tmp/diff_new_pack.zhcKSi/_new  2025-12-16 16:01:26.911968724 +0100
@@ -1,7 +1,7 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">8e5d0523360aa7f339ffbf3c2ef3be803fb75043</param>
+    <param 
name="changesrevision">250a23f3af76ebff14a0b2095cdb1abdfda1a4e5</param>
   </service>
 </servicedata>
 

++++++ openSUSE-release-tools-20251201.8e5d0523.obscpio -> 
openSUSE-release-tools-20251208.250a23f3.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20251201.8e5d0523/git-openqa-maintenance.py 
new/openSUSE-release-tools-20251208.250a23f3/git-openqa-maintenance.py
--- old/openSUSE-release-tools-20251201.8e5d0523/git-openqa-maintenance.py      
2025-12-01 12:47:54.000000000 +0100
+++ new/openSUSE-release-tools-20251208.250a23f3/git-openqa-maintenance.py      
2025-12-08 14:54:03.000000000 +0100
@@ -3,7 +3,6 @@
 import os
 import re
 import argparse
-import subprocess
 import requests
 import logging
 from openqa_client.client import OpenQA_Client
@@ -528,33 +527,10 @@
     return params | settings
 
 
-def openqa_cli(host, subcommand, cmds, dry_run=False):
-    log.debug("============== openqa_cli")
-    client_args = [
-        "openqa-cli",
-        subcommand,
-        "--host",
-        host,
-    ] + cmds
-    log.debug("openqa_cli: %s %s" % (subcommand, client_args))
-    res = subprocess.run(
-        (["echo", "Simulating: "] if dry_run else []) + client_args,
-        stdout=subprocess.PIPE,
-        stderr=subprocess.PIPE,
-    )
-    if len(res.stderr):
-        log.warning(f"openqa_cli() {subcommand} stderr: {res.stderr}")
-    res.check_returncode()
-    return res.stdout.decode("utf-8")
-
-
 def openqa_schedule(args, params):
     log.debug("============== openqa_schedule")
 
-    cmd_args = []
-    for key in params:
-        cmd_args.append(f"{key}={params[key]}")
-    openqa_cli(args.openqa_host, "schedule", cmd_args, openqa_dry_run)
+    openqa.openqa_request('POST', 'isos', data=params, retries=1)
 
     query_parameters = {
         "build": params["BUILD"],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20251201.8e5d0523/gocd/checkers.opensuse.gocd.yaml 
new/openSUSE-release-tools-20251208.250a23f3/gocd/checkers.opensuse.gocd.yaml
--- 
old/openSUSE-release-tools-20251201.8e5d0523/gocd/checkers.opensuse.gocd.yaml   
    2025-12-01 12:47:54.000000000 +0100
+++ 
new/openSUSE-release-tools-20251208.250a23f3/gocd/checkers.opensuse.gocd.yaml   
    2025-12-08 14:54:03.000000000 +0100
@@ -178,9 +178,9 @@
         resources:
           - staging-bot
         tasks:
-          - script: ./git-openqa-maintenance.py --project openSUSE/Leap 
--branch leap-16.0
-          - script: ./git-openqa-maintenance.py --project products/PackageHub 
--branch leap-16.0
-          - script: ./git-openqa-maintenance.py --project openSUSE/LeapNonFree 
--branch leap-16.0-nonfree
+          - script: ./git-openqa-maintenance.py --openqa-host 
https://openqa.opensuse.org --project openSUSE/Leap --branch leap-16.0
+          - script: ./git-openqa-maintenance.py --openqa-host 
https://openqa.opensuse.org --project products/PackageHub --branch leap-16.0
+          - script: ./git-openqa-maintenance.py --openqa-host 
https://openqa.opensuse.org --project openSUSE/LeapNonFree --branch 
leap-16.0-nonfree
   openSUSE.Devel.Reminder:
     group: openSUSE.Checkers
     lock_behavior: unlockWhenFinished

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.zhcKSi/_old  2025-12-16 16:01:32.352198824 +0100
+++ /var/tmp/diff_new_pack.zhcKSi/_new  2025-12-16 16:01:32.388200347 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20251201.8e5d0523
-mtime: 1764589674
-commit: 8e5d0523360aa7f339ffbf3c2ef3be803fb75043
+version: 20251208.250a23f3
+mtime: 1765202043
+commit: 250a23f3af76ebff14a0b2095cdb1abdfda1a4e5
 

Reply via email to