Merge lp:~sylvain-pineau/checkbox/cert-status-exporter into lp:checkbox

Proposed by Sylvain Pineau
Status: Merged
Approved by: Zygmunt Krynicki
Approved revision: 3571
Merged at revision: 3584
Proposed branch: lp:~sylvain-pineau/checkbox/cert-status-exporter
Merge into: lp:checkbox
Diff against target: 19358 lines (+19125/-23)
9 files modified
plainbox/plainbox/data/report/checkbox.xsl (+18/-5)
plainbox/plainbox/impl/commands/test_run.py (+4/-4)
plainbox/plainbox/impl/exporter/__init__.py (+7/-0)
plainbox/plainbox/impl/exporter/test_html.py (+2/-1)
plainbox/plainbox/impl/exporter/test_init.py (+2/-0)
plainbox/plainbox/impl/exporter/xlsx.py (+24/-4)
plainbox/plainbox/impl/exporter/xml.py (+12/-7)
plainbox/plainbox/test-data/html-exporter/example-data.html (+11/-2)
plainbox/plainbox/test-data/xml-exporter/example-data-certification-status.json (+19045/-0)
To merge this branch: bzr merge lp:~sylvain-pineau/checkbox/cert-status-exporter
Reviewer Review Type Date Requested Status
Zygmunt Krynicki (community) Approve
Sylvain Pineau (community) Needs Resubmitting
Review via email: mp+249583@code.launchpad.net

Description of the change

This is a follow-up branch based on Zygmunt's work. Together it brings support for the new certification status data to the following exporters:

- xml
- html
- xlsx

I made OPTION_WITH_CERTIFICATION_STATUS a supported option of the xml exporter so that it can be set from the html exporter without the need of hardcoding it in the xml builtin options (till we can confirm that HEXR accepts such new attributes)

To post a comment you must log in.
Revision history for this message
Zygmunt Krynicki (zyga) wrote :

This is all fine but we need to update tests to reflect those changes.

Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

Tests updated.

review: Needs Resubmitting
Revision history for this message
Zygmunt Krynicki (zyga) wrote :

This will fail per-commit testing. If you push it as git I can re-work it.

Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

I gitified/squashed/repushed. It should be ok now ;)

review: Needs Resubmitting
Revision history for this message
Zygmunt Krynicki (zyga) wrote :

Did you run per-commit tests? Quick glance suggests that this will fail.

review: Needs Information
Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

the oldest (28d2162) one is failing indeed, let le fix that and repush

Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

every commits passed (I triple checked)

review: Needs Resubmitting
Revision history for this message
Zygmunt Krynicki (zyga) wrote :

Something is still fishy to me:

http://bazaar.launchpad.net/~sylvain-pineau/checkbox/cert-status-exporter/revision/3570

This adds the new section but it has no impact on any tests? Perhaps
it's just not working?

On Fri, Feb 13, 2015 at 4:08 PM, Sylvain Pineau
<email address hidden> wrote:
> Review: Resubmit
>
> every commits passed (I triple checked)
> --
> https://code.launchpad.net/~sylvain-pineau/checkbox/cert-status-exporter/+merge/249583
> You are reviewing the proposed merge of lp:~sylvain-pineau/checkbox/cert-status-exporter into lp:checkbox.

Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

Interesting, let me check, now that my bash history is full of git commands

Revision history for this message
Zygmunt Krynicki (zyga) wrote :

Offtopic, after we get it to work perhaps it would be useful to have a
second copy of the reference good report with the new option turned
on. I suspect the test code can be just copy-pasted/reused having
changed just the file name and activated options.

On Fri, Feb 13, 2015 at 4:15 PM, Sylvain Pineau
<email address hidden> wrote:
> Interesting, let me check, now that my bash history is full of git commands
> --
> https://code.launchpad.net/~sylvain-pineau/checkbox/cert-status-exporter/+merge/249583
> You are reviewing the proposed merge of lp:~sylvain-pineau/checkbox/cert-status-exporter into lp:checkbox.

Revision history for this message
Zygmunt Krynicki (zyga) wrote :

This can be easily tested without any manual work with:

git rebase -i --exec ./setup.py test --quiet

On Fri, Feb 13, 2015 at 3:49 PM, Sylvain Pineau
<email address hidden> wrote:
> the oldest (28d2162) one is failing indeed, let le fix that and repush
> --
> https://code.launchpad.net/~sylvain-pineau/checkbox/cert-status-exporter/+merge/249583
> You are reviewing the proposed merge of lp:~sylvain-pineau/checkbox/cert-status-exporter into lp:checkbox.

Revision history for this message
Chris Gregan (cgregan) wrote :

Certification_status added to exporters. This all seems ok to me. Can't wait to test it!

3567. By Sylvain Pineau

plainbox:exporter: add OPTION_WITH_CERTIFICATION_STATUS

This patch adds a new base option, OPTION_WITH_CERTIFICATION_STATUS,
which if enabled inserts JobState.effective_certification_status
as 'certification_status' into the job_data dictionary.

Signed-off-by: Zygmunt Krynicki <email address hidden>

3568. By Sylvain Pineau

plainbox:exporter:xml: support for certification_status data

This patch makes the XML exporter insert certification status as an
attribute to the <question> node if the data inserted by the
OPTION_WITH_CERTIFICATION_STATUS was selected.
It also adds OPTION_WITH_CERTIFICATION_STATUS to the supported options list.

3569. By Zygmunt Krynicki

plainbox:exporter:html: display certification-status column

This patch displays the certification status information in a new column.

Signed-off-by: Zygmunt Krynicki <email address hidden>

3570. By Zygmunt Krynicki

plainbox:exporters:html: display certification blockers section

This patch alters the XLST transformation to make use of the
certification_status attribute to come up with a new list of non-passing
jobs that have certification_status of blocker.

Signed-off-by: Zygmunt Krynicki <email address hidden>

3571. By Sylvain Pineau

plainbox:exporter:xlsx:Add a new column for the certification status

OPTION_WITH_CERTIFICATION_STATUS is set by default

Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

I've fixed the certification blockers section (and the corresponding tests) in the HTML report.
ready for review.

review: Needs Resubmitting
Revision history for this message
Zygmunt Krynicki (zyga) wrote :

