Hello community, here is the log from the commit of package rpmlint for openSUSE:Factory checked in at 2018-11-20 22:31:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rpmlint (Old) and /work/SRC/openSUSE:Factory/.rpmlint.new.19453 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rpmlint" Tue Nov 20 22:31:07 2018 rev:309 rq:650392 version:1.10 Changes: -------- --- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes 2018-11-13 16:29:40.002284698 +0100 +++ /work/SRC/openSUSE:Factory/.rpmlint.new.19453/rpmlint.changes 2018-11-20 22:31:12.146641519 +0100 @@ -1,0 +2,22 @@ +Tue Nov 20 07:53:27 UTC 2018 - [email protected] + +- Add group 'singularity', remove user 'singularity' which was + added mistakenly. + +------------------------------------------------------------------- +Tue Nov 20 07:46:32 UTC 2018 - [email protected] + +- Add user/group 'slurm' for package slurm + (See network:cluster/slurm) (FATE#316379). + +------------------------------------------------------------------- +Fri Nov 16 12:16:18 UTC 2018 - Antonio Larrosa <[email protected]> + +- Add mpd user + +------------------------------------------------------------------- +Fri Nov 16 10:02:30 UTC 2018 - Dirk Mueller <[email protected]> + +- update libtool-wrapper-check.diff to handle inaccessible files + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ rpmlint.spec: same change ++++++ config ++++++ --- /var/tmp/diff_new_pack.1LuyxU/_old 2018-11-20 22:31:14.510640076 +0100 +++ /var/tmp/diff_new_pack.1LuyxU/_new 2018-11-20 22:31:14.510640076 +0100 @@ -465,8 +465,10 @@ 'sensu', 'shadow', 'shibd', + 'singularity', 'siproxd', '_sks', + 'slurm', 'snort', 'sogo', 'squid', @@ -591,6 +593,7 @@ 'mednafen', 'memcached', 'messagebus', + 'mpd', 'mumble-server', 'mysql', 'nagios', @@ -648,9 +651,9 @@ 'sddm', 'sensu', 'shibd', - 'singularity', 'siproxd', '_sks', + 'slurm', 'snort', 'sogo', 'squid', ++++++ libtool-wrapper-check.diff ++++++ --- /var/tmp/diff_new_pack.1LuyxU/_old 2018-11-20 22:31:14.602640021 +0100 +++ /var/tmp/diff_new_pack.1LuyxU/_new 2018-11-20 22:31:14.602640021 +0100 @@ -1,6 +1,8 @@ +Index: rpmlint-rpmlint-1.10/BinariesCheck.py +=================================================================== --- rpmlint-rpmlint-1.10.orig/BinariesCheck.py +++ rpmlint-rpmlint-1.10/BinariesCheck.py -@@ -367,8 +367,15 @@ class BinariesCheck(AbstractCheck.Abstra +@@ -367,8 +367,21 @@ class BinariesCheck(AbstractCheck.Abstra is_ar = 'current ar archive' in pkgfile.magic is_ocaml_native = 'Objective caml native' in pkgfile.magic is_lua_bytecode = 'Lua bytecode' in pkgfile.magic @@ -8,15 +10,21 @@ is_binary = is_elf or is_ar or is_ocaml_native or is_lua_bytecode + if is_shell: -+ with open(pkgfile.path, 'rb') as inputf: -+ if (b'This wrapper script should never ' -+ b'be moved out of the build directory' in inputf.read(2048)): -+ printError(pkg, 'libtool-wrapper-in-package', fname) ++ file_start = None ++ try: ++ with open(pkgfile.path, 'rb') as inputf: ++ file_start = inputf.read(2048) ++ except IOError: ++ pass ++ if (file_start and ++ b'This wrapper script should never ' ++ b'be moved out of the build directory' in file_start): ++ printError(pkg, 'libtool-wrapper-in-package', fname) + if not is_binary: if reference_regex.search(fname): lines = pkg.grep(invalid_dir_ref_regex, fname) -@@ -637,6 +644,15 @@ to list code compiled without -fPIC. +@@ -637,6 +650,15 @@ to list code compiled without -fPIC. Another common mistake that causes this problem is linking with ``gcc -Wl,-shared'' instead of ``gcc -shared''.''',
