From 0f35b3a4de021c8c7ed3d2899d4b563eefdf3d9467213787ff309943dce8afa3 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Mon, 28 Nov 2011 11:01:56 +0000 Subject: [PATCH 1/3] - add NetworkManager-openconnect to dbus whitelist (bnc#732915) - add global filter for SuSEfirewall2's sysconfig file as setBadness in the package is not allowed OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=66 --- config | 8 ++++++++ rpmlint.changes | 7 +++++++ rpmlint.spec | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/config b/config index 1875d35..4901f5f 100644 --- a/config +++ b/config @@ -472,6 +472,8 @@ setOption("DBUSServices.WhiteList", ( # kdepim4/kalarm (bnc#707723) "org.kde.kalarmrtcwake.conf", "org.kde.kalarmrtcwake.service", + # NetworkManager-openvpn (bnc#732915) + "nm-openconnect-service.conf", )) # Output filters @@ -639,6 +641,12 @@ addFilter("nfs-client\.\S+: \w: suse-filelist-forbidden-backup-file /var/lib/nfs addFilter("perl\.\S+: \w: suse-filelist-forbidden-perl-dir ") addFilter("info\.\S+: \w: info-dir-file .*/usr/share/info/dir") +# fillup is known to break SuSEfirewall's sysconfig file on many +# systems as people tend to break up long lines into several ones. +# This bug remains unfixed since years (bnc#340926). +# So we have to avoid fillup and therefore break the SUSE policy +addFilter("SuSEfirewall2\.\S+: \w: suse-filelist-forbidden-sysconfig /etc/sysconfig/SuSEfirewall2") + # these packages are used for CD creation and are not supposed to be # installed. It's still a dirty hack to make an exception. The # packages should either be built in a separate project with diff --git a/rpmlint.changes b/rpmlint.changes index c179a46..2a937d0 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Mon Nov 28 11:00:43 UTC 2011 - lnussel@suse.de + +- add NetworkManager-openconnect to dbus whitelist (bnc#732915) +- add global filter for SuSEfirewall2's sysconfig file as setBadness in the + package is not allowed + ------------------------------------------------------------------- Sun Aug 28 17:11:34 UTC 2011 - opensuse@cboltz.de diff --git a/rpmlint.spec b/rpmlint.spec index d35ab90..b8c0536 100644 --- a/rpmlint.spec +++ b/rpmlint.spec @@ -23,7 +23,7 @@ Name: rpmlint BuildRequires: rpm-python xz Summary: Rpm correctness checker Version: 1.3 -Release: 2 +Release: 4 Source0: http://rpmlint.zarb.org/download/rpmlint-%{version}.tar.xz Source1: config Source1001: config.in From d76a710dbd5ac8f94b770c0deb6373df60a14e51453a38ab7fa06e243735ac97 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Mon, 28 Nov 2011 12:35:27 +0000 Subject: [PATCH 2/3] fix badness appearing in string OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=67 --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index 4901f5f..2ee3d98 100644 --- a/config +++ b/config @@ -645,7 +645,7 @@ addFilter("info\.\S+: \w: info-dir-file .*/usr/share/info/dir") # systems as people tend to break up long lines into several ones. # This bug remains unfixed since years (bnc#340926). # So we have to avoid fillup and therefore break the SUSE policy -addFilter("SuSEfirewall2\.\S+: \w: suse-filelist-forbidden-sysconfig /etc/sysconfig/SuSEfirewall2") +addFilter("SuSEfirewall2\.\S+: \w: suse-filelist-forbidden-sysconfig.*/etc/sysconfig/SuSEfirewall2") # these packages are used for CD creation and are not supposed to be # installed. It's still a dirty hack to make an exception. The From 9617179b2ae908b593d2642204346ee193faa14ed114a776164eb89138f0484e Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Mon, 28 Nov 2011 13:22:53 +0000 Subject: [PATCH 3/3] merge sr#93376 manually: - added: standard group 'citadel' - added: standard user 'citadel' - changed: addDetails('non-standard-uid', ... branch paket ...', 'non-standard-uid', ... branch paket ...') OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=68 --- config | 8 ++++++-- rpmlint.changes | 8 ++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/config b/config index 2ee3d98..ac27374 100644 --- a/config +++ b/config @@ -77,6 +77,7 @@ setOption('StandardGroups', ( 'bin', 'casaauth', 'cdrom', + 'citadel', 'console', 'cwbconv', 'daemon', @@ -194,6 +195,7 @@ setOption('StandardUsers', ( 'casaatsd', 'casaatvd', 'casaauth', + 'citadel', 'cntlm', 'cop', 'cyrus', @@ -297,11 +299,13 @@ setOption('StandardUsers', ( addDetails('non-standard-uid', '''A file in this package is owned by an unregistered user id. -Please contact opensuse-packaging@opensuse.org to register the user. +To register the user, please branch the devel:openSUSE:Factory:rpmlint rpmlint package, +add the user to the "config" file and send a submitrequest. ''', 'non-standard-gid', '''A file in this package is owned by an unregistered group id. -Please contact opensuse-packaging@opensuse.org to register the group. +To register the group, please branch the devel:openSUSE:Factory:rpmlint rpmlint package, +add the group to the "config" file and send a submitrequest. ''' ) diff --git a/rpmlint.changes b/rpmlint.changes index 2a937d0..e33f4fb 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -5,6 +5,14 @@ Mon Nov 28 11:00:43 UTC 2011 - lnussel@suse.de - add global filter for SuSEfirewall2's sysconfig file as setBadness in the package is not allowed +------------------------------------------------------------------- +Wed Nov 23 22:28:34 UTC 2011 - projects@localside.net + +- added: standard group 'citadel' +- added: standard user 'citadel' +- changed: addDetails('non-standard-uid', ... branch paket ...', + 'non-standard-uid', ... branch paket ...') + ------------------------------------------------------------------- Sun Aug 28 17:11:34 UTC 2011 - opensuse@cboltz.de