Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rpmconf for openSUSE:Factory checked 
in at 2024-02-02 15:47:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rpmconf (Old)
 and      /work/SRC/openSUSE:Factory/.rpmconf.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rpmconf"

Fri Feb  2 15:47:28 2024 rev:17 rq:1143532 version:1.1.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/rpmconf/rpmconf.changes  2023-10-19 
22:52:12.329064794 +0200
+++ /work/SRC/openSUSE:Factory/.rpmconf.new.1815/rpmconf.changes        
2024-02-02 15:48:06.474489628 +0100
@@ -1,0 +2,7 @@
+Sun Jan 28 19:11:27 UTC 2024 - Dirk Müller <[email protected]>
+
+- update to 1.1.10:
+  * Use rpm.files instead of rpm.fi
+  * Add upper version bound for setInterruptSafety()
+
+-------------------------------------------------------------------

Old:
----
  rpmconf-1.1.9.tar.gz

New:
----
  rpmconf-1.1.10.tar.gz

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

Other differences:
------------------
++++++ rpmconf.spec ++++++
--- /var/tmp/diff_new_pack.Cq5MiP/_old  2024-02-02 15:48:07.510527289 +0100
+++ /var/tmp/diff_new_pack.Cq5MiP/_new  2024-02-02 15:48:07.510527289 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmconf
 #
-# 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:           rpmconf
-Version:        1.1.9
+Version:        1.1.10
 Release:        0
 Summary:        Tool to handle rpmnew and rpmsave files
 License:        GPL-3.0-or-later

++++++ rpmconf-1.1.9.tar.gz -> rpmconf-1.1.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.1.9-1/.tito/packages/rpmconf 
new/rpmconf-rpmconf-1.1.10-1/.tito/packages/rpmconf
--- old/rpmconf-rpmconf-1.1.9-1/.tito/packages/rpmconf  2023-05-04 
11:49:24.000000000 +0200
+++ new/rpmconf-rpmconf-1.1.10-1/.tito/packages/rpmconf 2023-07-07 
15:41:27.000000000 +0200
@@ -1 +1 @@
-1.1.9-1 ./
+1.1.10-1 ./
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.1.9-1/rpmconf/rpmconf.py 
new/rpmconf-rpmconf-1.1.10-1/rpmconf/rpmconf.py
--- old/rpmconf-rpmconf-1.1.9-1/rpmconf/rpmconf.py      2023-05-04 
11:49:24.000000000 +0200
+++ new/rpmconf-rpmconf-1.1.10-1/rpmconf/rpmconf.py     2023-07-07 
15:41:27.000000000 +0200
@@ -43,7 +43,7 @@
 
 __version__ = "1.0.60"
 
-if rpm.__version__ > "4.13.0":
+if rpm.__version__ > "4.13.0" and rpm.__version__ < "4.18.0":
     rpm.setInterruptSafety(False)
 
 
@@ -154,11 +154,11 @@
         :rtype: list
 
         """
-        files = rpm.fi(package) # pylint: disable=no-member
+        files = rpm.files(package) # pylint: disable=no-member
         result = []
         for rpm_file in files:
-            if rpm_file[4] & rpm.RPMFILE_CONFIG: # pylint: disable=no-member
-                file_name = rpm_file[0]
+            if rpm_file.fflags & rpm.RPMFILE_CONFIG: # pylint: 
disable=no-member
+                file_name = rpm_file.name
                 if self.root:
                     file_name = os.path.normpath(self.root + file_name)
                 result.append(file_name)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.1.9-1/rpmconf.spec 
new/rpmconf-rpmconf-1.1.10-1/rpmconf.spec
--- old/rpmconf-rpmconf-1.1.9-1/rpmconf.spec    2023-05-04 11:49:24.000000000 
+0200
+++ new/rpmconf-rpmconf-1.1.10-1/rpmconf.spec   2023-07-07 15:41:27.000000000 
+0200
@@ -6,7 +6,7 @@
 Name:           rpmconf
 Summary:        Tool to handle rpmnew and rpmsave files
 License:        GPL-3.0-only
-Version:        1.1.9
+Version:        1.1.10
 Release:        1%{?dist}
 URL:            https://github.com/xsuchy/rpmconf
 # source is created by:
@@ -122,6 +122,10 @@
 %dir %{_datadir}/rpmconf
 
 %changelog
+* Fri Jul 07 2023 Miroslav Suchý <[email protected]> 1.1.10-1
+- Use rpm.files instead of rpm.fi
+- Add upper version bound for setInterruptSafety()
+
 * Thu May 04 2023 Miroslav Suchý <[email protected]> 1.1.9-1
 - Add BuildRequire on setuptools to fix distutils error on Python 3.12
 - when package config does not exists use /dev/null instead
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.1.9-1/setup.py 
new/rpmconf-rpmconf-1.1.10-1/setup.py
--- old/rpmconf-rpmconf-1.1.9-1/setup.py        2023-05-04 11:49:24.000000000 
+0200
+++ new/rpmconf-rpmconf-1.1.10-1/setup.py       2023-07-07 15:41:27.000000000 
+0200
@@ -4,7 +4,7 @@
 
 setup(name = "rpmconf",
       packages = ["rpmconf"],
-      version = "1.1.9",
+      version = "1.1.10",
       description = "Handle rpmnew and rpmsave files",
       author = "Igor Gnatenko",
       author_email = "[email protected]",

Reply via email to