Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2018-10-23 20:35:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rpmlint (Old)
 and      /work/SRC/openSUSE:Factory/.rpmlint.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rpmlint"

Tue Oct 23 20:35:43 2018 rev:306 rq:642667 version:1.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2018-10-12 
13:08:58.667446407 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes     2018-10-23 
20:35:47.504873952 +0200
@@ -1,0 +2,12 @@
+Wed Oct 17 11:36:51 UTC 2018 - [email protected]
+
+- whitelist systemd-timesyncd (bsc#1111254) 
+
+-------------------------------------------------------------------
+Tue Oct 16 15:31:13 UTC 2018 - [email protected]
+
+- Update rpmlint-checks to version master:
+  * Use only one pattern that covers both cases
+  * Add support to identify tmpfiles_create used with just a basename
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ rpmlint-tests.spec ++++++
--- /var/tmp/diff_new_pack.AxJ9OC/_old  2018-10-23 20:35:48.940872237 +0200
+++ /var/tmp/diff_new_pack.AxJ9OC/_new  2018-10-23 20:35:48.940872237 +0200
@@ -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/
 #
 # icecream 0
 

++++++ rpmlint.spec ++++++
--- /var/tmp/diff_new_pack.AxJ9OC/_old  2018-10-23 20:35:48.956872217 +0200
+++ /var/tmp/diff_new_pack.AxJ9OC/_new  2018-10-23 20:35:48.960872213 +0200
@@ -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/
 #
 
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.AxJ9OC/_old  2018-10-23 20:35:49.068872083 +0200
+++ /var/tmp/diff_new_pack.AxJ9OC/_new  2018-10-23 20:35:49.072872079 +0200
@@ -3,4 +3,4 @@
             <param 
name="url">https://github.com/openSUSE/rpmlint-tests.git</param>
           <param 
name="changesrevision">88daa4ecc60c092a31c0d3839ef936ddc16503ff</param></service><service
 name="tar_scm">
             <param 
name="url">https://github.com/openSUSE/rpmlint-checks.git</param>
-          <param 
name="changesrevision">c9793b1845fd3a6f9f7c84acd2ba0dc56cbb0d89</param></service></servicedata>
\ No newline at end of file
+          <param 
name="changesrevision">df7d1c3260cb21372f95fe44393c098c3af9024a</param></service></servicedata>
\ No newline at end of file

++++++ config ++++++
--- /var/tmp/diff_new_pack.AxJ9OC/_old  2018-10-23 20:35:49.100872045 +0200
+++ /var/tmp/diff_new_pack.AxJ9OC/_new  2018-10-23 20:35:49.100872045 +0200
@@ -1067,7 +1067,10 @@
     "net.connman.iwd.service",
     "iwd-dbus.conf",
     # NetworkManager-fortisslvpn (bsc#1109938)
-    "nm-fortisslvpn-service.conf"
+    "nm-fortisslvpn-service.conf",
+    # systemd-timesyncd (bsc#1111254)
+    "org.freedesktop.timesync1.service",
+    "org.freedesktop.timesync1.conf"
 ))
 
 setOption("PAMModules.WhiteList", (

++++++ rpmlint-checks-master.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/TmpFilesCheck.py 
new/rpmlint-checks-master/TmpFilesCheck.py
--- old/rpmlint-checks-master/TmpFilesCheck.py  2018-10-08 13:04:59.000000000 
+0200
+++ new/rpmlint-checks-master/TmpFilesCheck.py  2018-10-16 17:12:41.000000000 
+0200
@@ -5,6 +5,7 @@
 # Purpose       : Check systemd created tmpfiles are included in filelist
 
 import re
+import os.path
 
 from Filter import addDetails, printWarning
 import AbstractCheck
@@ -38,8 +39,9 @@
                 printWarning(pkg, "tmpfile-not-regular-file", fn)
                 continue
 
+            basename = os.path.basename(fn)
             pattern = re.compile(
-                r'systemd-tmpfiles --create .*%s' % re.escape(fn))
+                r'systemd-tmpfiles --create .*%s' % re.escape(basename))
             if (not postin or not pattern.search(postin)) and \
                     (not prein or not pattern.search(prein)):
                 printWarning(pkg,


Reply via email to