forked from pool/rpmlint
7383a6345e
Copy from Base:System/rpmlint based on submit request 17759 from user thomasbiege OBS-URL: https://build.opensuse.org/request/show/17759 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=43
90 lines
3.4 KiB
Python
90 lines
3.4 KiB
Python
# vim:sw=4:et
|
|
#############################################################################
|
|
# File : CheckCommonFiles.py
|
|
# Package : rpmlint
|
|
# Author : Dirk Mueller
|
|
# Purpose : Check for common files being packaged
|
|
#############################################################################
|
|
|
|
from Filter import *
|
|
import AbstractCheck
|
|
import rpm
|
|
import re
|
|
import commands
|
|
import stat
|
|
import Config
|
|
import os
|
|
import string
|
|
|
|
class CommonFilesCheck(AbstractCheck.AbstractCheck):
|
|
def __init__(self):
|
|
self.map = []
|
|
AbstractCheck.AbstractCheck.__init__(self, "CheckCommonFiles")
|
|
self.sources_am_re = re.compile('([\w\d_]+_SOURCES\s*=|\s*SUBDIRS\s*=)')
|
|
|
|
def check(self, pkg):
|
|
|
|
if pkg.isSource():
|
|
return
|
|
files = pkg.files()
|
|
for f in files.keys():
|
|
if f in pkg.ghostFiles():
|
|
continue
|
|
md5 = files[f].md5
|
|
|
|
if len(md5) and md5 in (
|
|
'c59cbaf0df9bcf35feca0d0f1fc01dae',
|
|
'cf8c4d1a5ab88db006c47ae2b51a6b30',
|
|
'5d4638159851671944108691f23e4f28',
|
|
'0d6be33865b76025c20b48bcac87adb7'):
|
|
printError(pkg, "generic-build-instructions", f)
|
|
|
|
# bnc 379919
|
|
#if len(md5) and md5 in (
|
|
# '94d55d512a9ba36caa9b7df079bae19f'):
|
|
# printError(pkg, "duplicated-file-gpl-v2", f)
|
|
|
|
#if len(md5) and md5 in (
|
|
# 'd32239bcb673463ab874e80d47fae504'):
|
|
# printError(pkg, "duplicated-file-gpl-v3", f)
|
|
|
|
# bsd causes the false positive COPYING.BSD
|
|
if len(md5) and f.rsplit('/',1)[1][0].lower() == 'r' and f.rsplit('.',1)[-1].lower() in (
|
|
'aix', 'bsd', 'dos', 'hpux', 'irix', 'os2', 'mac', 'macos', 'tru64',
|
|
'sco', 'vms', 'win32', 'win', 'solaris'):
|
|
printWarning(pkg, "non-linux-readme", f)
|
|
|
|
if f.endswith("/Makefile.am") and f[:-3] + ".in" in files and f in pkg.docFiles():
|
|
if not len(pkg.grep(self.sources_am_re, f)):
|
|
printError(pkg, "makefile-junk", f)
|
|
printError(pkg, "makefile-junk", f[:-3] + ".in")
|
|
if f[:-3] in files:
|
|
printError(pkg, "makefile-junk", f[:-3])
|
|
|
|
check=CommonFilesCheck()
|
|
|
|
if Config.info:
|
|
addDetails(
|
|
'generic-build-instructions',
|
|
"""Your package contains a file that contains the FSF generic
|
|
configure/make/make install instructions. Those are useless
|
|
for a binary package. Consider removing it to save 3kb of rpm size.""",
|
|
'duplicated-file-gpl-v3',
|
|
"""Your package contains a file that contains the FSF GPLv3
|
|
license. If you really have to ship it, consider symlinking it
|
|
from the licenses package.""",
|
|
'duplicated-file-gpl-v2',
|
|
"""Your package contains a file that contains the FSF GPLv2
|
|
license. If you really have to ship it, consider symlinking it
|
|
from the licenses package.""",
|
|
'non-linux-readme',
|
|
"""Your package contains a file that contains instructions
|
|
for non-linux platforms. They're most likely unneccessary bloat,
|
|
consider removing them from your package.""",
|
|
'makefile-junk',
|
|
"""Your package contains makefiles that only make sense in a
|
|
source package. Did you package a complete directory from the
|
|
tarball by using %doc? Consider removing Makefile* from this
|
|
directory at the end of your %install section to reduce package bloat."""
|
|
)
|