~ubuntu-branches/debian/stretch/dkms/stretch

« back to all changes in this revision

Viewing changes to dkms_apport.py

  • Committer: Bazaar Package Importer
  • Author(s): Giuseppe Iuculano, 8510207
  • Date: 2009-12-15 08:57:24 UTC
  • mfrom: (1.1.12 upstream) (7.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20091215085724-i177u1akx59x30ou
Tags: 2.1.1.0-2
[8510207] Do not install upstart job file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
#
 
3
#  Dynamic Kernel Module Support (DKMS) <dkms-devel@dell.com>
 
4
#  Copyright (C) 2009 Dell, Inc.
 
5
#  by Mario Limonciello
 
6
#
 
7
#    This program is free software; you can redistribute it and/or modify
 
8
#    it under the terms of the GNU General Public License as published by
 
9
#    the Free Software Foundation; either version 2 of the License, or
 
10
#    (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU General Public License
 
18
#    along with this program; if not, write to the Free Software
 
19
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
20
#
 
21
 
 
22
import apport
 
23
from apport.hookutils import *
 
24
import sys
 
25
import subprocess, optparse
 
26
 
 
27
optparser = optparse.OptionParser('%prog [options]')
 
28
optparser.add_option('-m', help="Specify the DKMS module to find the package for",
 
29
                     action='store', type='string', dest='module')
 
30
optparser.add_option('-v', help="Specify the DKMS version to find the package for",
 
31
                     action='store', type='string', dest='version')
 
32
options=optparser.parse_args()[0]
 
33
 
 
34
if not options.module or not options.version:
 
35
    print >> sys.stderr, 'ERROR, both -m and -v are required'
 
36
    sys.exit(2)
 
37
 
 
38
package=packaging.get_file_package('/usr/src/' + options.module + '-' + options.version)
 
39
if package is None:
 
40
    print >> sys.stderr, 'ERROR: binary package for %s: %s not found' % (options.module,options.version)
 
41
    sys.exit(1)
 
42
 
 
43
make_log=os.path.join('/var','lib','dkms',options.module,options.version,'build','make.log')
 
44
 
 
45
report = apport.Report('Package')
 
46
report['Package'] = package
 
47
report['SourcePackage'] = apport.packaging.get_source(package)
 
48
report['ErrorMessage'] = "%s kernel module failed to build" % options.module
 
49
try:
 
50
    version = packaging.get_version(package)
 
51
except ValueError:
 
52
    version = 'N/A'
 
53
if version is None:
 
54
    version = 'N/A'
 
55
report['PackageVersion'] = version
 
56
attach_file_if_exists(report, make_log, 'DKMSBuildLog')
 
57
report.write(open(apport.fileutils.make_report_path(report), 'w'))
 
58