summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/source_simple-scan.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/debian/source_simple-scan.py b/debian/source_simple-scan.py
index f889cde..6fab46c 100644
--- a/debian/source_simple-scan.py
+++ b/debian/source_simple-scan.py
@@ -8,7 +8,16 @@ import os.path
from apport.hookutils import *
LOG_FILE = os.path.expanduser('~/.cache/simple-scan/simple-scan.log')
+driver_packages = ['libsane', 'libsane-extras', 'hplip', 'hpoj']
def add_info(report):
attach_hardware(report)
+ versions = ''
+ for package in driver_packages:
+ try:
+ version = packaging.get_version(package)
+ except ValueError:
+ version = 'N/A'
+ versions += '%s %s\n' % (package, version)
+ report['DriverPackageVersions'] = versions
attach_file_if_exists(report, LOG_FILE, 'SimpleScanLog')