Let's land this, thanks for finishing the work

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plainbox/plainbox/data/report/checkbox.xsl'
2--- plainbox/plainbox/data/report/checkbox.xsl 2015-01-08 12:53:23 +0000
3+++ plainbox/plainbox/data/report/checkbox.xsl 2015-02-18 12:38:09 +0000
4@@ -34,10 +34,7 @@
5 <xsl:apply-templates select=".//software/lsbrelease" />
6 <xsl:apply-templates select=".//software/requirements"/>
7 </div>
8- <div id="content" class="clearfix">
9- <h2>Tests Performed</h2>
10- <xsl:apply-templates select=".//questions" />
11- </div>
12+ <xsl:apply-templates select=".//questions" />
13 <div id="content" class="clearfix">
14 <h2>Log Files and Environment Information</h2>
15 <xsl:apply-templates select=".//context" />
16@@ -144,13 +141,15 @@
17 </xsl:template>
18
19 <xsl:template match="questions">
20- <h3 id="questions">Tests</h3>
21+ <div id="content" class="clearfix">
22+ <h2 id="questions">Tests Performed</h2>
23 <table style="width: 700px">
24 <tr>
25 <th> </th>
26 <th>Name</th>
27 <th style="width: 15em;">Result</th>
28 <th>Comment</th>
29+ <th>Certification Status</th>
30 </tr>
31 <xsl:for-each select="question">
32 <tr>
33@@ -186,9 +185,23 @@
34 <td><xsl:value-of select="comment" /></td>
35 </xsl:otherwise>
36 </xsl:choose>
37+ <td><xsl:value-of select="@certification_status"/></td>
38 </tr>
39 </xsl:for-each>
40 </table>
41+ </div>
42+ <div id="content" class="clearfix">
43+ <h2 id="certification-status">Certification Blockers</h2>
44+ <ul>
45+ <xsl:for-each select="question">
46+ <xsl:choose>
47+ <xsl:when test="@certification_status = 'blocker' and not(normalize-space(answer) = 'pass')">
48+ <li><xsl:value-of select="@name"/></li>
49+ </xsl:when>
50+ </xsl:choose>
51+ </xsl:for-each>
52+ </ul>
53+ </div>
54 </xsl:template>
55
56 <xsl:template match="context">
57
58=== modified file 'plainbox/plainbox/impl/commands/test_run.py'
59--- plainbox/plainbox/impl/commands/test_run.py 2014-12-01 11:31:15 +0000
60+++ plainbox/plainbox/impl/commands/test_run.py 2015-02-18 12:38:09 +0000
61@@ -153,10 +153,10 @@
62 self.assertEqual(call.exception.args, (0,))
63 expected = """
64 Each format may support a different set of options
65- json: with-io-log, squash-io-log, flatten-io-log, with-run-list, with-job-list, with-resource-map, with-job-defs, with-attachments, with-comments, with-job-via, with-job-hash, with-category-map, machine-json
66- rfc822: with-io-log, squash-io-log, flatten-io-log, with-run-list, with-job-list, with-resource-map, with-job-defs, with-attachments, with-comments, with-job-via, with-job-hash, with-category-map
67- text: with-io-log, squash-io-log, flatten-io-log, with-run-list, with-job-list, with-resource-map, with-job-defs, with-attachments, with-comments, with-job-via, with-job-hash, with-category-map
68- xml: client-name
69+ json: with-io-log, squash-io-log, flatten-io-log, with-run-list, with-job-list, with-resource-map, with-job-defs, with-attachments, with-comments, with-job-via, with-job-hash, with-category-map, with-certification-status, machine-json
70+ rfc822: with-io-log, squash-io-log, flatten-io-log, with-run-list, with-job-list, with-resource-map, with-job-defs, with-attachments, with-comments, with-job-via, with-job-hash, with-category-map, with-certification-status
71+ text: with-io-log, squash-io-log, flatten-io-log, with-run-list, with-job-list, with-resource-map, with-job-defs, with-attachments, with-comments, with-job-via, with-job-hash, with-category-map, with-certification-status
72+ xml: client-name, with-certification-status
73 """
74 self.assertEqual(io.combined, cleandoc(expected) + "\n")
75
76
77=== modified file 'plainbox/plainbox/impl/exporter/__init__.py'
78--- plainbox/plainbox/impl/exporter/__init__.py 2015-01-07 14:52:42 +0000
79+++ plainbox/plainbox/impl/exporter/__init__.py 2015-02-18 12:38:09 +0000
80@@ -84,6 +84,7 @@
81 OPTION_WITH_JOB_VIA = 'with-job-via'
82 OPTION_WITH_JOB_HASH = 'with-job-hash'
83 OPTION_WITH_CATEGORY_MAP = 'with-category-map'
84+ OPTION_WITH_CERTIFICATION_STATUS = 'with-certification-status'
85
86 SUPPORTED_OPTION_LIST = (
87 OPTION_WITH_IO_LOG,
88@@ -98,6 +99,7 @@
89 OPTION_WITH_JOB_VIA,
90 OPTION_WITH_JOB_HASH,
91 OPTION_WITH_CATEGORY_MAP,
92+ OPTION_WITH_CERTIFICATION_STATUS,
93 )
94
95 def __init__(self, option_list=None):
96@@ -269,6 +271,11 @@
97 else:
98 io_log_data = self._io_log(job_state.result.get_io_log())
99 data['result_map'][job_id]['io_log'] = io_log_data
100+
101+ # Add certification status if requested
102+ if self.OPTION_WITH_CERTIFICATION_STATUS in self._option_list:
103+ data['result_map'][job_id]['certification_status'] = (
104+ job_state.effective_certification_status)
105 return data
106
107 def _build_attachment_map(self, data, job_id, job_state):
108
109=== modified file 'plainbox/plainbox/impl/exporter/test_html.py'
110--- plainbox/plainbox/impl/exporter/test_html.py 2014-09-13 11:37:17 +0000
111+++ plainbox/plainbox/impl/exporter/test_html.py 2015-02-18 12:38:09 +0000
112@@ -106,7 +106,8 @@
113
114 def setUp(self):
115 data = resource_json(
116- "plainbox", "test-data/xml-exporter/example-data.json",
117+ "plainbox",
118+ "test-data/xml-exporter/example-data-certification-status.json",
119 exact=True)
120 exporter = HTMLSessionStateExporter(
121 system_id="",
122
123=== modified file 'plainbox/plainbox/impl/exporter/test_init.py'
124--- plainbox/plainbox/impl/exporter/test_init.py 2014-12-01 11:31:16 +0000
125+++ plainbox/plainbox/impl/exporter/test_init.py 2015-02-18 12:38:09 +0000
126@@ -221,6 +221,7 @@
127 ('requires', 'job_b.ready == "yes"'),
128 ('command', 'echo testing && true'),
129 ('io_log', ['dGVzdGluZwo=']),
130+ ('certification_status', 'unspecified'),
131 ]),
132 'job_b': OrderedDict([
133 ('summary', 'This is job B'),
134@@ -234,6 +235,7 @@
135 ('plugin', 'resource'),
136 ('command', 'echo ready: yes'),
137 ('io_log', ['cmVhZHk6IHllcwo=']),
138+ ('certification_status', 'unspecified'),
139 ])
140 },
141 'attachment_map': {
142
143=== modified file 'plainbox/plainbox/impl/exporter/xlsx.py'
144--- plainbox/plainbox/impl/exporter/xlsx.py 2015-01-08 10:05:54 +0000
145+++ plainbox/plainbox/impl/exporter/xlsx.py 2015-02-18 12:38:09 +0000
146@@ -96,6 +96,7 @@
147 SessionStateExporterBase.OPTION_WITH_RESOURCE_MAP,
148 SessionStateExporterBase.OPTION_WITH_ATTACHMENTS,
149 SessionStateExporterBase.OPTION_WITH_CATEGORY_MAP,
150+ SessionStateExporterBase.OPTION_WITH_CERTIFICATION_STATUS,
151 )
152 self._option_list += tuple(option_list)
153 self.total_pass = 0
154@@ -190,6 +191,15 @@
155 'align': 'left', 'valign': 'vcenter', 'size': 8,
156 'bg_color': '#E6E6E6', 'indent': 1,
157 })
158+ # Table rows without borders (center)
159+ self.format18 = self.workbook.add_format({
160+ 'align': 'center', 'valign': 'vcenter', 'size': 8,
161+ })
162+ # Table rows without borders, grayed out background (center)
163+ self.format19 = self.workbook.add_format({
164+ 'align': 'center', 'valign': 'vcenter', 'size': 8,
165+ 'bg_color': '#E6E6E6',
166+ })
167
168 def _hw_collection(self, data):
169 hw_info = defaultdict(lambda: 'NA')
170@@ -563,6 +573,14 @@
171 # behaved. This will be fixed with detailed per-outcome
172 # counters later.
173 self.total_skip += 1
174+ certification_status = ''
175+ if 'certification_status' in result_map[job]:
176+ cert_status = result_map[job]['certification_status']
177+ if cert_status == 'unspecified':
178+ cert_status = ''
179+ self.worksheet3.write(
180+ self._lineno, max_level + 3, cert_status,
181+ self.format18 if self._lineno % 2 else self.format19)
182 io_log = ' '
183 if result_map[job]['io_log']:
184 io_log = standard_b64decode(
185@@ -573,13 +591,13 @@
186 "").splitlines())
187 desc_lines -= 1
188 self.worksheet3.write(
189- self._lineno, max_level + 3, io_log,
190+ self._lineno, max_level + 4, io_log,
191 self.format16 if self._lineno % 2 else self.format17)
192 comments = ' '
193 if result_map[job]['comments']:
194 comments = result_map[job]['comments'].rstrip()
195 self.worksheet3.write(
196- self._lineno, max_level + 4, comments,
197+ self._lineno, max_level + 5, comments,
198 self.format16 if self._lineno % 2 else self.format17)
199 if self.OPTION_WITH_DESCRIPTION in self._option_list:
200 self.worksheet4.write(
201@@ -613,11 +631,13 @@
202 [self.worksheet3.set_column(i, i, 2) for i in range(1, max_level + 1)]
203 self.worksheet3.set_column(max_level + 1, max_level + 1, 48)
204 self.worksheet3.set_column(max_level + 2, max_level + 2, 12)
205- self.worksheet3.set_column(max_level + 3, max_level + 3, 65)
206+ self.worksheet3.set_column(max_level + 3, max_level + 3, 18)
207 self.worksheet3.set_column(max_level + 4, max_level + 4, 65)
208+ self.worksheet3.set_column(max_level + 5, max_level + 5, 65)
209 self.worksheet3.write_row(
210 5, max_level + 1,
211- [_('Name'), _('Result'), _('I/O Log'), _('Comments')],
212+ [_('Name'), _('Result'), _('Certification Status'), _('I/O Log'),
213+ _('Comments')],
214 self.format07)
215 if self.OPTION_WITH_DESCRIPTION in self._option_list:
216 self.worksheet4.write(3, 1, _('Test Descriptions'), self.format03)
217
218=== modified file 'plainbox/plainbox/impl/exporter/xml.py'
219--- plainbox/plainbox/impl/exporter/xml.py 2015-01-08 10:05:29 +0000
220+++ plainbox/plainbox/impl/exporter/xml.py 2015-02-18 12:38:09 +0000
221@@ -115,7 +115,10 @@
222 NS = '2013.com.canonical.certification::'
223
224 OPTION_CLIENT_NAME = 'client-name'
225- SUPPORTED_OPTION_LIST = (OPTION_CLIENT_NAME, )
226+ SUPPORTED_OPTION_LIST = (
227+ OPTION_CLIENT_NAME,
228+ SessionStateExporterBase.OPTION_WITH_CERTIFICATION_STATUS
229+ )
230
231 def __init__(self, option_list=None, system_id=None, timestamp=None,
232 client_version=None, client_name='plainbox'):
233@@ -354,12 +357,14 @@
234 # hardware section).
235 if job_data["plugin"] in ("resource", "local", "attachment"):
236 continue
237- question = ET.SubElement(
238- questions, "question", attrib={
239- "name": job_id[len(self.NS):]
240- if job_id.startswith(self.NS) else job_id
241- }
242- )
243+ attrib = {
244+ "name": (job_id[len(self.NS):]
245+ if job_id.startswith(self.NS) else job_id),
246+ }
247+ if 'certification_status' in job_data:
248+ attrib['certification_status'] = (
249+ job_data['certification_status'])
250+ question = ET.SubElement(questions, "question", attrib=attrib)
251 answer = ET.SubElement(
252 question, "answer", attrib={"type": "multiple_choice"})
253 answer.text = OUTCOME_METADATA_MAP[
254
255=== modified file 'plainbox/plainbox/test-data/html-exporter/example-data.html'
256--- plainbox/plainbox/test-data/html-exporter/example-data.html 2015-01-08 12:53:23 +0000
257+++ plainbox/plainbox/test-data/html-exporter/example-data.html 2015-02-18 12:38:09 +0000
258@@ -10901,14 +10901,14 @@
259 </div>
260 </div>
261 <div id="content" class="clearfix">
262- <h2>Tests Performed</h2>
263- <h3 id="questions">Tests</h3>
264+ <h2 id="questions">Tests Performed</h2>
265 <table style="width: 700px">
266 <tr>
267 <th/>
268 <th>Name</th>
269 <th style="width: 15em;">Result</th>
270 <th>Comment</th>
271+ <th>Certification Status</th>
272 </tr>
273 <tr>
274 <td>
275@@ -10917,6 +10917,7 @@
276 <td class="label">camera/detect</td>
277 <td style="background-color: #DC3912">FAILED</td>
278 <td>webcam is broken on this system</td>
279+ <td>blocker</td>
280 </tr>
281 <tr>
282 <td>
283@@ -10929,6 +10930,7 @@
284 ID 1d6b:0001 Linux Foundation 1.1 root hub
285 ID 1d6b:0001 Linux Foundation 1.1 root hub
286 </td>
287+ <td/>
288 </tr>
289 <tr>
290 <td>
291@@ -10937,10 +10939,17 @@
292 <td class="label">wireless/wireless_connection_wpa_n</td>
293 <td style="background-color: #FF9900">SKIPPED</td>
294 <td>job cannot be started: resource expression "environment.ROUTERS == 'multiple'" evaluates to false</td>
295+ <td>non-blocker</td>
296 </tr>
297 </table>
298 </div>
299 <div id="content" class="clearfix">
300+ <h2 id="certification-status">Certification Blockers</h2>
301+ <ul>
302+ <li>camera/detect</li>
303+ </ul>
304+ </div>
305+ <div id="content" class="clearfix">
306 <h2>Log Files and Environment Information</h2>
307 <div id="packages-contents"/>
308 </div>
309
310=== added file 'plainbox/plainbox/test-data/xml-exporter/example-data-certification-status.json'
311--- plainbox/plainbox/test-data/xml-exporter/example-data-certification-status.json 1970-01-01 00:00:00 +0000
312+++ plainbox/plainbox/test-data/xml-exporter/example-data-certification-status.json 2015-02-18 12:38:09 +0000
313@@ -0,0 +1,19045 @@
314+{
315+ "attachment_map": {},
316+ "resource_map": {
317+ "2013.com.canonical.certification::cpuinfo": [
318+ {
319+ "count": "2",
320+ "cache": "3145728",
321+ "type": "GenuineIntel",
322+ "model_revision": "10",
323+ "model_number": "6",
324+ "bogomips": "5066",
325+ "platform": "x86_64",
326+ "model_version": "23",
327+ "model": "Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz",
328+ "speed": "2534",
329+ "other": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good nopl aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dtherm tpr_shadow vnmi flexpriority"
330+ }
331+ ],
332+ "2013.com.canonical.certification::requirements": [
333+ {
334+ "name": "example",
335+ "link": "http://www.example.com"
336+ }
337+ ],
338+ "2013.com.canonical.certification::lsb": [
339+ {
340+ "release": "12.04",
341+ "codename": "precise",
342+ "distributor_id": "Ubuntu",
343+ "description": "Ubuntu 12.04.1 LTS"
344+ }
345+ ],
346+ "2013.com.canonical.certification::package": [
347+ {
348+ "status": "Installed",
349+ "desired": "Install",
350+ "version": "0.6.15-2ubuntu9.4",
351+ "name": "accountsservice",
352+ "description": "query and manipulate user account information"
353+ },
354+ {
355+ "status": "Installed",
356+ "desired": "Install",
357+ "version": "2.2.51-5ubuntu1",
358+ "name": "acl",
359+ "description": "Access control list utilities"
360+ },
361+ {
362+ "status": "Installed",
363+ "desired": "Install",
364+ "version": "1.6-1",
365+ "name": "acpi",
366+ "description": "displays information on ACPI devices"
367+ },
368+ {
369+ "status": "Installed",
370+ "desired": "Install",
371+ "version": "0.140",
372+ "name": "acpi-support",
373+ "description": "scripts for handling many ACPI events"
374+ },
375+ {
376+ "status": "Installed",
377+ "desired": "Install",
378+ "version": "1:2.0.10-1ubuntu3",
379+ "name": "acpid",
380+ "description": "Advanced Configuration and Power Interface event daemon"
381+ },
382+ {
383+ "status": "Installed",
384+ "desired": "Install",
385+ "version": "20100513-3ubuntu1",
386+ "name": "acpidump",
387+ "description": "utilities to dump system's ACPI tables to an ASCII file"
388+ },
389+ {
390+ "status": "Installed",
391+ "desired": "Install",
392+ "version": "0.5.1-3",
393+ "name": "acpitool",
394+ "description": "command line ACPI client"
395+ },
396+ {
397+ "status": "Installed",
398+ "desired": "Install",
399+ "version": "0.9.4-0ubuntu3.2",
400+ "name": "activity-log-manager-common",
401+ "description": "blacklist configuration for Zeitgeist (assets)"
402+ },
403+ {
404+ "status": "Installed",
405+ "desired": "Install",
406+ "version": "0.9.4-0ubuntu3.2",
407+ "name": "activity-log-manager-control-center",
408+ "description": "blacklist configuration for Zeitgeist (control center integration)"
409+ },
410+ {
411+ "status": "Installed",
412+ "desired": "Install",
413+ "version": "3.113ubuntu2",
414+ "name": "adduser",
415+ "description": "add and remove users and groups"
416+ },
417+ {
418+ "status": "Installed",
419+ "desired": "Install",
420+ "version": "0.3.2-0ubuntu1",
421+ "name": "adium-theme-ubuntu",
422+ "description": "Adium message style for Ubuntu"
423+ },
424+ {
425+ "status": "Installed",
426+ "desired": "Install",
427+ "version": "1:3.2.3.2-0ubuntu1",
428+ "name": "aisleriot",
429+ "description": "Solitaire card games"
430+ },
431+ {
432+ "status": "Installed",
433+ "desired": "Install",
434+ "version": "0.13.2-2ubuntu4",
435+ "name": "alacarte",
436+ "description": "easy GNOME menu editing tool"
437+ },
438+ {
439+ "status": "Installed",
440+ "desired": "Install",
441+ "version": "1.0.25+dfsg-0ubuntu1",
442+ "name": "alsa-base",
443+ "description": "ALSA driver configuration files"
444+ },
445+ {
446+ "status": "Installed",
447+ "desired": "Install",
448+ "version": "1.0.25-1ubuntu5",
449+ "name": "alsa-utils",
450+ "description": "Utilities for configuring and using ALSA"
451+ },
452+ {
453+ "status": "Installed",
454+ "desired": "Install",
455+ "version": "2.3-14ubuntu1",
456+ "name": "anacron",
457+ "description": "cron-like program that doesn't go by time"
458+ },
459+ {
460+ "status": "Installed",
461+ "desired": "Install",
462+ "version": "2.2.3.dfsg.1-2",
463+ "name": "apg",
464+ "description": "Automated Password Generator - Standalone version"
465+ },
466+ {
467+ "status": "Installed",
468+ "desired": "Install",
469+ "version": "0.12.04.4",
470+ "name": "app-install-data",
471+ "description": "Ubuntu applications (data files)"
472+ },
473+ {
474+ "status": "Installed",
475+ "desired": "Install",
476+ "version": "12.12.04.1",
477+ "name": "app-install-data-partner",
478+ "description": "Application Installer (data files for partner applications/repositories)"
479+ },
480+ {
481+ "status": "Installed",
482+ "desired": "Install",
483+ "version": "2.7.102-0ubuntu3.7",
484+ "name": "apparmor",
485+ "description": "User-space parser utility for AppArmor"
486+ },
487+ {
488+ "status": "Installed",
489+ "desired": "Install",
490+ "version": "0.3.92-0ubuntu1.1",
491+ "name": "appmenu-gtk",
492+ "description": "Export GTK menus over DBus"
493+ },
494+ {
495+ "status": "Installed",
496+ "desired": "Install",
497+ "version": "0.3.92-0ubuntu1.1",
498+ "name": "appmenu-gtk3",
499+ "description": "Export GTK menus over DBus"
500+ },
501+ {
502+ "status": "Installed",
503+ "desired": "Install",
504+ "version": "0.2.6-0ubuntu1",
505+ "name": "appmenu-qt",
506+ "description": "appmenu support for Qt"
507+ },
508+ {
509+ "status": "Installed",
510+ "desired": "Install",
511+ "version": "2.0.1-0ubuntu17.1",
512+ "name": "apport",
513+ "description": "automatically generate crash reports for debugging"
514+ },
515+ {
516+ "status": "Installed",
517+ "desired": "Install",
518+ "version": "2.0.1-0ubuntu17.1",
519+ "name": "apport-gtk",
520+ "description": "GTK+ frontend for the apport crash report system"
521+ },
522+ {
523+ "status": "Installed",
524+ "desired": "Install",
525+ "version": "0.16.1",
526+ "name": "apport-symptoms",
527+ "description": "symptom scripts for apport"
528+ },
529+ {
530+ "status": "Installed",
531+ "desired": "Install",
532+ "version": "0.8.16~exp12ubuntu10.7",
533+ "name": "apt",
534+ "description": "commandline package manager"
535+ },
536+ {
537+ "status": "Installed",
538+ "desired": "Install",
539+ "version": "2.5.0ubuntu1",
540+ "name": "apt-file",
541+ "description": "search for files within Debian packages (command-line interface)"
542+ },
543+ {
544+ "status": "Installed",
545+ "desired": "Install",
546+ "version": "0.8.16~exp12ubuntu10.7",
547+ "name": "apt-transport-https",
548+ "description": "https download transport for APT"
549+ },
550+ {
551+ "status": "Installed",
552+ "desired": "Install",
553+ "version": "0.8.16~exp12ubuntu10.7",
554+ "name": "apt-utils",
555+ "description": "package managment related utility programs"
556+ },
557+ {
558+ "status": "Installed",
559+ "desired": "Install",
560+ "version": "0.44ubuntu5",
561+ "name": "apt-xapian-index",
562+ "description": "maintenance and search tools for a Xapian index of Debian packages"
563+ },
564+ {
565+ "status": "Installed",
566+ "desired": "Install",
567+ "version": "0.43+bzr805-0ubuntu7",
568+ "name": "aptdaemon",
569+ "description": "transaction based package management service"
570+ },
571+ {
572+ "status": "Installed",
573+ "desired": "Install",
574+ "version": "0.43+bzr805-0ubuntu7",
575+ "name": "aptdaemon-data",
576+ "description": "data files for clients"
577+ },
578+ {
579+ "status": "Installed",
580+ "desired": "Install",
581+ "version": "0.5.1ubuntu3",
582+ "name": "apturl",
583+ "description": "install packages using the apt protocol - GTK+ frontend"
584+ },
585+ {
586+ "status": "Installed",
587+ "desired": "Install",
588+ "version": "0.5.1ubuntu3",
589+ "name": "apturl-common",
590+ "description": "install packages using the apt protocol - common data"
591+ },
592+ {
593+ "status": "Installed",
594+ "desired": "Install",
595+ "version": "0.1.4-1",
596+ "name": "arandr",
597+ "description": "Simple visual front end for XRandR"
598+ },
599+ {
600+ "status": "Installed",
601+ "desired": "Install",
602+ "version": "0.60.7~20110707-1",
603+ "name": "aspell",
604+ "description": "GNU Aspell spell-checker"
605+ },
606+ {
607+ "status": "Installed",
608+ "desired": "Install",
609+ "version": "6.0-0-6ubuntu2",
610+ "name": "aspell-en",
611+ "description": "English dictionary for GNU Aspell"
612+ },
613+ {
614+ "status": "Installed",
615+ "desired": "Install",
616+ "version": "3.1.13-1ubuntu1",
617+ "name": "at",
618+ "description": "Delayed job execution and batch processing"
619+ },
620+ {
621+ "status": "Installed",
622+ "desired": "Install",
623+ "version": "2.4.2-0ubuntu0.1",
624+ "name": "at-spi2-core",
625+ "description": "Assistive Technology Service Provider Interface (dbus core)"
626+ },
627+ {
628+ "status": "Installed",
629+ "desired": "Install",
630+ "version": "2.0.0-1ubuntu0.1",
631+ "name": "audacity",
632+ "description": "fast, cross-platform audio editor"
633+ },
634+ {
635+ "status": "Installed",
636+ "desired": "Install",
637+ "version": "2.0.0-1ubuntu0.1",
638+ "name": "audacity-data",
639+ "description": "fast, cross-platform audio editor (data)"
640+ },
641+ {
642+ "status": "Installed",
643+ "desired": "Install",
644+ "version": "2.68-1ubuntu2",
645+ "name": "autoconf",
646+ "description": "automatic configure script builder"
647+ },
648+ {
649+ "status": "Installed",
650+ "desired": "Install",
651+ "version": "1:1.11.3-1ubuntu2",
652+ "name": "automake",
653+ "description": "Tool for generating GNU Standards-compliant Makefiles"
654+ },
655+ {
656+ "status": "Installed",
657+ "desired": "Install",
658+ "version": "20120210.1ubuntu1",
659+ "name": "autotools-dev",
660+ "description": "Update infrastructure for config.{guess,sub} files"
661+ },
662+ {
663+ "status": "Installed",
664+ "desired": "Install",
665+ "version": "0.6.30-5ubuntu2",
666+ "name": "avahi-autoipd",
667+ "description": "Avahi IPv4LL network address configuration daemon"
668+ },
669+ {
670+ "status": "Installed",
671+ "desired": "Install",
672+ "version": "0.6.30-5ubuntu2",
673+ "name": "avahi-daemon",
674+ "description": "Avahi mDNS/DNS-SD daemon"
675+ },
676+ {
677+ "status": "Installed",
678+ "desired": "Install",
679+ "version": "0.6.30-5ubuntu2",
680+ "name": "avahi-utils",
681+ "description": "Avahi browsing, publishing and discovery utilities"
682+ },
683+ {
684+ "status": "Installed",
685+ "desired": "Install",
686+ "version": "0.2.124.2-0ubuntu1",
687+ "name": "bamfdaemon",
688+ "description": "Window matching library - daemon"
689+ },
690+ {
691+ "status": "Installed",
692+ "desired": "Install",
693+ "version": "3.4.1-0ubuntu1",
694+ "name": "baobab",
695+ "description": "GNOME disk usage analyzer"
696+ },
697+ {
698+ "status": "Installed",
699+ "desired": "Install",
700+ "version": "6.5ubuntu6.4",
701+ "name": "base-files",
702+ "description": "Debian base system miscellaneous files"
703+ },
704+ {
705+ "status": "Installed",
706+ "desired": "Install",
707+ "version": "3.5.24",
708+ "name": "base-passwd",
709+ "description": "Debian base system master password and group files"
710+ },
711+ {
712+ "status": "Installed",
713+ "desired": "Install",
714+ "version": "4.2-2ubuntu2",
715+ "name": "bash",
716+ "description": "GNU Bourne Again SHell"
717+ },
718+ {
719+ "status": "Installed",
720+ "desired": "Install",
721+ "version": "1:1.3-1ubuntu8",
722+ "name": "bash-completion",
723+ "description": "programmable completion for the bash shell"
724+ },
725+ {
726+ "status": "Installed",
727+ "desired": "Install",
728+ "version": "1.06.95-2",
729+ "name": "bc",
730+ "description": "The GNU bc arbitrary precision calculator language"
731+ },
732+ {
733+ "status": "Installed",
734+ "desired": "Install",
735+ "version": "1:9.8.1.dfsg.P1-4ubuntu0.5",
736+ "name": "bind9-host",
737+ "description": "Version of 'host' bundled with BIND 9.X"
738+ },
739+ {
740+ "status": "Installed",
741+ "desired": "Install",
742+ "version": "2.22-6ubuntu1",
743+ "name": "binutils",
744+ "description": "GNU assembler, linker and binary utilities"
745+ },
746+ {
747+ "status": "Installed",
748+ "desired": "Install",
749+ "version": "1.23-0ubuntu2.1",
750+ "name": "blueman",
751+ "description": "A Graphical bluetooth manager"
752+ },
753+ {
754+ "status": "Installed",
755+ "desired": "Install",
756+ "version": "4.98-2ubuntu7",
757+ "name": "bluez",
758+ "description": "Bluetooth tools and daemons"
759+ },
760+ {
761+ "status": "Installed",
762+ "desired": "Install",
763+ "version": "4.98-2ubuntu7",
764+ "name": "bluez-alsa",
765+ "description": "Bluetooth ALSA support"
766+ },
767+ {
768+ "status": "Installed",
769+ "desired": "Install",
770+ "version": "4.98-2ubuntu7",
771+ "name": "bluez-alsa:i386",
772+ "description": "Bluetooth ALSA support"
773+ },
774+ {
775+ "status": "Installed",
776+ "desired": "Install",
777+ "version": "4.98-2ubuntu7",
778+ "name": "bluez-cups",
779+ "description": "Bluetooth printer driver for CUPS"
780+ },
781+ {
782+ "status": "Installed",
783+ "desired": "Install",
784+ "version": "4.98-2ubuntu7",
785+ "name": "bluez-gstreamer",
786+ "description": "Bluetooth GStreamer support"
787+ },
788+ {
789+ "status": "Installed",
790+ "desired": "Install",
791+ "version": "1.96",
792+ "name": "bonnie++",
793+ "description": "Hard drive benchmark suite."
794+ },
795+ {
796+ "status": "Installed",
797+ "desired": "Install",
798+ "version": "0.90.2-8ubuntu1",
799+ "name": "bootchart",
800+ "description": "boot sequence auditing"
801+ },
802+ {
803+ "status": "Installed",
804+ "desired": "Install",
805+ "version": "0.7",
806+ "name": "branding-ubuntu",
807+ "description": "Replacement artwork with Ubuntu branding"
808+ },
809+ {
810+ "status": "Installed",
811+ "desired": "Install",
812+ "version": "3.4.1-0ubuntu1.1",
813+ "name": "brasero",
814+ "description": "CD/DVD burning application for GNOME"
815+ },
816+ {
817+ "status": "Installed",
818+ "desired": "Install",
819+ "version": "3.4.1-0ubuntu1.1",
820+ "name": "brasero-cdrkit",
821+ "description": "cdrkit extensions for the Brasero burning application"
822+ },
823+ {
824+ "status": "Installed",
825+ "desired": "Install",
826+ "version": "3.4.1-0ubuntu1.1",
827+ "name": "brasero-common",
828+ "description": "Common files for the Brasero CD burning application and library"
829+ },
830+ {
831+ "status": "Installed",
832+ "desired": "Install",
833+ "version": "1.5-2ubuntu7",
834+ "name": "bridge-utils",
835+ "description": "Utilities for configuring the Linux Ethernet bridge"
836+ },
837+ {
838+ "status": "Installed",
839+ "desired": "Install",
840+ "version": "4.3-1ubuntu5",
841+ "name": "brltty",
842+ "description": "Access software for a blind person using a braille display"
843+ },
844+ {
845+ "status": "Installed",
846+ "desired": "Install",
847+ "version": "8.2.3ubuntu1",
848+ "name": "bsdmainutils",
849+ "description": "collection of more utilities from FreeBSD"
850+ },
851+ {
852+ "status": "Installed",
853+ "desired": "Install",
854+ "version": "1:2.20.1-1ubuntu3",
855+ "name": "bsdutils",
856+ "description": "Basic utilities from 4.4BSD-Lite"
857+ },
858+ {
859+ "status": "Installed",
860+ "desired": "Install",
861+ "version": "11.5ubuntu2.1",
862+ "name": "build-essential",
863+ "description": "Informational list of build-essential packages"
864+ },
865+ {
866+ "status": "Installed",
867+ "desired": "Install",
868+ "version": "1:1.18.5-1ubuntu4.1",
869+ "name": "busybox-initramfs",
870+ "description": "Standalone shell setup for initramfs"
871+ },
872+ {
873+ "status": "Installed",
874+ "desired": "Install",
875+ "version": "1:1.18.5-1ubuntu4.1",
876+ "name": "busybox-static",
877+ "description": "Standalone rescue shell with tons of builtin utilities"
878+ },
879+ {
880+ "status": "Installed",
881+ "desired": "Install",
882+ "version": "5.17-0ubuntu1",
883+ "name": "byobu",
884+ "description": "powerful, text based window manager and shell multiplexer"
885+ },
886+ {
887+ "status": "Installed",
888+ "desired": "Install",
889+ "version": "1.0.6-1",
890+ "name": "bzip2",
891+ "description": "high-quality block-sorting file compressor - utilities"
892+ },
893+ {
894+ "status": "Installed",
895+ "desired": "Install",
896+ "version": "2.5.1-0ubuntu2",
897+ "name": "bzr",
898+ "description": "easy to use distributed version control system"
899+ },
900+ {
901+ "status": "Installed",
902+ "desired": "Install",
903+ "version": "2.8.4",
904+ "name": "bzr-builddeb",
905+ "description": "bzr plugin for Debian package management"
906+ },
907+ {
908+ "status": "Installed",
909+ "desired": "Install",
910+ "version": "0.7.2-0ubuntu1",
911+ "name": "bzr-builder",
912+ "description": "construct a bzr branch from a recipe"
913+ },
914+ {
915+ "status": "Installed",
916+ "desired": "Install",
917+ "version": "1.2.2-1",
918+ "name": "bzr-explorer",
919+ "description": "GUI application for using Bazaar"
920+ },
921+ {
922+ "status": "Installed",
923+ "desired": "Install",
924+ "version": "0.13.0-1",
925+ "name": "bzr-fastimport",
926+ "description": "Fast-import/fast-export plugin for Bazaar"
927+ },
928+ {
929+ "status": "Installed",
930+ "desired": "Install",
931+ "version": "20111211",
932+ "name": "ca-certificates",
933+ "description": "Common CA certificates"
934+ },
935+ {
936+ "status": "Installed",
937+ "desired": "Install",
938+ "version": "20110912ubuntu6",
939+ "name": "ca-certificates-java",
940+ "description": "Common CA certificates (JKS keystore)"
941+ },
942+ {
943+ "status": "Installed",
944+ "desired": "Install",
945+ "version": "0.4.100ubuntu2",
946+ "name": "cdbs",
947+ "description": "common build system for Debian packages"
948+ },
949+ {
950+ "status": "Installed",
951+ "desired": "Install",
952+ "version": "1.1.2",
953+ "name": "cgroup-lite",
954+ "description": "Light-weight package to set up cgroups at system boot"
955+ },
956+ {
957+ "status": "Installed",
958+ "desired": "Install",
959+ "version": "0.3+bzr167-3~precise1",
960+ "name": "charm-tools",
961+ "description": "tools for maintaining Juju charms"
962+ },
963+ {
964+ "status": "Installed",
965+ "desired": "Install",
966+ "version": "0.15.1+bzr1894+201301181105~precise1",
967+ "name": "checkbox",
968+ "description": "System testing application"
969+ },
970+ {
971+ "status": "Installed",
972+ "desired": "Install",
973+ "version": "0.15+bzr563+201301171917~precise1",
974+ "name": "checkbox-certification",
975+ "description": "Checkbox Certification Tests"
976+ },
977+ {
978+ "status": "Installed",
979+ "desired": "Install",
980+ "version": "0.15+bzr563+201301171917~precise1",
981+ "name": "checkbox-certification-client",
982+ "description": "Client Certification"
983+ },
984+ {
985+ "status": "Installed",
986+ "desired": "Install",
987+ "version": "0.15+bzr563+201301171917~precise1",
988+ "name": "checkbox-certification-tools",
989+ "description": "Checkbox Certification Tools"
990+ },
991+ {
992+ "status": "Installed",
993+ "desired": "Install",
994+ "version": "0.15.1+bzr1894+201301181105~precise1",
995+ "name": "checkbox-cli",
996+ "description": "Command line interface for checkbox"
997+ },
998+ {
999+ "status": "Installed",
1000+ "desired": "Install",
1001+ "version": "0.10-0precise1~rev150",
1002+ "name": "checkbox-editor",
1003+ "description": "Checkbox Editor"
1004+ },
1005+ {
1006+ "status": "Installed",
1007+ "desired": "Install",
1008+ "version": "0.2-0precise1~rev19",
1009+ "name": "checkbox-editor-oem-template",
1010+ "description": "Checkbox editor template for OEM projects"
1011+ },
1012+ {
1013+ "status": "Installed",
1014+ "desired": "Install",
1015+ "version": "0.15.1+bzr1894+201301181105~precise1",
1016+ "name": "checkbox-gtk",
1017+ "description": "GTK interface for checkbox"
1018+ },
1019+ {
1020+ "status": "Installed",
1021+ "desired": "Install",
1022+ "version": "0.2",
1023+ "name": "checkbox-ihv",
1024+ "description": "Canonical hardware testing suite."
1025+ },
1026+ {
1027+ "status": "Installed",
1028+ "desired": "Install",
1029+ "version": "0.2",
1030+ "name": "checkbox-ihv-cli",
1031+ "description": "Canonical hardware testing suite - cli version."
1032+ },
1033+ {
1034+ "status": "Installed",
1035+ "desired": "Install",
1036+ "version": "0.2",
1037+ "name": "checkbox-ihv-qt",
1038+ "description": "Canonical hardware testing suite - qt version."
1039+ },
1040+ {
1041+ "status": "Installed",
1042+ "desired": "Install",
1043+ "version": "0.45-0-precise1~rev614",
1044+ "name": "checkbox-oem",
1045+ "description": "Checkbox OEM Tests"
1046+ },
1047+ {
1048+ "status": "Installed",
1049+ "desired": "Install",
1050+ "version": "1.0-2-precise1~rev4",
1051+ "name": "checkbox-oem-bug",
1052+ "description": "Checkbox OEM bug"
1053+ },
1054+ {
1055+ "status": "Installed",
1056+ "desired": "Install",
1057+ "version": "0.45-0-precise1~rev614",
1058+ "name": "checkbox-oem-gtk",
1059+ "description": "Checkbox OEM GTK Interface"
1060+ },
1061+ {
1062+ "status": "Installed",
1063+ "desired": "Install",
1064+ "version": "0.45-0-precise1~rev614",
1065+ "name": "checkbox-oem-qt",
1066+ "description": "Checkbox OEM Qt Interface"
1067+ },
1068+ {
1069+ "status": "Installed",
1070+ "desired": "Install",
1071+ "version": "0.1-1precise1~rev18ubuntu1",
1072+ "name": "checkbox-oem-stella",
1073+ "description": "stella System Testing"
1074+ },
1075+ {
1076+ "status": "Installed",
1077+ "desired": "Install",
1078+ "version": "0.1-1precise1~rev18ubuntu1",
1079+ "name": "checkbox-oem-stella-gtk",
1080+ "description": "Checkbox stella GTK Interface"
1081+ },
1082+ {
1083+ "status": "Installed",
1084+ "desired": "Install",
1085+ "version": "0.15.1+bzr1894+201301181105~precise1",
1086+ "name": "checkbox-qt",
1087+ "description": "QT4 interface for checkbox"
1088+ },
1089+ {
1090+ "status": "Installed",
1091+ "desired": "Install",
1092+ "version": "3.4.1-0ubuntu2.1",
1093+ "name": "cheese",
1094+ "description": "tool to take pictures and videos from your webcam"
1095+ },
1096+ {
1097+ "status": "Installed",
1098+ "desired": "Install",
1099+ "version": "3.4.1-0ubuntu2.1",
1100+ "name": "cheese-common",
1101+ "description": "Common files for the Cheese tool to take pictures and videos"
1102+ },
1103+ {
1104+ "status": "Installed",
1105+ "desired": "Install",
1106+ "version": "0.25-0ubuntu5",
1107+ "name": "cloud-utils",
1108+ "description": "cloud image management utilities"
1109+ },
1110+ {
1111+ "status": "Installed",
1112+ "desired": "Install",
1113+ "version": "0+20090930-2",
1114+ "name": "cmap-adobe-japan2",
1115+ "description": "CMaps for Adobe-Japan2"
1116+ },
1117+ {
1118+ "status": "Installed",
1119+ "desired": "Install",
1120+ "version": "0.1.16-2ubuntu0.1",
1121+ "name": "colord",
1122+ "description": "system service to manage device colour profiles -- system daemon"
1123+ },
1124+ {
1125+ "status": "Installed",
1126+ "desired": "Install",
1127+ "version": "0.2.46ubuntu6",
1128+ "name": "command-not-found",
1129+ "description": "Suggest installation of packages in interactive bash sessions"
1130+ },
1131+ {
1132+ "status": "Installed",
1133+ "desired": "Install",
1134+ "version": "0.2.46ubuntu6",
1135+ "name": "command-not-found-data",
1136+ "description": "Set of data files for command-not-found."
1137+ },
1138+ {
1139+ "status": "Installed",
1140+ "desired": "Install",
1141+ "version": "1:0.9.7.12-0ubuntu1",
1142+ "name": "compiz",
1143+ "description": "OpenGL window and compositing manager"
1144+ },
1145+ {
1146+ "status": "Installed",
1147+ "desired": "Install",
1148+ "version": "1:0.9.7.12-0ubuntu1",
1149+ "name": "compiz-core",
1150+ "description": "OpenGL window and compositing manager"
1151+ },
1152+ {
1153+ "status": "Installed",
1154+ "desired": "Install",
1155+ "version": "1:0.9.7.12-0ubuntu1",
1156+ "name": "compiz-gnome",
1157+ "description": "OpenGL window and compositing manager - GNOME window decorator"
1158+ },
1159+ {
1160+ "status": "Installed",
1161+ "desired": "Install",
1162+ "version": "1:0.9.7.12-0ubuntu1",
1163+ "name": "compiz-plugins",
1164+ "description": "OpenGL window and compositing manager - plugins"
1165+ },
1166+ {
1167+ "status": "Installed",
1168+ "desired": "Install",
1169+ "version": "1:0.9.7.12-0ubuntu1",
1170+ "name": "compiz-plugins-default",
1171+ "description": "OpenGL window and compositing manager - default plugins"
1172+ },
1173+ {
1174+ "status": "Installed",
1175+ "desired": "Install",
1176+ "version": "1:0.9.7.0~bzr19-0ubuntu10",
1177+ "name": "compiz-plugins-main",
1178+ "description": "Compiz plugins - main collection"
1179+ },
1180+ {
1181+ "status": "Installed",
1182+ "desired": "Install",
1183+ "version": "1:0.9.7.0~bzr19-0ubuntu10",
1184+ "name": "compiz-plugins-main-default",
1185+ "description": "Compiz plugins - main default collection"
1186+ },
1187+ {
1188+ "status": "Installed",
1189+ "desired": "Install",
1190+ "version": "0.9.5.92-0ubuntu5",
1191+ "name": "compizconfig-backend-gconf",
1192+ "description": "Compiz Fusion configuration system - gconf backend"
1193+ },
1194+ {
1195+ "status": "Installed",
1196+ "desired": "Install",
1197+ "version": "0.9.5.92-0ubuntu3",
1198+ "name": "compizconfig-settings-manager",
1199+ "description": "Compiz configuration settings manager"
1200+ },
1201+ {
1202+ "status": "Installed",
1203+ "desired": "Install",
1204+ "version": "1.70ubuntu5",
1205+ "name": "console-setup",
1206+ "description": "console font and keymap setup program"
1207+ },
1208+ {
1209+ "status": "Installed",
1210+ "desired": "Install",
1211+ "version": "0.4.5-2",
1212+ "name": "consolekit",
1213+ "description": "framework for defining and tracking users, sessions and seats"
1214+ },
1215+ {
1216+ "status": "Installed",
1217+ "desired": "Install",
1218+ "version": "8.13-3ubuntu3.2",
1219+ "name": "coreutils",
1220+ "description": "GNU core utilities"
1221+ },
1222+ {
1223+ "status": "Installed",
1224+ "desired": "Install",
1225+ "version": "2.11-7ubuntu3",
1226+ "name": "cpio",
1227+ "description": "GNU cpio -- a program to manage archives of files"
1228+ },
1229+ {
1230+ "status": "Installed",
1231+ "desired": "Install",
1232+ "version": "4:4.6.3-1ubuntu5",
1233+ "name": "cpp",
1234+ "description": "GNU C preprocessor (cpp)"
1235+ },
1236+ {
1237+ "status": "Installed",
1238+ "desired": "Install",
1239+ "version": "4.6.3-1ubuntu5",
1240+ "name": "cpp-4.6",
1241+ "description": "GNU C preprocessor"
1242+ },
1243+ {
1244+ "status": "Installed",
1245+ "desired": "Install",
1246+ "version": "0.7-0ubuntu1",
1247+ "name": "cpu-checker",
1248+ "description": "tools to help evaluate certain CPU (or BIOS) features"
1249+ },
1250+ {
1251+ "status": "Installed",
1252+ "desired": "Install",
1253+ "version": "1.1.2-1ubuntu1",
1254+ "name": "crda",
1255+ "description": "wireless Central Regulatory Domain Agent"
1256+ },
1257+ {
1258+ "status": "Installed",
1259+ "desired": "Install",
1260+ "version": "3.0pl1-120ubuntu4",
1261+ "name": "cron",
1262+ "description": "process scheduling daemon"
1263+ },
1264+ {
1265+ "status": "Installed",
1266+ "desired": "Install",
1267+ "version": "2:1.4.1-2ubuntu4",
1268+ "name": "cryptsetup-bin",
1269+ "description": "disk encryption support - command line tools"
1270+ },
1271+ {
1272+ "status": "Installed",
1273+ "desired": "Install",
1274+ "version": "1.5.3-0ubuntu6",
1275+ "name": "cups",
1276+ "description": "Common UNIX Printing System(tm) - server"
1277+ },
1278+ {
1279+ "status": "Installed",
1280+ "desired": "Install",
1281+ "version": "1.5.3-0ubuntu6",
1282+ "name": "cups-bsd",
1283+ "description": "Common UNIX Printing System(tm) - BSD commands"
1284+ },
1285+ {
1286+ "status": "Installed",
1287+ "desired": "Install",
1288+ "version": "1.5.3-0ubuntu6",
1289+ "name": "cups-client",
1290+ "description": "Common UNIX Printing System(tm) - client programs (SysV)"
1291+ },
1292+ {
1293+ "status": "Installed",
1294+ "desired": "Install",
1295+ "version": "1.5.3-0ubuntu6",
1296+ "name": "cups-common",
1297+ "description": "Common UNIX Printing System(tm) - common files"
1298+ },
1299+ {
1300+ "status": "Installed",
1301+ "desired": "Install",
1302+ "version": "1.0.18-0ubuntu0.1",
1303+ "name": "cups-filters",
1304+ "description": "OpenPrinting CUPS Filters"
1305+ },
1306+ {
1307+ "status": "Installed",
1308+ "desired": "Install",
1309+ "version": "0.2.1.2-1ubuntu0.1",
1310+ "name": "cups-pk-helper",
1311+ "description": "PolicyKit helper to configure cups with fine-grained privileges"
1312+ },
1313+ {
1314+ "status": "Installed",
1315+ "desired": "Install",
1316+ "version": "1.5.3-0ubuntu6",
1317+ "name": "cups-ppdc",
1318+ "description": "Common UNIX Printing System(tm) - PPD manipulation utilities"
1319+ },
1320+ {
1321+ "status": "Installed",
1322+ "desired": "Install",
1323+ "version": "7.22.0-3ubuntu4",
1324+ "name": "curl",
1325+ "description": "Get a file from an HTTP, HTTPS or FTP server"
1326+ },
1327+ {
1328+ "status": "Installed",
1329+ "desired": "Install",
1330+ "version": "2:1.12.13+real-8",
1331+ "name": "cvs",
1332+ "description": "Concurrent Versions System"
1333+ },
1334+ {
1335+ "status": "Installed",
1336+ "desired": "Install",
1337+ "version": "0.15.1-1ubuntu1",
1338+ "name": "cython",
1339+ "description": "C-Extensions for Python"
1340+ },
1341+ {
1342+ "status": "Installed",
1343+ "desired": "Install",
1344+ "version": "0.5.7-2ubuntu2",
1345+ "name": "dash",
1346+ "description": "POSIX-compliant shell"
1347+ },
1348+ {
1349+ "status": "Installed",
1350+ "desired": "Install",
1351+ "version": "1.4.18-1ubuntu1.3",
1352+ "name": "dbus",
1353+ "description": "simple interprocess messaging system (daemon and utilities)"
1354+ },
1355+ {
1356+ "status": "Installed",
1357+ "desired": "Install",
1358+ "version": "1.4.18-1ubuntu1.3",
1359+ "name": "dbus-x11",
1360+ "description": "simple interprocess messaging system (X11 deps)"
1361+ },
1362+ {
1363+ "status": "Installed",
1364+ "desired": "Install",
1365+ "version": "1.06.95-2",
1366+ "name": "dc",
1367+ "description": "The GNU dc arbitrary precision reverse-polish calculator"
1368+ },
1369+ {
1370+ "status": "Installed",
1371+ "desired": "Install",
1372+ "version": "0.12.0-0ubuntu1.1",
1373+ "name": "dconf-gsettings-backend",
1374+ "description": "simple configuration storage system - GSettings back-end"
1375+ },
1376+ {
1377+ "status": "Installed",
1378+ "desired": "Install",
1379+ "version": "0.12.0-0ubuntu1.1",
1380+ "name": "dconf-service",
1381+ "description": "simple configuration storage system - D-Bus service"
1382+ },
1383+ {
1384+ "status": "Installed",
1385+ "desired": "Install",
1386+ "version": "0.12.0-0ubuntu1.1",
1387+ "name": "dconf-tools",
1388+ "description": "simple configuration storage system - utilities"
1389+ },
1390+ {
1391+ "status": "Installed",
1392+ "desired": "Install",
1393+ "version": "2.18ubuntu1",
1394+ "name": "dctrl-tools",
1395+ "description": "Command-line tools to process Debian package information"
1396+ },
1397+ {
1398+ "status": "Installed",
1399+ "desired": "Install",
1400+ "version": "1.5.42ubuntu1",
1401+ "name": "debconf",
1402+ "description": "Debian configuration management system"
1403+ },
1404+ {
1405+ "status": "Installed",
1406+ "desired": "Install",
1407+ "version": "1.5.42ubuntu1",
1408+ "name": "debconf-i18n",
1409+ "description": "full internationalization support for debconf"
1410+ },
1411+ {
1412+ "status": "Installed",
1413+ "desired": "Install",
1414+ "version": "9.20120115ubuntu3",
1415+ "name": "debhelper",
1416+ "description": "helper programs for debian/rules"
1417+ },
1418+ {
1419+ "status": "Installed",
1420+ "desired": "Install",
1421+ "version": "2010.08.28",
1422+ "name": "debian-archive-keyring",
1423+ "description": "GnuPG archive keys of the Debian archive"
1424+ },
1425+ {
1426+ "status": "Installed",
1427+ "desired": "Install",
1428+ "version": "2012.02.22",
1429+ "name": "debian-keyring",
1430+ "description": "GnuPG keys of Debian Developers"
1431+ },
1432+ {
1433+ "status": "Installed",
1434+ "desired": "Install",
1435+ "version": "4.2.1ubuntu2",
1436+ "name": "debianutils",
1437+ "description": "Miscellaneous utilities specific to Debian"
1438+ },
1439+ {
1440+ "status": "Installed",
1441+ "desired": "Install",
1442+ "version": "1.0.39ubuntu0.2",
1443+ "name": "debootstrap",
1444+ "description": "Bootstrap a basic Debian system"
1445+ },
1446+ {
1447+ "status": "Installed",
1448+ "desired": "Install",
1449+ "version": "22.0-0ubuntu2",
1450+ "name": "deja-dup",
1451+ "description": "Back up your files"
1452+ },
1453+ {
1454+ "status": "Installed",
1455+ "desired": "Install",
1456+ "version": "0.20-0ubuntu3",
1457+ "name": "desktop-file-utils",
1458+ "description": "Utilities for .desktop files"
1459+ },
1460+ {
1461+ "status": "Installed",
1462+ "desired": "Install",
1463+ "version": "3.4.1-0ubuntu1",
1464+ "name": "devhelp",
1465+ "description": "GNOME developers help program"
1466+ },
1467+ {
1468+ "status": "Installed",
1469+ "desired": "Install",
1470+ "version": "3.4.1-0ubuntu1",
1471+ "name": "devhelp-common",
1472+ "description": "Common files for devhelp and its library"
1473+ },
1474+ {
1475+ "status": "Installed",
1476+ "desired": "Install",
1477+ "version": "2.11.6ubuntu1.4",
1478+ "name": "devscripts",
1479+ "description": "scripts to make the life of a Debian Package maintainer easier"
1480+ },
1481+ {
1482+ "status": "Installed",
1483+ "desired": "Install",
1484+ "version": "2.7.102-0ubuntu3.7",
1485+ "name": "dh-apparmor",
1486+ "description": "AppArmor debhelper routines"
1487+ },
1488+ {
1489+ "status": "Installed",
1490+ "desired": "Install",
1491+ "version": "0.59ubuntu1",
1492+ "name": "dh-make",
1493+ "description": "tool that converts source archives into Debian package source"
1494+ },
1495+ {
1496+ "status": "Installed",
1497+ "desired": "Install",
1498+ "version": "116",
1499+ "name": "dh-translations",
1500+ "description": "debhelper extension for translation support"
1501+ },
1502+ {
1503+ "status": "Installed",
1504+ "desired": "Install",
1505+ "version": "0.97.2-5",
1506+ "name": "dia-common",
1507+ "description": "Diagram editor (common files)"
1508+ },
1509+ {
1510+ "status": "Installed",
1511+ "desired": "Install",
1512+ "version": "0.97.2-5",
1513+ "name": "dia-gnome",
1514+ "description": "Diagram editor (GNOME version)"
1515+ },
1516+ {
1517+ "status": "Installed",
1518+ "desired": "Install",
1519+ "version": "0.97.2-5",
1520+ "name": "dia-libs",
1521+ "description": "Diagram editor (library files)"
1522+ },
1523+ {
1524+ "status": "Installed",
1525+ "desired": "Install",
1526+ "version": "1.12.1ubuntu2",
1527+ "name": "dictionaries-common",
1528+ "description": "Common utilities for spelling dictionary tools"
1529+ },
1530+ {
1531+ "status": "Installed",
1532+ "desired": "Install",
1533+ "version": "1.54-1",
1534+ "name": "diffstat",
1535+ "description": "produces graph of changes introduced by a diff file"
1536+ },
1537+ {
1538+ "status": "Installed",
1539+ "desired": "Install",
1540+ "version": "1:3.2-1ubuntu1",
1541+ "name": "diffutils",
1542+ "description": "File comparison utilities"
1543+ },
1544+ {
1545+ "status": "Installed",
1546+ "desired": "Install",
1547+ "version": "0.8.2",
1548+ "name": "distro-info",
1549+ "description": "provides information about the distributions' releases"
1550+ },
1551+ {
1552+ "status": "Installed",
1553+ "desired": "Install",
1554+ "version": "0.8ubuntu0.2",
1555+ "name": "distro-info-data",
1556+ "description": "information about the distributions' releases (data files)"
1557+ },
1558+ {
1559+ "status": "Installed",
1560+ "desired": "Install",
1561+ "version": "2.2.0.3-1ubuntu3.1",
1562+ "name": "dkms",
1563+ "description": "Dynamic Kernel Module Support Framework"
1564+ },
1565+ {
1566+ "status": "Installed",
1567+ "desired": "Install",
1568+ "version": "2.11-4",
1569+ "name": "dmidecode",
1570+ "description": "SMBIOS/DMI table decoder"
1571+ },
1572+ {
1573+ "status": "Installed",
1574+ "desired": "Install",
1575+ "version": "2:1.02.48-4ubuntu7.1",
1576+ "name": "dmsetup",
1577+ "description": "The Linux Kernel Device Mapper userspace library"
1578+ },
1579+ {
1580+ "status": "Installed",
1581+ "desired": "Install",
1582+ "version": "0.4.3",
1583+ "name": "dmz-cursor-theme",
1584+ "description": "Style neutral, scalable cursor theme"
1585+ },
1586+ {
1587+ "status": "Installed",
1588+ "desired": "Install",
1589+ "version": "2.59-4",
1590+ "name": "dnsmasq-base",
1591+ "description": "Small caching DNS proxy and DHCP/TFTP server"
1592+ },
1593+ {
1594+ "status": "Installed",
1595+ "desired": "Install",
1596+ "version": "1:9.8.1.dfsg.P1-4ubuntu0.5",
1597+ "name": "dnsutils",
1598+ "description": "Clients provided with BIND"
1599+ },
1600+ {
1601+ "status": "Installed",
1602+ "desired": "Install",
1603+ "version": "0.10.3",
1604+ "name": "doc-base",
1605+ "description": "utilities to manage online documentation"
1606+ },
1607+ {
1608+ "status": "Installed",
1609+ "desired": "Install",
1610+ "version": "4.5-7ubuntu1",
1611+ "name": "docbook-xml",
1612+ "description": "standard XML documentation system for software and systems"
1613+ },
1614+ {
1615+ "status": "Installed",
1616+ "desired": "Install",
1617+ "version": "1.76.1+dfsg-1ubuntu1",
1618+ "name": "docbook-xsl",
1619+ "description": "stylesheets for processing DocBook XML to various output formats"
1620+ },
1621+ {
1622+ "status": "Installed",
1623+ "desired": "Install",
1624+ "version": "0.12-0ubuntu1~rev479~precise1",
1625+ "name": "doit",
1626+ "description": "Automation Tool"
1627+ },
1628+ {
1629+ "status": "Installed",
1630+ "desired": "Install",
1631+ "version": "3.0.12-1ubuntu1",
1632+ "name": "dosfstools",
1633+ "description": "utilities for making and checking MS-DOS FAT filesystems"
1634+ },
1635+ {
1636+ "status": "Installed",
1637+ "desired": "Install",
1638+ "version": "1.16.1.2ubuntu7.1",
1639+ "name": "dpkg",
1640+ "description": "Debian package management system"
1641+ },
1642+ {
1643+ "status": "Installed",
1644+ "desired": "Install",
1645+ "version": "1.16.1.2ubuntu7.1",
1646+ "name": "dpkg-dev",
1647+ "description": "Debian package development tools"
1648+ },
1649+ {
1650+ "status": "Installed",
1651+ "desired": "Install",
1652+ "version": "0.9.6.2ubuntu1",
1653+ "name": "dput",
1654+ "description": "Debian package upload tool"
1655+ },
1656+ {
1657+ "status": "Installed",
1658+ "desired": "Install",
1659+ "version": "0.6.1+repack-1",
1660+ "name": "drobo-utils",
1661+ "description": "manage data robotics storage units (drobos)"
1662+ },
1663+ {
1664+ "status": "Installed",
1665+ "desired": "Install",
1666+ "version": "0.6.18-0ubuntu3.1",
1667+ "name": "duplicity",
1668+ "description": "encrypted bandwidth-efficient backup"
1669+ },
1670+ {
1671+ "status": "Installed",
1672+ "desired": "Install",
1673+ "version": "7.1-10",
1674+ "name": "dvd+rw-tools",
1675+ "description": "DVD+-RW/R tools"
1676+ },
1677+ {
1678+ "status": "Installed",
1679+ "desired": "Install",
1680+ "version": "1.42-1ubuntu2",
1681+ "name": "e2fslibs",
1682+ "description": "ext2/ext3/ext4 file system libraries"
1683+ },
1684+ {
1685+ "status": "Installed",
1686+ "desired": "Install",
1687+ "version": "1.42-1ubuntu2",
1688+ "name": "e2fsprogs",
1689+ "description": "ext2/ext3/ext4 file system utilities"
1690+ },
1691+ {
1692+ "status": "Installed",
1693+ "desired": "Install",
1694+ "version": "2.0.9.2-2ubuntu2",
1695+ "name": "ebtables",
1696+ "description": "Ethernet bridge frame table administration"
1697+ },
1698+ {
1699+ "status": "Installed",
1700+ "desired": "Install",
1701+ "version": "1.5-3",
1702+ "name": "ed",
1703+ "description": "classic UNIX line editor"
1704+ },
1705+ {
1706+ "status": "Installed",
1707+ "desired": "Install",
1708+ "version": "2.1.5+deb1+cvs20081104-9",
1709+ "name": "eject",
1710+ "description": "ejects CDs and operates CD-Changers under Linux"
1711+ },
1712+ {
1713+ "status": "Installed",
1714+ "desired": "Install",
1715+ "version": "3.4.2.3-0ubuntu1",
1716+ "name": "empathy",
1717+ "description": "GNOME multi-protocol chat and call client"
1718+ },
1719+ {
1720+ "status": "Installed",
1721+ "desired": "Install",
1722+ "version": "3.4.2.3-0ubuntu1",
1723+ "name": "empathy-common",
1724+ "description": "GNOME multi-protocol chat and call client (common files)"
1725+ },
1726+ {
1727+ "status": "Installed",
1728+ "desired": "Install",
1729+ "version": "1.6.0-7",
1730+ "name": "enchant",
1731+ "description": "Wrapper for various spell checker engines (binary programs)"
1732+ },
1733+ {
1734+ "status": "Installed",
1735+ "desired": "Install",
1736+ "version": "2:1.4.6-0ubuntu0.12.04.1",
1737+ "name": "enigmail",
1738+ "description": "GPG support for Thunderbird and Debian Icedove"
1739+ },
1740+ {
1741+ "status": "Installed",
1742+ "desired": "Install",
1743+ "version": "3.4.2-0ubuntu1.1",
1744+ "name": "eog",
1745+ "description": "Eye of GNOME graphics viewer program"
1746+ },
1747+ {
1748+ "status": "Installed",
1749+ "desired": "Install",
1750+ "version": "0.2.41-10build3",
1751+ "name": "esound-common",
1752+ "description": "Enlightened Sound Daemon - Common files"
1753+ },
1754+ {
1755+ "status": "Installed",
1756+ "desired": "Install",
1757+ "version": "1.46.02-0ubuntu1",
1758+ "name": "espeak",
1759+ "description": "Multi-lingual software speech synthesizer"
1760+ },
1761+ {
1762+ "status": "Installed",
1763+ "desired": "Install",
1764+ "version": "1.46.02-0ubuntu1",
1765+ "name": "espeak-data",
1766+ "description": "Multi-lingual software speech synthesizer: speech data files"
1767+ },
1768+ {
1769+ "status": "Installed",
1770+ "desired": "Install",
1771+ "version": "1:3.1-1",
1772+ "name": "ethtool",
1773+ "description": "display or change Ethernet device settings"
1774+ },
1775+ {
1776+ "status": "Installed",
1777+ "desired": "Install",
1778+ "version": "2.0.0~bzr516-0ubuntu3.1",
1779+ "name": "euca2ools",
1780+ "description": "managing cloud instances for Eucalyptus"
1781+ },
1782+ {
1783+ "status": "Installed",
1784+ "desired": "Install",
1785+ "version": "3.4.0-0ubuntu1.4",
1786+ "name": "evince",
1787+ "description": "Document (PostScript, PDF) viewer"
1788+ },
1789+ {
1790+ "status": "Installed",
1791+ "desired": "Install",
1792+ "version": "3.4.0-0ubuntu1.4",
1793+ "name": "evince-common",
1794+ "description": "Document (PostScript, PDF) viewer - common files"
1795+ },
1796+ {
1797+ "status": "Installed",
1798+ "desired": "Install",
1799+ "version": "2.0.2",
1800+ "name": "evoluspencil",
1801+ "description": "Evolus Pencil"
1802+ },
1803+ {
1804+ "status": "Installed",
1805+ "desired": "Install",
1806+ "version": "3.2.3-0ubuntu7",
1807+ "name": "evolution-data-server",
1808+ "description": "evolution database backend server"
1809+ },
1810+ {
1811+ "status": "Installed",
1812+ "desired": "Install",
1813+ "version": "3.2.3-0ubuntu7",
1814+ "name": "evolution-data-server-common",
1815+ "description": "architecture independent files for Evolution Data Server"
1816+ },
1817+ {
1818+ "status": "Installed",
1819+ "desired": "Install",
1820+ "version": "46",
1821+ "name": "example-content",
1822+ "description": "Ubuntu example content"
1823+ },
1824+ {
1825+ "status": "Installed",
1826+ "desired": "Install",
1827+ "version": "1.3.2-5",
1828+ "name": "fabric",
1829+ "description": "Simple Pythonic remote deployment tool"
1830+ },
1831+ {
1832+ "status": "Installed",
1833+ "desired": "Install",
1834+ "version": "1.18.2-1",
1835+ "name": "fakeroot",
1836+ "description": "tool for simulating superuser privileges"
1837+ },
1838+ {
1839+ "status": "Installed",
1840+ "desired": "Install",
1841+ "version": "4:0.8.4-0ubuntu0.12.04.1",
1842+ "name": "ffmpeg",
1843+ "description": "Multimedia player, server, encoder and transcoder (transitional package)"
1844+ },
1845+ {
1846+ "status": "Installed",
1847+ "desired": "Install",
1848+ "version": "5.09-2",
1849+ "name": "file",
1850+ "description": "Determines file type using \"magic\" numbers"
1851+ },
1852+ {
1853+ "status": "Installed",
1854+ "desired": "Install",
1855+ "version": "3.4.1-0ubuntu1",
1856+ "name": "file-roller",
1857+ "description": "archive manager for GNOME"
1858+ },
1859+ {
1860+ "status": "Installed",
1861+ "desired": "Install",
1862+ "version": "4.4.2-4ubuntu1",
1863+ "name": "findutils",
1864+ "description": "utilities for finding files--find, xargs"
1865+ },
1866+ {
1867+ "status": "Installed",
1868+ "desired": "Install",
1869+ "version": "18.0.1+build1-0ubuntu0.12.04.1",
1870+ "name": "firefox",
1871+ "description": "Safe and easy web browser from Mozilla"
1872+ },
1873+ {
1874+ "status": "Installed",
1875+ "desired": "Install",
1876+ "version": "18.0.1+build1-0ubuntu0.12.04.1",
1877+ "name": "firefox-globalmenu",
1878+ "description": "Unity appmenu integration for Firefox"
1879+ },
1880+ {
1881+ "status": "Installed",
1882+ "desired": "Install",
1883+ "version": "18.0.1+build1-0ubuntu0.12.04.1",
1884+ "name": "firefox-gnome-support",
1885+ "description": "Safe and easy web browser from Mozilla - GNOME support"
1886+ },
1887+ {
1888+ "status": "Installed",
1889+ "desired": "Install",
1890+ "version": "0.4",
1891+ "name": "firefox-launchpad-plugin",
1892+ "description": "Launchpad firefox integration"
1893+ },
1894+ {
1895+ "status": "Installed",
1896+ "desired": "Install",
1897+ "version": "18.0.1+build1-0ubuntu0.12.04.1",
1898+ "name": "firefox-locale-en",
1899+ "description": "English language pack for Firefox"
1900+ },
1901+ {
1902+ "status": "Installed",
1903+ "desired": "Install",
1904+ "version": "11.2.202.261ubuntu0.12.04.1",
1905+ "name": "flashplugin-installer",
1906+ "description": "Adobe Flash Player plugin installer"
1907+ },
1908+ {
1909+ "status": "Installed",
1910+ "desired": "Install",
1911+ "version": "2.5.35-10ubuntu3",
1912+ "name": "flex",
1913+ "description": "A fast lexical analyzer generator."
1914+ },
1915+ {
1916+ "status": "Installed",
1917+ "desired": "Install",
1918+ "version": "0.6.8-2",
1919+ "name": "folks-common",
1920+ "description": "library to aggregates people into metacontacts (common files)"
1921+ },
1922+ {
1923+ "status": "Installed",
1924+ "desired": "Install",
1925+ "version": "2.8.0-3ubuntu9.1",
1926+ "name": "fontconfig",
1927+ "description": "generic font configuration library - support binaries"
1928+ },
1929+ {
1930+ "status": "Installed",
1931+ "desired": "Install",
1932+ "version": "2.8.0-3ubuntu9.1",
1933+ "name": "fontconfig-config",
1934+ "description": "generic font configuration library - configuration"
1935+ },
1936+ {
1937+ "status": "Installed",
1938+ "desired": "Install",
1939+ "version": "2.01+mry-3",
1940+ "name": "fonts-kacst",
1941+ "description": "KACST free TrueType Arabic fonts"
1942+ },
1943+ {
1944+ "status": "Installed",
1945+ "desired": "Install",
1946+ "version": "5.0+svn11846-2",
1947+ "name": "fonts-kacst-one",
1948+ "description": "TrueType font designed for Arabic language"
1949+ },
1950+ {
1951+ "status": "Installed",
1952+ "desired": "Install",
1953+ "version": "5.0-5ubuntu1",
1954+ "name": "fonts-khmeros-core",
1955+ "description": "KhmerOS Unicode fonts for the Khmer language of Cambodia"
1956+ },
1957+ {
1958+ "status": "Installed",
1959+ "desired": "Install",
1960+ "version": "0.0.20060226-8",
1961+ "name": "fonts-lao",
1962+ "description": "TrueType font for Lao language"
1963+ },
1964+ {
1965+ "status": "Installed",
1966+ "desired": "Install",
1967+ "version": "1.07.0-2ubuntu0.1",
1968+ "name": "fonts-liberation",
1969+ "description": "Fonts with the same metrics as Times, Arial and Courier"
1970+ },
1971+ {
1972+ "status": "Installed",
1973+ "desired": "Install",
1974+ "version": "3.010-2",
1975+ "name": "fonts-nanum",
1976+ "description": "Nanum Korean fonts"
1977+ },
1978+ {
1979+ "status": "Installed",
1980+ "desired": "Install",
1981+ "version": "2:102.2+LibO3.5.4-0ubuntu1.1",
1982+ "name": "fonts-opensymbol",
1983+ "description": "OpenSymbol TrueType font"
1984+ },
1985+ {
1986+ "status": "Installed",
1987+ "desired": "Install",
1988+ "version": "003.02.01-5ubuntu1",
1989+ "name": "fonts-takao-pgothic",
1990+ "description": "Japanese TrueType font set, Takao P Gothic Fonts"
1991+ },
1992+ {
1993+ "status": "Installed",
1994+ "desired": "Install",
1995+ "version": "1:0.4.17-1ubuntu1",
1996+ "name": "fonts-thai-tlwg",
1997+ "description": "Thai fonts maintained by TLWG (meta package)"
1998+ },
1999+ {
2000+ "status": "Installed",
2001+ "desired": "Install",
2002+ "version": "1:0.4.17-1ubuntu1",
2003+ "name": "fonts-tlwg-garuda",
2004+ "description": "Thai Garuda font"
2005+ },
2006+ {
2007+ "status": "Installed",
2008+ "desired": "Install",
2009+ "version": "1:0.4.17-1ubuntu1",
2010+ "name": "fonts-tlwg-kinnari",
2011+ "description": "Thai Kinnari font"
2012+ },
2013+ {
2014+ "status": "Installed",
2015+ "desired": "Install",
2016+ "version": "1:0.4.17-1ubuntu1",
2017+ "name": "fonts-tlwg-loma",
2018+ "description": "Thai Loma font"
2019+ },
2020+ {
2021+ "status": "Installed",
2022+ "desired": "Install",
2023+ "version": "1:0.4.17-1ubuntu1",
2024+ "name": "fonts-tlwg-mono",
2025+ "description": "Thai TlwgMono font"
2026+ },
2027+ {
2028+ "status": "Installed",
2029+ "desired": "Install",
2030+ "version": "1:0.4.17-1ubuntu1",
2031+ "name": "fonts-tlwg-norasi",
2032+ "description": "Thai Norasi font"
2033+ },
2034+ {
2035+ "status": "Installed",
2036+ "desired": "Install",
2037+ "version": "1:0.4.17-1ubuntu1",
2038+ "name": "fonts-tlwg-purisa",
2039+ "description": "Thai Purisa font"
2040+ },
2041+ {
2042+ "status": "Installed",
2043+ "desired": "Install",
2044+ "version": "1:0.4.17-1ubuntu1",
2045+ "name": "fonts-tlwg-sawasdee",
2046+ "description": "Thai Sawasdee font"
2047+ },
2048+ {
2049+ "status": "Installed",
2050+ "desired": "Install",
2051+ "version": "1:0.4.17-1ubuntu1",
2052+ "name": "fonts-tlwg-typewriter",
2053+ "description": "Thai TlwgTypewriter font"
2054+ },
2055+ {
2056+ "status": "Installed",
2057+ "desired": "Install",
2058+ "version": "1:0.4.17-1ubuntu1",
2059+ "name": "fonts-tlwg-typist",
2060+ "description": "Thai TlwgTypist font"
2061+ },
2062+ {
2063+ "status": "Installed",
2064+ "desired": "Install",
2065+ "version": "1:0.4.17-1ubuntu1",
2066+ "name": "fonts-tlwg-typo",
2067+ "description": "Thai TlwgTypo font"
2068+ },
2069+ {
2070+ "status": "Installed",
2071+ "desired": "Install",
2072+ "version": "1:0.4.17-1ubuntu1",
2073+ "name": "fonts-tlwg-umpush",
2074+ "description": "Thai Umpush font"
2075+ },
2076+ {
2077+ "status": "Installed",
2078+ "desired": "Install",
2079+ "version": "1:0.4.17-1ubuntu1",
2080+ "name": "fonts-tlwg-waree",
2081+ "description": "Thai Waree font"
2082+ },
2083+ {
2084+ "status": "Installed",
2085+ "desired": "Install",
2086+ "version": "20120322-0ubuntu1",
2087+ "name": "foomatic-db-compressed-ppds",
2088+ "description": "OpenPrinting printer support - Compressed PPDs derived from the database"
2089+ },
2090+ {
2091+ "status": "Installed",
2092+ "desired": "Install",
2093+ "version": "4.0.8-2ubuntu1",
2094+ "name": "foomatic-db-engine",
2095+ "description": "OpenPrinting printer support - programs"
2096+ },
2097+ {
2098+ "status": "Installed",
2099+ "desired": "Install",
2100+ "version": "4.0.16-0ubuntu0.2",
2101+ "name": "foomatic-filters",
2102+ "description": "OpenPrinting printer support - filters"
2103+ },
2104+ {
2105+ "status": "Installed",
2106+ "desired": "Install",
2107+ "version": "2.6.0-1ubuntu3",
2108+ "name": "freeglut3",
2109+ "description": "OpenGL Utility Toolkit"
2110+ },
2111+ {
2112+ "status": "Installed",
2113+ "desired": "Install",
2114+ "version": "2.6.0-1ubuntu3",
2115+ "name": "freeglut3-dev",
2116+ "description": "OpenGL Utility Toolkit development files"
2117+ },
2118+ {
2119+ "status": "Installed",
2120+ "desired": "Install",
2121+ "version": "20060219-1",
2122+ "name": "freepats",
2123+ "description": "Free patch set for MIDI audio synthesis"
2124+ },
2125+ {
2126+ "status": "Installed",
2127+ "desired": "Install",
2128+ "version": "0.2.25",
2129+ "name": "friendly-recovery",
2130+ "description": "Make recovery more user-friendly"
2131+ },
2132+ {
2133+ "status": "Installed",
2134+ "desired": "Install",
2135+ "version": "20101118-2",
2136+ "name": "fswebcam",
2137+ "description": "Tiny and flexible webcam program"
2138+ },
2139+ {
2140+ "status": "Installed",
2141+ "desired": "Install",
2142+ "version": "0.17-25",
2143+ "name": "ftp",
2144+ "description": "classical file transfer client"
2145+ },
2146+ {
2147+ "status": "Installed",
2148+ "desired": "Install",
2149+ "version": "2.8.6-2ubuntu2",
2150+ "name": "fuse",
2151+ "description": "Filesystem in Userspace"
2152+ },
2153+ {
2154+ "status": "Installed",
2155+ "desired": "Install",
2156+ "version": "0.25.06precise1",
2157+ "name": "fwts",
2158+ "description": "FirmWare Test Suite"
2159+ },
2160+ {
2161+ "status": "Installed",
2162+ "desired": "Install",
2163+ "version": "4:4.6.3-1ubuntu5",
2164+ "name": "g++",
2165+ "description": "GNU C++ compiler"
2166+ },
2167+ {
2168+ "status": "Installed",
2169+ "desired": "Install",
2170+ "version": "4.6.3-1ubuntu5",
2171+ "name": "g++-4.6",
2172+ "description": "GNU C++ compiler"
2173+ },
2174+ {
2175+ "status": "Installed",
2176+ "desired": "Install",
2177+ "version": "1:3.1.8+dfsg-0.1ubuntu1",
2178+ "name": "gawk",
2179+ "description": "GNU awk, a pattern scanning and processing language"
2180+ },
2181+ {
2182+ "status": "Installed",
2183+ "desired": "Install",
2184+ "version": "6.4.1.1-0ubuntu3",
2185+ "name": "gcalctool",
2186+ "description": "GNOME desktop calculator"
2187+ },
2188+ {
2189+ "status": "Installed",
2190+ "desired": "Install",
2191+ "version": "4:4.6.3-1ubuntu5",
2192+ "name": "gcc",
2193+ "description": "GNU C compiler"
2194+ },
2195+ {
2196+ "status": "Installed",
2197+ "desired": "Install",
2198+ "version": "4.6.3-1ubuntu5",
2199+ "name": "gcc-4.6",
2200+ "description": "GNU C compiler"
2201+ },
2202+ {
2203+ "status": "Installed",
2204+ "desired": "Install",
2205+ "version": "4.6.3-1ubuntu5",
2206+ "name": "gcc-4.6-base",
2207+ "description": "GCC, the GNU Compiler Collection (base package)"
2208+ },
2209+ {
2210+ "status": "Installed",
2211+ "desired": "Install",
2212+ "version": "4.6.3-1ubuntu5",
2213+ "name": "gcc-4.6-base:i386",
2214+ "description": "GCC, the GNU Compiler Collection (base package)"
2215+ },
2216+ {
2217+ "status": "Installed",
2218+ "desired": "Install",
2219+ "version": "3.2.5-0ubuntu2",
2220+ "name": "gconf-defaults-service",
2221+ "description": "GNOME configuration database system (system defaults service)"
2222+ },
2223+ {
2224+ "status": "Installed",
2225+ "desired": "Install",
2226+ "version": "3.0.1-1ubuntu2",
2227+ "name": "gconf-editor",
2228+ "description": "editor for the GConf configuration system"
2229+ },
2230+ {
2231+ "status": "Installed",
2232+ "desired": "Install",
2233+ "version": "3.2.5-0ubuntu2",
2234+ "name": "gconf-service",
2235+ "description": "GNOME configuration database system (D-Bus service)"
2236+ },
2237+ {
2238+ "status": "Installed",
2239+ "desired": "Install",
2240+ "version": "3.2.5-0ubuntu2",
2241+ "name": "gconf-service-backend",
2242+ "description": "GNOME configuration database system (D-Bus service)"
2243+ },
2244+ {
2245+ "status": "Installed",
2246+ "desired": "Install",
2247+ "version": "3.2.5-0ubuntu2",
2248+ "name": "gconf2",
2249+ "description": "GNOME configuration database system (support tools)"
2250+ },
2251+ {
2252+ "status": "Installed",
2253+ "desired": "Install",
2254+ "version": "3.2.5-0ubuntu2",
2255+ "name": "gconf2-common",
2256+ "description": "GNOME configuration database system (common files)"
2257+ },
2258+ {
2259+ "status": "Installed",
2260+ "desired": "Install",
2261+ "version": "7.4-2012.04-0ubuntu2.1",
2262+ "name": "gdb",
2263+ "description": "The GNU Debugger"
2264+ },
2265+ {
2266+ "status": "Installed",
2267+ "desired": "Install",
2268+ "version": "0.8.5build1",
2269+ "name": "gdebi",
2270+ "description": "simple tool to install deb files - GNOME GUI"
2271+ },
2272+ {
2273+ "status": "Installed",
2274+ "desired": "Install",
2275+ "version": "0.8.5build1",
2276+ "name": "gdebi-core",
2277+ "description": "simple tool to install deb files"
2278+ },
2279+ {
2280+ "status": "Installed",
2281+ "desired": "Install",
2282+ "version": "0.21.dfsg-1ubuntu4",
2283+ "name": "geany",
2284+ "description": "fast and lightweight IDE"
2285+ },
2286+ {
2287+ "status": "Installed",
2288+ "desired": "Install",
2289+ "version": "0.21.dfsg-1ubuntu4",
2290+ "name": "geany-common",
2291+ "description": "fast and lightweight IDE -- common files"
2292+ },
2293+ {
2294+ "status": "Installed",
2295+ "desired": "Install",
2296+ "version": "0.21.1.dfsg-2",
2297+ "name": "geany-plugin-treebrowser",
2298+ "description": "tree browser plugin for Geany"
2299+ },
2300+ {
2301+ "status": "Installed",
2302+ "desired": "Install",
2303+ "version": "0.21.1.dfsg-2",
2304+ "name": "geany-plugins-common",
2305+ "description": "set of plugins for Geany (translations)"
2306+ },
2307+ {
2308+ "status": "Installed",
2309+ "desired": "Install",
2310+ "version": "3.4.1-0ubuntu1",
2311+ "name": "gedit",
2312+ "description": "official text editor of the GNOME desktop environment"
2313+ },
2314+ {
2315+ "status": "Installed",
2316+ "desired": "Install",
2317+ "version": "3.4.1-0ubuntu1",
2318+ "name": "gedit-common",
2319+ "description": "official text editor of the GNOME desktop environment (support files)"
2320+ },
2321+ {
2322+ "status": "Installed",
2323+ "desired": "Install",
2324+ "version": "9:1.1.11-2ubuntu2",
2325+ "name": "genisoimage",
2326+ "description": "Creates ISO-9660 CD-ROM filesystem images"
2327+ },
2328+ {
2329+ "status": "Installed",
2330+ "desired": "Install",
2331+ "version": "0.12.0-1ubuntu12",
2332+ "name": "geoclue",
2333+ "description": "Geographic information framework"
2334+ },
2335+ {
2336+ "status": "Installed",
2337+ "desired": "Install",
2338+ "version": "0.0.2-0ubuntu6",
2339+ "name": "geoclue-ubuntu-geoip",
2340+ "description": "Provide positioning for GeoClue via Ubuntu GeoIP services"
2341+ },
2342+ {
2343+ "status": "Installed",
2344+ "desired": "Install",
2345+ "version": "20111220-1",
2346+ "name": "geoip-database",
2347+ "description": "IP lookup command line tools that use the GeoIP library (country database)"
2348+ },
2349+ {
2350+ "status": "Installed",
2351+ "desired": "Install",
2352+ "version": "0.18.1.1-5ubuntu3",
2353+ "name": "gettext",
2354+ "description": "GNU Internationalization utilities"
2355+ },
2356+ {
2357+ "status": "Installed",
2358+ "desired": "Install",
2359+ "version": "0.18.1.1-5ubuntu3",
2360+ "name": "gettext-base",
2361+ "description": "GNU Internationalization utilities for the base system"
2362+ },
2363+ {
2364+ "status": "Installed",
2365+ "desired": "Install",
2366+ "version": "9.05~dfsg-0ubuntu4.2",
2367+ "name": "ghostscript",
2368+ "description": "interpreter for the PostScript language and for PDF"
2369+ },
2370+ {
2371+ "status": "Installed",
2372+ "desired": "Install",
2373+ "version": "9.05~dfsg-0ubuntu4.2",
2374+ "name": "ghostscript-cups",
2375+ "description": "interpreter for the PostScript language and for PDF - CUPS filters"
2376+ },
2377+ {
2378+ "status": "Installed",
2379+ "desired": "Install",
2380+ "version": "9.05~dfsg-0ubuntu4.2",
2381+ "name": "ghostscript-x",
2382+ "description": "interpreter for the PostScript language and for PDF - X11 support"
2383+ },
2384+ {
2385+ "status": "Installed",
2386+ "desired": "Install",
2387+ "version": "2.6.12-1ubuntu1.2",
2388+ "name": "gimp",
2389+ "description": "The GNU Image Manipulation Program"
2390+ },
2391+ {
2392+ "status": "Installed",
2393+ "desired": "Install",
2394+ "version": "2.6.12-1ubuntu1.2",
2395+ "name": "gimp-data",
2396+ "description": "Data files for GIMP"
2397+ },
2398+ {
2399+ "status": "Installed",
2400+ "desired": "Install",
2401+ "version": "0.2.4.1-0ubuntu1",
2402+ "name": "ginn",
2403+ "description": "Gesture Injector: No-GEIS, No-Toolkits"
2404+ },
2405+ {
2406+ "status": "Installed",
2407+ "desired": "Install",
2408+ "version": "0.6.15-2ubuntu9.4",
2409+ "name": "gir1.2-accountsservice-1.0",
2410+ "description": "GObject introspection data for AccountService"
2411+ },
2412+ {
2413+ "status": "Installed",
2414+ "desired": "Install",
2415+ "version": "0.4.92-0ubuntu1",
2416+ "name": "gir1.2-appindicator3-0.1",
2417+ "description": "Typelib files for libappindicator3-1."
2418+ },
2419+ {
2420+ "status": "Installed",
2421+ "desired": "Install",
2422+ "version": "2.4.0-0ubuntu1",
2423+ "name": "gir1.2-atk-1.0",
2424+ "description": "ATK accessibility toolkit (GObject introspection)"
2425+ },
2426+ {
2427+ "status": "Installed",
2428+ "desired": "Install",
2429+ "version": "2.4.2-0ubuntu0.1",
2430+ "name": "gir1.2-atspi-2.0",
2431+ "description": "Assistive Technology Service Provider (GObject introspection)"
2432+ },
2433+ {
2434+ "status": "Installed",
2435+ "desired": "Install",
2436+ "version": "0.4.2-1ubuntu1",
2437+ "name": "gir1.2-caribou-1.0",
2438+ "description": "GObject introspection for the Caribou library"
2439+ },
2440+ {
2441+ "status": "Installed",
2442+ "desired": "Install",
2443+ "version": "1.10.6-1~precise1",
2444+ "name": "gir1.2-clutter-1.0",
2445+ "description": "GObject introspection data for the Clutter 1.0 library"
2446+ },
2447+ {
2448+ "status": "Installed",
2449+ "desired": "Install",
2450+ "version": "1.10.0-0ubuntu2",
2451+ "name": "gir1.2-cogl-1.0",
2452+ "description": "GObject introspection data for the Cogl 1.0 library"
2453+ },
2454+ {
2455+ "status": "Installed",
2456+ "desired": "Install",
2457+ "version": "1.10.0-0ubuntu2",
2458+ "name": "gir1.2-coglpango-1.0",
2459+ "description": "GObject introspection data for the CoglPango 1.0 library"
2460+ },
2461+ {
2462+ "status": "Installed",
2463+ "desired": "Install",
2464+ "version": "0.6.2-0ubuntu0.1",
2465+ "name": "gir1.2-dbusmenu-glib-0.4",
2466+ "description": "typelib file for libdbusmenu-glib4"
2467+ },
2468+ {
2469+ "status": "Installed",
2470+ "desired": "Install",
2471+ "version": "0.6.2-0ubuntu0.1",
2472+ "name": "gir1.2-dbusmenu-gtk-0.4",
2473+ "description": "typelib file for libdbusmenu-gtk4"
2474+ },
2475+ {
2476+ "status": "Installed",
2477+ "desired": "Install",
2478+ "version": "1.0.10-0ubuntu1",
2479+ "name": "gir1.2-dee-1.0",
2480+ "description": "GObject introspection data for the Dee library"
2481+ },
2482+ {
2483+ "status": "Installed",
2484+ "desired": "Install",
2485+ "version": "0.6.8-2",
2486+ "name": "gir1.2-folks-0.6",
2487+ "description": "library to aggregates people into metacontacts - GObject-Introspection"
2488+ },
2489+ {
2490+ "status": "Installed",
2491+ "desired": "Install",
2492+ "version": "1.32.0-1",
2493+ "name": "gir1.2-freedesktop",
2494+ "description": "Introspection data for some FreeDesktop components"
2495+ },
2496+ {
2497+ "status": "Installed",
2498+ "desired": "Install",
2499+ "version": "3.2.5-0ubuntu2",
2500+ "name": "gir1.2-gconf-2.0",
2501+ "description": "GNOME configuration database system (GObject-Introspection)"
2502+ },
2503+ {
2504+ "status": "Installed",
2505+ "desired": "Install",
2506+ "version": "3.4.1-0ubuntu1",
2507+ "name": "gir1.2-gdesktopenums-3.0",
2508+ "description": "GObject introspection for GSettings desktop-wide schemas"
2509+ },
2510+ {
2511+ "status": "Installed",
2512+ "desired": "Install",
2513+ "version": "2.26.1-1",
2514+ "name": "gir1.2-gdkpixbuf-2.0",
2515+ "description": "GDK Pixbuf library - GObject-Introspection"
2516+ },
2517+ {
2518+ "status": "Installed",
2519+ "desired": "Install",
2520+ "version": "0.6.4-1",
2521+ "name": "gir1.2-gee-1.0",
2522+ "description": "GLib Telepathy connection manager library (GObject-Introspection)"
2523+ },
2524+ {
2525+ "status": "Installed",
2526+ "desired": "Install",
2527+ "version": "1.32.0-1ubuntu1",
2528+ "name": "gir1.2-gjsdbus-1.0",
2529+ "description": "GObject introspection data for GJS"
2530+ },
2531+ {
2532+ "status": "Installed",
2533+ "desired": "Install",
2534+ "version": "3.4.0.2-1",
2535+ "name": "gir1.2-gkbd-3.0",
2536+ "description": "GObject introspection data for the GnomeKbd library"
2537+ },
2538+ {
2539+ "status": "Installed",
2540+ "desired": "Install",
2541+ "version": "1.32.0-1",
2542+ "name": "gir1.2-glib-2.0",
2543+ "description": "Introspection data for GLib, GObject, Gio and GModule"
2544+ },
2545+ {
2546+ "status": "Installed",
2547+ "desired": "Install",
2548+ "version": "3.4.0-0ubuntu1",
2549+ "name": "gir1.2-gmenu-3.0",
2550+ "description": "GObject introspection data for the GNOME menu library"
2551+ },
2552+ {
2553+ "status": "Installed",
2554+ "desired": "Install",
2555+ "version": "3.2.2-0ubuntu5",
2556+ "name": "gir1.2-gnomebluetooth-1.0",
2557+ "description": "Introspection data for GnomeBluetooth"
2558+ },
2559+ {
2560+ "status": "Installed",
2561+ "desired": "Install",
2562+ "version": "3.2.2-2",
2563+ "name": "gir1.2-gnomekeyring-1.0",
2564+ "description": "GNOME keyring services library - introspection data"
2565+ },
2566+ {
2567+ "status": "Installed",
2568+ "desired": "Install",
2569+ "version": "0.10.36-1ubuntu0.1",
2570+ "name": "gir1.2-gst-plugins-base-0.10",
2571+ "description": "Description: GObject introspection data for the GStreamer Plugins Base library"
2572+ },
2573+ {
2574+ "status": "Installed",
2575+ "desired": "Install",
2576+ "version": "0.10.36-1ubuntu1",
2577+ "name": "gir1.2-gstreamer-0.10",
2578+ "description": "Description: GObject introspection data for the GStreamer library"
2579+ },
2580+ {
2581+ "status": "Installed",
2582+ "desired": "Install",
2583+ "version": "2.24.10-0ubuntu6",
2584+ "name": "gir1.2-gtk-2.0",
2585+ "description": "GTK+ graphical user interface library -- gir bindings"
2586+ },
2587+ {
2588+ "status": "Installed",
2589+ "desired": "Install",
2590+ "version": "3.4.2-0ubuntu0.5",
2591+ "name": "gir1.2-gtk-3.0",
2592+ "description": "GTK+ graphical user interface library -- gir bindings"
2593+ },
2594+ {
2595+ "status": "Installed",
2596+ "desired": "Install",
2597+ "version": "3.4.2-0ubuntu1",
2598+ "name": "gir1.2-gtksource-3.0",
2599+ "description": "gir files for the GTK+ syntax highlighting widget"
2600+ },
2601+ {
2602+ "status": "Installed",
2603+ "desired": "Install",
2604+ "version": "175-0ubuntu9.2",
2605+ "name": "gir1.2-gudev-1.0",
2606+ "description": "libgudev-1.0 introspection data"
2607+ },
2608+ {
2609+ "status": "Installed",
2610+ "desired": "Install",
2611+ "version": "0.6.92-0ubuntu1",
2612+ "name": "gir1.2-indicate-0.7",
2613+ "description": "Typelib file for libindicate5"
2614+ },
2615+ {
2616+ "status": "Installed",
2617+ "desired": "Install",
2618+ "version": "1.8.3-0ubuntu0.12.04.1",
2619+ "name": "gir1.2-javascriptcoregtk-1.0",
2620+ "description": "GObject introspection data for the GTK+-based JavaScriptCore library"
2621+ },
2622+ {
2623+ "status": "Installed",
2624+ "desired": "Install",
2625+ "version": "1.8.3-0ubuntu0.12.04.1",
2626+ "name": "gir1.2-javascriptcoregtk-3.0",
2627+ "description": "GObject introspection data for the GTK+-based JavaScriptCore library"
2628+ },
2629+ {
2630+ "status": "Installed",
2631+ "desired": "Install",
2632+ "version": "0.14.2-1",
2633+ "name": "gir1.2-json-1.0",
2634+ "description": "GLib JSON manipulation library (introspection data)"
2635+ },
2636+ {
2637+ "status": "Installed",
2638+ "desired": "Install",
2639+ "version": "0.1.56.1",
2640+ "name": "gir1.2-launchpad-integration-3.0",
2641+ "description": "library for launchpad integration (gir files)"
2642+ },
2643+ {
2644+ "status": "Installed",
2645+ "desired": "Install",
2646+ "version": "3.4.1-0ubuntu1",
2647+ "name": "gir1.2-mutter-3.0",
2648+ "description": "GObject introspection data for Mutter"
2649+ },
2650+ {
2651+ "status": "Installed",
2652+ "desired": "Install",
2653+ "version": "0.9.4.0-0ubuntu4.2",
2654+ "name": "gir1.2-networkmanager-1.0",
2655+ "description": "GObject introspection data for NetworkManager"
2656+ },
2657+ {
2658+ "status": "Installed",
2659+ "desired": "Install",
2660+ "version": "0.7.5-1",
2661+ "name": "gir1.2-notify-0.7",
2662+ "description": "sends desktop notifications to a notification daemon (Introspection files)"
2663+ },
2664+ {
2665+ "status": "Installed",
2666+ "desired": "Install",
2667+ "version": "1:3.4.1-0ubuntu1.1",
2668+ "name": "gir1.2-panelapplet-4.0",
2669+ "description": "GObject introspection for the GNOME Panel Applet library"
2670+ },
2671+ {
2672+ "status": "Installed",
2673+ "desired": "Install",
2674+ "version": "1.30.0-0ubuntu3.1",
2675+ "name": "gir1.2-pango-1.0",
2676+ "description": "Layout and rendering of internationalized text - gir bindings"
2677+ },
2678+ {
2679+ "status": "Installed",
2680+ "desired": "Install",
2681+ "version": "1.2.0-1ubuntu1",
2682+ "name": "gir1.2-peas-1.0",
2683+ "description": "Application plugin library (introspection files)"
2684+ },
2685+ {
2686+ "status": "Installed",
2687+ "desired": "Install",
2688+ "version": "0.104-1ubuntu1",
2689+ "name": "gir1.2-polkit-1.0",
2690+ "description": "GObject introspection data for PolicyKit"
2691+ },
2692+ {
2693+ "status": "Installed",
2694+ "desired": "Install",
2695+ "version": "2.96-0ubuntu4.2",
2696+ "name": "gir1.2-rb-3.0",
2697+ "description": "GObject introspection data for the rhythmbox music player"
2698+ },
2699+ {
2700+ "status": "Installed",
2701+ "desired": "Install",
2702+ "version": "2.38.1-1",
2703+ "name": "gir1.2-soup-2.4",
2704+ "description": "GObject introspection data for the libsoup HTTP library"
2705+ },
2706+ {
2707+ "status": "Installed",
2708+ "desired": "Install",
2709+ "version": "0.18.0-1ubuntu1",
2710+ "name": "gir1.2-telepathyglib-0.12",
2711+ "description": "GLib Telepathy connection manager library (GObject-Introspection)"
2712+ },
2713+ {
2714+ "status": "Installed",
2715+ "desired": "Install",
2716+ "version": "0.4.0-0ubuntu1",
2717+ "name": "gir1.2-telepathylogger-0.2",
2718+ "description": "Telepathy logger service - introspection"
2719+ },
2720+ {
2721+ "status": "Installed",
2722+ "desired": "Install",
2723+ "version": "3.0.1-0ubuntu21.1",
2724+ "name": "gir1.2-totem-1.0",
2725+ "description": "GObject introspection data for Totem media player"
2726+ },
2727+ {
2728+ "status": "Installed",
2729+ "desired": "Install",
2730+ "version": "3.4.1-1",
2731+ "name": "gir1.2-totem-plparser-1.0",
2732+ "description": "GObject introspection data for the Totem Playlist Parser library"
2733+ },
2734+ {
2735+ "status": "Installed",
2736+ "desired": "Install",
2737+ "version": "3.0.1-0ubuntu1",
2738+ "name": "gir1.2-ubuntuoneui-3.0",
2739+ "description": "Ubuntu One widget library"
2740+ },
2741+ {
2742+ "status": "Installed",
2743+ "desired": "Install",
2744+ "version": "3.0.2-1",
2745+ "name": "gir1.2-unique-3.0",
2746+ "description": "GObject introspection data for the Unique library"
2747+ },
2748+ {
2749+ "status": "Installed",
2750+ "desired": "Install",
2751+ "version": "5.12.0-0ubuntu1.1",
2752+ "name": "gir1.2-unity-5.0",
2753+ "description": "GObject introspection data for the Unity library"
2754+ },
2755+ {
2756+ "status": "Installed",
2757+ "desired": "Install",
2758+ "version": "0.9.15-3git1",
2759+ "name": "gir1.2-upowerglib-1.0",
2760+ "description": "GObject introspection data for upower"
2761+ },
2762+ {
2763+ "status": "Installed",
2764+ "desired": "Install",
2765+ "version": "1:0.32.1-0ubuntu1",
2766+ "name": "gir1.2-vte-2.90",
2767+ "description": "GObject introspection data for the VTE library"
2768+ },
2769+ {
2770+ "status": "Installed",
2771+ "desired": "Install",
2772+ "version": "1.8.3-0ubuntu0.12.04.1",
2773+ "name": "gir1.2-webkit-1.0",
2774+ "description": "GObject introspection data for the WebKit library"
2775+ },
2776+ {
2777+ "status": "Installed",
2778+ "desired": "Install",
2779+ "version": "1.8.3-0ubuntu0.12.04.1",
2780+ "name": "gir1.2-webkit-3.0",
2781+ "description": "GObject introspection data for the WebKit library"
2782+ },
2783+ {
2784+ "status": "Installed",
2785+ "desired": "Install",
2786+ "version": "3.4.0-0ubuntu1",
2787+ "name": "gir1.2-wnck-3.0",
2788+ "description": "GObject introspection data for the WNCK library"
2789+ },
2790+ {
2791+ "status": "Installed",
2792+ "desired": "Install",
2793+ "version": "5.2.1-1ubuntu1",
2794+ "name": "gir1.2-xkl-1.0",
2795+ "description": "X Keyboard Extension high-level API - introspection data"
2796+ },
2797+ {
2798+ "status": "Installed",
2799+ "desired": "Install",
2800+ "version": "1:1.7.9.5-1",
2801+ "name": "git",
2802+ "description": "fast, scalable, distributed revision control system"
2803+ },
2804+ {
2805+ "status": "Installed",
2806+ "desired": "Install",
2807+ "version": "1:1.7.9.5-1",
2808+ "name": "git-core",
2809+ "description": "fast, scalable, distributed revision control system (obsolete)"
2810+ },
2811+ {
2812+ "status": "Installed",
2813+ "desired": "Install",
2814+ "version": "1:1.7.9.5-1",
2815+ "name": "git-email",
2816+ "description": "fast, scalable, distributed revision control system (email add-on)"
2817+ },
2818+ {
2819+ "status": "Installed",
2820+ "desired": "Install",
2821+ "version": "1:1.7.9.5-1",
2822+ "name": "git-gui",
2823+ "description": "fast, scalable, distributed revision control system (GUI)"
2824+ },
2825+ {
2826+ "status": "Installed",
2827+ "desired": "Install",
2828+ "version": "1:1.7.9.5-1",
2829+ "name": "git-man",
2830+ "description": "fast, scalable, distributed revision control system (manual pages)"
2831+ },
2832+ {
2833+ "status": "Installed",
2834+ "desired": "Install",
2835+ "version": "1:1.7.9.5-1",
2836+ "name": "gitk",
2837+ "description": "fast, scalable, distributed revision control system (revision tree visualizer)"
2838+ },
2839+ {
2840+ "status": "Installed",
2841+ "desired": "Install",
2842+ "version": "1.32.0-1ubuntu1",
2843+ "name": "gjs",
2844+ "description": "Mozilla-based javascript bindings for the GNOME platform"
2845+ },
2846+ {
2847+ "status": "Installed",
2848+ "desired": "Install",
2849+ "version": "2.0.2-6ubuntu1",
2850+ "name": "gksu",
2851+ "description": "graphical frontend to su"
2852+ },
2853+ {
2854+ "status": "Installed",
2855+ "desired": "Install",
2856+ "version": "3.12.1-0ubuntu1",
2857+ "name": "glade",
2858+ "description": "GTK+ User Interface Builder"
2859+ },
2860+ {
2861+ "status": "Installed",
2862+ "desired": "Install",
2863+ "version": "3.8.0-0ubuntu4",
2864+ "name": "glade-gtk2",
2865+ "description": "GTK+ 2 User Interface Builder"
2866+ },
2867+ {
2868+ "status": "Installed",
2869+ "desired": "Install",
2870+ "version": "2.32.1-1ubuntu2",
2871+ "name": "glib-networking",
2872+ "description": "network-related giomodules for GLib"
2873+ },
2874+ {
2875+ "status": "Installed",
2876+ "desired": "Install",
2877+ "version": "2.32.1-1ubuntu2",
2878+ "name": "glib-networking:i386",
2879+ "description": "network-related giomodules for GLib"
2880+ },
2881+ {
2882+ "status": "Installed",
2883+ "desired": "Install",
2884+ "version": "2.32.1-1ubuntu2",
2885+ "name": "glib-networking-common",
2886+ "description": "network-related giomodules for GLib - data files"
2887+ },
2888+ {
2889+ "status": "Installed",
2890+ "desired": "Install",
2891+ "version": "2.32.1-1ubuntu2",
2892+ "name": "glib-networking-services",
2893+ "description": "network-related giomodules for GLib - D-Bus services"
2894+ },
2895+ {
2896+ "status": "Installed",
2897+ "desired": "Install",
2898+ "version": "2011.09-0ubuntu1",
2899+ "name": "glmark2",
2900+ "description": "OpenGL (ES) 2.0 benchmark"
2901+ },
2902+ {
2903+ "status": "Installed",
2904+ "desired": "Install",
2905+ "version": "2011.09-0ubuntu1",
2906+ "name": "glmark2-data",
2907+ "description": "data files for the glmark2 OpenGL (ES) 2.0 benchmark"
2908+ },
2909+ {
2910+ "status": "Installed",
2911+ "desired": "Install",
2912+ "version": "2011.09-0ubuntu1",
2913+ "name": "glmark2-es2",
2914+ "description": "OpenGL (ES) 2.0 benchmark"
2915+ },
2916+ {
2917+ "status": "Installed",
2918+ "desired": "Install",
2919+ "version": "3.4.1-0ubuntu1.2",
2920+ "name": "gnome-accessibility-themes",
2921+ "description": "accessibility themes for the GNOME desktop"
2922+ },
2923+ {
2924+ "status": "Installed",
2925+ "desired": "Install",
2926+ "version": "3.4.1-0ubuntu1",
2927+ "name": "gnome-applets",
2928+ "description": "Various applets for the GNOME panel - binary files"
2929+ },
2930+ {
2931+ "status": "Installed",
2932+ "desired": "Install",
2933+ "version": "3.4.1-0ubuntu1",
2934+ "name": "gnome-applets-data",
2935+ "description": "Various applets for the GNOME panel - data files"
2936+ },
2937+ {
2938+ "status": "Installed",
2939+ "desired": "Install",
2940+ "version": "3.2.2-0ubuntu5",
2941+ "name": "gnome-bluetooth",
2942+ "description": "GNOME Bluetooth tools"
2943+ },
2944+ {
2945+ "status": "Installed",
2946+ "desired": "Install",
2947+ "version": "3.4.0-1",
2948+ "name": "gnome-contacts",
2949+ "description": "Contacts manager for GNOME"
2950+ },
2951+ {
2952+ "status": "Installed",
2953+ "desired": "Install",
2954+ "version": "1:3.4.2-0ubuntu0.8",
2955+ "name": "gnome-control-center",
2956+ "description": "utilities to configure the GNOME desktop"
2957+ },
2958+ {
2959+ "status": "Installed",
2960+ "desired": "Install",
2961+ "version": "1:3.4.2-0ubuntu0.8",
2962+ "name": "gnome-control-center-data",
2963+ "description": "configuration applets for GNOME - data files"
2964+ },
2965+ {
2966+ "status": "Installed",
2967+ "desired": "Install",
2968+ "version": "3.4.2-0ubuntu0.1",
2969+ "name": "gnome-desktop3-data",
2970+ "description": "Common files for GNOME desktop apps"
2971+ },
2972+ {
2973+ "status": "Installed",
2974+ "desired": "Install",
2975+ "version": "3.0.2-2ubuntu7",
2976+ "name": "gnome-disk-utility",
2977+ "description": "manage and configure disk drives and media"
2978+ },
2979+ {
2980+ "status": "Installed",
2981+ "desired": "Install",
2982+ "version": "3.4.0-1",
2983+ "name": "gnome-font-viewer",
2984+ "description": "font viewer for GNOME"
2985+ },
2986+ {
2987+ "status": "Installed",
2988+ "desired": "Install",
2989+ "version": "1:3.4.1-0ubuntu2.2",
2990+ "name": "gnome-games-data",
2991+ "description": "data files for the GNOME games"
2992+ },
2993+ {
2994+ "status": "Installed",
2995+ "desired": "Install",
2996+ "version": "3.4.0-0ubuntu1.1",
2997+ "name": "gnome-icon-theme",
2998+ "description": "GNOME Desktop icon theme (small subset)"
2999+ },
3000+ {
3001+ "status": "Installed",
3002+ "desired": "Install",
3003+ "version": "3.4.0-0ubuntu1.1",
3004+ "name": "gnome-icon-theme-full",
3005+ "description": "GNOME Desktop icon theme"
3006+ },
3007+ {
3008+ "status": "Installed",
3009+ "desired": "Install",
3010+ "version": "3.4.0-1",
3011+ "name": "gnome-icon-theme-symbolic",
3012+ "description": "GNOME desktop icon theme (symbolic icons)"
3013+ },
3014+ {
3015+ "status": "Installed",
3016+ "desired": "Install",
3017+ "version": "3.2.2-2ubuntu4",
3018+ "name": "gnome-keyring",
3019+ "description": "GNOME keyring services (daemon and tools)"
3020+ },
3021+ {
3022+ "status": "Installed",
3023+ "desired": "Install",
3024+ "version": "3.4.0-0ubuntu3.1",
3025+ "name": "gnome-media",
3026+ "description": "GNOME media utilities"
3027+ },
3028+ {
3029+ "status": "Installed",
3030+ "desired": "Install",
3031+ "version": "3.4.0-0ubuntu1",
3032+ "name": "gnome-menus",
3033+ "description": "GNOME implementation of the freedesktop menu specification"
3034+ },
3035+ {
3036+ "status": "Installed",
3037+ "desired": "Install",
3038+ "version": "1.0.5-1",
3039+ "name": "gnome-mplayer",
3040+ "description": "A GTK+ interface for MPlayer"
3041+ },
3042+ {
3043+ "status": "Installed",
3044+ "desired": "Install",
3045+ "version": "3.2.0-0ubuntu1",
3046+ "name": "gnome-nettool",
3047+ "description": "network information tool for GNOME"
3048+ },
3049+ {
3050+ "status": "Installed",
3051+ "desired": "Install",
3052+ "version": "3.4.0-0ubuntu1",
3053+ "name": "gnome-online-accounts",
3054+ "description": "GNOME Online Accounts"
3055+ },
3056+ {
3057+ "status": "Installed",
3058+ "desired": "Install",
3059+ "version": "3.4.2-0ubuntu0.1",
3060+ "name": "gnome-orca",
3061+ "description": "Scriptable screen reader"
3062+ },
3063+ {
3064+ "status": "Installed",
3065+ "desired": "Install",
3066+ "version": "1:3.4.1-0ubuntu1.1",
3067+ "name": "gnome-panel",
3068+ "description": "launcher and docking facility for GNOME"
3069+ },
3070+ {
3071+ "status": "Installed",
3072+ "desired": "Install",
3073+ "version": "1:3.4.1-0ubuntu1.1",
3074+ "name": "gnome-panel-data",
3075+ "description": "common files for the GNOME Panel"
3076+ },
3077+ {
3078+ "status": "Installed",
3079+ "desired": "Install",
3080+ "version": "3.4.0-0ubuntu1.1",
3081+ "name": "gnome-power-manager",
3082+ "description": "power management tool for the GNOME desktop"
3083+ },
3084+ {
3085+ "status": "Installed",
3086+ "desired": "Install",
3087+ "version": "3.4.1-0ubuntu1",
3088+ "name": "gnome-screensaver",
3089+ "description": "GNOME screen saver and locker"
3090+ },
3091+ {
3092+ "status": "Installed",
3093+ "desired": "Install",
3094+ "version": "3.4.1-0ubuntu1",
3095+ "name": "gnome-screenshot",
3096+ "description": "screenshot application for GNOME"
3097+ },
3098+ {
3099+ "status": "Installed",
3100+ "desired": "Install",
3101+ "version": "3.2.1-0ubuntu8",
3102+ "name": "gnome-session",
3103+ "description": "GNOME Session Manager - GNOME 3 session"
3104+ },
3105+ {
3106+ "status": "Installed",
3107+ "desired": "Install",
3108+ "version": "3.2.1-0ubuntu8",
3109+ "name": "gnome-session-bin",
3110+ "description": "GNOME Session Manager - Minimal runtime"
3111+ },
3112+ {
3113+ "status": "Installed",
3114+ "desired": "Install",
3115+ "version": "0.28-3ubuntu3",
3116+ "name": "gnome-session-canberra",
3117+ "description": "GNOME session log in and log out sound events"
3118+ },
3119+ {
3120+ "status": "Installed",
3121+ "desired": "Install",
3122+ "version": "3.2.1-0ubuntu8",
3123+ "name": "gnome-session-common",
3124+ "description": "GNOME Session Manager - common files"
3125+ },
3126+ {
3127+ "status": "Installed",
3128+ "desired": "Install",
3129+ "version": "3.2.1-0ubuntu8",
3130+ "name": "gnome-session-fallback",
3131+ "description": "GNOME Session Manager - GNOME fallback session"
3132+ },
3133+ {
3134+ "status": "Installed",
3135+ "desired": "Install",
3136+ "version": "3.4.2-0ubuntu0.6",
3137+ "name": "gnome-settings-daemon",
3138+ "description": "daemon handling the GNOME session settings"
3139+ },
3140+ {
3141+ "status": "Installed",
3142+ "desired": "Install",
3143+ "version": "3.4.1-0ubuntu2",
3144+ "name": "gnome-shell",
3145+ "description": "graphical shell for the GNOME desktop"
3146+ },
3147+ {
3148+ "status": "Installed",
3149+ "desired": "Install",
3150+ "version": "3.4.1-0ubuntu2",
3151+ "name": "gnome-shell-common",
3152+ "description": "common files for the GNOME graphical shell"
3153+ },
3154+ {
3155+ "status": "Installed",
3156+ "desired": "Install",
3157+ "version": "1:3.4.1-0ubuntu2.2",
3158+ "name": "gnome-sudoku",
3159+ "description": "Sudoku puzzle game for GNOME"
3160+ },
3161+ {
3162+ "status": "Installed",
3163+ "desired": "Install",
3164+ "version": "3.4.1-0ubuntu1",
3165+ "name": "gnome-system-log",
3166+ "description": "system log viewer for GNOME"
3167+ },
3168+ {
3169+ "status": "Installed",
3170+ "desired": "Install",
3171+ "version": "3.4.1-0ubuntu1",
3172+ "name": "gnome-system-monitor",
3173+ "description": "Process viewer and system resource monitor for GNOME"
3174+ },
3175+ {
3176+ "status": "Installed",
3177+ "desired": "Install",
3178+ "version": "3.0.0-2ubuntu1",
3179+ "name": "gnome-system-tools",
3180+ "description": "Cross-platform configuration utilities for GNOME"
3181+ },
3182+ {
3183+ "status": "Installed",
3184+ "desired": "Install",
3185+ "version": "3.4.1.1-0ubuntu1",
3186+ "name": "gnome-terminal",
3187+ "description": "GNOME terminal emulator application"
3188+ },
3189+ {
3190+ "status": "Installed",
3191+ "desired": "Install",
3192+ "version": "3.4.1.1-0ubuntu1",
3193+ "name": "gnome-terminal-data",
3194+ "description": "Data files for the GNOME terminal emulator"
3195+ },
3196+ {
3197+ "status": "Installed",
3198+ "desired": "Install",
3199+ "version": "3.4.1-0ubuntu1.2",
3200+ "name": "gnome-themes-standard",
3201+ "description": "Standard gnome themes"
3202+ },
3203+ {
3204+ "status": "Installed",
3205+ "desired": "Install",
3206+ "version": "3.3.4-0ubuntu1",
3207+ "name": "gnome-tweak-tool",
3208+ "description": "tool to adjust advanced configuration settings for GNOME"
3209+ },
3210+ {
3211+ "status": "Installed",
3212+ "desired": "Install",
3213+ "version": "3.4.1-1",
3214+ "name": "gnome-user-guide",
3215+ "description": "GNOME user's guide"
3216+ },
3217+ {
3218+ "status": "Installed",
3219+ "desired": "Install",
3220+ "version": "3.0.2-0ubuntu1",
3221+ "name": "gnome-user-share",
3222+ "description": "User level public file sharing via WebDAV or ObexFTP"
3223+ },
3224+ {
3225+ "status": "Installed",
3226+ "desired": "Install",
3227+ "version": "0.4.0-1",
3228+ "name": "gnome-video-effects",
3229+ "description": "GNOME Video Effects"
3230+ },
3231+ {
3232+ "status": "Installed",
3233+ "desired": "Install",
3234+ "version": "1:3.4.1-0ubuntu2.2",
3235+ "name": "gnomine",
3236+ "description": "popular minesweeper puzzle game for GNOME"
3237+ },
3238+ {
3239+ "status": "Installed",
3240+ "desired": "Install",
3241+ "version": "1.4.11-3ubuntu2.2",
3242+ "name": "gnupg",
3243+ "description": "GNU privacy guard - a free PGP replacement"
3244+ },
3245+ {
3246+ "status": "Installed",
3247+ "desired": "Install",
3248+ "version": "2.0.17-2ubuntu2.12.04.2",
3249+ "name": "gnupg-agent",
3250+ "description": "GNU privacy guard - password agent"
3251+ },
3252+ {
3253+ "status": "Installed",
3254+ "desired": "Install",
3255+ "version": "3.10.2.0-1",
3256+ "name": "google-talkplugin",
3257+ "description": "Google Talk Plugin"
3258+ },
3259+ {
3260+ "status": "Installed",
3261+ "desired": "Install",
3262+ "version": "1.4.11-3ubuntu2.2",
3263+ "name": "gpgv",
3264+ "description": "GNU privacy guard - signature verification tool"
3265+ },
3266+ {
3267+ "status": "Installed",
3268+ "desired": "Install",
3269+ "version": "3.4.0-1~precise0",
3270+ "name": "gpodder",
3271+ "description": "podcast client and feed aggregator"
3272+ },
3273+ {
3274+ "status": "Installed",
3275+ "desired": "Install",
3276+ "version": "2.26.3-10ubuntu1",
3277+ "name": "graphviz",
3278+ "description": "rich set of graph drawing tools"
3279+ },
3280+ {
3281+ "status": "Installed",
3282+ "desired": "Install",
3283+ "version": "2.10-1",
3284+ "name": "grep",
3285+ "description": "GNU grep, egrep and fgrep"
3286+ },
3287+ {
3288+ "status": "Installed",
3289+ "desired": "Install",
3290+ "version": "1.21-7",
3291+ "name": "groff-base",
3292+ "description": "GNU troff text-formatting system (base system components)"
3293+ },
3294+ {
3295+ "status": "Installed",
3296+ "desired": "Install",
3297+ "version": "7.1-10",
3298+ "name": "growisofs",
3299+ "description": "DVD+-RW/R recorder"
3300+ },
3301+ {
3302+ "status": "Installed",
3303+ "desired": "Install",
3304+ "version": "1.99-21ubuntu3.7",
3305+ "name": "grub-common",
3306+ "description": "GRand Unified Bootloader (common files)"
3307+ },
3308+ {
3309+ "status": "Installed",
3310+ "desired": "Install",
3311+ "version": "0.6",
3312+ "name": "grub-gfxpayload-lists",
3313+ "description": "GRUB gfxpayload blacklist"
3314+ },
3315+ {
3316+ "status": "Installed",
3317+ "desired": "Install",
3318+ "version": "1.99-21ubuntu3.7",
3319+ "name": "grub-pc",
3320+ "description": "GRand Unified Bootloader, version 2 (PC/BIOS version)"
3321+ },
3322+ {
3323+ "status": "Installed",
3324+ "desired": "Install",
3325+ "version": "1.99-21ubuntu3.7",
3326+ "name": "grub-pc-bin",
3327+ "description": "GRand Unified Bootloader, version 2 (PC/BIOS binaries)"
3328+ },
3329+ {
3330+ "status": "Installed",
3331+ "desired": "Install",
3332+ "version": "1.99-21ubuntu3.7",
3333+ "name": "grub2-common",
3334+ "description": "GRand Unified Bootloader (common files for version 2)"
3335+ },
3336+ {
3337+ "status": "Installed",
3338+ "desired": "Install",
3339+ "version": "1.20100103-3",
3340+ "name": "gs-cjk-resource",
3341+ "description": "Resource files for gs-cjk, ghostscript CJK-TrueType extension"
3342+ },
3343+ {
3344+ "status": "Installed",
3345+ "desired": "Install",
3346+ "version": "3.4.1-0ubuntu1",
3347+ "name": "gsettings-desktop-schemas",
3348+ "description": "GSettings deskop-wide schemas"
3349+ },
3350+ {
3351+ "status": "Installed",
3352+ "desired": "Install",
3353+ "version": "1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1",
3354+ "name": "gsfonts",
3355+ "description": "Fonts for the Ghostscript interpreter(s)"
3356+ },
3357+ {
3358+ "status": "Installed",
3359+ "desired": "Install",
3360+ "version": "0.22",
3361+ "name": "gsfonts-x11",
3362+ "description": "Make Ghostscript fonts available to X11"
3363+ },
3364+ {
3365+ "status": "Installed",
3366+ "desired": "Install",
3367+ "version": "0.10.36-1ubuntu1",
3368+ "name": "gstreamer-tools",
3369+ "description": "Tools for use with GStreamer"
3370+ },
3371+ {
3372+ "status": "Installed",
3373+ "desired": "Install",
3374+ "version": "0.10.36-1ubuntu0.1",
3375+ "name": "gstreamer0.10-alsa",
3376+ "description": "GStreamer plugin for ALSA"
3377+ },
3378+ {
3379+ "status": "Installed",
3380+ "desired": "Install",
3381+ "version": "0.10.13-1",
3382+ "name": "gstreamer0.10-ffmpeg",
3383+ "description": "FFmpeg plugin for GStreamer"
3384+ },
3385+ {
3386+ "status": "Installed",
3387+ "desired": "Install",
3388+ "version": "0.10.31-1ubuntu1",
3389+ "name": "gstreamer0.10-gconf",
3390+ "description": "GStreamer plugin for getting the sink/source information from GConf"
3391+ },
3392+ {
3393+ "status": "Installed",
3394+ "desired": "Install",
3395+ "version": "0.10.17-2",
3396+ "name": "gstreamer0.10-gnonlin",
3397+ "description": "non-linear editing module for GStreamer"
3398+ },
3399+ {
3400+ "status": "Installed",
3401+ "desired": "Install",
3402+ "version": "0.1.1-2ubuntu1",
3403+ "name": "gstreamer0.10-nice",
3404+ "description": "ICE library (GStreamer plugin)"
3405+ },
3406+ {
3407+ "status": "Installed",
3408+ "desired": "Install",
3409+ "version": "0.10.22.3-2ubuntu2.1",
3410+ "name": "gstreamer0.10-plugins-bad",
3411+ "description": "GStreamer plugins from the \"bad\" set"
3412+ },
3413+ {
3414+ "status": "Installed",
3415+ "desired": "Install",
3416+ "version": "0.10.36-1ubuntu0.1",
3417+ "name": "gstreamer0.10-plugins-base",
3418+ "description": "GStreamer plugins from the \"base\" set"
3419+ },
3420+ {
3421+ "status": "Installed",
3422+ "desired": "Install",
3423+ "version": "0.10.36-1ubuntu0.1",
3424+ "name": "gstreamer0.10-plugins-base:i386",
3425+ "description": "GStreamer plugins from the \"base\" set"
3426+ },
3427+ {
3428+ "status": "Installed",
3429+ "desired": "Install",
3430+ "version": "0.10.36-1ubuntu0.1",
3431+ "name": "gstreamer0.10-plugins-base-apps",
3432+ "description": "GStreamer helper programs from the \"base\" set"
3433+ },
3434+ {
3435+ "status": "Installed",
3436+ "desired": "Install",
3437+ "version": "0.10.31-1ubuntu1",
3438+ "name": "gstreamer0.10-plugins-good",
3439+ "description": "GStreamer plugins from the \"good\" set"
3440+ },
3441+ {
3442+ "status": "Installed",
3443+ "desired": "Install",
3444+ "version": "0.10.31-1ubuntu1",
3445+ "name": "gstreamer0.10-plugins-good:i386",
3446+ "description": "GStreamer plugins from the \"good\" set"
3447+ },
3448+ {
3449+ "status": "Installed",
3450+ "desired": "Install",
3451+ "version": "0.10.18.3-1ubuntu1",
3452+ "name": "gstreamer0.10-plugins-ugly",
3453+ "description": "GStreamer plugins from the \"ugly\" set"
3454+ },
3455+ {
3456+ "status": "Installed",
3457+ "desired": "Install",
3458+ "version": "0.10.31-1ubuntu1",
3459+ "name": "gstreamer0.10-pulseaudio",
3460+ "description": "GStreamer plugin for PulseAudio"
3461+ },
3462+ {
3463+ "status": "Installed",
3464+ "desired": "Install",
3465+ "version": "0.10.36-1ubuntu1",
3466+ "name": "gstreamer0.10-tools",
3467+ "description": "Tools for use with GStreamer"
3468+ },
3469+ {
3470+ "status": "Installed",
3471+ "desired": "Install",
3472+ "version": "0.10.36-1ubuntu0.1",
3473+ "name": "gstreamer0.10-x",
3474+ "description": "GStreamer plugins for X11 and Pango"
3475+ },
3476+ {
3477+ "status": "Installed",
3478+ "desired": "Install",
3479+ "version": "0.10.36-1ubuntu0.1",
3480+ "name": "gstreamer0.10-x:i386",
3481+ "description": "GStreamer plugins for X11 and Pango"
3482+ },
3483+ {
3484+ "status": "Installed",
3485+ "desired": "Install",
3486+ "version": "0.3.8-4.1ubuntu1",
3487+ "name": "gtk-recordmydesktop",
3488+ "description": "Graphical frontend for recordMyDesktop screencast tool"
3489+ },
3490+ {
3491+ "status": "Installed",
3492+ "desired": "Install",
3493+ "version": "1:2.20.2-1ubuntu1",
3494+ "name": "gtk2-engines",
3495+ "description": "theme engines for GTK+ 2.x"
3496+ },
3497+ {
3498+ "status": "Installed",
3499+ "desired": "Install",
3500+ "version": "1:2.20.2-1ubuntu1",
3501+ "name": "gtk2-engines:i386",
3502+ "description": "theme engines for GTK+ 2.x"
3503+ },
3504+ {
3505+ "status": "Installed",
3506+ "desired": "Install",
3507+ "version": "0.98.2-0ubuntu1",
3508+ "name": "gtk2-engines-murrine",
3509+ "description": "cairo-based gtk+-2.0 theme engine"
3510+ },
3511+ {
3512+ "status": "Installed",
3513+ "desired": "Install",
3514+ "version": "0.98.2-0ubuntu1",
3515+ "name": "gtk2-engines-murrine:i386",
3516+ "description": "cairo-based gtk+-2.0 theme engine"
3517+ },
3518+ {
3519+ "status": "Installed",
3520+ "desired": "Install",
3521+ "version": "1.2.2-0ubuntu1.1",
3522+ "name": "gtk2-engines-oxygen:i386",
3523+ "description": "Oxygen widget theme for GTK+-based applications"
3524+ },
3525+ {
3526+ "status": "Installed",
3527+ "desired": "Install",
3528+ "version": "2.24.10-0ubuntu6",
3529+ "name": "gtk2-engines-pixbuf:i386",
3530+ "description": "pixbuf-based theme for GTK+ 2.x"
3531+ },
3532+ {
3533+ "status": "Installed",
3534+ "desired": "Install",
3535+ "version": "1.0.2-0ubuntu1",
3536+ "name": "gtk3-engines-unico",
3537+ "description": "Unico Gtk+ 3 theme engine"
3538+ },
3539+ {
3540+ "status": "Installed",
3541+ "desired": "Install",
3542+ "version": "0.40+ds-2",
3543+ "name": "gtkperf",
3544+ "description": "GTK+ performance benchmark"
3545+ },
3546+ {
3547+ "status": "Installed",
3548+ "desired": "Install",
3549+ "version": "1:3.4.1.1-0ubuntu1",
3550+ "name": "gucharmap",
3551+ "description": "Unicode character picker and font browser"
3552+ },
3553+ {
3554+ "status": "Installed",
3555+ "desired": "Install",
3556+ "version": "1.8.8+1-6ubuntu2",
3557+ "name": "guile-1.8-libs",
3558+ "description": "Core Guile libraries"
3559+ },
3560+ {
3561+ "status": "Installed",
3562+ "desired": "Install",
3563+ "version": "1.12.1-0ubuntu1.1",
3564+ "name": "gvfs",
3565+ "description": "userspace virtual filesystem - GIO module"
3566+ },
3567+ {
3568+ "status": "Installed",
3569+ "desired": "Install",
3570+ "version": "1.12.1-0ubuntu1.1",
3571+ "name": "gvfs:i386",
3572+ "description": "userspace virtual filesystem - GIO module"
3573+ },
3574+ {
3575+ "status": "Installed",
3576+ "desired": "Install",
3577+ "version": "1.12.1-0ubuntu1.1",
3578+ "name": "gvfs-backends",
3579+ "description": "userspace virtual filesystem - backends"
3580+ },
3581+ {
3582+ "status": "Installed",
3583+ "desired": "Install",
3584+ "version": "1.12.1-0ubuntu1.1",
3585+ "name": "gvfs-bin",
3586+ "description": "userspace virtual filesystem - binaries"
3587+ },
3588+ {
3589+ "status": "Installed",
3590+ "desired": "Install",
3591+ "version": "1.12.1-0ubuntu1.1",
3592+ "name": "gvfs-common",
3593+ "description": "userspace virtual filesystem - common data files"
3594+ },
3595+ {
3596+ "status": "Installed",
3597+ "desired": "Install",
3598+ "version": "1.12.1-0ubuntu1.1",
3599+ "name": "gvfs-daemons",
3600+ "description": "userspace virtual filesystem - servers"
3601+ },
3602+ {
3603+ "status": "Installed",
3604+ "desired": "Install",
3605+ "version": "1.12.1-0ubuntu1.1",
3606+ "name": "gvfs-fuse",
3607+ "description": "userspace virtual filesystem - fuse server"
3608+ },
3609+ {
3610+ "status": "Installed",
3611+ "desired": "Install",
3612+ "version": "1.12.1-0ubuntu1.1",
3613+ "name": "gvfs-libs",
3614+ "description": "userspace virtual filesystem - private libraries"
3615+ },
3616+ {
3617+ "status": "Installed",
3618+ "desired": "Install",
3619+ "version": "1.12.1-0ubuntu1.1",
3620+ "name": "gvfs-libs:i386",
3621+ "description": "userspace virtual filesystem - private libraries"
3622+ },
3623+ {
3624+ "status": "Installed",
3625+ "desired": "Install",
3626+ "version": "3.4.2-0ubuntu2.1",
3627+ "name": "gwibber",
3628+ "description": "Open source social networking client for GNOME"
3629+ },
3630+ {
3631+ "status": "Installed",
3632+ "desired": "Install",
3633+ "version": "3.4.2-0ubuntu2.1",
3634+ "name": "gwibber-service",
3635+ "description": "Open source social networking client for GNOME"
3636+ },
3637+ {
3638+ "status": "Installed",
3639+ "desired": "Install",
3640+ "version": "3.4.2-0ubuntu2.1",
3641+ "name": "gwibber-service-facebook",
3642+ "description": "Facebook plugin for Gwibber"
3643+ },
3644+ {
3645+ "status": "Installed",
3646+ "desired": "Install",
3647+ "version": "3.4.2-0ubuntu2.1",
3648+ "name": "gwibber-service-identica",
3649+ "description": "Identi.ca plugin for Gwibber"
3650+ },
3651+ {
3652+ "status": "Installed",
3653+ "desired": "Install",
3654+ "version": "3.4.2-0ubuntu2.1",
3655+ "name": "gwibber-service-twitter",
3656+ "description": "Twitter plugin for Gwibber"
3657+ },
3658+ {
3659+ "status": "Installed",
3660+ "desired": "Install",
3661+ "version": "1.4-1ubuntu2",
3662+ "name": "gzip",
3663+ "description": "GNU compression utilities"
3664+ },
3665+ {
3666+ "status": "Installed",
3667+ "desired": "Install",
3668+ "version": "5194svnppa1~precise1",
3669+ "name": "handbrake-gtk",
3670+ "description": "versatile DVD ripper and video transcoder - GTK GUI"
3671+ },
3672+ {
3673+ "status": "Installed",
3674+ "desired": "Install",
3675+ "version": "0.3-beta15-51",
3676+ "name": "hddtemp",
3677+ "description": "hard drive temperature monitoring utility"
3678+ },
3679+ {
3680+ "status": "Installed",
3681+ "desired": "Install",
3682+ "version": "9.37-0ubuntu3.1",
3683+ "name": "hdparm",
3684+ "description": "tune hard disk parameters for high performance"
3685+ },
3686+ {
3687+ "status": "Installed",
3688+ "desired": "Install",
3689+ "version": "12.5-1build1",
3690+ "name": "heirloom-mailx",
3691+ "description": "feature-rich BSD mail(1)"
3692+ },
3693+ {
3694+ "status": "Installed",
3695+ "desired": "Install",
3696+ "version": "1.40.4ubuntu1",
3697+ "name": "help2man",
3698+ "description": "Automatic manpage generator"
3699+ },
3700+ {
3701+ "status": "Installed",
3702+ "desired": "Install",
3703+ "version": "1.2.12-4",
3704+ "name": "hexedit",
3705+ "description": "view and edit files in hexadecimal or in ASCII"
3706+ },
3707+ {
3708+ "status": "Installed",
3709+ "desired": "Install",
3710+ "version": "0.12-1ubuntu2",
3711+ "name": "hicolor-icon-theme",
3712+ "description": "default fallback theme for FreeDesktop.org icon themes"
3713+ },
3714+ {
3715+ "status": "Installed",
3716+ "desired": "Install",
3717+ "version": "3.06ubuntu1",
3718+ "name": "hostname",
3719+ "description": "utility to set/show the host name or domain name"
3720+ },
3721+ {
3722+ "status": "Installed",
3723+ "desired": "Install",
3724+ "version": "3.12.2-1ubuntu3.1",
3725+ "name": "hplip",
3726+ "description": "HP Linux Printing and Imaging System (HPLIP)"
3727+ },
3728+ {
3729+ "status": "Installed",
3730+ "desired": "Install",
3731+ "version": "3.12.2-1ubuntu3.1",
3732+ "name": "hplip-data",
3733+ "description": "HP Linux Printing and Imaging - data files"
3734+ },
3735+ {
3736+ "status": "Installed",
3737+ "desired": "Install",
3738+ "version": "1.3.2a-15",
3739+ "name": "html2text",
3740+ "description": "advanced HTML to text converter"
3741+ },
3742+ {
3743+ "status": "Installed",
3744+ "desired": "Install",
3745+ "version": "1.0.1-1",
3746+ "name": "htop",
3747+ "description": "interactive processes viewer"
3748+ },
3749+ {
3750+ "status": "Installed",
3751+ "desired": "Install",
3752+ "version": "0.5.3.11",
3753+ "name": "humanity-icon-theme",
3754+ "description": "Humanity Icon theme"
3755+ },
3756+ {
3757+ "status": "Installed",
3758+ "desired": "Install",
3759+ "version": "20070829-4ubuntu3",
3760+ "name": "hunspell-en-us",
3761+ "description": "English_american dictionary for hunspell"
3762+ },
3763+ {
3764+ "status": "Installed",
3765+ "desired": "Install",
3766+ "version": "0.233-1ubuntu1",
3767+ "name": "hwdata",
3768+ "description": "hardware identification / configuration data"
3769+ },
3770+ {
3771+ "status": "Installed",
3772+ "desired": "Install",
3773+ "version": "2.8.3-1",
3774+ "name": "hyphen-en-us",
3775+ "description": "US English hyphenation patterns for LibreOffice/OpenOffice.org"
3776+ },
3777+ {
3778+ "status": "Installed",
3779+ "desired": "Install",
3780+ "version": "20090808ubuntu36",
3781+ "name": "ia32-libs",
3782+ "description": "ia32 shared libraries - transitional package"
3783+ },
3784+ {
3785+ "status": "Installed",
3786+ "desired": "Install",
3787+ "version": "20090808ubuntu36",
3788+ "name": "ia32-libs-multiarch:i386",
3789+ "description": "Multi-arch versions of former ia32-libraries"
3790+ },
3791+ {
3792+ "status": "Installed",
3793+ "desired": "Install",
3794+ "version": "1.4.1-3ubuntu1",
3795+ "name": "ibus",
3796+ "description": "Intelligent Input Bus - core"
3797+ },
3798+ {
3799+ "status": "Installed",
3800+ "desired": "Install",
3801+ "version": "1.4.1-3ubuntu1",
3802+ "name": "ibus-gtk",
3803+ "description": "Intelligent Input Bus - GTK+2 support"
3804+ },
3805+ {
3806+ "status": "Installed",
3807+ "desired": "Install",
3808+ "version": "1.4.1-3ubuntu1",
3809+ "name": "ibus-gtk:i386",
3810+ "description": "Intelligent Input Bus - GTK+2 support"
3811+ },
3812+ {
3813+ "status": "Installed",
3814+ "desired": "Install",
3815+ "version": "1.4.1-3ubuntu1",
3816+ "name": "ibus-gtk3",
3817+ "description": "Intelligent Input Bus - GTK+3 support"
3818+ },
3819+ {
3820+ "status": "Installed",
3821+ "desired": "Install",
3822+ "version": "1.4.0-1",
3823+ "name": "ibus-pinyin",
3824+ "description": "Pinyin engine for IBus"
3825+ },
3826+ {
3827+ "status": "Installed",
3828+ "desired": "Install",
3829+ "version": "1.4.0-1",
3830+ "name": "ibus-pinyin-db-android",
3831+ "description": "Pinyin engine for IBus - Android database"
3832+ },
3833+ {
3834+ "status": "Installed",
3835+ "desired": "Install",
3836+ "version": "1.3.9.20110827-1ubuntu1",
3837+ "name": "ibus-table",
3838+ "description": "table engine for IBus"
3839+ },
3840+ {
3841+ "status": "Installed",
3842+ "desired": "Install",
3843+ "version": "1.3-4",
3844+ "name": "icecream",
3845+ "description": "lightweight stream download utility"
3846+ },
3847+ {
3848+ "status": "Installed",
3849+ "desired": "Install",
3850+ "version": "7u9-2.3.4-0ubuntu1.12.04.1",
3851+ "name": "icedtea-7-jre-jamvm",
3852+ "description": "Alternative JVM for OpenJDK, using JamVM"
3853+ },
3854+ {
3855+ "status": "Installed",
3856+ "desired": "Install",
3857+ "version": "1.2-2ubuntu1.3",
3858+ "name": "icedtea-7-plugin",
3859+ "description": "web browser plugin based on OpenJDK and IcedTea to execute Java applets"
3860+ },
3861+ {
3862+ "status": "Installed",
3863+ "desired": "Install",
3864+ "version": "1.2-2ubuntu1.3",
3865+ "name": "icedtea-netx",
3866+ "description": "NetX - implementation of the Java Network Launching Protocol (JNLP)"
3867+ },
3868+ {
3869+ "status": "Installed",
3870+ "desired": "Install",
3871+ "version": "1.2-2ubuntu1.3",
3872+ "name": "icedtea-netx-common",
3873+ "description": "NetX - implementation of the Java Network Launching Protocol (JNLP)"
3874+ },
3875+ {
3876+ "status": "Installed",
3877+ "desired": "Install",
3878+ "version": "0.7~beta2ubuntu8",
3879+ "name": "ifupdown",
3880+ "description": "high level tools to configure network interfaces"
3881+ },
3882+ {
3883+ "status": "Installed",
3884+ "desired": "Install",
3885+ "version": "1.20ubuntu5.1",
3886+ "name": "im-switch",
3887+ "description": "Input method switch framework"
3888+ },
3889+ {
3890+ "status": "Installed",
3891+ "desired": "Install",
3892+ "version": "8:6.6.9.7-5ubuntu3.2",
3893+ "name": "imagemagick",
3894+ "description": "image manipulation programs"
3895+ },
3896+ {
3897+ "status": "Installed",
3898+ "desired": "Install",
3899+ "version": "8:6.6.9.7-5ubuntu3.2",
3900+ "name": "imagemagick-common",
3901+ "description": "image manipulation programs -- infrastructure"
3902+ },
3903+ {
3904+ "status": "Installed",
3905+ "desired": "Install",
3906+ "version": "2.2.11-1",
3907+ "name": "indent",
3908+ "description": "C language source code formatting program"
3909+ },
3910+ {
3911+ "status": "Installed",
3912+ "desired": "Install",
3913+ "version": "0.5.0-0ubuntu1",
3914+ "name": "indicator-applet-complete",
3915+ "description": "Clone of the GNOME panel indicator applet"
3916+ },
3917+ {
3918+ "status": "Installed",
3919+ "desired": "Install",
3920+ "version": "0.5.0-0ubuntu1",
3921+ "name": "indicator-application",
3922+ "description": "Application Indicators"
3923+ },
3924+ {
3925+ "status": "Installed",
3926+ "desired": "Install",
3927+ "version": "0.3.97-0ubuntu1",
3928+ "name": "indicator-appmenu",
3929+ "description": "Indicator for application menus."
3930+ },
3931+ {
3932+ "status": "Installed",
3933+ "desired": "Install",
3934+ "version": "0.3.94-0ubuntu2",
3935+ "name": "indicator-datetime",
3936+ "description": "Simple clock"
3937+ },
3938+ {
3939+ "status": "Installed",
3940+ "desired": "Install",
3941+ "version": "0.6.0-0ubuntu2",
3942+ "name": "indicator-messages",
3943+ "description": "indicator that collects messages that need a response"
3944+ },
3945+ {
3946+ "status": "Installed",
3947+ "desired": "Install",
3948+ "version": "2.0-0ubuntu1",
3949+ "name": "indicator-power",
3950+ "description": "Indicator showing power state."
3951+ },
3952+ {
3953+ "status": "Installed",
3954+ "desired": "Install",
3955+ "version": "0.1.6-0ubuntu1",
3956+ "name": "indicator-printers",
3957+ "description": "indicator showing active print jobs"
3958+ },
3959+ {
3960+ "status": "Installed",
3961+ "desired": "Install",
3962+ "version": "0.3.96-0ubuntu1",
3963+ "name": "indicator-session",
3964+ "description": "indicator showing session management, status and user switching"
3965+ },
3966+ {
3967+ "status": "Installed",
3968+ "desired": "Install",
3969+ "version": "0.8.5.0-0ubuntu2.1",
3970+ "name": "indicator-sound",
3971+ "description": "System sound indicator."
3972+ },
3973+ {
3974+ "status": "Installed",
3975+ "desired": "Install",
3976+ "version": "0.6.0-0ubuntu2",
3977+ "name": "indicator-status-provider-mc5",
3978+ "description": "indicator-messages status provider for telepathy mission-control-5"
3979+ },
3980+ {
3981+ "status": "Installed",
3982+ "desired": "Install",
3983+ "version": "0.6.0-0ubuntu2",
3984+ "name": "indicator-status-provider-pidgin",
3985+ "description": "indicator-messages status provider for pidgin"
3986+ },
3987+ {
3988+ "status": "Installed",
3989+ "desired": "Install",
3990+ "version": "11.11.28-0ubuntu1.2",
3991+ "name": "indicator-weather",
3992+ "description": "indicator that displays weather information"
3993+ },
3994+ {
3995+ "status": "Installed",
3996+ "desired": "Install",
3997+ "version": "4.13a.dfsg.1-8ubuntu2",
3998+ "name": "info",
3999+ "description": "Standalone GNU Info documentation browser"
4000+ },
4001+ {
4002+ "status": "Installed",
4003+ "desired": "Install",
4004+ "version": "0.99ubuntu13",
4005+ "name": "initramfs-tools",
4006+ "description": "tools for generating an initramfs"
4007+ },
4008+ {
4009+ "status": "Installed",
4010+ "desired": "Install",
4011+ "version": "0.99ubuntu13",
4012+ "name": "initramfs-tools-bin",
4013+ "description": "binaries used by initramfs-tools"
4014+ },
4015+ {
4016+ "status": "Installed",
4017+ "desired": "Install",
4018+ "version": "2.88dsf-13.10ubuntu11.1",
4019+ "name": "initscripts",
4020+ "description": "scripts for initializing and shutting down the system"
4021+ },
4022+ {
4023+ "status": "Installed",
4024+ "desired": "Install",
4025+ "version": "0.48.3.1-1ubuntu1",
4026+ "name": "inkscape",
4027+ "description": "vector-based drawing program"
4028+ },
4029+ {
4030+ "status": "Installed",
4031+ "desired": "Install",
4032+ "version": "0.0.20110106-0ubuntu1",
4033+ "name": "input-utils",
4034+ "description": "utilities for the input layer of the Linux kernel"
4035+ },
4036+ {
4037+ "status": "Installed",
4038+ "desired": "Install",
4039+ "version": "1:1.4.2-1",
4040+ "name": "inputattach",
4041+ "description": "utility to connect serial-attached peripherals to the input subsystem"
4042+ },
4043+ {
4044+ "status": "Installed",
4045+ "desired": "Install",
4046+ "version": "1.14.0-2.1ubuntu2",
4047+ "name": "insserv",
4048+ "description": "Tool to organize boot sequence using LSB init.d script dependencies"
4049+ },
4050+ {
4051+ "status": "Installed",
4052+ "desired": "Install",
4053+ "version": "4.13a.dfsg.1-8ubuntu2",
4054+ "name": "install-info",
4055+ "description": "Manage installed documentation in info format"
4056+ },
4057+ {
4058+ "status": "Installed",
4059+ "desired": "Install",
4060+ "version": "1.2-1",
4061+ "name": "intel-gpu-tools",
4062+ "description": "tools for debugging the Intel graphics driver"
4063+ },
4064+ {
4065+ "status": "Installed",
4066+ "desired": "Install",
4067+ "version": "0.50.2-2",
4068+ "name": "intltool",
4069+ "description": "Utility scripts for internationalizing XML"
4070+ },
4071+ {
4072+ "status": "Installed",
4073+ "desired": "Install",
4074+ "version": "0.35.0+20060710.1",
4075+ "name": "intltool-debian",
4076+ "description": "Help i18n of RFC822 compliant config files"
4077+ },
4078+ {
4079+ "status": "Installed",
4080+ "desired": "Install",
4081+ "version": "397-2",
4082+ "name": "iozone3",
4083+ "description": "Filesystem and Disk Benchmarking Tool"
4084+ },
4085+ {
4086+ "status": "Installed",
4087+ "desired": "Install",
4088+ "version": "2.0.5-2.1",
4089+ "name": "iperf",
4090+ "description": "Internet Protocol bandwidth measuring tool"
4091+ },
4092+ {
4093+ "status": "Installed",
4094+ "desired": "Install",
4095+ "version": "20111117-1ubuntu2",
4096+ "name": "iproute",
4097+ "description": "networking and traffic control tools"
4098+ },
4099+ {
4100+ "status": "Installed",
4101+ "desired": "Install",
4102+ "version": "1.4.12-1ubuntu4",
4103+ "name": "iptables",
4104+ "description": "administration tools for packet filtering and NAT"
4105+ },
4106+ {
4107+ "status": "Installed",
4108+ "desired": "Install",
4109+ "version": "3:20101006-1ubuntu1",
4110+ "name": "iputils-arping",
4111+ "description": "Tool to send ICMP echo requests to an ARP address"
4112+ },
4113+ {
4114+ "status": "Installed",
4115+ "desired": "Install",
4116+ "version": "3:20101006-1ubuntu1",
4117+ "name": "iputils-ping",
4118+ "description": "Tools to test the reachability of network hosts"
4119+ },
4120+ {
4121+ "status": "Installed",
4122+ "desired": "Install",
4123+ "version": "3:20101006-1ubuntu1",
4124+ "name": "iputils-tracepath",
4125+ "description": "Tools to trace the network path to a remote host"
4126+ },
4127+ {
4128+ "status": "Installed",
4129+ "desired": "Install",
4130+ "version": "0.12.1+dfsg-0ubuntu1",
4131+ "name": "ipython",
4132+ "description": "enhanced interactive Python shell"
4133+ },
4134+ {
4135+ "status": "Installed",
4136+ "desired": "Install",
4137+ "version": "0.56-1ubuntu4",
4138+ "name": "irqbalance",
4139+ "description": "Daemon to balance interrupts for SMP systems"
4140+ },
4141+ {
4142+ "status": "Installed",
4143+ "desired": "Install",
4144+ "version": "4.1.ESV-R4-0ubuntu5.5",
4145+ "name": "isc-dhcp-client",
4146+ "description": "ISC DHCP client"
4147+ },
4148+ {
4149+ "status": "Installed",
4150+ "desired": "Install",
4151+ "version": "4.1.ESV-R4-0ubuntu5.5",
4152+ "name": "isc-dhcp-common",
4153+ "description": "common files used by all the isc-dhcp* packages"
4154+ },
4155+ {
4156+ "status": "Installed",
4157+ "desired": "Install",
4158+ "version": "3.31-1",
4159+ "name": "iso-codes",
4160+ "description": "ISO language, territory, currency, script codes and their translations"
4161+ },
4162+ {
4163+ "status": "Installed",
4164+ "desired": "Install",
4165+ "version": "3.2-1",
4166+ "name": "iw",
4167+ "description": "tool for configuring Linux wireless devices"
4168+ },
4169+ {
4170+ "status": "Installed",
4171+ "desired": "Install",
4172+ "version": "0.43ubuntu2",
4173+ "name": "java-common",
4174+ "description": "Base of all Java packages"
4175+ },
4176+ {
4177+ "status": "Installed",
4178+ "desired": "Install",
4179+ "version": "0.9.7-0ubuntu7.4",
4180+ "name": "jockey-common",
4181+ "description": "user interface and desktop integration for driver management"
4182+ },
4183+ {
4184+ "status": "Installed",
4185+ "desired": "Install",
4186+ "version": "0.9.7-0ubuntu7.4",
4187+ "name": "jockey-gtk",
4188+ "description": "GNOME user interface and desktop integration for driver management"
4189+ },
4190+ {
4191+ "status": "Installed",
4192+ "desired": "Install",
4193+ "version": "1.1.1-4ubuntu1",
4194+ "name": "jpegpixi",
4195+ "description": "Remove hot spots from JPEG images with minimal quality loss"
4196+ },
4197+ {
4198+ "status": "Installed",
4199+ "desired": "Install",
4200+ "version": "0.6.0.1+bzr608-0juju2~precise1",
4201+ "name": "juju",
4202+ "description": "next generation service orchestration system"
4203+ },
4204+ {
4205+ "status": "Installed",
4206+ "desired": "Install",
4207+ "version": "1.15.2-3ubuntu4",
4208+ "name": "kbd",
4209+ "description": "Linux console font and keytable utilities"
4210+ },
4211+ {
4212+ "status": "Installed",
4213+ "desired": "Install",
4214+ "version": "0.12+git20090217-1ubuntu19",
4215+ "name": "kerneloops-daemon",
4216+ "description": "kernel oops tracker"
4217+ },
4218+ {
4219+ "status": "Installed",
4220+ "desired": "Install",
4221+ "version": "1.70ubuntu5",
4222+ "name": "keyboard-configuration",
4223+ "description": "system-wide keyboard preferences"
4224+ },
4225+ {
4226+ "status": "Installed",
4227+ "desired": "Install",
4228+ "version": "1.5.25-1ubuntu2",
4229+ "name": "klibc-utils",
4230+ "description": "small utilities built with klibc for early boot"
4231+ },
4232+ {
4233+ "status": "Installed",
4234+ "desired": "Install",
4235+ "version": "1.10+dfsg~beta1-2ubuntu0.3",
4236+ "name": "krb5-locales",
4237+ "description": "Internationalization support for MIT Kerberos"
4238+ },
4239+ {
4240+ "status": "Installed",
4241+ "desired": "Install",
4242+ "version": "1.0.0+git-3.55f6c88-0ubuntu1",
4243+ "name": "kvm-ipxe",
4244+ "description": "PXE ROM's for KVM"
4245+ },
4246+ {
4247+ "status": "Installed",
4248+ "desired": "Install",
4249+ "version": "12.05-0ubuntu1.12.04",
4250+ "name": "landscape-client-ui-install",
4251+ "description": "The Landscape administration system client - UI installer"
4252+ },
4253+ {
4254+ "status": "Installed",
4255+ "desired": "Install",
4256+ "version": "1:12.04+20120801",
4257+ "name": "language-pack-en",
4258+ "description": "translation updates for language English"
4259+ },
4260+ {
4261+ "status": "Installed",
4262+ "desired": "Install",
4263+ "version": "1:12.04+20120801",
4264+ "name": "language-pack-en-base",
4265+ "description": "translations for language English"
4266+ },
4267+ {
4268+ "status": "Installed",
4269+ "desired": "Install",
4270+ "version": "1:12.04+20120801",
4271+ "name": "language-pack-gnome-en",
4272+ "description": "GNOME translation updates for language English"
4273+ },
4274+ {
4275+ "status": "Installed",
4276+ "desired": "Install",
4277+ "version": "1:12.04+20120801",
4278+ "name": "language-pack-gnome-en-base",
4279+ "description": "GNOME translations for language English"
4280+ },
4281+ {
4282+ "status": "Installed",
4283+ "desired": "Install",
4284+ "version": "0.79",
4285+ "name": "language-selector-common",
4286+ "description": "Language selector for Ubuntu"
4287+ },
4288+ {
4289+ "status": "Installed",
4290+ "desired": "Install",
4291+ "version": "0.79",
4292+ "name": "language-selector-gnome",
4293+ "description": "Language selector for Ubuntu"
4294+ },
4295+ {
4296+ "status": "Installed",
4297+ "desired": "Install",
4298+ "version": "0.13.7ubuntu2",
4299+ "name": "laptop-detect",
4300+ "description": "attempt to detect a laptop"
4301+ },
4302+ {
4303+ "status": "Installed",
4304+ "desired": "Install",
4305+ "version": "0.1.56.1",
4306+ "name": "launchpad-integration",
4307+ "description": "launchpad integration"
4308+ },
4309+ {
4310+ "status": "Installed",
4311+ "desired": "Install",
4312+ "version": "2.3.1-0ubuntu1",
4313+ "name": "ldtp",
4314+ "description": "GNU/Linux Desktop Testing Project (GNU/LDTP)"
4315+ },
4316+ {
4317+ "status": "Installed",
4318+ "desired": "Install",
4319+ "version": "444-1ubuntu1",
4320+ "name": "less",
4321+ "description": "pager program similar to more"
4322+ },
4323+ {
4324+ "status": "Installed",
4325+ "desired": "Install",
4326+ "version": "1:0.95.2-1",
4327+ "name": "lesstif2",
4328+ "description": "OSF/Motif 2.1 implementation released under LGPL"
4329+ },
4330+ {
4331+ "status": "Installed",
4332+ "desired": "Install",
4333+ "version": "0.7.4-16build1",
4334+ "name": "liba52-0.7.4",
4335+ "description": "library for decoding ATSC A/52 streams"
4336+ },
4337+ {
4338+ "status": "Installed",
4339+ "desired": "Install",
4340+ "version": "1.4p5-39ubuntu1",
4341+ "name": "libaa1",
4342+ "description": "ASCII art library"
4343+ },
4344+ {
4345+ "status": "Installed",
4346+ "desired": "Install",
4347+ "version": "1.4p5-39ubuntu1",
4348+ "name": "libaa1:i386",
4349+ "description": "ASCII art library"
4350+ },
4351+ {
4352+ "status": "Installed",
4353+ "desired": "Install",
4354+ "version": "0.3.0-4",
4355+ "name": "libaacs0",
4356+ "description": "free-and-libre implementation of AACS"
4357+ },
4358+ {
4359+ "status": "Installed",
4360+ "desired": "Install",
4361+ "version": "0.6.15-2ubuntu9.4",
4362+ "name": "libaccountsservice0",
4363+ "description": "query and manipulate user account information - shared libraries"
4364+ },
4365+ {
4366+ "status": "Installed",
4367+ "desired": "Install",
4368+ "version": "2.2.51-5ubuntu1",
4369+ "name": "libacl1",
4370+ "description": "Access control list shared library"
4371+ },
4372+ {
4373+ "status": "Installed",
4374+ "desired": "Install",
4375+ "version": "2.2.51-5ubuntu1",
4376+ "name": "libacl1:i386",
4377+ "description": "Access control list shared library"
4378+ },
4379+ {
4380+ "status": "Installed",
4381+ "desired": "Install",
4382+ "version": "0.3.109-2ubuntu1",
4383+ "name": "libaio1",
4384+ "description": "Linux kernel AIO access library - shared library"
4385+ },
4386+ {
4387+ "status": "Installed",
4388+ "desired": "Install",
4389+ "version": "0.3.109-2ubuntu1",
4390+ "name": "libaio1:i386",
4391+ "description": "Linux kernel AIO access library - shared library"
4392+ },
4393+ {
4394+ "status": "Installed",
4395+ "desired": "Install",
4396+ "version": "1.19.02-2",
4397+ "name": "libalgorithm-diff-perl",
4398+ "description": "module to find differences between files"
4399+ },
4400+ {
4401+ "status": "Installed",
4402+ "desired": "Install",
4403+ "version": "0.04-2build2",
4404+ "name": "libalgorithm-diff-xs-perl",
4405+ "description": "module to find differences between files (XS accelerated)"
4406+ },
4407+ {
4408+ "status": "Installed",
4409+ "desired": "Install",
4410+ "version": "0.08-2",
4411+ "name": "libalgorithm-merge-perl",
4412+ "description": "Perl module for three-way merge of textual data"
4413+ },
4414+ {
4415+ "status": "Installed",
4416+ "desired": "Install",
4417+ "version": "1:3.4.0-2ubuntu3",
4418+ "name": "libamd2.2.0",
4419+ "description": "approximate minimum degree ordering library for sparse matrices"
4420+ },
4421+ {
4422+ "status": "Installed",
4423+ "desired": "Install",
4424+ "version": "1.1.0-1ubuntu2",
4425+ "name": "libao-common",
4426+ "description": "Cross Platform Audio Output Library (Common files)"
4427+ },
4428+ {
4429+ "status": "Installed",
4430+ "desired": "Install",
4431+ "version": "1.1.0-1ubuntu2",
4432+ "name": "libao4:i386",
4433+ "description": "Cross Platform Audio Output Library"
4434+ },
4435+ {
4436+ "status": "Installed",
4437+ "desired": "Install",
4438+ "version": "2.7.102-0ubuntu3.7",
4439+ "name": "libapparmor1",
4440+ "description": "changehat AppArmor library"
4441+ },
4442+ {
4443+ "status": "Installed",
4444+ "desired": "Install",
4445+ "version": "0.4.92-0ubuntu1",
4446+ "name": "libappindicator1",
4447+ "description": "Application Indicators"
4448+ },
4449+ {
4450+ "status": "Installed",
4451+ "desired": "Install",
4452+ "version": "0.4.92-0ubuntu1",
4453+ "name": "libappindicator3-1",
4454+ "description": "Application Indicators"
4455+ },
4456+ {
4457+ "status": "Installed",
4458+ "desired": "Install",
4459+ "version": "0.8.16~exp12ubuntu10.7",
4460+ "name": "libapt-inst1.4",
4461+ "description": "deb package format runtime library"
4462+ },
4463+ {
4464+ "status": "Installed",
4465+ "desired": "Install",
4466+ "version": "0.1.25build2",
4467+ "name": "libapt-pkg-perl",
4468+ "description": "Perl interface to libapt-pkg"
4469+ },
4470+ {
4471+ "status": "Installed",
4472+ "desired": "Install",
4473+ "version": "0.8.16~exp12ubuntu10.7",
4474+ "name": "libapt-pkg4.12",
4475+ "description": "package managment runtime library"
4476+ },
4477+ {
4478+ "status": "Installed",
4479+ "desired": "Install",
4480+ "version": "3.0.3-6ubuntu1",
4481+ "name": "libarchive12",
4482+ "description": "Multi-format archive and compression library (shared library)"
4483+ },
4484+ {
4485+ "status": "Installed",
4486+ "desired": "Install",
4487+ "version": "2.3.21-1ubuntu0.1",
4488+ "name": "libart-2.0-2",
4489+ "description": "Library of functions for 2D graphics - runtime files"
4490+ },
4491+ {
4492+ "status": "Installed",
4493+ "desired": "Install",
4494+ "version": "1.6~git20120311.dfsg.1-2",
4495+ "name": "libasn1-8-heimdal",
4496+ "description": "Heimdal Kerberos - ASN.1 library"
4497+ },
4498+ {
4499+ "status": "Installed",
4500+ "desired": "Install",
4501+ "version": "1.6~git20120311.dfsg.1-2",
4502+ "name": "libasn1-8-heimdal:i386",
4503+ "description": "Heimdal Kerberos - ASN.1 library"
4504+ },
4505+ {
4506+ "status": "Installed",
4507+ "desired": "Install",
4508+ "version": "1.0.25-1ubuntu10.1",
4509+ "name": "libasound2",
4510+ "description": "shared library for ALSA applications"
4511+ },
4512+ {
4513+ "status": "Installed",
4514+ "desired": "Install",
4515+ "version": "1.0.25-1ubuntu10.1",
4516+ "name": "libasound2:i386",
4517+ "description": "shared library for ALSA applications"
4518+ },
4519+ {
4520+ "status": "Installed",
4521+ "desired": "Install",
4522+ "version": "1.0.25-1ubuntu1",
4523+ "name": "libasound2-plugins",
4524+ "description": "ALSA library additional plugins"
4525+ },
4526+ {
4527+ "status": "Installed",
4528+ "desired": "Install",
4529+ "version": "1.0.25-1ubuntu1",
4530+ "name": "libasound2-plugins:i386",
4531+ "description": "ALSA library additional plugins"
4532+ },
4533+ {
4534+ "status": "Installed",
4535+ "desired": "Install",
4536+ "version": "0.60.7~20110707-1",
4537+ "name": "libaspell15",
4538+ "description": "GNU Aspell spell-checker runtime library"
4539+ },
4540+ {
4541+ "status": "Installed",
4542+ "desired": "Install",
4543+ "version": "0.10.0-3",
4544+ "name": "libass4",
4545+ "description": "library for SSA/ASS subtitles rendering"
4546+ },
4547+ {
4548+ "status": "Installed",
4549+ "desired": "Install",
4550+ "version": "2.0.2-1ubuntu1",
4551+ "name": "libassuan0",
4552+ "description": "IPC library for the GnuPG components"
4553+ },
4554+ {
4555+ "status": "Installed",
4556+ "desired": "Install",
4557+ "version": "0.8-4",
4558+ "name": "libasyncns0",
4559+ "description": "Asynchronous name service query library"
4560+ },
4561+ {
4562+ "status": "Installed",
4563+ "desired": "Install",
4564+ "version": "0.8-4",
4565+ "name": "libasyncns0:i386",
4566+ "description": "Asynchronous name service query library"
4567+ },
4568+ {
4569+ "status": "Installed",
4570+ "desired": "Install",
4571+ "version": "0.18-3",
4572+ "name": "libatasmart4",
4573+ "description": "ATA S.M.A.R.T. reading and parsing library"
4574+ },
4575+ {
4576+ "status": "Installed",
4577+ "desired": "Install",
4578+ "version": "2.4.0-1ubuntu2",
4579+ "name": "libatk-adaptor",
4580+ "description": "at-spi2-atk"
4581+ },
4582+ {
4583+ "status": "Installed",
4584+ "desired": "Install",
4585+ "version": "2.4.0-1ubuntu2",
4586+ "name": "libatk-adaptor-schemas",
4587+ "description": "at-spi2-atk GSettings schemas"
4588+ },
4589+ {
4590+ "status": "Installed",
4591+ "desired": "Install",
4592+ "version": "0.30.4-0ubuntu2",
4593+ "name": "libatk-wrapper-java",
4594+ "description": "An ATK implementation for Java using JNI"
4595+ },
4596+ {
4597+ "status": "Installed",
4598+ "desired": "Install",
4599+ "version": "0.30.4-0ubuntu2",
4600+ "name": "libatk-wrapper-java-jni",
4601+ "description": "An ATK implementation for Java using JNI (jni bindings)"
4602+ },
4603+ {
4604+ "status": "Installed",
4605+ "desired": "Install",
4606+ "version": "2.4.0-0ubuntu1",
4607+ "name": "libatk1.0-0",
4608+ "description": "ATK accessibility toolkit"
4609+ },
4610+ {
4611+ "status": "Installed",
4612+ "desired": "Install",
4613+ "version": "2.4.0-0ubuntu1",
4614+ "name": "libatk1.0-0:i386",
4615+ "description": "ATK accessibility toolkit"
4616+ },
4617+ {
4618+ "status": "Installed",
4619+ "desired": "Install",
4620+ "version": "2.4.0-0ubuntu1",
4621+ "name": "libatk1.0-data",
4622+ "description": "Common files for the ATK accessibility toolkit"
4623+ },
4624+ {
4625+ "status": "Installed",
4626+ "desired": "Install",
4627+ "version": "2.4.0-0ubuntu1",
4628+ "name": "libatk1.0-dev",
4629+ "description": "Development files for the ATK accessibility toolkit"
4630+ },
4631+ {
4632+ "status": "Installed",
4633+ "desired": "Install",
4634+ "version": "2.4.0-0ubuntu1",
4635+ "name": "libatk1.0-doc",
4636+ "description": "Documentation files for the ATK toolkit"
4637+ },
4638+ {
4639+ "status": "Installed",
4640+ "desired": "Install",
4641+ "version": "2.22.6-1ubuntu1",
4642+ "name": "libatkmm-1.6-1",
4643+ "description": "C++ wrappers for ATK accessibility toolkit (shared libraries)"
4644+ },
4645+ {
4646+ "status": "Installed",
4647+ "desired": "Install",
4648+ "version": "2.4.2-0ubuntu0.1",
4649+ "name": "libatspi2.0-0",
4650+ "description": "Assistive Technology Service Provider Interface - shared library"
4651+ },
4652+ {
4653+ "status": "Installed",
4654+ "desired": "Install",
4655+ "version": "1:2.4.46-5ubuntu1",
4656+ "name": "libattr1",
4657+ "description": "Extended attribute shared library"
4658+ },
4659+ {
4660+ "status": "Installed",
4661+ "desired": "Install",
4662+ "version": "1:2.4.46-5ubuntu1",
4663+ "name": "libattr1:i386",
4664+ "description": "Extended attribute shared library"
4665+ },
4666+ {
4667+ "status": "Installed",
4668+ "desired": "Install",
4669+ "version": "1.9.3-4",
4670+ "name": "libaudio2",
4671+ "description": "Network Audio System - shared libraries"
4672+ },
4673+ {
4674+ "status": "Installed",
4675+ "desired": "Install",
4676+ "version": "1.9.3-4",
4677+ "name": "libaudio2:i386",
4678+ "description": "Network Audio System - shared libraries"
4679+ },
4680+ {
4681+ "status": "Installed",
4682+ "desired": "Install",
4683+ "version": "0.3.3-2",
4684+ "name": "libaudiofile1",
4685+ "description": "Open-source version of SGI's audiofile library"
4686+ },
4687+ {
4688+ "status": "Installed",
4689+ "desired": "Install",
4690+ "version": "0.3.3-2",
4691+ "name": "libaudiofile1:i386",
4692+ "description": "Open-source version of SGI's audiofile library"
4693+ },
4694+ {
4695+ "status": "Installed",
4696+ "desired": "Install",
4697+ "version": "2.1500-1",
4698+ "name": "libauthen-sasl-perl",
4699+ "description": "Authen::SASL - SASL Authentication framework"
4700+ },
4701+ {
4702+ "status": "Installed",
4703+ "desired": "Install",
4704+ "version": "4:0.8.4-0ubuntu0.12.04.1",
4705+ "name": "libav-tools",
4706+ "description": "Multimedia player, server, encoder and transcoder"
4707+ },
4708+ {
4709+ "status": "Installed",
4710+ "desired": "Install",
4711+ "version": "0.6.30-5ubuntu2",
4712+ "name": "libavahi-client3",
4713+ "description": "Avahi client library"
4714+ },
4715+ {
4716+ "status": "Installed",
4717+ "desired": "Install",
4718+ "version": "0.6.30-5ubuntu2",
4719+ "name": "libavahi-client3:i386",
4720+ "description": "Avahi client library"
4721+ },
4722+ {
4723+ "status": "Installed",
4724+ "desired": "Install",
4725+ "version": "0.6.30-5ubuntu2",
4726+ "name": "libavahi-common-data",
4727+ "description": "Avahi common data files"
4728+ },
4729+ {
4730+ "status": "Installed",
4731+ "desired": "Install",
4732+ "version": "0.6.30-5ubuntu2",
4733+ "name": "libavahi-common-data:i386",
4734+ "description": "Avahi common data files"
4735+ },
4736+ {
4737+ "status": "Installed",
4738+ "desired": "Install",
4739+ "version": "0.6.30-5ubuntu2",
4740+ "name": "libavahi-common3",
4741+ "description": "Avahi common library"
4742+ },
4743+ {
4744+ "status": "Installed",
4745+ "desired": "Install",
4746+ "version": "0.6.30-5ubuntu2",
4747+ "name": "libavahi-common3:i386",
4748+ "description": "Avahi common library"
4749+ },
4750+ {
4751+ "status": "Installed",
4752+ "desired": "Install",
4753+ "version": "0.6.30-5ubuntu2",
4754+ "name": "libavahi-core7",
4755+ "description": "Avahi's embeddable mDNS/DNS-SD library"
4756+ },
4757+ {
4758+ "status": "Installed",
4759+ "desired": "Install",
4760+ "version": "0.6.30-5ubuntu2",
4761+ "name": "libavahi-glib1",
4762+ "description": "Avahi glib integration library"
4763+ },
4764+ {
4765+ "status": "Installed",
4766+ "desired": "Install",
4767+ "version": "0.6.30-5ubuntu2",
4768+ "name": "libavahi-gobject0",
4769+ "description": "Avahi GObject library"
4770+ },
4771+ {
4772+ "status": "Installed",
4773+ "desired": "Install",
4774+ "version": "0.6.30-5ubuntu2",
4775+ "name": "libavahi-ui-gtk3-0",
4776+ "description": "Avahi GTK+ User interface library for GTK3"
4777+ },
4778+ {
4779+ "status": "Installed",
4780+ "desired": "Install",
4781+ "version": "0.5.3-1ubuntu2",
4782+ "name": "libavc1394-0",
4783+ "description": "control IEEE 1394 audio/video devices"
4784+ },
4785+ {
4786+ "status": "Installed",
4787+ "desired": "Install",
4788+ "version": "0.5.3-1ubuntu2",
4789+ "name": "libavc1394-0:i386",
4790+ "description": "control IEEE 1394 audio/video devices"
4791+ },
4792+ {
4793+ "status": "Installed",
4794+ "desired": "Install",
4795+ "version": "4:0.8.4-0ubuntu0.12.04.1",
4796+ "name": "libavcodec53",
4797+ "description": "Libav codec library"
4798+ },
4799+ {
4800+ "status": "Installed",
4801+ "desired": "Install",
4802+ "version": "4:0.8.4-0ubuntu0.12.04.1",
4803+ "name": "libavdevice53",
4804+ "description": "Libav device handling library"
4805+ },
4806+ {
4807+ "status": "Installed",
4808+ "desired": "Install",
4809+ "version": "4:0.8.4-0ubuntu0.12.04.1",
4810+ "name": "libavfilter2",
4811+ "description": "Libav video filtering library"
4812+ },
4813+ {
4814+ "status": "Installed",
4815+ "desired": "Install",
4816+ "version": "4:0.8.4-0ubuntu0.12.04.1",
4817+ "name": "libavformat53",
4818+ "description": "Libav file format library"
4819+ },
4820+ {
4821+ "status": "Installed",
4822+ "desired": "Install",
4823+ "version": "4:0.8.4-0ubuntu0.12.04.1",
4824+ "name": "libavutil51",
4825+ "description": "Libav utility library"
4826+ },
4827+ {
4828+ "status": "Installed",
4829+ "desired": "Install",
4830+ "version": "0.0.22-1.1",
4831+ "name": "libbabl-0.0-0",
4832+ "description": "Dynamic, any to any, pixel format conversion library"
4833+ },
4834+ {
4835+ "status": "Installed",
4836+ "desired": "Install",
4837+ "version": "0.2.124.2-0ubuntu1",
4838+ "name": "libbamf0",
4839+ "description": "Window matching library - shared library"
4840+ },
4841+ {
4842+ "status": "Installed",
4843+ "desired": "Install",
4844+ "version": "0.2.124.2-0ubuntu1",
4845+ "name": "libbamf3-0",
4846+ "description": "Window matching library - shared library"
4847+ },
4848+ {
4849+ "status": "Installed",
4850+ "desired": "Install",
4851+ "version": "0.23-1build3",
4852+ "name": "libbfb0",
4853+ "description": "bfb protocol library"
4854+ },
4855+ {
4856+ "status": "Installed",
4857+ "desired": "Install",
4858+ "version": "1:9.8.1.dfsg.P1-4ubuntu0.5",
4859+ "name": "libbind9-80",
4860+ "description": "BIND9 Shared Library used by BIND"
4861+ },
4862+ {
4863+ "status": "Installed",
4864+ "desired": "Install",
4865+ "version": "7.1-1build2",
4866+ "name": "libbit-vector-perl",
4867+ "description": "Perl module for bit vectors and more"
4868+ },
4869+ {
4870+ "status": "Installed",
4871+ "desired": "Install",
4872+ "version": "1.2.20110419-2ubuntu1",
4873+ "name": "libblas3gf",
4874+ "description": "Basic Linear Algebra Reference implementations, shared library"
4875+ },
4876+ {
4877+ "status": "Installed",
4878+ "desired": "Install",
4879+ "version": "2.20.1-1ubuntu3",
4880+ "name": "libblkid1",
4881+ "description": "block device id library"
4882+ },
4883+ {
4884+ "status": "Installed",
4885+ "desired": "Install",
4886+ "version": "4.98-2ubuntu7",
4887+ "name": "libbluetooth3",
4888+ "description": "Library to use the BlueZ Linux Bluetooth stack"
4889+ },
4890+ {
4891+ "status": "Installed",
4892+ "desired": "Install",
4893+ "version": "1:0.2.1+git20111208.63e308d-3",
4894+ "name": "libbluray1",
4895+ "description": "Blu-ray disc playback support library (shared library)"
4896+ },
4897+ {
4898+ "status": "Installed",
4899+ "desired": "Install",
4900+ "version": "2.32.1-0ubuntu1.1",
4901+ "name": "libbonobo2-0",
4902+ "description": "Bonobo CORBA interfaces library"
4903+ },
4904+ {
4905+ "status": "Installed",
4906+ "desired": "Install",
4907+ "version": "2.32.1-0ubuntu1.1",
4908+ "name": "libbonobo2-common",
4909+ "description": "Bonobo CORBA interfaces library -- support files"
4910+ },
4911+ {
4912+ "status": "Installed",
4913+ "desired": "Install",
4914+ "version": "2.24.5-0ubuntu1.1",
4915+ "name": "libbonoboui2-0",
4916+ "description": "The Bonobo UI library"
4917+ },
4918+ {
4919+ "status": "Installed",
4920+ "desired": "Install",
4921+ "version": "2.24.5-0ubuntu1.1",
4922+ "name": "libbonoboui2-common",
4923+ "description": "The Bonobo UI library -- common files"
4924+ },
4925+ {
4926+ "status": "Installed",
4927+ "desired": "Install",
4928+ "version": "1.46.1-7ubuntu3",
4929+ "name": "libboost-serialization1.46.1",
4930+ "description": "serialization library for C++"
4931+ },
4932+ {
4933+ "status": "Installed",
4934+ "desired": "Install",
4935+ "version": "3.4.1-0ubuntu1.1",
4936+ "name": "libbrasero-media3-1",
4937+ "description": "CD/DVD burning library for GNOME - runtime"
4938+ },
4939+ {
4940+ "status": "Installed",
4941+ "desired": "Install",
4942+ "version": "4.3-1ubuntu5",
4943+ "name": "libbrlapi0.5",
4944+ "description": "braille display access via BRLTTY - shared library"
4945+ },
4946+ {
4947+ "status": "Installed",
4948+ "desired": "Install",
4949+ "version": "0.3.0-2",
4950+ "name": "libbsd0",
4951+ "description": "utility functions from BSD systems - shared library"
4952+ },
4953+ {
4954+ "status": "Installed",
4955+ "desired": "Install",
4956+ "version": "1.1.8-1",
4957+ "name": "libburn4",
4958+ "description": "library to provide CD/DVD writing functions"
4959+ },
4960+ {
4961+ "status": "Installed",
4962+ "desired": "Install",
4963+ "version": "1.0.6-1",
4964+ "name": "libbz2-1.0",
4965+ "description": "high-quality block-sorting file compressor library - runtime"
4966+ },
4967+ {
4968+ "status": "Installed",
4969+ "desired": "Install",
4970+ "version": "1.0.6-1",
4971+ "name": "libbz2-1.0:i386",
4972+ "description": "high-quality block-sorting file compressor library - runtime"
4973+ },
4974+ {
4975+ "status": "Installed",
4976+ "desired": "Install",
4977+ "version": "2.15-0ubuntu10.3",
4978+ "name": "libc-bin",
4979+ "description": "Embedded GNU C Library: Binaries"
4980+ },
4981+ {
4982+ "status": "Installed",
4983+ "desired": "Install",
4984+ "version": "2.15-0ubuntu10.3",
4985+ "name": "libc-dev-bin",
4986+ "description": "Embedded GNU C Library: Development binaries"
4987+ },
4988+ {
4989+ "status": "Installed",
4990+ "desired": "Install",
4991+ "version": "2.15-0ubuntu10.3",
4992+ "name": "libc6",
4993+ "description": "Embedded GNU C Library: Shared libraries"
4994+ },
4995+ {
4996+ "status": "Installed",
4997+ "desired": "Install",
4998+ "version": "2.15-0ubuntu10.3",
4999+ "name": "libc6:i386",
5000+ "description": "Embedded GNU C Library: Shared libraries"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches