Hello community,

here is the log from the commit of package rpmconf for openSUSE:Factory checked 
in at 2015-12-06 07:42:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rpmconf (Old)
 and      /work/SRC/openSUSE:Factory/.rpmconf.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rpmconf"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rpmconf/rpmconf.changes  2015-12-01 
09:19:19.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rpmconf.new/rpmconf.changes     2015-12-06 
07:42:26.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Dec  4 10:29:26 UTC 2015 - [email protected]
+
+- Update to 1.0.16:
+  * Local variable 'fromdate' referenced before assignment.
+
+-------------------------------------------------------------------

Old:
----
  rpmconf-1.0.15.tar.gz

New:
----
  rpmconf-1.0.16.tar.gz

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

Other differences:
------------------
++++++ rpmconf.spec ++++++
--- /var/tmp/diff_new_pack.GpEIjS/_old  2015-12-06 07:42:27.000000000 +0100
+++ /var/tmp/diff_new_pack.GpEIjS/_new  2015-12-06 07:42:27.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           rpmconf
-Version:        1.0.15
+Version:        1.0.16
 Release:        0
 Summary:        Tool to handle rpmnew and rpmsave files
 License:        GPL-3.0+

++++++ rpmconf-1.0.15.tar.gz -> rpmconf-1.0.16.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.0.15-1/rel-eng/packages/rpmconf 
new/rpmconf-rpmconf-1.0.16-1/rel-eng/packages/rpmconf
--- old/rpmconf-rpmconf-1.0.15-1/rel-eng/packages/rpmconf       2015-11-27 
09:11:57.000000000 +0100
+++ new/rpmconf-rpmconf-1.0.16-1/rel-eng/packages/rpmconf       2015-12-01 
13:08:04.000000000 +0100
@@ -1 +1 @@
-1.0.15-1 ./
+1.0.16-1 ./
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.0.15-1/rpmconf/rpmconf.py 
new/rpmconf-rpmconf-1.0.16-1/rpmconf/rpmconf.py
--- old/rpmconf-rpmconf-1.0.15-1/rpmconf/rpmconf.py     2015-11-27 
09:11:57.000000000 +0100
+++ new/rpmconf-rpmconf-1.0.16-1/rpmconf/rpmconf.py     2015-12-01 
13:08:04.000000000 +0100
@@ -150,6 +150,8 @@
                 fromdate = None
                 err_msg += err_msg_template.format(file1)
                 file1 = "/dev/null"
+        else:
+            fromdate = time.ctime(os.stat(file1).st_mtime)
         if os.path.islink(file2):
             err_msg += "Info: '{0}' is symlink to '{1}'.\n".format(file2, 
os.readlink(file2))
             if self.is_broken_symlink(file2):
@@ -158,6 +160,8 @@
                 todate = None
                 err_msg += err_msg_template.format(file2)
                 file2 = "/dev/null"
+        else:
+            todate = time.ctime(os.stat(file2).st_mtime)
         try:
             fromlines = open(file1, "U").readlines()
             tolines = open(file2, "U").readlines()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.0.15-1/rpmconf.spec 
new/rpmconf-rpmconf-1.0.16-1/rpmconf.spec
--- old/rpmconf-rpmconf-1.0.15-1/rpmconf.spec   2015-11-27 09:11:57.000000000 
+0100
+++ new/rpmconf-rpmconf-1.0.16-1/rpmconf.spec   2015-12-01 13:08:04.000000000 
+0100
@@ -1,7 +1,7 @@
 Name:           rpmconf
 Summary:        Tool to handle rpmnew and rpmsave files
 License:        GPLv3
-Version:        1.0.15
+Version:        1.0.16
 Release:        1%{?dist}
 URL:            http://wiki.github.com/xsuchy/rpmconf
 # source is created by:
@@ -18,7 +18,9 @@
 Requires:       rpm-python3
 BuildRequires:  rpm-python3
 #check
+%if 0%{fedora} != 24
 BuildRequires:  python3-pylint
+%endif
 BuildRequires:  python3-six
 # mergetools
 Suggests: diffuse 
@@ -70,8 +72,10 @@
 mkdir -p %{buildroot}%{_datadir}/rpmconf/
 
 %check
+%if 0%{fedora} != 24
 python3-pylint --reports=n %{buildroot}%{_sbindir}/rpmconf
 python3-pylint --reports=n %{buildroot}%{python3_sitelib}/rpmconf/rpmconf.py
+%endif
 
 %files
 %license LICENSE
@@ -92,6 +96,10 @@
 %dir %{_datadir}/rpmconf
 
 %changelog
+* Tue Dec 01 2015 Miroslav Suchý <[email protected]> 1.0.16-1
+- temporary workaround for BZ 1287055
+- 1287034 - local variable 'fromdate' referenced before assignment
+
 * Fri Nov 27 2015 Miroslav Suchý <[email protected]> 1.0.15-1
 - 1277025 - handle broken symlinks
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmconf-rpmconf-1.0.15-1/setup.py 
new/rpmconf-rpmconf-1.0.16-1/setup.py
--- old/rpmconf-rpmconf-1.0.15-1/setup.py       2015-11-27 09:11:57.000000000 
+0100
+++ new/rpmconf-rpmconf-1.0.16-1/setup.py       2015-12-01 13:08:04.000000000 
+0100
@@ -4,7 +4,7 @@
 
 setup(name = "rpmconf",
       packages = ["rpmconf"],
-      version = "1.0.15",
+      version = "1.0.16",
       description = "Handle rpmnew and rpmsave files",
       author = "Igor Gnatenko",
       author_email = "[email protected]",


Reply via email to