File: source_vlc.py

package info (click to toggle)
vlc 2.2.0~rc2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 180,528 kB
  • sloc: ansic: 354,395; cpp: 93,741; objc: 33,763; sh: 13,938; makefile: 4,266; xml: 1,537; asm: 1,251; python: 240; perl: 77; sed: 16
file content (30 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (2)
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
'''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, [
		"libaa1",
		"libgl1-mesa-glx",
		"libgl1",
		"libglib2.0-0",
		"libgtk2.0-0",
		"libnotify1",
		"libnotify1-gtk2.10",
		"libqtcore4",
		"libqtgui4",
		"libsdl-image1.2",
		"libsdl1.2debian",
		"libx11-6",
		"libx264-85",
		"libxcb-keysyms1",
		"libxcb1",
		"libxext6",
		"libxinerama1",
		"libxv1",
		"libxxf86vm1",
		] )