forked from openSUSE/rpmlint-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ErlangCheck.py
46 lines (39 loc) · 1.54 KB
/
ErlangCheck.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# vim:sw=4:et
#############################################################################
# File : ErlangCheck.py
# Package : rpmlint
# Author : Matwey V. Kornilov
# Purpose : Check for erlang compiled files
#############################################################################
import AbstractCheck
import Config
import Filter
import re
import rpm
from pybeam import BeamFile
class ErlangCheck(AbstractCheck.AbstractFilesCheck):
def __init__(self):
AbstractCheck.AbstractFilesCheck.__init__(
self, "ErlangCheck", ".*?\.beam$")
build_dir = rpm.expandMacro("%_builddir")
self.source_re = re.compile(build_dir)
def check_file(self, pkg, filename):
beam = BeamFile(pkg.files()[filename].path)
if 'debug_info' not in beam.compileinfo['options']:
Filter.printWarning(
pkg, "beam-compiled-without-debug_info", filename)
if not self.source_re.match(beam.compileinfo['source'].value):
Filter.printWarning(
pkg, "beam-was-not-recompiled", filename,
beam.compileinfo['source'].value)
check = ErlangCheck()
if Config.info:
Filter.addDetails(
'beam-compiled-without-debug_info',
""""Your beam file indicates that it doesn't contain debug_info.
Please, make sure that you compile with +debug_info.""",
'beam-was-not-recompiled',
"""It seems that your beam file was not compiled by you, but was
just copied in binary form to destination. Please, make sure
that you really compile it from the sources.""",
)