Hello community, here is the log from the commit of package rpmlint for openSUSE:Factory checked in at 2012-03-20 11:34:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rpmlint (Old) and /work/SRC/openSUSE:Factory/.rpmlint.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rpmlint", Maintainer is "dmuel...@suse.com" Changes: -------- --- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes 2012-03-16 13:24:27.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2012-03-20 11:35:20.000000000 +0100 @@ -1,0 +2,11 @@ +Tue Mar 20 08:32:33 UTC 2012 - lnus...@suse.de + +- better deal with spaces in logrotate config +- add colord-sane dbus service to whitelist (bnc#752518) + +------------------------------------------------------------------- +Fri Mar 16 14:26:34 CET 2012 - dmuel...@suse.de + +- fix parsing of update-alternatives and clarify info message + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ CheckAlternativesGhostFiles.py ++++++ --- /var/tmp/diff_new_pack.Hm0zxA/_old 2012-03-20 11:35:22.000000000 +0100 +++ /var/tmp/diff_new_pack.Hm0zxA/_new 2012-03-20 11:35:22.000000000 +0100 @@ -32,8 +32,12 @@ if cls.INSTALL in c): #parse install - xs = command.split(None, 4) - ghost_files.append(xs[1]) + command_args = [] + for arg in command.split(None): + if not arg.startswith("--"): + command_args.append(arg) + + ghost_files.append(command_args[0]) if cls.SLAVE in command: for sc in ( \ @@ -70,12 +74,12 @@ addDetails( 'generic-name-not-marked-as-ghost', -'''The generic name is not marked as a ghost, which may cause a problems during -update. Mark it as a %ghost in %files section.''', +'''The update-alternatives generic name is not marked as a ghost in the %files section. +This causes problems during update. Mark it as a %ghost in %files section.''', 'generic-name-not-in-filelist', -'''The generic name is not in a filelist of package, add it to list marked as -%ghost. Note: this error will be raised, if you use a hash ($) in file name, -use rpm macros in spec file instead.''', +'''The update-alternatives generic name is not in a filelist of package. +Add it to list marked as %ghost. Note: this error will be raised, +if you use a hash ($) in file name, use rpm macros in spec file instead.''', ) ++++++ CheckLogrotate.py ++++++ --- /var/tmp/diff_new_pack.Hm0zxA/_old 2012-03-20 11:35:22.000000000 +0100 +++ /var/tmp/diff_new_pack.Hm0zxA/_new 2012-03-20 11:35:22.000000000 +0100 @@ -63,7 +63,8 @@ if line.endswith('{'): insection = True for logfile in line.split(' '): - if logfile == '{': + logfile = logfile.strip() + if len(logfile) == 0 or logfile == '{': continue dn = os.path.dirname(logfile) if not dn in dirs: ++++++ config ++++++ --- /var/tmp/diff_new_pack.Hm0zxA/_old 2012-03-20 11:35:22.000000000 +0100 +++ /var/tmp/diff_new_pack.Hm0zxA/_new 2012-03-20 11:35:22.000000000 +0100 @@ -1,5 +1,5 @@ # -*- python -*- -# vim: syntax=python +# vim: syntax=python sw=4 et # Configuration for the rpmlint utility. # Loaded before ~/.rpmlintrc # $Id: config,v 1.39 2003/12/22 11:20:55 flepied Exp $ @@ -481,6 +481,9 @@ # colord (bnc#698250) "org.freedesktop.ColorManager.service", "org.freedesktop.ColorManager.conf", + # colord-sane (bnc#752518) + "org.freedesktop.colord-sane.service", + "org.freedesktop.colord-sane.conf", # lightdm (bnc#708205) "org.freedesktop.DisplayManager.conf", # kdepim4/kalarm (bnc#707723) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org