forked from pool/rpmlint
Dirk Mueller
680daa4eb0
* Flake8 / Stop leaking filedescriptors - Update rpmlint-tests: * Stop leaking filedescriptors * Address various deprecation warnings * Avoid leaking fds and further Python 3.x porting - drop sourced-dirs.diff, fix-shared-library-matching.diff, suse-python-abi-check.diff, add-check-for-tmpfiles-created-at-r.diff: obsolete ignore-readelf-ar-error.diff, remove-ghostfile-checks.diff OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=499
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
--- rpmlint-rpmlint-1.10.orig/PostCheck.py
|
|
+++ rpmlint-rpmlint-1.10/PostCheck.py
|
|
@@ -112,20 +112,6 @@ class PostCheck(AbstractCheck.AbstractCh
|
|
self.check_aux(
|
|
pkg, files, prog[idx], script[idx], tag[2], prereq)
|
|
|
|
- ghost_files = pkg.ghostFiles()
|
|
- if ghost_files:
|
|
- postin = pkg[rpm.RPMTAG_POSTIN]
|
|
- prein = pkg[rpm.RPMTAG_PREIN]
|
|
- for f in ghost_files:
|
|
- if f in pkg.missingOkFiles():
|
|
- continue
|
|
- if not postin and not prein:
|
|
- printWarning(pkg, 'ghost-files-without-postin')
|
|
- if (not postin or f not in postin) and \
|
|
- (not prein or f not in prein):
|
|
- printWarning(pkg,
|
|
- 'postin-without-ghost-file-creation', f)
|
|
-
|
|
def check_aux(self, pkg, files, prog, script, tag, prereq):
|
|
if script:
|
|
if prog:
|
|
@@ -195,10 +181,6 @@ class PostCheck(AbstractCheck.AbstractCh
|
|
check = PostCheck()
|
|
|
|
# Add information about checks
|
|
-addDetails(
|
|
-'postin-without-ghost-file-creation',
|
|
-'''A file tagged as ghost is not created during %prein nor during %postin.''',
|
|
-)
|
|
for scriptlet in map(lambda x: '%' + x, RPM_SCRIPTLETS):
|
|
addDetails(
|
|
'one-line-command-in-%s' % scriptlet,
|