summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2014-05-24 16:00:09 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2014-05-24 16:00:09 +0200
commiteaf34adcbd8095bc6d1f3371b1227f654c7b19fc (patch)
treeedf034a896438113140d08944f80e1f599807923
parent753c799b8be4688bff914482a72b053ce4299335 (diff)
add apport-hook, autotools
-rw-r--r--debian/source/options2
-rw-r--r--debian/ubuntu/apport-hook.py12
2 files changed, 14 insertions, 0 deletions
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..22a4de9
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1,2 @@
+compression = xz
+compression-level = 9
diff --git a/debian/ubuntu/apport-hook.py b/debian/ubuntu/apport-hook.py
new file mode 100644
index 0000000..200718b
--- /dev/null
+++ b/debian/ubuntu/apport-hook.py
@@ -0,0 +1,12 @@
+'''apport package hook for xsdcxx
+
+Author: Jörg Frings-Fürst <ubuntu@jff-webhosting.net>
+'''
+
+from apport.hookutils import *
+
+def add_info(report):
+ attach_dmesg(report)
+ attach_hardware(report)
+ attach_related_packages(report, packages)
+