SHA256
1
0
forked from pool/rpmlint
rpmlint/suse-no-run-ldconfig.diff

31 lines
1.2 KiB
Diff
Raw Normal View History

Index: SpecCheck.py
===================================================================
--- SpecCheck.py.orig
+++ SpecCheck.py
@@ -387,6 +387,10 @@ class SpecCheck(AbstractCheck.AbstractCh
for obs in unversioned(deptokens(res.group(1))):
printWarning(pkg, 'unversioned-explicit-obsoletes', obs)
+ if current_section in ('post', 'postun'):
+ if line.find('%run_ldconfig') != -1:
+ printWarning(pkg, 'deprecated-use-of-%run_ldconfig')
+
if current_section == 'changelog':
res = macro_regex.search(line)
if res and len(res.group(1)) % 2:
@@ -602,6 +606,14 @@ will break short circuiting.''',
'''Make check or other automated regression test should be run in %check, as
they can be disabled with a rpm macro for short circuiting purposes.''',
+'deprecated-use-of-%run_ldconfig',
+'''According to the new SUSE Packaging Conventions, the use of %run_ldconfig
+is deprecated. use
+
+%post(un) -p /sbin/ldconfig
+
+instead.''',
+
'macro-in-%changelog',
'''Macros are expanded in %changelog too, which can in unfortunate cases lead
to the package not building at all, or other subtle unexpected conditions that