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
|
'''apport package hook for vlc
(c) 2010 Canonical Ltd.
Author: Brian Murray <brian@ubuntu.com>
'''
from apport.hookutils import attach_related_packages
def add_info(report):
attach_related_packages(report, [
"libgl1-mesa-glx",
"libgl1",
"libglib2.0-0",
"libgtk2.0-0",
"libnotify1",
"libnotify1-gtk2.10",
"libqt5core5a",
"libqt5gui5",
"libsdl-image1.2",
"libsdl1.2debian",
"libx11-6",
"libxcb-keysyms1",
"libxcb1",
"libxext6",
"libxinerama1",
"libxv1",
"libxxf86vm1",
])
|