From b7b8dc52875572ffe3c8617028937b227dcfe1107acfbffc5fa262c2ea982017 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 11 Jan 2012 17:32:22 +0000 Subject: [PATCH 1/3] Accepting request 99784 from home:vitezslav_cizek:branches:devel:openSUSE:Factory:rpmlint - added standard user and group "puppet" OBS-URL: https://build.opensuse.org/request/show/99784 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=91 --- config | 2 ++ rpmlint.changes | 5 +++++ rpmlint.spec | 1 + 3 files changed, 8 insertions(+) diff --git a/config b/config index 248ab30..318d3a4 100644 --- a/config +++ b/config @@ -148,6 +148,7 @@ setOption('StandardGroups', ( 'pulse', 'pulse-access', 'pulse-rt', + 'puppet', 'qemu', 'quagga', 'quasselcore', @@ -265,6 +266,7 @@ setOption('StandardUsers', ( 'pound', 'privoxy', 'pulse', + 'puppet', 'qemu', 'quagga', 'quasselcore', diff --git a/rpmlint.changes b/rpmlint.changes index 2b9bb89..107236f 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jan 11 14:12:59 UTC 2012 - vcizek@suse.com + +- added standard user and group "puppet" + ------------------------------------------------------------------- Wed Jan 4 16:56:40 CET 2012 - dmueller@suse.de diff --git a/rpmlint.spec b/rpmlint.spec index 3d93787..97b1d48 100644 --- a/rpmlint.spec +++ b/rpmlint.spec @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + #!BuildIgnore: rpmlint-mini Name: rpmlint From f50568aa05173ae24676e856c23ac04441e48339711359a128fc1ef09611b701 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 27 Jan 2012 01:00:27 +0000 Subject: [PATCH 2/3] Accepting request 101670 from home:ammler:branches:devel:openSUSE:Factory:rpmlint - add standard group and user znc (server:irc/znc) OBS-URL: https://build.opensuse.org/request/show/101670 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=92 --- config | 2 ++ rpmlint.changes | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/config b/config index 318d3a4..692d273 100644 --- a/config +++ b/config @@ -180,6 +180,7 @@ setOption('StandardGroups', ( 'www', 'xok', 'zeroinst', + 'znc', 'zope', )) @@ -297,6 +298,7 @@ setOption('StandardUsers', ( 'wwwrun', 'yastws', 'zeroinst', + 'znc', 'zope', )) diff --git a/rpmlint.changes b/rpmlint.changes index 107236f..f4d19d5 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Jan 26 15:02:47 UTC 2012 - suse@ammler.ch + +- add standard group and user znc (server:irc/znc) + ------------------------------------------------------------------- Wed Jan 11 14:12:59 UTC 2012 - vcizek@suse.com From f44d06719c1db6b2df9710b8248c826d51de1e8d722a7645fb567befd0df8983 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Tue, 31 Jan 2012 10:35:07 +0000 Subject: [PATCH 3/3] - suse-filelist-empty is not fatal anymore OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=93 --- CheckFilelist.py | 2 +- rpmlint.changes | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CheckFilelist.py b/CheckFilelist.py index 247230f..d3f26ae 100644 --- a/CheckFilelist.py +++ b/CheckFilelist.py @@ -353,7 +353,7 @@ class FilelistCheck(AbstractCheck.AbstractCheck): files = pkg.files() if not files: - printError(pkg, 'suse-filelist-empty', 'packages without any files are not allowed in SUSE') + printWarning(pkg, 'suse-filelist-empty', 'packages without any files are discouraged in SUSE') return for check in _checks: diff --git a/rpmlint.changes b/rpmlint.changes index f4d19d5..ab407db 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Jan 31 10:33:03 UTC 2012 - lnussel@suse.de + +- suse-filelist-empty is meant as warning only + ------------------------------------------------------------------- Thu Jan 26 15:02:47 UTC 2012 - suse@ammler.ch