From d13fde94d2e52e9e82e760d879a57f85883b129d73854a03b28f6038da2365de Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Fri, 24 Jun 2011 07:18:52 +0000 Subject: [PATCH 1/3] Updating link to change in openSUSE:Factory/rpmlint revision 128.0 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=ce996cf4139d5753946b9fb28347f788 --- rpmlint.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpmlint.spec b/rpmlint.spec index db01c05..60f0384 100644 --- a/rpmlint.spec +++ b/rpmlint.spec @@ -23,7 +23,7 @@ Name: rpmlint BuildRequires: rpm-python xz Summary: Rpm correctness checker Version: 1.2 -Release: 11 +Release: 13 Source0: http://rpmlint.zarb.org/download/rpmlint-%{version}.tar.xz Source1: config Source1001: config.in From cf6268a89e001deaa49b3cbb40c45e97f7ebfcf6e9e9fa80fb2c06bbec16d399 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Wed, 13 Jul 2011 07:27:42 +0000 Subject: [PATCH 2/3] - CheckSUIDPermissions: use non-position-independent-executable as accepted upstream OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=42 --- CheckSUIDPermissions.py | 4 ++-- rpmlint.changes | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CheckSUIDPermissions.py b/CheckSUIDPermissions.py index 5255d54..7c1b2aa 100644 --- a/CheckSUIDPermissions.py +++ b/CheckSUIDPermissions.py @@ -137,7 +137,7 @@ class SUIDCheck(AbstractCheck.AbstractCheck): if type == 010: if not 'shared object' in pkgfile.magic: - printError(pkg, 'not-a-position-independent-executable', f) + printError(pkg, 'non-position-independent-executable', f) m = self.perms[f]['mode'] o = self.perms[f]['owner'] @@ -165,7 +165,7 @@ class SUIDCheck(AbstractCheck.AbstractCheck): if type == 010: if not 'shared object' in pkgfile.magic: - printError(pkg, 'not-a-position-independent-executable', f) + printError(pkg, 'non-position-independent-executable', f) if mode&02: need_verifyscript = True diff --git a/rpmlint.changes b/rpmlint.changes index 83457ff..f8d8748 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Jul 13 07:27:03 UTC 2011 - lnussel@suse.de + +- CheckSUIDPermissions: use non-position-independent-executable as + accepted upstream + ------------------------------------------------------------------- Thu Jun 23 14:39:51 CEST 2011 - dmueller@suse.de From 6aeb2bd85b84dfa060ed67424455dd43e077a82bb7adb0ee7a4140cbae25b290 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Thu, 14 Jul 2011 09:08:26 +0000 Subject: [PATCH 3/3] - add more systemd dbus services to whitelist (bnc#705677) OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=43 --- config | 6 ++++++ rpmlint.changes | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/config b/config index 13718aa..382f346 100644 --- a/config +++ b/config @@ -313,6 +313,12 @@ setOption("DBUSServices.WhiteList", ( "org.freedesktop.systemd1.conf", "org.freedesktop.hostname1.service", "org.freedesktop.hostname1.conf", + "org.freedesktop.login1.conf", + "org.freedesktop.login1.service", + "org.freedesktop.timedate1.conf", + "org.freedesktop.timedate1.service", + "org.freedesktop.locale1.conf", + "org.freedesktop.locale1.service", # gconf2 "org.gnome.GConf.Defaults.service", "org.gnome.GConf.Defaults.conf", diff --git a/rpmlint.changes b/rpmlint.changes index f8d8748..87cb965 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Jul 14 09:07:59 UTC 2011 - lnussel@suse.de + +- add more systemd dbus services to whitelist (bnc#705677) + ------------------------------------------------------------------- Wed Jul 13 07:27:03 UTC 2011 - lnussel@suse.de