Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2019-03-14 15:02:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Thu Mar 14 15:02:17 2019 rev:168 rq:684852 version:20190313.b7eeea5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2019-03-10 09:40:13.488106563 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.28833/openSUSE-release-tools.changes
 2019-03-14 15:02:30.655676462 +0100
@@ -1,0 +2,19 @@
+Wed Mar 13 11:00:20 UTC 2019 - [email protected]
+
+- Update to version 20190313.b7eeea5:
+  * Added livecd-tumbleweed-xfce in livecd_products
+
+-------------------------------------------------------------------
+Mon Mar 11 14:40:11 UTC 2019 - [email protected]
+
+- Update to version 20190311.149e290:
+  * pkglistgen: Don't upper case the staging letter
+
+-------------------------------------------------------------------
+Sat Mar 09 06:49:43 UTC 2019 - [email protected]
+
+- Update to version 20190309.bb2cb5c:
+  * Fix adi command if there are actually checks
+  * devel-project: notify: catch smtp exceptions rather than crashing.
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20190308.7f2195f.obscpio

New:
----
  openSUSE-release-tools-20190313.b7eeea5.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.eSWktJ/_old  2019-03-14 15:02:32.339675942 +0100
+++ /var/tmp/diff_new_pack.eSWktJ/_new  2019-03-14 15:02:32.343675941 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
 
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20190308.7f2195f
+Version:        20190313.b7eeea5
 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.eSWktJ/_old  2019-03-14 15:02:32.371675932 +0100
+++ /var/tmp/diff_new_pack.eSWktJ/_new  2019-03-14 15:02:32.371675932 +0100
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">7f2195fb575e100404ab88b3af710c00c88b2c2e</param>
+    <param 
name="changesrevision">b7eeea5d9817ca60c2ce76a0bc5a2455eb054561</param>
   </service>
-</servicedata>
\ No newline at end of file
+</servicedata>

++++++ openSUSE-release-tools-20190308.7f2195f.obscpio -> 
openSUSE-release-tools-20190313.b7eeea5.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190308.7f2195f/devel-project.py 
new/openSUSE-release-tools-20190313.b7eeea5/devel-project.py
--- old/openSUSE-release-tools-20190308.7f2195f/devel-project.py        
2019-03-08 13:48:06.000000000 +0100
+++ new/openSUSE-release-tools-20190313.b7eeea5/devel-project.py        
2019-03-13 11:54:59.000000000 +0100
@@ -100,6 +100,7 @@
             print('{} missing {}'.format(devel_project, ', '.join(desired - 
intersection)))
 
 def notify(args):
+    import smtplib
     apiurl = osc.conf.config['apiurl']
 
     # devel_projects_get() only works for Factory as such
@@ -138,8 +139,14 @@
 - {}""".format(
             args.project, '\n- '.join(sorted(package_identifiers)))
 
-        mail_send(apiurl, args.project, email, subject, message, dry=args.dry)
-        print('notified {} of {} packages'.format(userid, 
len(package_identifiers)))
+        log = 'notified {} of {} packages'.format(userid, 
len(package_identifiers))
+        try:
+            mail_send(apiurl, args.project, email, subject, message, 
dry=args.dry)
+            print(log)
+        except smtplib.SMTPRecipientsRefused as e:
+            print('[FAILED ADDRESS] {} ({})'.format(log, email))
+        except smtplib.SMTPException as e:
+            print('[FAILED SMTP] {} ({})'.format(log, e))
 
 def requests(args):
     apiurl = osc.conf.config['apiurl']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190308.7f2195f/osclib/adi_command.py 
new/openSUSE-release-tools-20190313.b7eeea5/osclib/adi_command.py
--- old/openSUSE-release-tools-20190308.7f2195f/osclib/adi_command.py   
2019-03-08 13:48:06.000000000 +0100
+++ new/openSUSE-release-tools-20190313.b7eeea5/osclib/adi_command.py   
2019-03-13 11:54:59.000000000 +0100
@@ -55,7 +55,7 @@
             for check in info['missing_checks']:
                 print(query_project + ' ' + Fore.MAGENTA + 'missing: 
{}'.format(check))
                 return
-            for check in project.get('checks', []):
+            for check in info['checks']:
                 if check['state'] != 'success':
                     print(query_project + '{} {} check: 
{}'.format(Fore.MAGENTA, check['state'], check['name']))
                     return
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190308.7f2195f/pkglistgen/cli.py 
new/openSUSE-release-tools-20190313.b7eeea5/pkglistgen/cli.py
--- old/openSUSE-release-tools-20190308.7f2195f/pkglistgen/cli.py       
2019-03-08 13:48:06.000000000 +0100
+++ new/openSUSE-release-tools-20190313.b7eeea5/pkglistgen/cli.py       
2019-03-13 11:54:59.000000000 +0100
@@ -112,7 +112,7 @@
         for scope in opts.scope:
             if scope.startswith('staging:'):
                 letter = re.match('staging:(.*)', scope).group(1)
-                solve_project(api.prj_from_short(letter.upper()), 'staging')
+                solve_project(api.prj_from_short(letter), 'staging')
             elif scope == 'target':
                 solve_project(target_project, scope)
             elif scope == 'rings':
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190308.7f2195f/totest-manager.py 
new/openSUSE-release-tools-20190313.b7eeea5/totest-manager.py
--- old/openSUSE-release-tools-20190308.7f2195f/totest-manager.py       
2019-03-08 13:48:06.000000000 +0100
+++ new/openSUSE-release-tools-20190313.b7eeea5/totest-manager.py       
2019-03-13 11:54:59.000000000 +0100
@@ -768,7 +768,8 @@
 
     livecd_products = [ImageProduct('livecd-tumbleweed-kde', ['i586', 
'x86_64']),
                        ImageProduct('livecd-tumbleweed-gnome', ['i586', 
'x86_64']),
-                       ImageProduct('livecd-tumbleweed-x11', ['i586', 
'x86_64'])]
+                       ImageProduct('livecd-tumbleweed-x11', ['i586', 
'x86_64']),
+                       ImageProduct('livecd-tumbleweed-xfce', ['i586', 
'x86_64'])]
 
     container_products = [ImageProduct('opensuse-tumbleweed-image:docker', 
['i586', 'x86_64']),
                           ImageProduct('kubic-kured-image', ['x86_64']),

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.eSWktJ/_old  2019-03-14 15:02:32.767675810 +0100
+++ /var/tmp/diff_new_pack.eSWktJ/_new  2019-03-14 15:02:32.767675810 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20190308.7f2195f
-mtime: 1552049286
-commit: 7f2195fb575e100404ab88b3af710c00c88b2c2e
+version: 20190313.b7eeea5
+mtime: 1552474499
+commit: b7eeea5d9817ca60c2ce76a0bc5a2455eb054561
 


Reply via email to