Merge ppa-dev-tools:add_binary_package_module into ppa-dev-tools:main

Proposed by Bryce Harrington
Status: Merged
Merge reported by: Bryce Harrington
Merged at revision: 2a5048d99b5e35c4e69356bcabc99a263488acf1
Proposed branch: ppa-dev-tools:add_binary_package_module
Merge into: ppa-dev-tools:main
Diff against target: 3464 lines (+3432/-0)
4 files modified
ppa/binary_package.py (+200/-0)
tests/data/binary-amd64/Packages (+3116/-0)
tests/data/binary-amd64/Release (+6/-0)
tests/test_binary_package.py (+110/-0)
Reviewer Review Type Date Requested Status
Athos Ribeiro (community) Approve
Canonical Server Pending
Canonical Server Core Reviewers Pending
Canonical Server Reporter Pending
Review via email: mp+439769@code.launchpad.net

Description of the change

This adds the BinaryPackage class, allowing access to the per-package Apt data about installable packages.

The installation_dependencies() and recommended_packages() are probably not actually going to be used for anything, but are included for completeness. However these routines are basically the same implementations we'll need in SourcePackage for its depends which we *do* need. So review feedback on these will pay off in the next MP. :-)

As usual, the unit tests can be run via:

    $ pytest-3 ./tests/test_binary_package.py

With static tests run via:

    $ check-scripts ./tests/test_binary_package.py ./ppa/binary_package.py

And there is also a smoketest, using some sample data added to tests/data/:

    $ python3 -m ppa.binary_package

To post a comment you must log in.
Revision history for this message
Athos Ribeiro (athos-ribeiro) wrote :

Thanks Bryce, LGTM. The test data is a bit large compared to the changed here, but still looks great!

review: Approve
Revision history for this message
Bryce Harrington (bryce) wrote :

Noted on the size; I did trim it down from the original with that in mind, but maybe not enough. I'll be adding more sample data in the next few MPs so may condense further. I do want to include some real-world data to catch edge cases but I know there's a balance to strike.

Thanks again for the reviews!

Revision history for this message
Bryce Harrington (bryce) wrote :

Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
To git+ssh://git.launchpad.net/ppa-dev-tools
   03aadb2..2a5048d main -> main

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/ppa/binary_package.py b/ppa/binary_package.py
2new file mode 100644
3index 0000000..660e905
4--- /dev/null
5+++ b/ppa/binary_package.py
6@@ -0,0 +1,200 @@
7+#!/usr/bin/env python3
8+# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
9+
10+# Copyright (C) 2022 Authors
11+#
12+# Released under GNU GPLv2 or later, read the file 'LICENSE.GPLv2+' for
13+# more information.
14+#
15+# Authors:
16+# Bryce Harrington <bryce@canonical.com>
17+
18+"""Interprets and analyzes an Ubuntu Apt record for a binary package."""
19+
20+from functools import lru_cache
21+
22+from .dict import unpack_to_dict
23+
24+
25+class BinaryPackage:
26+ """The Apt record about an installable binary .deb.
27+
28+ SourcePackages are built into multiple BinaryPackages for different
29+ components and different architectures.
30+
31+ This object is intended to be instantiated from a raw Apt binary
32+ package record such as extracted from a Packages.xz file by
33+ apt_pkg.TagFile(). The BinaryPackage class members handle the
34+ parsing and interpretation of the data values of the record such as
35+ installation dependencies.
36+
37+ Since objects of this class are constructed as thin wrappers on the
38+ Apt record, the available member properties for the object will vary
39+ depending on the data elements present in the record. For example,
40+ if there isn't a "Task:" field, then this object will not have a
41+ 'self.task' property.
42+
43+ For member properties needed by users of this class, it's
44+ recommended to guarantee their presence either by requiring them
45+ from the pkg_dict in the __init__() property, or add a property to
46+ the class that checks and substitutes a suitable default if missing.
47+ """
48+ # pylint: disable=no-member
49+
50+ def __init__(self, pkg_dict: dict):
51+ """Initializes a new SourcePackage object for a given package.
52+
53+ :param dict[str, str] pkg_dict: Data collection loaded from an Apt record.
54+ """
55+ # Auto-create member parameters from the Apt record's data structure
56+ self.__dict__ = {k.lower().replace('-', '_'): pkg_dict[k] for k in pkg_dict.keys()}
57+
58+ # Required fields that must be present in pkg_dict for object validity
59+ for field in ['package', 'version', 'architecture']:
60+ if field not in self.__dict__:
61+ raise ValueError(f'undefined {field} from Apt record for binary package')
62+ if self.__dict__[field] is None:
63+ raise ValueError(f'{field} from Apt record for binary package has undefined value')
64+
65+ def __repr__(self):
66+ """Machine-parsable unique representation of object.
67+
68+ :rtype: str
69+ :returns: Official string representation of the object.
70+ """
71+ return (f'{self.__class__.__name__}('
72+ f'pkg_dict={self.__dict__!r})')
73+
74+ def __str__(self):
75+ """Human-readable textual description of the BinaryPackage.
76+
77+ :rtype: str
78+ :returns: Human-readable string.
79+ """
80+ return f"{self.package} ({self.version}) [{self.architecture}]"
81+
82+ @property
83+ def name(self):
84+ """The name of the binary package as recorded in the Apt database.
85+
86+ :rtype: str
87+ :returns: Package name.
88+ """
89+ return self.package
90+
91+ @property
92+ @lru_cache
93+ def installation_dependencies(self) -> dict:
94+ """Required binary packages that must be installed as prerequisites.
95+
96+ :rtype: dict[str, str]
97+ :returns: Collection of package names to version specification strings.
98+ """
99+ if 'depends' not in self.__dict__:
100+ # Missing Depends is uncommon, but can occur for packages
101+ # consisting just of config files, for example.
102+ return {}
103+ deps = unpack_to_dict(self.depends, key_sep=' ')
104+ if not deps:
105+ raise RuntimeError('Could not parse packages from depends line of apt record')
106+ return deps
107+
108+ @property
109+ @lru_cache
110+ def recommended_packages(self) -> dict:
111+ """Optional binary packages intended to be co-installed.
112+
113+ :rtype: dict[str, str]
114+ :returns: Collection of package names to version specification strings.
115+ """
116+ if 'recommends' not in self.__dict__:
117+ return {}
118+ recs = unpack_to_dict(self.recommends, key_sep=' ')
119+ if not recs:
120+ raise RuntimeError('Could not parse packages from recommends line of apt record')
121+ return recs
122+
123+
124+if __name__ == "__main__":
125+ # pylint: disable=line-too-long, invalid-name
126+
127+ import os
128+ import apt_pkg
129+
130+ import pprint
131+ pp = pprint.PrettyPrinter(indent=4)
132+
133+ root_dir = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), '..'))
134+ tests_data_dir = os.path.join(root_dir, 'tests', 'data')
135+ assert os.path.exists(tests_data_dir), f'cannot find {tests_data_dir}'
136+
137+ print('####################################')
138+ print('## BinaryPackage class smoke test ##')
139+ print('####################################')
140+
141+ print()
142+ print('Binary Packages')
143+ print('---------------')
144+ with apt_pkg.TagFile(f'{tests_data_dir}/binary-amd64/Packages.xz') as pkgs:
145+ results = []
146+ for pkg in pkgs:
147+ binary = BinaryPackage(pkg)
148+ results.append(str(binary))
149+
150+ num_results = len(results)
151+ ellipses_shown = False
152+ for i, result in enumerate(results):
153+ if i < 10 or i >= num_results - 10:
154+ print(result)
155+ elif not ellipses_shown:
156+ print('...')
157+ ellipses_shown = True
158+ print()
159+
160+ print()
161+ print('Details for "dovecot-core"')
162+ print('--------------------------')
163+ package_data = {
164+ 'Package': 'dovecot-core',
165+ 'Architecture': 'amd64',
166+ 'Version': '1:2.3.19.1+dfsg1-2ubuntu4',
167+ 'Priority': 'optional',
168+ 'Section': 'mail',
169+ 'Source': 'dovecot',
170+ 'Origin': 'Ubuntu',
171+ 'Maintainer': 'Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>',
172+ 'Original-Maintainer': 'Dovecot Maintainers <dovecot@packages.debian.org>',
173+ 'Bugs': 'https://bugs.launchpad.net/ubuntu/+filebug',
174+ 'Installed-Size': '10406',
175+ 'Provides': 'dovecot-abi-2.3.abiv19, dovecot-common',
176+ 'Pre-Depends': 'init-system-helpers (>= 1.54~)',
177+ 'Depends': 'adduser, libpam-runtime, lsb-base, openssl, ssl-cert, ucf, libapparmor1 (>= 2.7.0~beta1+bzr1772), libbz2-1.0, libc6 (>= 2.36), libcap2 (>= 1:2.10), libcrypt1 (>= 1:4.1.0), libexttextcat-2.0-0 (>= 3.3.0), libicu72 (>= 72.1~rc-1~), liblua5.3-0, liblz4-1 (>= 0.0~r130), liblzma5 (>= 5.1.1alpha+20120614), libpam0g (>= 0.99.7.1), libsodium23 (>= 1.0.13), libssl3 (>= 3.0.0), libstemmer0d (>= 0+svn527), libsystemd0, libtirpc3 (>= 1.0.2), libunwind8, libwrap0 (>= 7.6-4~), libzstd1 (>= 1.5.2), zlib1g (>= 1:1.1.4)', # noqa: E501
178+ 'Suggests': 'dovecot-gssapi, dovecot-imapd, dovecot-ldap, dovecot-lmtpd, dovecot-lucene, dovecot-managesieved, dovecot-mysql, dovecot-pgsql, dovecot-pop3d, dovecot-sieve, dovecot-solr, dovecot-sqlite, dovecot-submissiond, ntp', # noqa: E501
179+ 'Breaks': 'dovecot-common (<< 1:2.0.14-2~), mailavenger (<< 0.8.1-4)',
180+ 'Replaces': 'dovecot-common (<< 1:2.0.14-2~), mailavenger (<< 0.8.1-4)',
181+ 'Filename': 'pool/main/d/dovecot/dovecot-core_2.3.19.1+dfsg1-2ubuntu4_amd64.deb',
182+ 'Size': '3300962',
183+ 'MD5sum': 'c6f61ffe0f01f51405c4fc22f6770cd2',
184+ 'SHA1': 'ed389250d8738c0199f24cab2fe33e12b84e31c7',
185+ 'SHA256': 'd73fb4bc55c764b9ad8c143c1f2b04a1cfb6ce2c2d751e4970ee09199ed7c3cb',
186+ 'SHA512': 'ab55bdcdc31eac59168883ff83b2e6f2ee57b9340eb6b4e5b0f4e354813ae7dc0ca21ba34265f872a9c014b3c06bacad95708059c7a06c8c93d4a22ccb31494c', # noqa: E501
187+ 'Homepage': 'https://dovecot.org/',
188+ 'Description': 'secure POP3/IMAP server - core files',
189+ 'Task': 'mail-server',
190+ 'Description-md5': '42825422b1ef9e3a592c94dfafed375c',
191+ }
192+
193+ binary = BinaryPackage(package_data)
194+
195+ print('* Object:')
196+ pp.pprint(binary.__dict__)
197+
198+ print()
199+ print('* Installation Requires:')
200+ for pkg, ver in sorted(binary.installation_dependencies.items()):
201+ print(f' - {pkg}: {ver}')
202+
203+ print()
204+ print('* Recommends:')
205+ for pkg, ver in sorted(binary.recommended_packages.items()):
206+ print(f' - {pkg}: {ver} ')
207diff --git a/tests/data/binary-amd64/Packages b/tests/data/binary-amd64/Packages
208new file mode 100644
209index 0000000..85d774a
210--- /dev/null
211+++ b/tests/data/binary-amd64/Packages
212@@ -0,0 +1,3116 @@
213+Package: accountsservice
214+Architecture: amd64
215+Version: 22.08.8-1ubuntu4
216+Priority: optional
217+Section: gnome
218+Origin: Ubuntu
219+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
220+Original-Maintainer: Debian freedesktop.org maintainers <pkg-freedesktop-maintainers@lists.alioth.debian.org>
221+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
222+Installed-Size: 504
223+Depends: dbus (>= 1.9.18), libaccountsservice0 (= 22.08.8-1ubuntu4), libc6 (>= 2.34), libglib2.0-0 (>= 2.63.5), libpolkit-gobject-1-0 (>= 0.99)
224+Recommends: default-logind | logind
225+Suggests: gnome-control-center
226+Filename: pool/main/a/accountsservice/accountsservice_22.08.8-1ubuntu4_amd64.deb
227+Size: 68364
228+MD5sum: a10447714f0ce3c5f607b7b27c0f9299
229+SHA1: 252482d8935d16b7fc5ced0c88819eeb7cad6c65
230+SHA256: 4e341a8e288d8f8f9ace6cf90a1dcc3211f06751d9bec3a68a6c539b0c711282
231+SHA512: eb91e21b4dfe38e9768e8ca50f30f94298d86f07e78525ab17df12eb3071ea21cfbdc2ade3e48bd4e22790aa6ce3406bb10fbd17d8d668f84de1c8adeee249cb
232+Homepage: https://www.freedesktop.org/wiki/Software/AccountsService/
233+Description: query and manipulate user account information
234+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, ubuntu-wsl, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi, edubuntu-wsl
235+Description-md5: 8aeed0a03c7cd494f0c4b8d977483d7e
236+
237+Package: acct
238+Architecture: amd64
239+Version: 6.6.4-5
240+Priority: optional
241+Section: admin
242+Origin: Ubuntu
243+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
244+Original-Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
245+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
246+Installed-Size: 305
247+Pre-Depends: init-system-helpers (>= 1.54~)
248+Depends: libc6 (>= 2.34), lsb-base
249+Filename: pool/main/a/acct/acct_6.6.4-5_amd64.deb
250+Size: 88136
251+MD5sum: 6a4b7e2a78f7100583e8383274ba3717
252+SHA1: 4bb9abe37b9259b195439923d8a05e3d0f0a9f55
253+SHA256: eb6303c9e70ecc0b281669b7c06860fdede99a5d43ec179bf40344e606f56e40
254+SHA512: a334cb07d097e8fee4c4af1a1eba186548299ccc9013f53b9a93a4d9ffdc735bae53f93622cec1bde25a4fd9b019ca57c96acd2c21b46ea714657103b410dca4
255+Homepage: https://www.gnu.org/software/acct/
256+Description: GNU Accounting utilities for process and login accounting
257+Description-md5: 2411ebcaa9bca02b21c19f927d3e1bda
258+
259+Package: acl
260+Architecture: amd64
261+Version: 2.3.1-3
262+Multi-Arch: foreign
263+Priority: optional
264+Section: utils
265+Origin: Ubuntu
266+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
267+Original-Maintainer: Guillem Jover <guillem@debian.org>
268+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
269+Installed-Size: 192
270+Depends: libacl1 (= 2.3.1-3), libc6 (>= 2.34)
271+Filename: pool/main/a/acl/acl_2.3.1-3_amd64.deb
272+Size: 39030
273+MD5sum: c84ecfd62b0ac0538806153d1e3e4ca4
274+SHA1: 29fe5844a6d62e7af1e17757189cd29dc1db9bd4
275+SHA256: cb65a7f0d5920dae6c40a4ea5723b8b764830f4099fab2009d42e7580169fe7a
276+SHA512: 75a7ba60f74f54bf571b1256e20252f37296ee18c5c51a6fc3a3fbeb699167a91fc03a751c98d1f66855658fa2bc4c1fad4e199933ced7eb11319251dbf3109b
277+Homepage: https://savannah.nongnu.org/projects/acl/
278+Description: access control list - utilities
279+Task: print-server, ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
280+Description-md5: b83fc53f6059dbeb88f11752e70968e7
281+
282+Package: acpid
283+Architecture: amd64
284+Version: 1:2.0.33-2ubuntu1
285+Priority: optional
286+Section: admin
287+Origin: Ubuntu
288+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
289+Original-Maintainer: Josue Ortega <josue@debian.org>
290+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
291+Installed-Size: 146
292+Pre-Depends: init-system-helpers (>= 1.54~)
293+Depends: libc6 (>= 2.34), lsb-base (>= 3.2-14), kmod
294+Filename: pool/main/a/acpid/acpid_2.0.33-2ubuntu1_amd64.deb
295+Size: 35596
296+MD5sum: 9d4157109d94e39e769f392db1df087b
297+SHA1: f0839903caec61e135beb7bd803d2a80f9d97ef1
298+SHA256: ded4b136a33c83e3d217a44cd3f75690795beaac208f1a2eddb9352c00f41952
299+SHA512: 314cf9a92e2dbfe06e6852ee1d7e0a5b49138eed5b73ad14b8267589ca1d830484fcffa7f609016d9bd6d7d9d5646e0cda5753c1fb1ed6f9b8387d4566664bf3
300+Homepage: http://sourceforge.net/projects/acpid2/
301+Description: Advanced Configuration and Power Interface event daemon
302+Description-md5: 6a7c4e4695f570d8fbcaec667cdcfcfe
303+
304+Package: adcli
305+Architecture: amd64
306+Version: 0.9.1-2ubuntu1
307+Priority: optional
308+Section: admin
309+Origin: Ubuntu
310+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
311+Original-Maintainer: Laurent Bigonville <bigon@debian.org>
312+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
313+Installed-Size: 294
314+Depends: libsasl2-modules-gssapi-mit, libc6 (>= 2.34), libgssapi-krb5-2 (>= 1.6.dfsg.2), libk5crypto3 (>= 1.20), libkrb5-3 (>= 1.12~alpha1+dfsg), libldap2 (>= 2.6.2)
315+Filename: pool/main/a/adcli/adcli_0.9.1-2ubuntu1_amd64.deb
316+Size: 96830
317+MD5sum: 5b1d91459279be6410340e12069f241a
318+SHA1: b8432f15516f58d5647614e0e9ba589f89c64fa8
319+SHA256: bb54607ddb83957bd57960c2d8c8cf95c7d8bd3f046812928275deb890cc274f
320+SHA512: 4c46e4dff59c19b6b2a22076457bf74a3c3c68a757359ddf6f55a6dbe344ab39f5dca88ec1663da59adb56bceaac7fe5d39f7e96f376fddd1ae71f30eb8355be
321+Homepage: https://www.freedesktop.org/software/realmd/
322+Description: Tool for performing actions on an Active Directory domain
323+Task: ubuntu-live, ubuntu-mate-core, ubuntu-mate-desktop
324+Description-md5: 3f005076e7a98a598f65545cbab3b448
325+
326+Package: adduser
327+Architecture: all
328+Version: 3.129ubuntu1
329+Multi-Arch: foreign
330+Priority: important
331+Section: admin
332+Origin: Ubuntu
333+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
334+Original-Maintainer: Debian Adduser Developers <adduser@packages.debian.org>
335+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
336+Installed-Size: 424
337+Depends: passwd
338+Suggests: liblocale-gettext-perl, perl, cron, ecryptfs-utils (>= 67-1)
339+Filename: pool/main/a/adduser/adduser_3.129ubuntu1_all.deb
340+Size: 59020
341+MD5sum: 09ff29d773c1a85b097d5b3acadd5fc2
342+SHA1: a2a57cfd914d0a3e0ea5b440cda3e7de82974b89
343+SHA256: e58ca197bc0244e53f318b1771a2a27faca3c96866b57fd6ccc4f53d041c0639
344+SHA512: 7377db24b75531aab129d1feb73864515c0a397a6d34bb98baed5a7255f8b5dcc851ba141cc1a48a61d60a9a76087390743e490fdb4457704cc7c8e373b0990b
345+Description: add and remove users and groups
346+Task: minimal, server-minimal
347+Description-md5: a5681e7bad8d90695043c6eab9784701
348+
349+Package: adsys
350+Architecture: amd64
351+Version: 0.9.2
352+Built-Using: golang-1.18 (= 1.18.4-1ubuntu2)
353+Priority: optional
354+Section: admin
355+Origin: Ubuntu
356+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
357+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
358+Installed-Size: 23420
359+Depends: libc6 (>= 2.34), libpam0g (>= 0.99.7.1), libsmbclient (>= 2:4.0.3+dfsg1), init-system-helpers (>= 1.52), python3, python3-samba, samba-dsdb-modules, sssd, sssd-dbus
360+Recommends: ubuntu-advantage-desktop-daemon
361+Filename: pool/main/a/adsys/adsys_0.9.2_amd64.deb
362+Size: 6139824
363+MD5sum: 5d80e4858f1c642cb71cfe19add8ab3d
364+SHA1: 8318e76b397e593b37f7a08323a9290f67cb8f19
365+SHA256: 4370346b1a84f41ea06eaea06f61e2e2f1c3f2563891efae22cfe5f87adc432a
366+SHA512: 70b602cfd191af3395d589c2d74af11082e7aef49b961d6e78d84fe69effc467cb2778a317520fc8e7ed12921cb5d607cf345c2e0ce8c72b62e143b58b8eb145
367+Homepage: https://github.com/ubuntu/adsys
368+Description: AD SYStem integration
369+Description-md5: 720becc0977ae4c845fb5e5c1a8cdc87
370+
371+Package: advancecomp
372+Architecture: amd64
373+Version: 2.5-1
374+Priority: optional
375+Section: utils
376+Origin: Ubuntu
377+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
378+Original-Maintainer: Piotr Ożarowski <piotr@debian.org>
379+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
380+Installed-Size: 671
381+Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3.1), libstdc++6 (>= 9), zlib1g (>= 1:1.1.4)
382+Filename: pool/main/a/advancecomp/advancecomp_2.5-1_amd64.deb
383+Size: 180468
384+MD5sum: a45d6a295d292b37b9c0bf5e185b2362
385+SHA1: e8163314946dfe8d92d7dc1caa3c09a9faefe415
386+SHA256: 491ef7fca17f5bbe8fbf0dc788609bf242686a28369bc603aeb397c9555432ef
387+SHA512: 84157fda1f87289f95bec2b5893db1903cd81daec91d2104831953913aaebdeb293c06bd871c32feb2cdf5c435ad2b98692a933362ce83ae7af6c485f85c900d
388+Homepage: http://www.advancemame.it/
389+Description: collection of recompression utilities
390+Description-md5: 45269d7ed6ff6092f699fce2e0061b74
391+
392+Package: adwaita-icon-theme
393+Architecture: all
394+Version: 41.0-1ubuntu1
395+Multi-Arch: foreign
396+Priority: optional
397+Section: gnome
398+Origin: Ubuntu
399+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
400+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
401+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
402+Installed-Size: 5234
403+Depends: hicolor-icon-theme, gtk-update-icon-cache, ubuntu-mono | adwaita-icon-theme-full
404+Recommends: librsvg2-common
405+Breaks: adwaita-icon-theme-full (<< 41.0-1ubuntu1), gnome-themes-standard-data (<< 3.18.0-2~)
406+Replaces: adwaita-icon-theme-full (<< 41.0-1ubuntu1), gnome-themes-standard-data (<< 3.18.0-2~)
407+Filename: pool/main/a/adwaita-icon-theme/adwaita-icon-theme_41.0-1ubuntu1_all.deb
408+Size: 3444050
409+MD5sum: 4d91041f196302625d68994f264c59ae
410+SHA1: 4056f21a8cb17f3ed5a4524dfab25ba3e4c6b02d
411+SHA256: 9391c87c5479507895be429434d6ebd60593e8f3a708fec6cd7950579128debc
412+SHA512: 8ae96d7066376752be85d3eeb5dac08d7a93bba32756fab0e41c64c35a88732edf73ea8deadf612692f73ac4d997b108d458d15ea3850cef2df501fc0445c744
413+Description: default icon theme of GNOME (small subset)
414+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, ubuntu-wsl, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi, edubuntu-wsl
415+Description-md5: 074cb6d8a0caaa072baf8360cb391830
416+
417+Package: aide
418+Architecture: amd64
419+Version: 0.18-2
420+Priority: optional
421+Section: admin
422+Origin: Ubuntu
423+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
424+Original-Maintainer: Aide Maintainers <aide@packages.debian.org>
425+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
426+Installed-Size: 268
427+Provides: aide-binary
428+Depends: libacl1 (>= 2.2.23), libaudit1 (>= 1:2.2.1), libc6 (>= 2.34), libcap2 (>= 1:2.10), libext2fs2 (>= 1.46.2), libmhash2 (>= 0.9.9.9), libpcre2-8-0 (>= 10.22), libselinux1 (>= 3.1~), zlib1g (>= 1:1.1.4)
429+Recommends: aide-common (= 0.18-2)
430+Suggests: figlet
431+Replaces: aide-dynamic, aide-xen
432+Filename: pool/main/a/aide/aide_0.18-2_amd64.deb
433+Size: 116316
434+MD5sum: a11256510f9171e7eaf33464acb8f09e
435+SHA1: d03a183e2bdf58d8b8b9c50fba079fd38b600224
436+SHA256: e099ba7e86b00ba9320ee08b45526bc02ed9de1e0eb25a3a76ee6010d191092c
437+SHA512: db732415b784dd8af7451bc6248a6ae32cd7f9d402e8e266e7df45556ba4487126a04c23d2e667b82ec88f9744fb5aa1d3376897f083c1872e2ad0a8c78cdbde
438+Homepage: https://aide.github.io
439+Description: Advanced Intrusion Detection Environment - dynamic binary
440+Description-md5: 1d70ba920a3b80bc791be197bf18814c
441+
442+Package: aide-common
443+Architecture: all
444+Version: 0.18-2
445+Priority: optional
446+Section: admin
447+Source: aide
448+Origin: Ubuntu
449+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
450+Original-Maintainer: Aide Maintainers <aide@packages.debian.org>
451+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
452+Installed-Size: 425
453+Depends: aide (>= 0.17), liblockfile1, ucf (>= 2.0020), debconf (>= 0.5) | debconf-2.0
454+Recommends: cron, bsd-mailx | mailx | s-nail
455+Filename: pool/main/a/aide/aide-common_0.18-2_all.deb
456+Size: 78624
457+MD5sum: 05b593e8bf9c572028fe6770e2b6ea5a
458+SHA1: e4089fe4b2708a2be159581c8351a861139ecb9e
459+SHA256: 4b65785709bc676172f250d4f0410f1c3fa428db4da68508efdbc7a9dfc44b4b
460+SHA512: 8dbd1edfee9a62e200504eccda3a87698bdfb0fedee862b5f7bfeb26ddfc73db26481dfb5e980dc83b9e326e347fae63322b0234050fbefbb0dbde7559f3f700
461+Homepage: https://aide.github.io
462+Description: Advanced Intrusion Detection Environment - Common files
463+Description-md5: 7a8490e442a29581e6cca1b191be3f62
464+
465+Package: aisleriot
466+Architecture: amd64
467+Version: 1:3.22.23-1
468+Priority: optional
469+Section: games
470+Origin: Ubuntu
471+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
472+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
473+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
474+Installed-Size: 9156
475+Depends: dconf-gsettings-backend | gsettings-backend, guile-3.0-libs, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.34), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libgdk-pixbuf-2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.19.12), librsvg2-2 (>= 2.32.0)
476+Recommends: yelp
477+Suggests: gnome-cards-data
478+Filename: pool/main/a/aisleriot/aisleriot_3.22.23-1_amd64.deb
479+Size: 1053428
480+MD5sum: 30eb03e230bb98410d17cdc92931eda7
481+SHA1: 0777ac42713f5d2e9813ec426b147987a8fbdfdf
482+SHA256: e55f01e535e0593b65eff10305091f12786dfad5e3bdd464301eb2737ef15f42
483+SHA512: b5678f2793367da737c2c4dc31ab996f2498970a82e85387008e47a6b6d25689366b20e839ff230244e080729ae5e7117f893c6425175c25ef966eff752578b5
484+Homepage: https://wiki.gnome.org/Apps/Aisleriot
485+Description: GNOME solitaire card game collection
486+Task: ubuntu-desktop, ubuntu-desktop-raspi, ubuntukylin-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop, edubuntu-desktop-raspi
487+Description-md5: e7f99df3aa92cf870d335784e155ec33
488+
489+Package: alembic
490+Architecture: all
491+Version: 1.8.1-0ubuntu1
492+Priority: optional
493+Section: python
494+Origin: Ubuntu
495+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
496+Original-Maintainer: Debian Python Team <team+python@tracker.debian.org>
497+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
498+Installed-Size: 2548
499+Depends: python3-alembic (= 1.8.1-0ubuntu1), python3:any, libjs-sphinxdoc (>= 4.3)
500+Filename: pool/main/a/alembic/alembic_1.8.1-0ubuntu1_all.deb
501+Size: 277302
502+MD5sum: 93d93ba0f0b0250c5cba8182350fd8a2
503+SHA1: a9931bc69fc8326dc7ff6606a232f3b0df585e4c
504+SHA256: effe88592620bf5b9c55995ebd94d5f3375f4582f928d076a93272f33af1125d
505+SHA512: c7be79856e79324d556fc6644ffbd75833cb7c4e3ce834def4d94867c6f7ec217f67e166ed708d276d4259098838c58370d7fd5a2c8f9ea6ea27a973359aff75
506+Homepage: https://github.com/sqlalchemy/alembic
507+Description: lightweight database migration tool for SQLAlchemy
508+Description-md5: cd0efbf0f89bffe2d4dc35fa935c7c7e
509+
510+Package: alsa-base
511+Architecture: all
512+Version: 1.0.25+dfsg-0ubuntu7
513+Multi-Arch: foreign
514+Priority: optional
515+Section: sound
516+Source: alsa-driver
517+Origin: Ubuntu
518+Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
519+Original-Maintainer: Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org>
520+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
521+Installed-Size: 464
522+Provides: alsa
523+Depends: kmod (>= 17-1), linux-sound-base, udev
524+Recommends: alsa-utils
525+Suggests: apmd (>= 3.0.2-1), alsa-oss, oss-compat
526+Filename: pool/main/a/alsa-driver/alsa-base_1.0.25+dfsg-0ubuntu7_all.deb
527+Size: 145152
528+MD5sum: 566da6f90405b86e5ad8add47b07ca7e
529+SHA1: 6929cf39f165ebddde32e434bda01dfd3b55e349
530+SHA256: d0c99ed97cab93fb759be324947e26d79df81362106226baf353a4f5e2a39bd3
531+SHA512: b89357c65bf92350ec20f602fd3ba96fb4234d18bf23d9254d1f51381eb6b7569feab2fa1ce6ec6702afe18a672acbdc0275453269feac76becee0632fe7e7bb
532+Homepage: http://www.alsa-project.org/
533+Description: ALSA driver configuration files
534+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
535+Description-md5: 14d30d1beb8026b3d2636c32c5a92cca
536+
537+Package: alsa-topology-conf
538+Architecture: all
539+Version: 1.2.5.1-2
540+Multi-Arch: foreign
541+Priority: optional
542+Section: libs
543+Origin: Ubuntu
544+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
545+Original-Maintainer: Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org>
546+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
547+Installed-Size: 420
548+Breaks: libasound2-data (<< 1.2.1)
549+Replaces: libasound2-data (<< 1.2.1)
550+Enhances: libasound2-data
551+Filename: pool/main/a/alsa-topology-conf/alsa-topology-conf_1.2.5.1-2_all.deb
552+Size: 15542
553+MD5sum: ac951cc5419ff9c9ed8ab2f0cdcbebb6
554+SHA1: 28bbb456e0ee25d77512d079505b94086507fe8b
555+SHA256: e5109a16bd0aa0eb08a8d0e3862d7f2f223cce0741cf4167eb56fafcc7ba8f35
556+SHA512: 685d9cc838f8ed14841e4a9fc17c36a2114a836e5bdfd4c6ba15796ac13f082917816a803ab092ee29f03f84ec4a90b100df6eac0e505b3ee95b5a9a8d42a02a
557+Homepage: https://www.alsa-project.org/
558+Description: ALSA topology configuration files
559+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
560+Description-md5: 5b8bf095ff0102805ed804bd0ad47988
561+
562+Package: alsa-ucm-conf
563+Architecture: all
564+Version: 1.2.6.3-1ubuntu7
565+Multi-Arch: foreign
566+Priority: optional
567+Section: libs
568+Origin: Ubuntu
569+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
570+Original-Maintainer: Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org>
571+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
572+Installed-Size: 556
573+Depends: libasound2 (>= 1.2.4)
574+Filename: pool/main/a/alsa-ucm-conf/alsa-ucm-conf_1.2.6.3-1ubuntu7_all.deb
575+Size: 41474
576+MD5sum: 465abffb6ee636b2248e2e1ae62d95b4
577+SHA1: a557914c0d01ddce044435f52216b886ee9d5fbe
578+SHA256: 2fc5a28ab778fa083b8d5f966d32c676ee7f98d5506fdbfe48d772daf324109c
579+SHA512: 7edcde203763d7749f6fa06484360b4a640a33a98afe2183254a0c9fe1d76b8d586d7281fe7619e9d74afd1eabe3e418d8c7bc1a96b19f3ff94bd9f0b92f46f9
580+Homepage: https://www.alsa-project.org/
581+Description: ALSA Use Case Manager configuration files
582+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
583+Description-md5: c57964a46d5e0c90f286d77124260cb7
584+
585+Package: alsa-utils
586+Architecture: amd64
587+Version: 1.2.8-1ubuntu1
588+Multi-Arch: foreign
589+Priority: optional
590+Section: sound
591+Origin: Ubuntu
592+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
593+Original-Maintainer: Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org>
594+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
595+Installed-Size: 2564
596+Provides: audio-mixer
597+Depends: kmod (>= 17-1~), lsb-base (>= 3.0-9), libasound2 (>= 1.2.6.1), libatopology2 (>= 1.2.2), libc6 (>= 2.34), libfftw3-single3 (>= 3.3.5), libncursesw6 (>= 6), libsamplerate0 (>= 0.1.7), libtinfo6 (>= 6)
598+Suggests: dialog
599+Filename: pool/main/a/alsa-utils/alsa-utils_1.2.8-1ubuntu1_amd64.deb
600+Size: 1183416
601+MD5sum: 1ee5565dce405f8bc952361763a934cb
602+SHA1: d8f359dd89ef0bd4fccfef4124e75ee40e5c0f16
603+SHA256: 85a5988d028a7945f681703fad9f8430b61b26c6b5ebc20f387cb5f9e32a5831
604+SHA512: 80648211666bab2add5474ff6095e9e433d882ee5ae128422953306f8f067a63ac95cdf4dcea3b72d1dec8651f56273ff4065148babb33d90eeb16593b5e6d4b
605+Homepage: https://www.alsa-project.org/
606+Description: Utilities for configuring and using ALSA
607+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
608+Description-md5: a4e555adf5e969eded25828df3763172
609+
610+Package: amavisd-new
611+Architecture: all
612+Version: 1:2.12.2-1.1ubuntu1
613+Priority: extra
614+Section: mail
615+Origin: Ubuntu
616+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
617+Original-Maintainer: Brian May <bam@debian.org>
618+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
619+Installed-Size: 2792
620+Provides: amavis
621+Pre-Depends: init-system-helpers (>= 1.54~)
622+Depends: adduser (>= 3.34), debconf | debconf-2.0, file, libarchive-tar-perl, libarchive-zip-perl (>= 1.14), libberkeleydb-perl, libconvert-tnef-perl (>= 0.06), libconvert-uulib-perl (>= 1.0.5), libdigest-md5-perl, libio-stringy-perl, libmail-dkim-perl, libmailtools-perl (>= 1.58), libmime-base64-perl, libmime-tools-perl, libnet-libidn-perl, libnet-server-perl, libtime-hires-perl, libunix-syslog-perl, libnet-snmp-perl, pax, perl (>= 5.10.1) | libcompress-raw-zlib-perl (>= 2.017), lsb-base (>= 3.0-6), perl:any
623+Recommends: libnet-patricia-perl
624+Suggests: apt-listchanges (>= 2.35), arj, cabextract, clamav, clamav-daemon, cpio, dspam, lhasa, libauthen-sasl-perl, libdbi-perl (>= 1.43), libjson-perl, liblwp-protocol-https-perl, libmail-dkim-perl (>= 0.31), libnet-ldap-perl (>= 1:0.32), libnet-ssleay-perl, libsnmp-perl, libwww-perl, libzeromq-perl, lzop, nomarch, p7zip, rpm, spamassassin (>= 3.1.0a), unrar, altermime, ripole
625+Conflicts: amavis, logcheck (<= 1.2.62)
626+Replaces: amavis
627+Filename: pool/main/a/amavisd-new/amavisd-new_2.12.2-1.1ubuntu1_all.deb
628+Size: 628978
629+MD5sum: f43722c2b993eac39b5444455533cb09
630+SHA1: bf0024358668a3de056451acb5289feb801ff4e3
631+SHA256: a98c8b5f5de6552fe72b5e85f33364ae6229283e3d204feb472f18141b4c9d7f
632+SHA512: c5556ccf008aa54f07b02daf7bb00acd8b927ce739f173f25fea2cdcb752df023d5d8169d0bab2f97bf5497a113c55e7c2b81653818fcc5f69d758b52e6eff12
633+Homepage: https://www.ijs.si/software/amavisd/
634+Description: Interface between MTA and virus scanner/content filters
635+Description-md5: d95fd9c270e69763b2674a7c7629b731
636+
637+Package: amd64-microcode
638+Architecture: amd64
639+Version: 3.20220411.1ubuntu3
640+Priority: extra
641+Section: admin
642+Origin: Ubuntu
643+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
644+Original-Maintainer: Henrique de Moraes Holschuh <hmh@debian.org>
645+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
646+Installed-Size: 253
647+Recommends: initramfs-tools (>= 0.113~) | dracut (>= 044) | tiny-initramfs
648+Breaks: intel-microcode (<< 2), linux-firmware (<< 20220819.git8413c63c-0ubuntu1~)
649+Replaces: linux-firmware (<< 20220819.git8413c63c-0ubuntu1~)
650+Filename: pool/main/a/amd64-microcode/amd64-microcode_3.20220411.1ubuntu3_amd64.deb
651+Size: 119966
652+MD5sum: 8a268a6bb3d865c986652b198e22117c
653+SHA1: 36739d091a86986d52b283527606151268edd478
654+SHA256: dae5f9bb42b03a05558a74696b00e1ad7f825c57f924b8f86af91fed6cfc87db
655+SHA512: 74206a0fe291db434fe440d0f5a3efe3e8a9d2a12f5533680243a7714eff4eafcf37a7b9581f92f8d7d83fbfe933f6212d352dd980afa1a122c87343d9313771
656+Description: Processor microcode firmware for AMD CPUs
657+Description-md5: 23fa6bfa66f5bae20d70af0ec3052425
658+
659+Package: anacron
660+Architecture: amd64
661+Version: 2.3-36ubuntu1
662+Priority: optional
663+Section: admin
664+Origin: Ubuntu
665+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
666+Original-Maintainer: Lance Lin <lq27267@gmail.com>
667+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
668+Installed-Size: 90
669+Depends: lsb-base, libc6 (>= 2.34)
670+Recommends: cron | cron-daemon
671+Suggests: default-mta | mail-transport-agent, rsyslog | system-log-daemon, powermgmt-base
672+Filename: pool/main/a/anacron/anacron_2.3-36ubuntu1_amd64.deb
673+Size: 26300
674+MD5sum: 939f51db5e794a93d1ddf30bff88266b
675+SHA1: 07b86d8daf227e15c358d059ec39ede3ff8d655f
676+SHA256: 035895bde55c7b87f07486c7f45437680607bedc0c8b6f0cbd0b8233c4c6302e
677+SHA512: 4dcc8cf1ee41368e3323710445323b9efd862830ae073104d1bce1a7825534e4edeea9def349abc3bfe2395142ad995ad658a2026828b913ed34c280f1c79047
678+Homepage: http://sourceforge.net/projects/anacron/
679+Description: cron-like program that doesn't go by time
680+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
681+Description-md5: cd9f07726e1ee3bc93fcfdb799520070
682+
683+Package: anope
684+Architecture: amd64
685+Version: 2.0.12-1
686+Priority: optional
687+Section: net
688+Origin: Ubuntu
689+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
690+Original-Maintainer: Dominic Hargreaves <dom@earth.li>
691+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
692+Installed-Size: 15316
693+Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3.1), libgnutls30 (>= 3.7.5), libldap2 (>= 2.6.2), libmysqlclient21 (>= 8.0.11), libpcre2-8-0 (>= 10.22), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 11), init-system-helpers (>= 1.51), lsb-base (>= 3.2-14)
694+Recommends: default-mta | mail-transport-agent
695+Breaks: ircd-hybrid (<< 8.2.23)
696+Filename: pool/main/a/anope/anope_2.0.12-1_amd64.deb
697+Size: 3086180
698+MD5sum: 690caef6a328a863523c54f31a1b0c5c
699+SHA1: 33e8c8772c3565744c8963e032df35de2810bd9b
700+SHA256: e467c8f02f3e3ace3773a21ad07bf38d0a36013b36426786fd7a04756abfb631
701+SHA512: e73f7889471ad481dbec642814692f7c12547383b4ba9da0b7430039e03cd5bd4fb1185d5760bafc0c143de4cb42b232fcb5c267b32fbd7659c3e744ed977edf
702+Homepage: http://www.anope.org/
703+Description: IRC Services designed for flexibility and ease of use
704+Description-md5: bb0a2350d2094f8bb9b48d9bfdddb1c0
705+
706+Package: aodh-api
707+Architecture: all
708+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
709+Priority: optional
710+Section: web
711+Source: aodh
712+Origin: Ubuntu
713+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
714+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
715+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
716+Installed-Size: 20
717+Depends: adduser, apache2 | httpd, libapache2-mod-wsgi-py3, lsb-base, python3-aodh (= 1:15.0.0+git2023011009.3a648043-0ubuntu1)
718+Filename: pool/main/a/aodh/aodh-api_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
719+Size: 2602
720+MD5sum: 5b16d87e3e94b02dbaaf35b6a92bae5d
721+SHA1: 194ea86720e5b309fc1c23fd1719bb7ff25d9f76
722+SHA256: 0a23770de250cae92956768b0a81b017235aa6dd183bed3dd7d35e2dce0e72aa
723+SHA512: 985f1582f29cf7134f6851d41f8c524f0a1c75694a269246550bd9338e7b1d9e3baa87882b502752550c5c6299b7457927fd405deaa6f116d3813a4e4ff42404
724+Homepage: https://opendev.org/openstack/aodh
725+Description: OpenStack Telemetry (Ceilometer) Alarming - API server
726+Description-md5: 6b8d05cc8a7eaa3240864a08b5d1cd55
727+
728+Package: aodh-common
729+Architecture: all
730+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
731+Priority: optional
732+Section: web
733+Source: aodh
734+Origin: Ubuntu
735+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
736+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
737+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
738+Installed-Size: 74
739+Depends: adduser, dpkg-dev
740+Filename: pool/main/a/aodh/aodh-common_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
741+Size: 17132
742+MD5sum: 2205c6fed31cda7907bdbbb8ccdd6dd8
743+SHA1: efbffcef67a0462b49886f6d968cbcfdd771abf4
744+SHA256: 39a32c2937c974aa7ab7c2a051a8e1d3057d345769532b7ae8e1c0b6793fbb94
745+SHA512: cdb595de4b523d9953453ae50159d56bbc9bdb7aba9cb3987cb90a2687e70a26b51afdc3a7d9171a4cff28556843685d123b5b37904674ee93619e20d451490b
746+Homepage: https://opendev.org/openstack/aodh
747+Description: OpenStack Telemetry (Ceilometer) Alarming - common files
748+Description-md5: 4d4a9638c22eafe95e8cdbfdae651022
749+
750+Package: aodh-doc
751+Architecture: all
752+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
753+Priority: optional
754+Section: doc
755+Source: aodh
756+Origin: Ubuntu
757+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
758+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
759+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
760+Installed-Size: 3082
761+Depends: libjs-sphinxdoc (>= 5.2)
762+Filename: pool/main/a/aodh/aodh-doc_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
763+Size: 964858
764+MD5sum: 589ac25b3828d55b4a0005b3ad6c565c
765+SHA1: 8d81bb90b79e3711fc6ee362fa19043870ded06c
766+SHA256: 91483e8affbf2fc76f6c21240a15596aec3b87c832a51875e05d53cfddc02348
767+SHA512: 139e26453609cabbcde19ebd96e3566d957544b46973a2cebdf302a4b4fafee0577cb889f5bcc858cfdb5488f46554f693c30c37197cf42c5315d78e1dbd3ea9
768+Homepage: https://opendev.org/openstack/aodh
769+Description: OpenStack efficient metering counters system - doc
770+Description-md5: 4ccc03ab50d461abc9243b8af3d07f6a
771+
772+Package: aodh-evaluator
773+Architecture: all
774+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
775+Priority: optional
776+Section: web
777+Source: aodh
778+Origin: Ubuntu
779+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
780+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
781+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
782+Installed-Size: 31
783+Depends: lsb-base, python3-aodh (= 1:15.0.0+git2023011009.3a648043-0ubuntu1)
784+Filename: pool/main/a/aodh/aodh-evaluator_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
785+Size: 5370
786+MD5sum: 1a786e1dc6deb9b13d45a71d2d633208
787+SHA1: 1f6b7d617ff8a44a76c036991c13e85cf335bf1e
788+SHA256: 765385eb66ae4877951478e6ff5244617d7b8d732e2f860a7d55081c29ff8b85
789+SHA512: cfb765f530df0bba45c07b82ae676976778ee5c9a9f2c9503374c9f6fadde17719baddc5ebb9629214dad56fa052504c4141cc97a495f494fa58afb39d500bcf
790+Homepage: https://opendev.org/openstack/aodh
791+Description: OpenStack Telemetry (Ceilometer) Alarming - alarm evaluator
792+Description-md5: fe4c736374d97e3e64811d6cf36d5251
793+
794+Package: aodh-expirer
795+Architecture: all
796+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
797+Priority: optional
798+Section: web
799+Source: aodh
800+Origin: Ubuntu
801+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
802+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
803+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
804+Installed-Size: 31
805+Depends: lsb-base, python3-aodh (= 1:15.0.0+git2023011009.3a648043-0ubuntu1)
806+Filename: pool/main/a/aodh/aodh-expirer_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
807+Size: 5416
808+MD5sum: c771e4b3f9b6951caa74a9b8dcc910c2
809+SHA1: 593893995b4a0434470ac09ac76d81817c0cc8a7
810+SHA256: 64ee72cbdb88cd8174542eb998c3a8eaa197bf199c358980c190b1dc878f666a
811+SHA512: 40592113f3a1625bc27e31e1e7a7d6a30281ce56201d0a002d58eebc00372aa5d54cd75d5d3e01cffedb02a49528ef3f16b38300bf215f518aabc7325c1ad707
812+Homepage: https://opendev.org/openstack/aodh
813+Description: OpenStack Telemetry (Ceilometer) Alarming - expirer
814+Description-md5: 51f8b5079e2ff8324ac5cb238d635e6d
815+
816+Package: aodh-listener
817+Architecture: all
818+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
819+Priority: optional
820+Section: web
821+Source: aodh
822+Origin: Ubuntu
823+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
824+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
825+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
826+Installed-Size: 31
827+Depends: lsb-base, python3-aodh (= 1:15.0.0+git2023011009.3a648043-0ubuntu1)
828+Filename: pool/main/a/aodh/aodh-listener_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
829+Size: 5378
830+MD5sum: e3b4cd15c9d007016a8fd319216260d6
831+SHA1: f6f684a37ff5b476881dd817ccbf690e9755d26e
832+SHA256: 7e3bb5f6cc55f6318046474d3581a34772a6b133679ce29451ea6e6bdfcde659
833+SHA512: 69d4e252eacc4fef2f2e8c6afa06b02b0c8833f4ee839fc51a8d4e961b5a6ca4c4eb0ffc6e0127b831b2383e96e63f3f17ae72fc0239fd2263e93ecef5bc7fb7
834+Homepage: https://opendev.org/openstack/aodh
835+Description: OpenStack Telemetry (Ceilometer) Alarming - listener
836+Description-md5: 87e1470b816f8799b76e76049bd8f4ed
837+
838+Package: aodh-notifier
839+Architecture: all
840+Version: 1:15.0.0+git2023011009.3a648043-0ubuntu1
841+Priority: optional
842+Section: web
843+Source: aodh
844+Origin: Ubuntu
845+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
846+Original-Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
847+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
848+Installed-Size: 31
849+Depends: lsb-base, python3-aodh (= 1:15.0.0+git2023011009.3a648043-0ubuntu1)
850+Filename: pool/main/a/aodh/aodh-notifier_15.0.0+git2023011009.3a648043-0ubuntu1_all.deb
851+Size: 5356
852+MD5sum: 10cdc054ea31411d1ab7c20622b3bd9d
853+SHA1: 87b0ad0ab042bd23c3b891e432b0d29ecd6bd8f0
854+SHA256: b153f90306cc8c97b9e148432c618485e8334868af4858de7f678d17e8605dc8
855+SHA512: 5f8cc5fcbde79bc9ec627d40cda0a241e15f5c3ef37d383b7ab5c903e111072c844b9cb227e09180d5ecea8e3ef18f557f76fefbc35eb1f5328739b9f2e52d5b
856+Homepage: https://opendev.org/openstack/aodh
857+Description: OpenStack Telemetry (Ceilometer) Alarming - alarm notifier
858+Description-md5: 208a8b4aba2f6446389952d8bdf9281e
859+
860+Package: apache2
861+Architecture: amd64
862+Version: 2.4.55-1ubuntu1
863+Priority: optional
864+Section: web
865+Origin: Ubuntu
866+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
867+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
868+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
869+Installed-Size: 461
870+Provides: httpd, httpd-cgi
871+Pre-Depends: init-system-helpers (>= 1.54~)
872+Depends: apache2-bin (= 2.4.55-1ubuntu1), apache2-data (= 2.4.55-1ubuntu1), apache2-utils (= 2.4.55-1ubuntu1), lsb-base, media-types, perl:any, procps
873+Recommends: ssl-cert
874+Suggests: apache2-doc, apache2-suexec-pristine | apache2-suexec-custom, www-browser, ufw
875+Filename: pool/main/a/apache2/apache2_2.4.55-1ubuntu1_amd64.deb
876+Size: 96994
877+MD5sum: 81d9f1e8602e4e8e6e336dd66412ac22
878+SHA1: 53ed5af00033dee7aced401e4eca4b4358069ca1
879+SHA256: 2dbe2c862e2c3501bfcef8f22c6ebb486df9992a435d4336bd394883753c5ee4
880+SHA512: 902727867a4864ec603b29a0fb502a6268a1759c805582ec45ad28ca801e91bf6bfba0765bae618655cf100a2d548814db49c80f4b377579c4c5efae7fecca88
881+Homepage: https://httpd.apache.org/
882+Description: Apache HTTP Server
883+Task: lamp-server
884+Description-md5: d02426bc360345e5acd45367716dc35c
885+
886+Package: apache2-bin
887+Architecture: amd64
888+Version: 2.4.55-1ubuntu1
889+Priority: optional
890+Section: httpd
891+Source: apache2
892+Origin: Ubuntu
893+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
894+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
895+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
896+Installed-Size: 5020
897+Provides: apache2-api-20120211, apache2-api-20120211-openssl1.1
898+Depends: perl:any, libapr1 (>= 1.7.0), libaprutil1 (>= 1.6.0), libaprutil1-dbd-sqlite3 | libaprutil1-dbd-mysql | libaprutil1-dbd-odbc | libaprutil1-dbd-pgsql | libaprutil1-dbd-freetds, libaprutil1-ldap, libbrotli1 (>= 0.6.0), libc6 (>= 2.36), libcrypt1 (>= 1:4.1.0), libcurl4 (>= 7.28.0), libjansson4 (>= 2.14), libldap2 (>= 2.6.2), liblua5.3-0, libnghttp2-14 (>= 1.50.0), libpcre2-8-0 (>= 10.22), libssl3 (>= 3.0.0), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4)
899+Suggests: apache2-doc, apache2-suexec-pristine | apache2-suexec-custom, www-browser
900+Filename: pool/main/a/apache2/apache2-bin_2.4.55-1ubuntu1_amd64.deb
901+Size: 1333214
902+MD5sum: 0900580b4f6e9fb68913f76b53dd80b0
903+SHA1: e0305a544981fad98054499e501a7cf4f512e569
904+SHA256: 0248f4ff4ce228699f8de7d669424e607b6ad825c629a02391d8dccc96a02707
905+SHA512: 50d8bd9efa5f7919e24e8ffd77aa225d3eadd60993913f16f11af07dd712c98997176b81def2e21ea4f776ac88854014fb0b4d12f355f035a86d52ee9e04ad07
906+Homepage: https://httpd.apache.org/
907+Description: Apache HTTP Server (modules and other binary files)
908+Task: lamp-server, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi
909+Description-md5: 37901ca6bbb9305b61d0920ecc08204f
910+
911+Package: apache2-data
912+Architecture: all
913+Version: 2.4.55-1ubuntu1
914+Multi-Arch: foreign
915+Priority: optional
916+Section: httpd
917+Source: apache2
918+Origin: Ubuntu
919+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
920+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
921+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
922+Installed-Size: 857
923+Filename: pool/main/a/apache2/apache2-data_2.4.55-1ubuntu1_all.deb
924+Size: 163258
925+MD5sum: 059aed39773f37c5a49063391b5f51ae
926+SHA1: 8d6fe4567089f7795db1b83f6df93dd2f0f7d231
927+SHA256: c8cb9b9ee0c2a3502426372b22d99316471b77b55b8637dc3758fabd964884c2
928+SHA512: 47dd999dd858779e7944a4b93009ea779268108cba26d921fe904bf9fca9fe87b176d4632804dcd60855d5897c2b31c32ad5a1cfb9722ed66c76d66213dc0fca
929+Homepage: https://httpd.apache.org/
930+Description: Apache HTTP Server (common files)
931+Task: lamp-server
932+Description-md5: 9f2fab36019a61312dec627d1cd80365
933+
934+Package: apache2-dev
935+Architecture: amd64
936+Version: 2.4.55-1ubuntu1
937+Priority: optional
938+Section: httpd
939+Source: apache2
940+Origin: Ubuntu
941+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
942+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
943+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
944+Installed-Size: 987
945+Provides: dh-apache2
946+Depends: debhelper (>= 10), libapr1-dev, libaprutil1-dev, libpcre2-dev, openssl, perl:any
947+Filename: pool/main/a/apache2/apache2-dev_2.4.55-1ubuntu1_amd64.deb
948+Size: 191264
949+MD5sum: 4201f84444b7f65446e778724e07c744
950+SHA1: e9cad32d30e2404d442b10f4bf9ebd2ed6e8c9ac
951+SHA256: 795f088615564f4dbd96a16df7b0b95c89a2de3031690751e9e584f357c7d413
952+SHA512: 36fe4c5e183e6f809c9e7e133eae48f7ca08e2aa40a388074eae9cce2863bb09b9cfdab17b587613425a6bba33faa7a78b6b4a02758268a7235ce0e661d4927f
953+Homepage: https://httpd.apache.org/
954+Description: Apache HTTP Server (development headers)
955+Description-md5: 8ba6f3b272c39cc7a08a802594285f02
956+
957+Package: apache2-doc
958+Architecture: all
959+Version: 2.4.55-1ubuntu1
960+Priority: optional
961+Section: doc
962+Source: apache2
963+Origin: Ubuntu
964+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
965+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
966+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
967+Installed-Size: 25017
968+Recommends: apache2
969+Filename: pool/main/a/apache2/apache2-doc_2.4.55-1ubuntu1_all.deb
970+Size: 3879264
971+MD5sum: 6c8fe83190dc9fbbf0f640997dd0f7f8
972+SHA1: e4bb9cc61074b00e3bf9fe1326b6bb5c6e6332a8
973+SHA256: 4e33a56028fb80e6d14ba6e00322882f45fb76eb9a63264b7e9b6faf23d2b0be
974+SHA512: 42bc0077217c5483b30da952861d3f68090aca066db02ee928100aa9fba3d0234cfd4c30429f52fcf3fff9bc5a914c5a92f215435896cd84265160e92072ab2b
975+Homepage: https://httpd.apache.org/
976+Description: Apache HTTP Server (on-site documentation)
977+Description-md5: 04f8562fb3fd21e5886e40af9aeb7b7d
978+
979+Package: apache2-ssl-dev
980+Architecture: amd64
981+Version: 2.4.55-1ubuntu1
982+Multi-Arch: same
983+Priority: optional
984+Section: httpd
985+Source: apache2
986+Origin: Ubuntu
987+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
988+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
989+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
990+Installed-Size: 13
991+Depends: apache2-dev (= 2.4.55-1ubuntu1), libssl-dev
992+Filename: pool/main/a/apache2/apache2-ssl-dev_2.4.55-1ubuntu1_amd64.deb
993+Size: 2988
994+MD5sum: 9d0a5dfcd62b870b1f3447f45225b472
995+SHA1: dce2e54ac6400b04809e5aea3d3d1c986069517c
996+SHA256: 1164c1004457de49d1e011b057d33c7a89dd5e921fd8ec320d2691c857ab6b7d
997+SHA512: 3bef92f5abb8249cb028b126b44872e1ff023e08ce7608e9a16303d566b6edf6aa972f0524f359bb73948eef54e65baa2d3df0127ed19c35047b25c36927e91a
998+Homepage: https://httpd.apache.org/
999+Description: Apache HTTP Server (mod_ssl development headers)
1000+Description-md5: 160d9bdafec462b08db62740b1eb83d2
1001+
1002+Package: apache2-utils
1003+Architecture: amd64
1004+Version: 2.4.55-1ubuntu1
1005+Multi-Arch: foreign
1006+Priority: optional
1007+Section: net
1008+Source: apache2
1009+Origin: Ubuntu
1010+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1011+Original-Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
1012+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1013+Installed-Size: 321
1014+Depends: libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.5.0), libc6 (>= 2.34), libcrypt1 (>= 1:4.1.0), libssl3 (>= 3.0.0)
1015+Filename: pool/main/a/apache2/apache2-utils_2.4.55-1ubuntu1_amd64.deb
1016+Size: 87566
1017+MD5sum: 24b07bda726d552b21600c8441b1bfc7
1018+SHA1: be24068d9e30c73cc04a223382f86336f55e8fc2
1019+SHA256: 6d0647b2bd036ab41562b59eb88d40c081b0c325d90972dd4819a23b7fe70c1b
1020+SHA512: 3b46ab7cc62cef6d5263f182e904d5fdf364cfd6b32f18dc85a350dab9a198d4d4a73a03437792099db4c3f9caeab71351657b1ae6717a53d1a6a941b0c31595
1021+Homepage: https://httpd.apache.org/
1022+Description: Apache HTTP Server (utility programs for web servers)
1023+Task: lamp-server
1024+Description-md5: f1e2440381fa90571f125990da6a52fc
1025+
1026+Package: apg
1027+Architecture: amd64
1028+Version: 2.2.3.dfsg.1-5build2
1029+Priority: optional
1030+Section: admin
1031+Origin: Ubuntu
1032+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1033+Original-Maintainer: Marc Haber <mh+debian-packages@zugschlus.de>
1034+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1035+Installed-Size: 114
1036+Depends: libc6 (>= 2.34), libcrypt1 (>= 1:4.1.0)
1037+Filename: pool/main/a/apg/apg_2.2.3.dfsg.1-5build2_amd64.deb
1038+Size: 41312
1039+MD5sum: 5e60fd9756c3f7adef62f98d3afde370
1040+SHA1: cf8a3529578e87c9f1cb1de78ce5dffb5d7ffe35
1041+SHA256: 92b20f05824ffb591d0f79dbf0b55650a356cab37ec605a50db33ed00aa9c0e1
1042+SHA512: dda69f17058d8475210ab44acad9a509f27c16cc11a025b363a07dd23120a45979e9a1ab7430234f5fedc80c5c0f2d2cba99b4f0d9baae4c02187b4d3e7368e8
1043+Homepage: http://www.adel.nursat.kz/apg/
1044+Description: Automated Password Generator - Standalone version
1045+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1046+Description-md5: d919baea3108b57df48112b188dca442
1047+
1048+Package: apparmor
1049+Architecture: amd64
1050+Version: 3.0.8-1ubuntu1
1051+Priority: standard
1052+Section: admin
1053+Origin: Ubuntu
1054+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1055+Original-Maintainer: Debian AppArmor Team <pkg-apparmor-team@lists.alioth.debian.org>
1056+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1057+Installed-Size: 2516
1058+Depends: debconf, lsb-base, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.36)
1059+Suggests: apparmor-profiles-extra, apparmor-utils
1060+Breaks: apparmor-profiles-extra (<< 1.21), fcitx-data (<< 1:4.2.9.1-1ubuntu2), snapd (<< 2.44.3+20.04~)
1061+Replaces: fcitx-data (<< 1:4.2.9.1-1ubuntu2)
1062+Filename: pool/main/a/apparmor/apparmor_3.0.8-1ubuntu1_amd64.deb
1063+Size: 577454
1064+MD5sum: 63fe931cd2b961be6bf37cc2d85c8e17
1065+SHA1: 43a6ecab8a85ad7769e62cf0001393c0183a7246
1066+SHA256: 61d360ea427e1ccab6c399e3ea41a618d3e6bf38b164a245a9cb8ba851892448
1067+SHA512: 1bfafd591a4553d24be55cbee672caaa2144ebd6fef7a629fdf1029427e415f0454703639a7d53b6184696fb0a4fabac5601880b6e9bb5d9bc77ec8e53faeba4
1068+Homepage: https://apparmor.net/
1069+Description: user-space parser utility for AppArmor
1070+Task: standard, server-minimal, ubuntu-wsl, edubuntu-wsl
1071+Description-md5: 9fdfbb456943ca7bfea9e5fd580a5b7f
1072+
1073+Package: apparmor-profiles
1074+Architecture: all
1075+Version: 3.0.8-1ubuntu1
1076+Priority: extra
1077+Section: admin
1078+Source: apparmor
1079+Origin: Ubuntu
1080+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1081+Original-Maintainer: Debian AppArmor Team <pkg-apparmor-team@lists.alioth.debian.org>
1082+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1083+Installed-Size: 308
1084+Depends: apparmor
1085+Filename: pool/main/a/apparmor/apparmor-profiles_3.0.8-1ubuntu1_all.deb
1086+Size: 32880
1087+MD5sum: a0893e0793a2766032b20666db81d2c3
1088+SHA1: 08b0999ed649b243cfb7e1a2be80bc387a0182ea
1089+SHA256: 68a3f366b21464dadf3777dd1a9bbb22ed6beb019d40fd97750d00910cb8897a
1090+SHA512: a7f294edb55a61f06226da604239c429fabb83072e81e051744a4dc69c0ae0facfa551872f15c41305c691ff6d65a2df5b0770ee8803dc09e68e41c36a652fac
1091+Homepage: https://apparmor.net/
1092+Description: experimental profiles for AppArmor security policies
1093+Description-md5: 78f6c983f4960b57c9594cf926fa3202
1094+
1095+Package: apparmor-utils
1096+Architecture: all
1097+Version: 3.0.8-1ubuntu1
1098+Priority: optional
1099+Section: admin
1100+Source: apparmor
1101+Origin: Ubuntu
1102+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1103+Original-Maintainer: Debian AppArmor Team <pkg-apparmor-team@lists.alioth.debian.org>
1104+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1105+Installed-Size: 340
1106+Provides: apparmor-easyprof
1107+Depends: apparmor, python3-apparmor (= 3.0.8-1ubuntu1), python3:any
1108+Suggests: vim-addon-manager
1109+Breaks: apparmor-easyprof (<< 3.0.3-4)
1110+Replaces: apparmor-easyprof (<< 3.0.3-4)
1111+Filename: pool/main/a/apparmor/apparmor-utils_3.0.8-1ubuntu1_all.deb
1112+Size: 58278
1113+MD5sum: c2f3e189d14868dc50938df164f832e2
1114+SHA1: bb37d01730fec968a462131c110d7dac46dc4389
1115+SHA256: 62c690e2b87f39d6053d516094067047a58092fe78785083006d3c24ea6b7ecd
1116+SHA512: c5a7ce94f4780f0347566a63097c62191565dd2a72b14832ae711674ec351bcecdd34a43834f60296549491477fce258a9088ad4205478f5fa6cd3bc120a8f6c
1117+Homepage: https://apparmor.net/
1118+Description: utilities for controlling AppArmor
1119+Description-md5: 71fe4226310f7a4cda967aa2477bddb8
1120+
1121+Package: apport
1122+Architecture: all
1123+Version: 2.26.0-0ubuntu2
1124+Priority: optional
1125+Section: utils
1126+Origin: Ubuntu
1127+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1128+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1129+Installed-Size: 652
1130+Provides: core-dump-handler
1131+Pre-Depends: init-system-helpers (>= 1.54~)
1132+Depends: gir1.2-glib-2.0 (>= 1.29.17), python3, python3-apport (>= 2.26.0-0ubuntu2), python3-gi, sensible-utils
1133+Recommends: apport-symptoms, python3-systemd
1134+Suggests: apport-gtk | apport-kde, pkexec, polkitd
1135+Conflicts: core-dump-handler
1136+Breaks: python-apport (<< 2.2-0ubuntu1)
1137+Replaces: core-dump-handler, python-apport (<< 2.2-0ubuntu1)
1138+Filename: pool/main/a/apport/apport_2.26.0-0ubuntu2_all.deb
1139+Size: 82100
1140+MD5sum: d2406c2c6f8100070836f525ea02f294
1141+SHA1: 4e275c27a795817106e77397057dfe2fca6112c3
1142+SHA256: 32144459ee3053cc75e3ba0e7da493a91fb36b8198d4bed7a2c609b032d36a8c
1143+SHA512: 9cff869ff5008e42ca05b22ea9f66042d8ad1d55c70b7a4e6081b8be4f6bf0602445c75dfd447ab8ec695f965fc9338187a3ff4682075990e4ca98b07f73ce64
1144+Homepage: https://wiki.ubuntu.com/Apport
1145+Description: automatically generate crash reports for debugging
1146+Task: server-minimal, ubuntu-desktop-minimal, ubuntu-desktop, cloud-image, ubuntu-desktop-raspi, ubuntu-wsl, server, ubuntu-server-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi, edubuntu-wsl, edubuntu-server-raspi
1147+Description-md5: c04626471654f9246cf5e28b560d262e
1148+
1149+Package: apport-gtk
1150+Architecture: all
1151+Version: 2.26.0-0ubuntu2
1152+Priority: optional
1153+Section: gnome
1154+Source: apport
1155+Origin: Ubuntu
1156+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1157+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1158+Installed-Size: 75
1159+Depends: apport (>= 0.41), gir1.2-gtk-3.0 (>= 3.1.90), gir1.2-wnck-3.0, gnome-terminal | x-terminal-emulator, procps, python3, python3-apport (>= 2.26.0-0ubuntu2), python3-gi, whoopsie-preferences
1160+Recommends: gdb | gdb-minimal, update-notifier
1161+Filename: pool/main/a/apport/apport-gtk_2.26.0-0ubuntu2_all.deb
1162+Size: 9810
1163+MD5sum: ce7824a92f335217077a46408b58f718
1164+SHA1: 18cee2a9e38ddcb04c91238ddc7ad4d2eb99fbce
1165+SHA256: 7ae13da268a6cf51c402c8c7f90f06481ed47698f78d28897729be22718ac222
1166+SHA512: 457923ed24717e1ad497ef784318a5f0a3fd3657cdbbdead55d081299ead39db78b0e6910e4285c96538f7b38e08389da67cd1a70406d75dbba035d7cdebad25
1167+Homepage: https://wiki.ubuntu.com/Apport
1168+Description: GTK+ frontend for the apport crash report system
1169+Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1170+Description-md5: 2f45e17d5bf22355d7921dba196ae6dd
1171+
1172+Package: apport-retrace
1173+Architecture: all
1174+Version: 2.26.0-0ubuntu2
1175+Priority: optional
1176+Section: devel
1177+Source: apport
1178+Origin: Ubuntu
1179+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1180+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1181+Installed-Size: 66
1182+Depends: apt, binutils, dpkg-dev, gdb, libc6-dbg | libc6-dbgsym | libc-dbg, python3, python3-apport (>= 2.26.0-0ubuntu2), python3-launchpadlib
1183+Suggests: gdb-multiarch
1184+Filename: pool/main/a/apport/apport-retrace_2.26.0-0ubuntu2_all.deb
1185+Size: 14096
1186+MD5sum: 424349ea40e6e35df825f84fd742934e
1187+SHA1: f7daa3cbf7673cdaf0cf64333a016f0ff6d81340
1188+SHA256: 1f96e2c34c164eb79abe320dbab93943be27965c98ec6451afd9a0e352511c14
1189+SHA512: 0baf9c6c2d2e804ac79dde6967e8dcaf8d9789f3b4cf059bef1f691426a3fbd1662f9ba7c99afa0f9be5832031d11cf09bb3517036d00fc9a1a862c23a776aa7
1190+Homepage: https://wiki.ubuntu.com/Apport
1191+Description: tools for reprocessing Apport crash reports
1192+Description-md5: 7608c287131a28c4611767ba61f02050
1193+
1194+Package: apport-symptoms
1195+Architecture: all
1196+Version: 0.24
1197+Priority: optional
1198+Section: utils
1199+Origin: Ubuntu
1200+Maintainer: Ubuntu Developers <ubuntu-motu@lists.ubuntu.com>
1201+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1202+Installed-Size: 61
1203+Recommends: apport
1204+Filename: pool/main/a/apport-symptoms/apport-symptoms_0.24_all.deb
1205+Size: 13532
1206+MD5sum: 6ae2996a63e19f5b2a9b66e502855ac9
1207+SHA1: b024d719eae2ca47567eb30fe419ff37c47bb30b
1208+SHA256: ba859cb315484a42eb27ab6461c51aef203438c59ee5c1185f08a6ee8be56256
1209+SHA512: 0b01b3522d507ed872dd1611d2dc33f8156a929ff8629a6d138046560304a22df82f883fde481249a2bc053c36d2b953a36415545992694d1c1953fb6965b4d7
1210+Homepage: https://wiki.ubuntu.com/Apport
1211+Description: symptom scripts for apport
1212+Task: ubuntu-desktop-minimal, ubuntu-desktop, cloud-image, ubuntu-desktop-raspi, ubuntu-wsl, server, ubuntu-server-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi, edubuntu-wsl, edubuntu-server-raspi
1213+Description-md5: 685dc189a71c0847d5bc525d477c0d11
1214+
1215+Package: appstream
1216+Architecture: amd64
1217+Version: 0.16.1-1
1218+Multi-Arch: foreign
1219+Priority: optional
1220+Section: admin
1221+Origin: Ubuntu
1222+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1223+Original-Maintainer: Matthias Klumpp <mak@debian.org>
1224+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1225+Installed-Size: 308
1226+Depends: shared-mime-info, libappstream4 (>= 0.16.0), libc6 (>= 2.34), libglib2.0-0 (>= 2.62)
1227+Suggests: apt-config-icons
1228+Filename: pool/main/a/appstream/appstream_0.16.1-1_amd64.deb
1229+Size: 65046
1230+MD5sum: a557d7b39af79823d8d168c6963c2c92
1231+SHA1: 8817deb75a303968fd46c86a9bb1b44b48d12ea9
1232+SHA256: c563d8a484ebdb2a9b8696a64b250be3420a5ab332a7cfb2245577d3de518b74
1233+SHA512: a755a15c3a69cc04a0e8e09de46de478c252691eda339bface2626cb2ab6301ca76a0867131cbc0e5c55bb9fcf372bd1f208e0802eecdc04e2b1924bce295481
1234+Homepage: https://www.freedesktop.org/wiki/Distributions/AppStream/
1235+Description: Software component metadata management
1236+Task: ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1237+Description-md5: 7cf2fff1862d6e9404e1ca39507a24b4
1238+
1239+Package: apt
1240+Architecture: amd64
1241+Version: 2.5.5
1242+Priority: important
1243+Section: admin
1244+Origin: Ubuntu
1245+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1246+Original-Maintainer: APT Development Team <deity@lists.debian.org>
1247+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1248+Installed-Size: 4084
1249+Provides: apt-transport-https (= 2.5.5)
1250+Depends: base-passwd (>= 3.6.1) | adduser, gpgv | gpgv2 | gpgv1, libapt-pkg6.0 (>= 2.5.5), ubuntu-keyring, libc6 (>= 2.34), libgcc-s1 (>= 3.3.1), libgnutls30 (>= 3.7.5), libseccomp2 (>= 2.4.2), libstdc++6 (>= 11), libsystemd0
1251+Recommends: ca-certificates
1252+Suggests: apt-doc, aptitude | synaptic | wajig, dpkg-dev (>= 1.17.2), gnupg | gnupg2 | gnupg1, powermgmt-base
1253+Breaks: apt-transport-https (<< 1.5~alpha4~), apt-utils (<< 1.3~exp2~), aptitude (<< 0.8.10)
1254+Replaces: apt-transport-https (<< 1.5~alpha4~), apt-utils (<< 1.3~exp2~)
1255+Filename: pool/main/a/apt/apt_2.5.5_amd64.deb
1256+Size: 1377746
1257+MD5sum: 3a1cf46b2a9c382e1bee2f2c6210d074
1258+SHA1: 5589ec67ec8aeeffaf1cd9d5f28be0c44d42efb4
1259+SHA256: 6e7e9893c2bcc2ce4f48a5534365dc4cc59e024407151709111dbfed9d6ab54f
1260+SHA512: 19b9dc0d32b77d6fdc085b584a4a05a88b26537aa98582d37c9e5a3a26a9420ee443bbd3fab291d8a15679f1bcd55033a49d5242b37d3dcd22c263722e9fb6f8
1261+Description: commandline package manager
1262+Task: minimal, server-minimal
1263+Description-md5: 9fb97a88cb7383934ef963352b53b4a7
1264+Build-Essential: yes
1265+
1266+Package: apt-config-icons
1267+Architecture: all
1268+Version: 0.16.1-1
1269+Multi-Arch: foreign
1270+Priority: optional
1271+Section: misc
1272+Source: appstream
1273+Origin: Ubuntu
1274+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1275+Original-Maintainer: Matthias Klumpp <mak@debian.org>
1276+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1277+Installed-Size: 22
1278+Depends: appstream
1279+Filename: pool/main/a/appstream/apt-config-icons_0.16.1-1_all.deb
1280+Size: 4328
1281+MD5sum: daf3cd3c04e1205f032adaf326d17172
1282+SHA1: a7cafcf0bcc744aeb94cbd8cf1ba04ecdcd074cd
1283+SHA256: adb382f1d75a96682ae56d4b4e00d9c37e8ea3d8a212af79dd859ab1b209f9ea
1284+SHA512: ce236229cc45feb5884254cd1033c2c8a504998b6473d0789c572d713355860529fc2fd0ae457d66f1642f037f058a057ed87c58897a6194d9e3175724ef9e9c
1285+Homepage: https://www.freedesktop.org/wiki/Distributions/AppStream/
1286+Description: APT configuration snippet to enable icon downloads
1287+Task: ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1288+Description-md5: 03510f8a8354e1f4deb8a2144b1bfccd
1289+
1290+Package: apt-config-icons-hidpi
1291+Architecture: all
1292+Version: 0.16.1-1
1293+Multi-Arch: foreign
1294+Priority: optional
1295+Section: misc
1296+Source: appstream
1297+Origin: Ubuntu
1298+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1299+Original-Maintainer: Matthias Klumpp <mak@debian.org>
1300+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1301+Installed-Size: 22
1302+Depends: apt-config-icons
1303+Filename: pool/main/a/appstream/apt-config-icons-hidpi_0.16.1-1_all.deb
1304+Size: 4252
1305+MD5sum: a2293cc189a72e968395804d27d2bf00
1306+SHA1: be8e8a52990ae16faf15501b45731e0b1390b227
1307+SHA256: 502d8a314448ed1500d00419e53ba9223559c38d76cbfd61e64973abb203c5dc
1308+SHA512: 3018f86ee6b1e81b2dd8510c00ff573989430b9583b2f33011ed2bf87286a16a9cd4a3796addc3bc13b04b758a57ae5acc641ba0a8fa7f01c1691778f4457b58
1309+Homepage: https://www.freedesktop.org/wiki/Distributions/AppStream/
1310+Description: APT configuration snippet to enable HiDPI icon downloads
1311+Task: ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1312+Description-md5: f4ec6f28950e637dfd5449cd51f99da6
1313+
1314+Package: apt-config-icons-large
1315+Architecture: all
1316+Version: 0.16.1-1
1317+Multi-Arch: foreign
1318+Priority: optional
1319+Section: misc
1320+Source: appstream
1321+Origin: Ubuntu
1322+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1323+Original-Maintainer: Matthias Klumpp <mak@debian.org>
1324+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1325+Installed-Size: 22
1326+Depends: apt-config-icons
1327+Filename: pool/main/a/appstream/apt-config-icons-large_0.16.1-1_all.deb
1328+Size: 4328
1329+MD5sum: 5f2b85cf045d4e56ea3f42826956fd20
1330+SHA1: 7494c0e4d8c409684bfbec0566fe132e44ef4a64
1331+SHA256: 269fbe7bc986b980eda132a70e6248487b86d2a3fcc38d9f801dcd861919f628
1332+SHA512: b6efd09862e5a748aa73873d19eb0deaa27913a2021cd807714dcdc2328aac5a0369a59ef9f36a4cb64a7ab0444c6a649bf42906cd4c653922d7639c72257495
1333+Homepage: https://www.freedesktop.org/wiki/Distributions/AppStream/
1334+Description: APT configuration snippet to enable large icon downloads
1335+Task: kubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop
1336+Description-md5: 312885bc524717b7027c2fe671b95722
1337+
1338+Package: apt-config-icons-large-hidpi
1339+Architecture: all
1340+Version: 0.16.1-1
1341+Multi-Arch: foreign
1342+Priority: optional
1343+Section: misc
1344+Source: appstream
1345+Origin: Ubuntu
1346+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1347+Original-Maintainer: Matthias Klumpp <mak@debian.org>
1348+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1349+Installed-Size: 22
1350+Depends: apt-config-icons-large
1351+Filename: pool/main/a/appstream/apt-config-icons-large-hidpi_0.16.1-1_all.deb
1352+Size: 4336
1353+MD5sum: 5df482680299b74888a0a1478caf4b61
1354+SHA1: b52047ff60eb7a56e9a71abe730ebfca8527e745
1355+SHA256: cfc52c397611017810a8ca9aee0b57481ab6bb2f9e558a348ce92518166dcf2f
1356+SHA512: 1179a27da3403fb6feef88eb1ea7d1596e7cfd84d5a93acbec198af9ca2a8296b8714692b6ecf86fb53ab3b97319c44c02a76051d5a5cc2ed1941b97cd035fa6
1357+Homepage: https://www.freedesktop.org/wiki/Distributions/AppStream/
1358+Description: APT configuration snippet to enable large HiDPI icon downloads
1359+Task: kubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop
1360+Description-md5: b7a62cf01b94c27d588655efba2acacb
1361+
1362+Package: apt-doc
1363+Architecture: all
1364+Version: 2.5.5
1365+Multi-Arch: foreign
1366+Priority: optional
1367+Section: doc
1368+Source: apt
1369+Origin: Ubuntu
1370+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1371+Original-Maintainer: APT Development Team <deity@lists.debian.org>
1372+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1373+Installed-Size: 794
1374+Filename: pool/main/a/apt/apt-doc_2.5.5_all.deb
1375+Size: 240112
1376+MD5sum: 927050c956a945ab5baab7cc1d6c4ffc
1377+SHA1: 899cdbfa26e4721cd4a2504edc5b7e87ba65d7d9
1378+SHA256: 4f3c23fb5507832b1ad5fa7642bd8f7d22a0211f831cbcecb7cb68b51d045de0
1379+SHA512: 95b9409fcc293f60ca0a0953c715ff6033ee50dc5d7db5f72e63c9090830bb43e658d1bc65871c996bc42369cfc5121c49cd54b8e4c04f0428d42cf61167b446
1380+Description: documentation for APT
1381+Description-md5: bc2b838ed28e60af95d78926380a3300
1382+
1383+Package: apt-listchanges
1384+Architecture: all
1385+Version: 3.24
1386+Priority: optional
1387+Section: utils
1388+Origin: Ubuntu
1389+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1390+Original-Maintainer: Debian QA Group <packages@qa.debian.org>
1391+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1392+Installed-Size: 416
1393+Depends: apt (>= 0.5.3), python3-apt (>= 0.7.93), python3-debconf, sensible-utils, ucf (>= 0.28), debconf (>= 0.5) | debconf-2.0, python3:any (>= 3.7~)
1394+Suggests: default-mta | mail-transport-agent, python3-gi, www-browser, x-terminal-emulator
1395+Filename: pool/main/a/apt-listchanges/apt-listchanges_3.24_all.deb
1396+Size: 85340
1397+MD5sum: ee12ed88b012f067ef853085b28dfd9a
1398+SHA1: ceeeafbcf9f8e4808e1cd39ca233cc64075a2fec
1399+SHA256: e52efcb34e56111a08a9617a795a23fcf627c6bb92dba86f8c1a8d6cf7f56f22
1400+SHA512: 8190daa83e3cec5a415ff173db9f673bd7d85a788305972e4cc1e18e1f6e40794ccf692d25159d3564b38ff0f99834284c519f0d033959f555e0a6e8e2fba0ec
1401+Description: package change history notification tool
1402+Description-md5: ff242d11e25a826706c61be7ebf92ad4
1403+
1404+Package: apt-utils
1405+Architecture: amd64
1406+Version: 2.5.5
1407+Priority: important
1408+Section: admin
1409+Source: apt
1410+Origin: Ubuntu
1411+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1412+Original-Maintainer: APT Development Team <deity@lists.debian.org>
1413+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1414+Installed-Size: 648
1415+Depends: apt (= 2.5.5), libapt-pkg6.0 (>= 2.5.5), libc6 (>= 2.34), libdb5.3, libgcc-s1 (>= 3.3.1), libstdc++6 (>= 11)
1416+Filename: pool/main/a/apt/apt-utils_2.5.5_amd64.deb
1417+Size: 207736
1418+MD5sum: 2afad1c5e4dd67ea34235f7a7c915e94
1419+SHA1: 22984740ce1ce0dfaeaddba2476e202fd5d4207c
1420+SHA256: 1e45b8daf68b600f26c72ea7fce01595a01f9bb4c40cd236c331d365387ee93a
1421+SHA512: 232184fb17b97b0c9e21033f0d27f0f8c0f51e28895799d389140b60b6063f97db8324a24d8013e59d69865ef1390cf8e5dd4e9e300c9ba6e1b451318ac092ab
1422+Description: package management related utility programs
1423+Task: minimal
1424+Description-md5: fa0295dc4e40dbbea6c84f614c570636
1425+
1426+Package: aptdaemon
1427+Architecture: all
1428+Version: 1.1.1+bzr982-0ubuntu42
1429+Priority: extra
1430+Section: admin
1431+Origin: Ubuntu
1432+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1433+Original-Maintainer: Julian Andres Klode <jak@debian.org>
1434+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1435+Installed-Size: 156
1436+Depends: python3:any (>= 3.2~), gir1.2-glib-2.0, python3-aptdaemon (= 1.1.1+bzr982-0ubuntu42), python3-gi, policykit-1
1437+Breaks: python3-aptdaemon.pkcompat, software-center (<< 1.1.21)
1438+Replaces: python3-aptdaemon.pkcompat
1439+Filename: pool/main/a/aptdaemon/aptdaemon_1.1.1+bzr982-0ubuntu42_all.deb
1440+Size: 12624
1441+MD5sum: a8d811e7f072b2f1ab50222439d3773d
1442+SHA1: df08a429f9d9ab799a1ac08477d518cb493567d2
1443+SHA256: 70e4b847e30fc1f2887c8d4e8e16e373b00a0c35bc3095d0cfbaa2c9c7eb59f2
1444+SHA512: e0c56561ed24410b96dc138a96c979b113a043ffcaec6d1dddc3707e6c136aa43cd8400cdc82ed9660ee296656743a449584a6fa3d3b27447050a1591ea97e03
1445+Homepage: https://launchpad.net/aptdaemon
1446+Description: transaction based package management service
1447+Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, lubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1448+Description-md5: 5ed476246aefb12d0c1b0deb4818778b
1449+
1450+Package: aptdaemon-data
1451+Architecture: all
1452+Version: 1.1.1+bzr982-0ubuntu42
1453+Priority: extra
1454+Section: admin
1455+Source: aptdaemon
1456+Origin: Ubuntu
1457+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1458+Original-Maintainer: Julian Andres Klode <jak@debian.org>
1459+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1460+Installed-Size: 228
1461+Replaces: python-aptdaemon-gtk (<= 0.41+bzr580-0ubuntu1)
1462+Filename: pool/main/a/aptdaemon/aptdaemon-data_1.1.1+bzr982-0ubuntu42_all.deb
1463+Size: 158968
1464+MD5sum: a35f81b578ee0684bc2ddee816305c66
1465+SHA1: 25b63dbf80c771a435d675d620930ebfbd75e8e2
1466+SHA256: 170c5dc3d4d6e2f9ea3da1696ebf8602a291e32b658c21186bdc862bdd98f04b
1467+SHA512: aae1321c1b5e163a7ffa11b57555be92c41af904edeb86fe4d2671410b69a286801514087b6df3d54c277b65dc4c1ed98d9f8a8a58c5bb502872152aa8d4166c
1468+Homepage: https://launchpad.net/aptdaemon
1469+Description: data files for clients
1470+Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1471+Description-md5: 3985974f0d80501bf717f4eee701d6e5
1472+
1473+Package: aspell
1474+Architecture: amd64
1475+Version: 0.60.8-4build1
1476+Multi-Arch: foreign
1477+Priority: optional
1478+Section: text
1479+Origin: Ubuntu
1480+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1481+Original-Maintainer: Agustin Martin Domingo <agmartin@debian.org>
1482+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1483+Installed-Size: 344
1484+Provides: aspell-bin
1485+Depends: libaspell15 (= 0.60.8-4build1), libc6 (>= 2.34), libncursesw6 (>= 6), libstdc++6 (>= 5), libtinfo6 (>= 6), dictionaries-common
1486+Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary
1487+Suggests: aspell-doc, spellutils
1488+Breaks: aspell-bin (<< 0.60.3-2)
1489+Replaces: aspell-bin (<< 0.60.3-2)
1490+Filename: pool/main/a/aspell/aspell_0.60.8-4build1_amd64.deb
1491+Size: 87722
1492+MD5sum: 286bcb5cd1b8d3e02a8bf391929ce632
1493+SHA1: a27c6bf452db35463feedbbfd83b6de38b861795
1494+SHA256: 324dc61f6f80eca1e97a83353edd6310fd675a55043b1445a2775f4429411ece
1495+SHA512: b3c55cd8867fe7e63ed569055547d6db6ff92dcb72740f7ac49317c4263e46c0c4d86834dddca5986e8ea8bce94589e8e95f5e3372c16ba2896b9ae00ad9ac8b
1496+Homepage: http://aspell.net/
1497+Description: GNU Aspell spell-checker
1498+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
1499+Description-md5: 21dcab5448cba7f61ba8df4ace46f1af
1500+
1501+Package: aspell-doc
1502+Architecture: all
1503+Version: 0.60.8-4build1
1504+Multi-Arch: foreign
1505+Priority: optional
1506+Section: doc
1507+Source: aspell
1508+Origin: Ubuntu
1509+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1510+Original-Maintainer: Agustin Martin Domingo <agmartin@debian.org>
1511+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1512+Installed-Size: 926
1513+Suggests: aspell
1514+Filename: pool/main/a/aspell/aspell-doc_0.60.8-4build1_all.deb
1515+Size: 196436
1516+MD5sum: c36f5bfe4b63ddf470186f9b2691b018
1517+SHA1: c51fa09ef100e556682782b7addff75a34634a89
1518+SHA256: ec9bf9c05e202e45b1082d2b3ac0e8976ae8ea169b1ce0d3185c00159edd7fdf
1519+SHA512: 278aa4bde1bb9f9bc97d13772fc89f6d106eadce0c9becb1a7af94d48ccce351b30bcd187bc3bcd21247620956624227ff258d4dc9f1c028a3a21170dc43cd4e
1520+Homepage: http://aspell.net/
1521+Description: Documentation for GNU Aspell spell-checker
1522+Description-md5: 33c68b861d6f2e2ef1b189909b98b741
1523+
1524+Package: aspell-en
1525+Architecture: all
1526+Version: 2018.04.16-0-1
1527+Multi-Arch: foreign
1528+Priority: optional
1529+Section: text
1530+Origin: Ubuntu
1531+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1532+Original-Maintainer: Brian Nelson <pyro@debian.org>
1533+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1534+Installed-Size: 424
1535+Provides: aspell-dictionary
1536+Depends: aspell (>= 0.60.3-2), dictionaries-common (>= 0.49.2)
1537+Filename: pool/main/a/aspell-en/aspell-en_2018.04.16-0-1_all.deb
1538+Size: 298756
1539+MD5sum: fe7725f8689fdbafc1df8c8dcf9323d9
1540+SHA1: 1dbc1af78beb4e9966384912d1456f41fc904365
1541+SHA256: 1166a27776c25bf2fd0936ddf9432d12dae0c66bb2d8b3d31693d49d03ccb206
1542+SHA512: 3b73056289ef945b3c19544a2080e06c4d425bcda9cf1ae6cac3d5c064432703acad919234c5a74d07d9b9c9c0e7714dfc057f14ac16e8ef590d8f4712bb0985
1543+Homepage: http://aspell.net/
1544+Description: English dictionary for GNU Aspell
1545+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
1546+Description-md5: c94b13744f65f4d57e191f183fc7c9c9
1547+
1548+Package: at-spi2-common
1549+Architecture: all
1550+Version: 2.46.0-5
1551+Multi-Arch: foreign
1552+Priority: optional
1553+Section: misc
1554+Source: at-spi2-core
1555+Origin: Ubuntu
1556+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1557+Original-Maintainer: Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net>
1558+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1559+Installed-Size: 48
1560+Breaks: at-spi2-core (<< 2.46.0-2~)
1561+Replaces: at-spi2-core (<< 2.46.0-2~)
1562+Filename: pool/main/a/at-spi2-core/at-spi2-common_2.46.0-5_all.deb
1563+Size: 4512
1564+MD5sum: f9b55d32f7a22789b0d4f336f756bae1
1565+SHA1: a289b36d514fe839f9b321f1d8440807f3011121
1566+SHA256: 2a1c5ac68e241fcdf52c20a66c9b860b54c01040501549b27b2fb284aaf182ba
1567+SHA512: 9f707d5dc742be277a0f710227d7e6d9e4fd86d7c7d3c3d27d273156dbba5433b81e4d180531f15a8e078394cc9c2294826166e6191b0c4759c2a3932732dba4
1568+Homepage: https://wiki.gnome.org/Accessibility
1569+Description: Assistive Technology Service Provider Interface (common files)
1570+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, ubuntu-wsl, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi, edubuntu-wsl
1571+Description-md5: e21917f70a6f82bafaa4d2a3b1113b70
1572+
1573+Package: at-spi2-core
1574+Architecture: amd64
1575+Version: 2.46.0-5
1576+Multi-Arch: foreign
1577+Priority: optional
1578+Section: misc
1579+Origin: Ubuntu
1580+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1581+Original-Maintainer: Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net>
1582+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1583+Installed-Size: 175
1584+Depends: libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.34), libdbus-1-3 (>= 1.9.14), libglib2.0-0 (>= 2.67.4), libsystemd0, libx11-6, libxtst6, at-spi2-common, gsettings-desktop-schemas
1585+Filename: pool/main/a/at-spi2-core/at-spi2-core_2.46.0-5_amd64.deb
1586+Size: 56052
1587+MD5sum: 9f1d4201e6943aef167d9855f9cdcb39
1588+SHA1: 86ef6d8e05a25e99a2a2cd341b6fb88bc03ee792
1589+SHA256: d3c936474cbad298a898875375528ab4608240a80ea78e1a99418beda901dbb9
1590+SHA512: 5e327c3e7efc61042396421f1f572911688646ffa6efa2f918ec73c37cbc2d5d5a4017c77e0a24432e9e12616779ab8324f14a9f83bc82542a20b93b24491a37
1591+Homepage: https://wiki.gnome.org/Accessibility
1592+Description: Assistive Technology Service Provider Interface (D-Bus core)
1593+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, ubuntu-wsl, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi, edubuntu-wsl
1594+Description-md5: 625eaa824a47345f05012c25a5d0aca5
1595+
1596+Package: at-spi2-doc
1597+Architecture: all
1598+Version: 2.46.0-5
1599+Multi-Arch: foreign
1600+Priority: optional
1601+Section: misc
1602+Source: at-spi2-core
1603+Origin: Ubuntu
1604+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1605+Original-Maintainer: Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net>
1606+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1607+Installed-Size: 1159
1608+Suggests: devhelp
1609+Filename: pool/main/a/at-spi2-core/at-spi2-doc_2.46.0-5_all.deb
1610+Size: 100012
1611+MD5sum: a3c81965b94f15c18909205b5925fe18
1612+SHA1: 075dd3b5bd6a0c95234a6e91161896f68260011b
1613+SHA256: 95e25f04ae0dafdc4971f843d4127ae0664035e721986ece4f389d72c57479d1
1614+SHA512: e49365e5f1fb21d610e86fd2d89f7247d4b5e19d928a1556017c83637a5a1cbfcf7953845803c8efea7ddc93878baedfb74b14365cea959a505c22d595aed8d5
1615+Homepage: https://wiki.gnome.org/Accessibility
1616+Description: Assistive Technology Service Provider Interface (Documentation)
1617+Description-md5: e4ecae3df3f427dece5859c37aad6173
1618+
1619+Package: attr
1620+Architecture: amd64
1621+Version: 1:2.5.1-4
1622+Multi-Arch: foreign
1623+Priority: optional
1624+Section: utils
1625+Origin: Ubuntu
1626+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1627+Original-Maintainer: Guillem Jover <guillem@debian.org>
1628+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1629+Installed-Size: 136
1630+Depends: libattr1 (= 1:2.5.1-4), libc6 (>= 2.34)
1631+Filename: pool/main/a/attr/attr_2.5.1-4_amd64.deb
1632+Size: 22522
1633+MD5sum: 52759f521cce1d9f72c422d754cc9ef9
1634+SHA1: f092040ee22b2510ced886b59a41e9c0a052ef2f
1635+SHA256: 4a46867a52c3feec21b76c769f7b4a275c3a663781585a27f3237d94315726ca
1636+SHA512: a830263c2c44498c99b14ec2d030bfe40ed4bab38ab2441962784e32e77951904e143e84f4dc447541a69125c54b8a94e647980d80d2805d05572eb356784555
1637+Homepage: https://savannah.nongnu.org/projects/attr/
1638+Description: utilities for manipulating filesystem extended attributes
1639+Task: samba-server, ubuntukylin-desktop
1640+Description-md5: eba64610d62d0ff261b3286c19b2e130
1641+
1642+Package: auditd
1643+Architecture: amd64
1644+Version: 1:3.0.7-1.1
1645+Priority: extra
1646+Section: admin
1647+Source: audit
1648+Origin: Ubuntu
1649+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1650+Original-Maintainer: Laurent Bigonville <bigon@debian.org>
1651+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1652+Installed-Size: 680
1653+Pre-Depends: init-system-helpers (>= 1.54~)
1654+Depends: libaudit1 (= 1:3.0.7-1.1), libauparse0 (= 1:3.0.7-1.1), lsb-base (>= 3.0-6), mawk | gawk, libc6 (>= 2.34), libcap-ng0 (>= 0.7.9)
1655+Suggests: audispd-plugins
1656+Breaks: audispd-plugins (<< 1:3.0~)
1657+Filename: pool/main/a/audit/auditd_3.0.7-1.1_amd64.deb
1658+Size: 213120
1659+MD5sum: 4c7357278f2e8ceaa4bdd8ef724d46d4
1660+SHA1: bd0d36a74eb3c49850ff26b315cfc2575de94b65
1661+SHA256: 4892357c4dc3ac7f11f37eb1d665ae907080394f94dd94d3be51369b60933e3d
1662+SHA512: 84f83170da18cc262df62741ae4c2ae9f632e625c52f2312d46be4eda2a554f1702a3b3fe141f6421db59305abe7da81e769d47feb6e1852f23603a8fbbc7cbf
1663+Homepage: https://people.redhat.com/sgrubb/audit/
1664+Description: User space tools for security auditing
1665+Description-md5: 77aaff86394a1a8da0659fa99413f455
1666+
1667+Package: authbind
1668+Architecture: amd64
1669+Version: 2.1.3build1
1670+Priority: extra
1671+Section: utils
1672+Origin: Ubuntu
1673+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1674+Original-Maintainer: Ian Jackson <ijackson@chiark.greenend.org.uk>
1675+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1676+Installed-Size: 77
1677+Depends: libc6 (>= 2.34)
1678+Filename: pool/main/a/authbind/authbind_2.1.3build1_amd64.deb
1679+Size: 18668
1680+MD5sum: 3cae49d03fff1dd88062670c123d2737
1681+SHA1: bd6b61884294d05ed07462e28cc449395844044a
1682+SHA256: 78a265c4f908611621bb932b9bd8c6a653f4674acf1bf492e92c1cf20f38a97a
1683+SHA512: b8a62117bff6713d7a5bf62a0155a9671b36365179eeaf356a53f8f38684ec7052bef7e14a80d0d03f83b4e87800bd010b6d00aff0481e0ef6e903999a148a33
1684+Description: Allows non-root programs to bind() to low ports
1685+Description-md5: 6ffd268fa04a5e344832e2275265da15
1686+
1687+Package: autoconf
1688+Architecture: all
1689+Version: 2.71-3
1690+Multi-Arch: foreign
1691+Priority: optional
1692+Section: devel
1693+Origin: Ubuntu
1694+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1695+Original-Maintainer: Debian QA Group <packages@qa.debian.org>
1696+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1697+Installed-Size: 2024
1698+Depends: perl (>> 5.005), m4 (>= 1.4.13), debianutils (>= 1.8)
1699+Recommends: automake | automaken
1700+Suggests: autoconf-archive, gnu-standards, autoconf-doc, libtool, gettext
1701+Breaks: gettext (<< 0.10.39), pkg-config (<< 0.25-1.1)
1702+Filename: pool/main/a/autoconf/autoconf_2.71-3_all.deb
1703+Size: 338946
1704+MD5sum: 236e6a793a6ee85dae4507b067486a65
1705+SHA1: d10a8d68662fb383109f6bc45df8673a763a36ca
1706+SHA256: cc3f9f7a1e576173fb59c36652c0a67c6426feae752b352404ba92dfcb1b26c9
1707+SHA512: 646396c70a4546de5a331b247c74ba4dda573c419298127cf6b06bc349832aaea923a26159466c947a0b15125313284f3d4f9ba99ab83e7e352aacc64060aa2b
1708+Homepage: https://www.gnu.org/software/autoconf/
1709+Description: automatic configure script builder
1710+Description-md5: 4336cf24a71f6337447f744a61a67166
1711+
1712+Package: autoconf-doc
1713+Architecture: all
1714+Version: 2.71-3
1715+Priority: optional
1716+Section: doc
1717+Source: autoconf
1718+Origin: Ubuntu
1719+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1720+Original-Maintainer: Debian QA Group <packages@qa.debian.org>
1721+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1722+Installed-Size: 4464
1723+Depends: gnu-standards
1724+Filename: pool/main/a/autoconf/autoconf-doc_2.71-3_all.deb
1725+Size: 2912286
1726+MD5sum: 2174eb953a8f2ef453c4f4dfd886a9f3
1727+SHA1: c082fc4be7a79b6a1cb644f4a93c40c31cc20ded
1728+SHA256: dd49771be0c6c9e3e0ef30478ba14254f9358b0506b15af16f7885f8cca3ef61
1729+SHA512: 1522ea38caf04e7e42bd0d8ed9b7fa9fed0d57f5f4d2e9b740bffe514a3b88a4313bd9c3fe61ab14252be1b8f670a6385ada4094e5523f1384a04897687aa701
1730+Homepage: https://www.gnu.org/software/autoconf/
1731+Description: automatic configure script builder documentation
1732+Description-md5: dc69587d1394618608d9fd7ec1c59833
1733+
1734+Package: autodep8
1735+Architecture: all
1736+Version: 0.28
1737+Priority: optional
1738+Section: devel
1739+Origin: Ubuntu
1740+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1741+Original-Maintainer: Debian CI team <team+ci@tracker.debian.org>
1742+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1743+Installed-Size: 58
1744+Depends: dctrl-tools
1745+Filename: pool/main/a/autodep8/autodep8_0.28_all.deb
1746+Size: 13244
1747+MD5sum: 4e39ea97d0fcc2245a91f9422bdc75d2
1748+SHA1: d0ee4fc1c4f8823bee8df59daefe1292b8794f16
1749+SHA256: fce032baab994f35acebde70cca089cac1b6655c2982a212e37ee6be85eaf735
1750+SHA512: 78cec73e68e848e3939549a347ee00ebfe84f08d58962da595d3f3156707b9c796d20d4105c0652135aa84a97d7187d2f7b026764551d83546df4accfb02c609
1751+Description: DEP-8 test control file generator
1752+Description-md5: 23ed108774a3f3b958a6edfe8e71093f
1753+
1754+Package: autofs
1755+Architecture: amd64
1756+Version: 5.1.8-1ubuntu4
1757+Priority: extra
1758+Section: utils
1759+Origin: Ubuntu
1760+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1761+Original-Maintainer: Mike Gabriel <sunweaver@debian.org>
1762+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1763+Installed-Size: 979
1764+Provides: autofs5
1765+Pre-Depends: init-system-helpers (>= 1.54~)
1766+Depends: libc6 (>= 2.34), libnsl2 (>= 1.0), libtirpc3 (>= 1.0.2), libxml2 (>= 2.7.4), ucf
1767+Recommends: nfs-common, kmod | module-init-tools, e2fsprogs
1768+Breaks: autofs5 (<< 5.0.6-1~)
1769+Replaces: autofs5 (<< 5.0.6-1~)
1770+Filename: pool/main/a/autofs/autofs_5.1.8-1ubuntu4_amd64.deb
1771+Size: 281046
1772+MD5sum: 60680add6e2fea0b485cc262fc6f88b4
1773+SHA1: cd8774472f02e135c394a8b9ad916e438b99d6e0
1774+SHA256: 60accd9ef6c14afbff7bc5754d6366f440ae7fe8fbed601e6a910a3172049c5b
1775+SHA512: 6e355b5890507f3de32955b90031833df74f8fefc9f2d311aa3c741052a6b34d24595ac52278fc0bc8089986546dc84884a6d0a1e1cc743cb8bafac9f863fb30
1776+Homepage: https://www.kernel.org/pub/linux/daemons/autofs/v5/
1777+Description: kernel-based automounter for Linux
1778+Description-md5: c2943d4026686519e74f5ea404af6a90
1779+
1780+Package: automake
1781+Architecture: all
1782+Version: 1:1.16.5-1.3
1783+Multi-Arch: foreign
1784+Priority: optional
1785+Section: devel
1786+Source: automake-1.16
1787+Origin: Ubuntu
1788+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1789+Original-Maintainer: Eric Dorland <eric@debian.org>
1790+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1791+Installed-Size: 1581
1792+Provides: automake-1.16, automaken
1793+Depends: autoconf, autotools-dev
1794+Suggests: autoconf-doc, gnu-standards
1795+Filename: pool/main/a/automake-1.16/automake_1.16.5-1.3_all.deb
1796+Size: 557936
1797+MD5sum: eeea4b7cf5024babf73a4dd96a6f5790
1798+SHA1: 0950f7e15117bd6f7167b11bcd12801a98111fbf
1799+SHA256: 59e3890fc8407bcf8ccc9f709d6513156346d5c942e8c624dc90435e58f6f978
1800+SHA512: 078de0cb9f0393d8bdfa7d1b5db0eb718125e15a65bd6038866cb9f84b033440087cbcc8f773af2102a14c42dd71360b988986fbbc679bcabe1dfc1c66c5d931
1801+Homepage: https://www.gnu.org/software/automake/
1802+Description: Tool for generating GNU Standards-compliant Makefiles
1803+Description-md5: cab2176975a43b42c86cd4289740737e
1804+
1805+Package: autopkgtest
1806+Architecture: all
1807+Version: 5.25ubuntu4
1808+Priority: optional
1809+Section: devel
1810+Origin: Ubuntu
1811+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1812+Original-Maintainer: Debian CI team <team+ci@tracker.debian.org>
1813+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1814+Installed-Size: 567
1815+Depends: apt-utils, libdpkg-perl, procps, python3, python3-debian
1816+Recommends: autodep8, fakeroot
1817+Suggests: docker.io, fakemachine, lxc (>= 1:4.0.2-1~), lxd, ovmf, ovmf-ia32, python3-distro-info, qemu-efi-aarch64, qemu-efi-arm, qemu-system, qemu-utils, podman, schroot, util-linux (>= 2.38), vmdb2 (>= 0.22-1~)
1818+Breaks: debci (<< 1.7~)
1819+Filename: pool/main/a/autopkgtest/autopkgtest_5.25ubuntu4_all.deb
1820+Size: 154328
1821+MD5sum: 07ef4b02a7ff2afcfc359edee010f670
1822+SHA1: 926022221af682a864ab41f4acd2793b1b132f94
1823+SHA256: 8b3c6a76be696cf036b3f57302ef0f664bf1a24da52044bdd513b3aa605ca814
1824+SHA512: af5bfcedd714bdc6d4004a2f72a0a164ddc0f5b4f3a10a4f4f160fcabbfe6463fc70a5ab431fc4cf4424dba9452eb8fa360c569e69d09baa3d11ddb1ba0d7294
1825+Description: automatic as-installed testing for Debian packages
1826+Description-md5: 31d9217a487d44cfd80f0588068648cd
1827+
1828+Package: autopoint
1829+Architecture: all
1830+Version: 0.21-11
1831+Multi-Arch: foreign
1832+Priority: optional
1833+Section: devel
1834+Source: gettext
1835+Origin: Ubuntu
1836+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1837+Original-Maintainer: Santiago Vila <sanvila@debian.org>
1838+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1839+Installed-Size: 444
1840+Depends: xz-utils
1841+Replaces: gettext (<= 0.17-11)
1842+Filename: pool/main/g/gettext/autopoint_0.21-11_all.deb
1843+Size: 419944
1844+MD5sum: d332e0e988db3450dcccd985f015c833
1845+SHA1: b60187f51be7ad9f4e9a1c884fa9ed51f5ea222b
1846+SHA256: 0e48f50214cc160c6c0a49fb451bf46c5f440fbb0c64f12e056d8efa3c3d708a
1847+SHA512: 21453ff41cd59e382e67ad1dbbff425856400d5ae752e5183fce003664d1b14321864fcf85cf5cfd01b458408ca2f2fd976379cab7a23c104532d3fe7cab7d1e
1848+Homepage: https://www.gnu.org/software/gettext/
1849+Description: tool for setting up gettext infrastructure in a source package
1850+Description-md5: 6cb55ac1308215a3073d2226782af37f
1851+
1852+Package: autotools-dev
1853+Architecture: all
1854+Version: 20220109.1
1855+Multi-Arch: foreign
1856+Priority: optional
1857+Section: devel
1858+Origin: Ubuntu
1859+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1860+Original-Maintainer: Henrique de Moraes Holschuh <hmh@debian.org>
1861+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1862+Installed-Size: 134
1863+Breaks: autoconf (<< 2.70~)
1864+Replaces: autoconf (<< 2.70~)
1865+Enhances: cdbs, debhelper
1866+Filename: pool/main/a/autotools-dev/autotools-dev_20220109.1_all.deb
1867+Size: 44886
1868+MD5sum: 554dc72dc46c7ebd3caf852031a94fe8
1869+SHA1: 2899e7c9989ee14a2be5a5a431a49498e1494084
1870+SHA256: d909f0327b09d9a9136239caca975df89782fa28efd721c4eb4caea422d3fc5a
1871+SHA512: b3add366e8549028f8de8c1c21796ff1ed8831e3432dedac73e795e021bcd23fb0c4e5fcbaf6f512b21b2f5d1c747bc7bccad1719a3255988ff2d7f5ce81f3d4
1872+Homepage: https://savannah.gnu.org/projects/config/
1873+Description: Update infrastructure for config.{guess,sub} files
1874+Description-md5: 32ffa2f2f5e89ec7409d0b4d9086ce91
1875+
1876+Package: avahi-autoipd
1877+Architecture: amd64
1878+Version: 0.8-6ubuntu1
1879+Priority: optional
1880+Section: net
1881+Source: avahi
1882+Origin: Ubuntu
1883+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1884+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
1885+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1886+Installed-Size: 125
1887+Depends: libc6 (>= 2.34), libdaemon0 (>= 0.14), adduser
1888+Recommends: isc-dhcp-client, iproute2
1889+Conflicts: zeroconf
1890+Filename: pool/main/a/avahi/avahi-autoipd_0.8-6ubuntu1_amd64.deb
1891+Size: 40522
1892+MD5sum: 7400e673d9000fe41e09cb84384915bf
1893+SHA1: d94fa1b50e80c05df1a1914f07c47ff419ad304c
1894+SHA256: 0e069e4b8d5701dedad9513f10dd5bfcb00708acc8ab42f23ecc73767376b755
1895+SHA512: 15a81486996d0985066260a3618e566bc0e11489d74479d677cb22359fcb19757ba8e6be0482d9e2e95e18e3bd7f6578f707f10513d3ffe45ce42d18e14c47b9
1896+Homepage: http://avahi.org/
1897+Description: Avahi IPv4LL network address configuration daemon
1898+Task: ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, kubuntu-full, xubuntu-minimal, xubuntu-desktop, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1899+Description-md5: acd046468650e18ecf72b9fbe41992f1
1900+
1901+Package: avahi-daemon
1902+Architecture: amd64
1903+Version: 0.8-6ubuntu1
1904+Multi-Arch: foreign
1905+Priority: optional
1906+Section: net
1907+Source: avahi
1908+Origin: Ubuntu
1909+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1910+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
1911+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1912+Installed-Size: 297
1913+Pre-Depends: init-system-helpers (>= 1.54~)
1914+Depends: libavahi-common3 (= 0.8-6ubuntu1), libavahi-core7 (= 0.8-6ubuntu1), libc6 (>= 2.34), libcap2 (>= 1:2.16), libdaemon0 (>= 0.14), libdbus-1-3 (>= 1.9.14), libexpat1 (>= 2.0.1), adduser, default-dbus-system-bus | dbus-system-bus, bind9-host | host
1915+Recommends: libnss-mdns (>= 0.11)
1916+Suggests: avahi-autoipd
1917+Filename: pool/main/a/avahi/avahi-daemon_0.8-6ubuntu1_amd64.deb
1918+Size: 67858
1919+MD5sum: 39512dcd8d8563aa595c50023d175d55
1920+SHA1: d4d99d06070e71bf8c98ac06312854eaed900e85
1921+SHA256: 3796c074daeacc6bafc74d78e19b1954d782a178139578f78eace959cae163e6
1922+SHA512: e06944f805de966fdef959b272c38448dde89e41ceef176e4ff86f025779f502b3f947b440fb57ff4232438a5aff1374c0f3a6ddf37903930a53103b61bfb211
1923+Homepage: http://avahi.org/
1924+Description: Avahi mDNS/DNS-SD daemon
1925+Task: print-server, ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
1926+Description-md5: 13d651a25febc553220e03e75c6f4c7b
1927+
1928+Package: avahi-utils
1929+Architecture: amd64
1930+Version: 0.8-6ubuntu1
1931+Priority: optional
1932+Section: net
1933+Source: avahi
1934+Origin: Ubuntu
1935+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1936+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
1937+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1938+Installed-Size: 169
1939+Depends: libavahi-client3 (= 0.8-6ubuntu1), libavahi-common3 (= 0.8-6ubuntu1), libc6 (>= 2.34), libgdbm6 (>= 1.16), avahi-daemon (= 0.8-6ubuntu1)
1940+Filename: pool/main/a/avahi/avahi-utils_0.8-6ubuntu1_amd64.deb
1941+Size: 25978
1942+MD5sum: f0e2b1d0e667ac8eec151fb35a43436e
1943+SHA1: c376a7a7f6b46efeedaf7670d54e66f836ee7d73
1944+SHA256: 38ae191715d0769717646e296b290869ac169d2b4caf3bbccc390b6817e1156f
1945+SHA512: 431c1ed61fc0787e88fb10081fd88c457ffdcedbfddfc3a031a9094115ec7c4a5571db47baf3655fc78a1c49b9d266672d014e9cb5ce977fe47a0c1059c905fa
1946+Homepage: http://avahi.org/
1947+Description: Avahi browsing, publishing and discovery utilities
1948+Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, lubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-live, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
1949+Description-md5: 58895f03e39692a5213ffb4d5bbc3564
1950+
1951+Package: awstats
1952+Architecture: all
1953+Version: 7.8-3
1954+Priority: optional
1955+Section: web
1956+Origin: Ubuntu
1957+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1958+Original-Maintainer: Debian QA Group <packages@qa.debian.org>
1959+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1960+Installed-Size: 6894
1961+Depends: perl:any
1962+Recommends: libnet-xwhois-perl
1963+Suggests: apache2 | httpd, libnet-dns-perl, libnet-ip-perl, libgeo-ipfree-perl, liburi-perl
1964+Filename: pool/main/a/awstats/awstats_7.8-3_all.deb
1965+Size: 1865462
1966+MD5sum: b631046ff487cfe09d9c7e1e98d162ab
1967+SHA1: 1878e1421fd910bad78d47d6bd5d690d35d83344
1968+SHA256: b00d66eba71065a64c0ba80d7b2494f914a4f43e4b7cd0908b3274462073e631
1969+SHA512: 6bc66b9bc8fd1c3375a582799ee68ddeaa2a91461a71c4efcd01d5884b01a2bd13312cbb0a764b27f0616cf81d2e93f36b9c8296f8f06a21400ee5bb77c51230
1970+Homepage: http://awstats.sourceforge.net/
1971+Description: powerful and featureful web server log analyzer
1972+Description-md5: 13563117d747b5d1acdce35986df9f8a
1973+
1974+Package: b43-fwcutter
1975+Architecture: amd64
1976+Version: 1:019-8
1977+Priority: optional
1978+Section: utils
1979+Origin: Ubuntu
1980+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1981+Original-Maintainer: Debian QA Group <packages@qa.debian.org>
1982+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
1983+Installed-Size: 95
1984+Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.34)
1985+Filename: pool/main/b/b43-fwcutter/b43-fwcutter_019-8_amd64.deb
1986+Size: 27650
1987+MD5sum: c20372d309083e43ffc2ea837ca2ebb1
1988+SHA1: d115d34e60ed82cd4054ecef5ca54e604fac0636
1989+SHA256: ccf3a71f93d81d85aa2ff21ec994cb96296f40245cd4b0112b2e9c72b4a5b40c
1990+SHA512: 97dc5f33edf93dbd27fd5df9f3d86bd5b7c2cd0ba7b98508790a41370368bff3b4aebd3841fe33e91fe83f6d6731572a500e7e2cdf0f6dfbcdb44e4907079157
1991+Homepage: https://wireless.wiki.kernel.org/en/users/drivers/b43
1992+Description: utility for extracting Broadcom 43xx firmware
1993+Description-md5: 19713b4b3c64e57d9fe7a1aec56c25e1
1994+
1995+Package: backuppc
1996+Architecture: amd64
1997+Version: 4.4.0-8
1998+Priority: optional
1999+Section: utils
2000+Origin: Ubuntu
2001+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2002+Original-Maintainer: Debian BackupPC Team <team+pkg-backuppc@tracker.debian.org>
2003+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2004+Installed-Size: 3144
2005+Pre-Depends: init-system-helpers (>= 1.54~)
2006+Depends: adduser, apache2 | httpd, apache2-utils, backuppc-rsync (>= 3.1.3), bzip2, default-mta | exim4 | mail-transport-agent, iputils-ping | inetutils-ping, libarchive-zip-perl, libbackuppc-xs-perl (>= 0.62), libcgi-pm-perl, libfile-listing-perl, libtime-parsedate-perl, sysvinit-utils (>= 3.05-4~) | lsb-base, ucf, debconf (>= 0.5) | debconf-2.0, perl:any, libc6 (>= 2.34)
2007+Recommends: libio-dirent-perl, openssh-client | ssh-client, rrdtool, samba-common-bin, smbclient
2008+Suggests: certbot | acme-tiny | acmetool | dehydrated | lacme | lecm | lego, libscgi-perl, par2, rsync, w3m | www-browser
2009+Filename: pool/main/b/backuppc/backuppc_4.4.0-8_amd64.deb
2010+Size: 541816
2011+MD5sum: 7176466890d8ac527646654fbaec9982
2012+SHA1: dcef60b7e1cdbba9ed2d18c0fcd91a681418dab9
2013+SHA256: 2f39b5b319c6cfa48c256754fc569ff2ab3c17b6fd9352870790250605135dad
2014+SHA512: 81db135957810962452f6d42e330a3c9a82270199acda5ac3a408296d0fda232d1b9f424f6da7d0760ccba59d9cdbbb37b8998c6e88f32968f8c47487b324986
2015+Homepage: https://backuppc.github.io/backuppc/
2016+Description: high-performance, enterprise-grade system for backing up PCs
2017+Description-md5: b6f406334b3551715e06ad0d1f9cbb05
2018+
2019+Package: backuppc-rsync
2020+Architecture: amd64
2021+Version: 3.1.3.0-3build1
2022+Multi-Arch: foreign
2023+Priority: optional
2024+Section: net
2025+Origin: Ubuntu
2026+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2027+Original-Maintainer: Debian BackupPC Team <team+pkg-backuppc@tracker.debian.org>
2028+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2029+Installed-Size: 543
2030+Provides: rsync-bpc
2031+Depends: libacl1 (>= 2.2.23), libc6 (>= 2.34), libpopt0 (>= 1.14), zlib1g (>= 1:1.1.4)
2032+Conflicts: rsync-bpc
2033+Replaces: rsync-bpc
2034+Enhances: backuppc (>= 4)
2035+Filename: pool/main/b/backuppc-rsync/backuppc-rsync_3.1.3.0-3build1_amd64.deb
2036+Size: 256510
2037+MD5sum: 81145fbf129c916428166d644bd3d834
2038+SHA1: 2dfd28ed116b98aca0d0e2c7fd5c382184471246
2039+SHA256: ac4b43d4791f35d0ddca9afd6ba4f6776059c554a9f67d89e075765b7b339871
2040+SHA512: 6604597a09fb5442c11d421eed2e23d2e75e2ebcb8ee6b521bd7433910e1b6871679320f42b5dde8d0a8b313dbe9a6f8fc1244414139d9f1cf7a8e9a4eae0587
2041+Homepage: https://github.com/backuppc/rsync-bpc
2042+Description: patched rsync for BackupPC version 4
2043+Description-md5: fe2a5ada10b1f4a924327d9694186ade
2044+
2045+Package: xorg
2046+Architecture: amd64
2047+Version: 1:7.7+23ubuntu2
2048+Priority: optional
2049+Section: x11
2050+Origin: Ubuntu
2051+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2052+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2053+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2054+Installed-Size: 53
2055+Provides: x-window-system, x-window-system-core
2056+Depends: xserver-xorg (>= 1:7.7+23ubuntu2), libgl1, libgl1-mesa-dri, libglu1-mesa, xfonts-base (>= 1:1.0.0-1), x11-apps, x11-session-utils, x11-utils, x11-xkb-utils, x11-xserver-utils, xauth, xinit, xfonts-utils, xkb-data, xorg-docs-core, gnome-terminal | xterm | x-terminal-emulator, xinput
2057+Recommends: xfonts-scalable (>= 1:1.0.0-1)
2058+Suggests: xorg-docs, xfonts-100dpi (>= 1:1.0.0-1), xfonts-75dpi (>= 1:1.0.0-1), x11-xfs-utils
2059+Filename: pool/main/x/xorg/xorg_7.7+23ubuntu2_amd64.deb
2060+Size: 2890
2061+MD5sum: 679cd23718ee280efa9a2e00b772f904
2062+SHA1: 8a1986481fac13059123c34d1cf042d5a820d1c9
2063+SHA256: 99aa17f2845b5a3e650d391419a5e42e4ea7965333221bfa2d1f81cf2df08427
2064+SHA512: 43169e13aef254b8e75db3951533b32dc7736db5d7c629b68bf4d04b3bb552833d3c4b637dc5dcb906c6392c342dd213fe673c880c20c97a161122e101b8dab7
2065+Homepage: https://www.x.org/
2066+Description: X.Org X Window System
2067+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2068+Description-md5: f5abde5fb283cb96048a3d3a5fe06e17
2069+
2070+Package: xorg-dev
2071+Architecture: all
2072+Version: 1:7.7+23ubuntu2
2073+Priority: optional
2074+Section: x11
2075+Source: xorg
2076+Origin: Ubuntu
2077+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2078+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2079+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2080+Installed-Size: 47
2081+Depends: libdmx-dev, libfontenc-dev, libfs-dev, libice-dev, libsm-dev, libx11-dev, libxau-dev, libxaw7-dev, libxcomposite-dev, libxcursor-dev, libxdamage-dev, libxdmcp-dev, libxext-dev, libxfixes-dev, libxfont-dev, libxft-dev, libxi-dev, libxinerama-dev, libxkbfile-dev, libxmu-dev, libxmuu-dev, libxpm-dev, libxrandr-dev, libxrender-dev, libxres-dev, libxss-dev, libxt-dev, libxtst-dev, libxv-dev, libxvmc-dev, libxxf86dga-dev, libxxf86vm-dev, x11proto-dev, xserver-xorg-dev, xtrans-dev
2082+Filename: pool/main/x/xorg/xorg-dev_7.7+23ubuntu2_all.deb
2083+Size: 4262
2084+MD5sum: f855a5cbf7795618868c010c8666fc84
2085+SHA1: d945a590f1bad18760af1b765263407fab6d5b9a
2086+SHA256: a294f82e6fd6a8ffff7c361ab5e4802a519afd687e0de4b025607ea5009b556e
2087+SHA512: a4449e23a12aab79ccbb6b9fa7a97f0cf518f8448f55e9165b40b4ffa6445cbd4152902aa51f0d09d26d41aece4b0c395a605e75c7b1d23ca07c6a04ed588774
2088+Homepage: https://www.x.org/
2089+Description: X.Org X Window System development libraries
2090+Description-md5: 00a974084948001400546a402cbefdb1
2091+
2092+Package: xorg-docs
2093+Architecture: all
2094+Version: 1:1.7.1-1.2
2095+Multi-Arch: foreign
2096+Priority: optional
2097+Section: x11
2098+Origin: Ubuntu
2099+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2100+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2101+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2102+Installed-Size: 1996
2103+Conflicts: xprt-xprintorg (<= 1:0.1.0.alpha1-10)
2104+Replaces: xprt-xprintorg (<= 1:0.1.0.alpha1-10), xspecs (<= 1:1.2+git20061105-2)
2105+Filename: pool/main/x/xorg-docs/xorg-docs_1.7.1-1.2_all.deb
2106+Size: 1119264
2107+MD5sum: b9d08e6e9bb5c19ff2b84cafe9d650b6
2108+SHA1: 55a169ac20716fb350c4a72902756868a2492fae
2109+SHA256: 78cf229f6fc864f5744f5b3f99261613b56d0fe97fadd98eaa4584967923a800
2110+SHA512: 12bca5b505e41ecef765aaa693811e493da0fb7190434999549929f436eadd892090326f6145a552ca4247811bef4557847a4e4fc3c3bf1d242d2d60a7b103cf
2111+Description: Miscellaneous documentation for the X.org X Window System
2112+Description-md5: 8e446e7efb54922706b8ca2c81cd7cf2
2113+
2114+Package: xorg-docs-core
2115+Architecture: all
2116+Version: 1:1.7.1-1.2
2117+Multi-Arch: foreign
2118+Priority: optional
2119+Section: x11
2120+Source: xorg-docs
2121+Origin: Ubuntu
2122+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2123+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2124+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2125+Installed-Size: 69
2126+Suggests: xorg-docs
2127+Replaces: xorg-docs (<< 1:1.4-5)
2128+Filename: pool/main/x/xorg-docs/xorg-docs-core_1.7.1-1.2_all.deb
2129+Size: 41748
2130+MD5sum: 00f17dd7d015418512f70e5a9f5406d9
2131+SHA1: 15099fa78e6c81532a710c22cb6c090fd13d21b9
2132+SHA256: 8220128d3b9b29c0f0bae1d90ad8b3dcd95fc99f385bfb4c0cdcbbd4217351a5
2133+SHA512: 70e14c5a1da7c15cd9bd99e687c2bc42d8e04dcb709e22da9e52edc54f7affb788c37f36ff93b3720b0d9dc7a49353e72100137caf5bef58f38ebe15bef17550
2134+Description: Core documentation for the X.org X Window System
2135+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2136+Description-md5: 37a691694c97a0321d19b964ed2f7f5a
2137+
2138+Package: xorg-sgml-doctools
2139+Architecture: all
2140+Version: 1:1.11-1.1
2141+Multi-Arch: foreign
2142+Priority: optional
2143+Section: x11
2144+Origin: Ubuntu
2145+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2146+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2147+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2148+Installed-Size: 78
2149+Filename: pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.11-1.1_all.deb
2150+Size: 10936
2151+MD5sum: cd9ce4694a205d3d61711d88a256e3aa
2152+SHA1: 943aca7aacf4a8043435088c124a08d4193bca63
2153+SHA256: 277f662c6d94606c22078f2af82ac1b6e01386d5a4dec6ca7487bca4c5b23c07
2154+SHA512: 5d0243ba703320ed39f796bb315ec1d1856f3dbacd5edf0b59263a298307b0f46e334565e69d52c19284f928261acf3762836d3ca3874236fd82d29326f26781
2155+Description: Common tools for building X.Org SGML documentation
2156+Task: lubuntu-desktop, ubuntu-unity-desktop
2157+Description-md5: 9b074ec1fd035c058dfb6f238155efeb
2158+
2159+Package: xorriso
2160+Architecture: amd64
2161+Version: 1:1.5.4-2ubuntu3
2162+Priority: optional
2163+Section: otherosfs
2164+Source: libisoburn
2165+Origin: Ubuntu
2166+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2167+Original-Maintainer: Debian Libburnia packagers <pkg-libburnia-devel@lists.alioth.debian.org>
2168+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2169+Installed-Size: 335
2170+Depends: libc6 (>= 2.34), libisoburn1 (= 1:1.5.4-2ubuntu3), libburn4 (>= 1.4.8), libisofs6 (>= 1.4.8)
2171+Suggests: xorriso-tcltk, cdck
2172+Filename: pool/main/libi/libisoburn/xorriso_1.5.4-2ubuntu3_amd64.deb
2173+Size: 290382
2174+MD5sum: a25216676d4b253b8e83a3382ff2c6cc
2175+SHA1: 975f0a9000e2b56c464819ac8f34f31512cac9fb
2176+SHA256: f36a1b69e7a2bdec57d5d1925503cbf041b4b8234f9bf95c88c6f4e26aaf7426
2177+SHA512: 6e4c2a3d91568e75d3da28d5605d2175c5f7f57816bc58eabe838f5af1e4a24d3bc5f6f408160d7e4b42a0bc0e2e49c64b6f11b1e66c81c34f8812be56eb16e5
2178+Homepage: http://libburnia-project.org
2179+Description: command line ISO-9660 and Rock Ridge manipulation tool
2180+Task: ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, kubuntu-full, lubuntu-desktop, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-unity-desktop, edubuntu-desktop, edubuntu-desktop-raspi
2181+Description-md5: 4538911b3f3a5e4314b9eefecd4579e9
2182+
2183+Package: xserver-common
2184+Architecture: all
2185+Version: 2:21.1.6-1ubuntu1
2186+Multi-Arch: foreign
2187+Priority: optional
2188+Section: x11
2189+Source: xorg-server
2190+Origin: Ubuntu
2191+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2192+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2193+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2194+Installed-Size: 148
2195+Depends: x11-common, xkb-data, x11-xkb-utils
2196+Recommends: xfonts-base, xauth
2197+Replaces: xserver-xorg-core (<< 2:1.5.2)
2198+Filename: pool/main/x/xorg-server/xserver-common_21.1.6-1ubuntu1_all.deb
2199+Size: 27152
2200+MD5sum: a4c7b60481f9922e0c8f3e99083e30b6
2201+SHA1: a6fd66e245a8bfdacb0bec5d23b315dc4f3ffc1f
2202+SHA256: 3d2d263f69039f2b654184508d151fcefeef39d0709e06534dfce6c0db288a26
2203+SHA512: ecaab702a408e8e1ae79547733ca42428c58cfca34f486209aee2943653f1eb39fc9fe3b124588e31c681360dbbfb51c1aa34430b59bdd1435e25b5069b98d32
2204+Homepage: https://www.x.org/
2205+Description: common files used by various X servers
2206+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2207+Description-md5: be03943b6955ee9fae7163ad516c772f
2208+
2209+Package: xserver-xephyr
2210+Architecture: amd64
2211+Version: 2:21.1.6-1ubuntu1
2212+Priority: optional
2213+Section: x11
2214+Source: xorg-server
2215+Origin: Ubuntu
2216+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2217+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2218+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2219+Installed-Size: 2531
2220+Provides: xserver
2221+Depends: xserver-common (>= 2:21.1.6-1ubuntu1), libaudit1 (>= 1:2.2.1), libbsd0 (>= 0.7.0), libc6 (>= 2.35), libepoxy0 (>= 1.0), libgcrypt20 (>= 1.10.0), libgl1, libpixman-1-0 (>= 0.30.0), libselinux1 (>= 3.1~), libsystemd0, libudev1 (>= 183), libunwind8, libx11-6, libx11-xcb1 (>= 2:1.8.3), libxau6 (>= 1:1.0.9), libxcb-icccm4 (>= 0.4.1), libxcb-image0 (>= 0.2.1), libxcb-keysyms1 (>= 0.4.0), libxcb-randr0 (>= 1.1), libxcb-render-util0, libxcb-render0, libxcb-shape0, libxcb-shm0 (>= 1.10), libxcb-util1 (>= 0.4.0), libxcb-xkb1, libxcb-xv0 (>= 1.2), libxcb1 (>= 1.8), libxdmcp6, libxfont2 (>= 1:2.0.1), libxshmfence1
2222+Recommends: libgl1-mesa-dri (>= 7.1~rc1)
2223+Filename: pool/main/x/xorg-server/xserver-xephyr_21.1.6-1ubuntu1_amd64.deb
2224+Size: 1014322
2225+MD5sum: 05baabfbf32489ac38f53c4ac06876a1
2226+SHA1: c18e8b6e08d77435f90b802176a0a2df8a2f3016
2227+SHA256: 49f493bd7efd123818c23a52ee7722a65d84ff7b3595513dd71676bd8a6720d5
2228+SHA512: ff15689838694399e7fe2a05d120afecdb39e84b1c585b5571374e3db48f9377955752e872fc3bd9eeeb5abd7c6f19f34a1f638a04cd255f23da024cfbfd4b27
2229+Homepage: https://www.x.org/
2230+Description: nested X server
2231+Task: ubuntu-desktop-minimal, ubuntu-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2232+Description-md5: eeb7a5ed15c65f716761ab1fa1637b6b
2233+
2234+Package: xserver-xorg
2235+Architecture: amd64
2236+Version: 1:7.7+23ubuntu2
2237+Priority: optional
2238+Section: x11
2239+Source: xorg
2240+Origin: Ubuntu
2241+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2242+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2243+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2244+Installed-Size: 366
2245+Provides: xserver
2246+Depends: xserver-xorg-core (>= 2:1.17.2-2), xserver-xorg-input-all | xorg-driver-input, xkb-data (>= 1.4), x11-xkb-utils, python3-apport
2247+Recommends: libgl1-mesa-dri, mesa-vulkan-drivers, xserver-xorg-legacy, xserver-xorg-video-all
2248+Filename: pool/main/x/xorg/xserver-xorg_7.7+23ubuntu2_amd64.deb
2249+Size: 66688
2250+MD5sum: 3c0dd779de424e637319242e7a191132
2251+SHA1: ce739e701bf660315be4501d370d0d5c028e5c6f
2252+SHA256: cb570148c58b413fcee81ff22dc50a1c00c8125aa63f62df2e532b0f691e6f59
2253+SHA512: 603025e5d57c0e8d538b95e9c582fdcd75a18de0ad74467c529be200531db96f83c687c56741d787ab1a52bcd298570956b5215446385e9aa3e4e08129775e0b
2254+Homepage: https://www.x.org/
2255+Description: X.Org X server
2256+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2257+Description-md5: 3d8c1d268e8af6b69f54d86fbd5a3939
2258+
2259+Package: xserver-xorg-core
2260+Architecture: amd64
2261+Version: 2:21.1.6-1ubuntu1
2262+Priority: optional
2263+Section: x11
2264+Source: xorg-server
2265+Origin: Ubuntu
2266+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2267+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2268+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2269+Installed-Size: 3884
2270+Provides: xorg-input-abi-24, xorg-video-abi-25, xserver-xorg-video-modesetting
2271+Depends: xserver-common (>= 2:21.1.6-1ubuntu1), keyboard-configuration, udev (>= 149), libegl1, libaudit1 (>= 1:2.2.1), libbsd0 (>= 0.7.0), libc6 (>= 2.35), libdbus-1-3 (>= 1.9.14), libdrm2 (>= 2.4.66), libepoxy0 (>= 1.5.4), libgbm1 (>= 17.1.0~rc2), libgcrypt20 (>= 1.10.0), libgl1, libpciaccess0 (>= 0.12.902), libpixman-1-0 (>= 0.30.0), libselinux1 (>= 3.1~), libsystemd0, libudev1 (>= 183), libunwind8, libxau6 (>= 1:1.0.9), libxcvt0 (>= 0.1.0), libxdmcp6, libxfont2 (>= 1:2.0.1), libxshmfence1
2272+Recommends: libgl1-mesa-dri (>= 7.10.2-4), default-logind | logind, xcvt
2273+Suggests: xfonts-100dpi | xfonts-75dpi, xfonts-scalable
2274+Conflicts: xserver-xorg-input-evtouch, xserver-xorg-video-modesetting
2275+Breaks: libgl1-mesa-dri (<< 18.0.5), systemd (<< 226-4~), xserver-xorg (<< 1:7.7+10~)
2276+Replaces: xserver-xorg (<< 1:7.7+10~), xserver-xorg-video-modesetting
2277+Filename: pool/main/x/xorg-server/xserver-xorg-core_21.1.6-1ubuntu1_amd64.deb
2278+Size: 1471656
2279+MD5sum: 10582874ea984983104bb23a7a8af4e9
2280+SHA1: b5d1d98ffb16c81cfdd8f0af430951ea6f1154ec
2281+SHA256: 9b3ee9f729f468c45128e9ed7b07c8d7d8cdb386f0b2467a3c7c7b6a3d04e7fc
2282+SHA512: 8948ebb0ed9e469f35e143d4902190025b23e8187a56753ae1fa245e1b1a5518ba844f4cb578531e733513caaefceefd0ab742bff5d033012776abb23c57fbc9
2283+Homepage: https://www.x.org/
2284+Description: Xorg X server - core server
2285+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2286+Description-md5: 018a15965c91ba9a09e0652c1c0fb9ac
2287+
2288+Package: xserver-xorg-dev
2289+Architecture: amd64
2290+Version: 2:21.1.6-1ubuntu1
2291+Priority: optional
2292+Section: x11
2293+Source: xorg-server
2294+Origin: Ubuntu
2295+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2296+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2297+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2298+Installed-Size: 1333
2299+Depends: libpixman-1-dev (>= 0.27.2), x11proto-dev (>= 2021.5), libxcvt-dev, libxfont-dev, libxkbfile-dev, libpciaccess-dev, mesa-common-dev
2300+Filename: pool/main/x/xorg-server/xserver-xorg-dev_21.1.6-1ubuntu1_amd64.deb
2301+Size: 202182
2302+MD5sum: 4c46aff6a1c86478d0d4d84052f2c7e0
2303+SHA1: 4d8105802bf096411c3e252b7133125486352119
2304+SHA256: 798e380f23a28fb834ac6e17aac208b232aa6a46c8c8dce6476b4fa141af6fb3
2305+SHA512: 5767fa1646dc663a1a17afd2c9a541e9da9f966983d539921b2d52333caf555a9505e4d974783bf8e048f63db0b938b377eb3616cdda9913caec85be1e95e4c5
2306+Homepage: https://www.x.org/
2307+Description: Xorg X server - development files
2308+Description-md5: c5425cbd8103a5899200596c7a3c3033
2309+
2310+Package: xserver-xorg-input-all
2311+Architecture: amd64
2312+Version: 1:7.7+23ubuntu2
2313+Priority: optional
2314+Section: x11
2315+Source: xorg
2316+Origin: Ubuntu
2317+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2318+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2319+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2320+Installed-Size: 47
2321+Depends: xserver-xorg-input-libinput
2322+Recommends: xserver-xorg-input-wacom
2323+Filename: pool/main/x/xorg/xserver-xorg-input-all_7.7+23ubuntu2_amd64.deb
2324+Size: 4058
2325+MD5sum: b506c80b6d23fc8dcd194e4b3a03a9ff
2326+SHA1: 8a095f3261ecf35f55113a9db8c17928c6826425
2327+SHA256: 6ee4a3092d489eb31ee6df2992e641f2c03ce235d0d309658308ab92fe7b62b7
2328+SHA512: 271909d4b4a3932add0b4938b620981b3f2417477a2fc77c2355be325f8b7764f97483ef066df65a90ed623ef11f44fe45661f32f030407a0a041c67dc83f9ce
2329+Homepage: https://www.x.org/
2330+Description: X.Org X server -- input driver metapackage
2331+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2332+Description-md5: 6dc6019c398114619eba5fcd5806f328
2333+
2334+Package: xserver-xorg-input-libinput
2335+Architecture: amd64
2336+Version: 1.2.1-1
2337+Priority: optional
2338+Section: x11
2339+Origin: Ubuntu
2340+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2341+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2342+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2343+Installed-Size: 115
2344+Provides: xorg-driver-input
2345+Depends: libc6 (>= 2.7), libinput10 (>= 1.19.1), xorg-input-abi-24, xserver-xorg-core (>= 2:1.18.99.901)
2346+Filename: pool/main/x/xserver-xorg-input-libinput/xserver-xorg-input-libinput_1.2.1-1_amd64.deb
2347+Size: 38676
2348+MD5sum: a1a8f561de7484ec175dfae195c16aec
2349+SHA1: cc5d12c31ff2fbaed464440ddc387b269606cdac
2350+SHA256: 7528e111ff99c88f01bfdd7ad2e30e8b6d1f9c57e403f811095fed6f16855b33
2351+SHA512: 954ffb1aa906c2c90a9aac777e27bee2c1cfb2284a59f247ac824e055a57986484983e0f35a0ecd56805a72b4bb02f09ca0bff927e934a34518c96d704e7c6e6
2352+Homepage: https://www.x.org
2353+Description: X.Org X server -- libinput input driver
2354+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2355+Description-md5: f8bfd1aa5c6b0f14ea81809036429317
2356+
2357+Package: xserver-xorg-input-libinput-dev
2358+Architecture: all
2359+Version: 1.2.1-1
2360+Multi-Arch: foreign
2361+Priority: optional
2362+Section: libdevel
2363+Source: xserver-xorg-input-libinput
2364+Origin: Ubuntu
2365+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2366+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2367+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2368+Installed-Size: 25
2369+Filename: pool/main/x/xserver-xorg-input-libinput/xserver-xorg-input-libinput-dev_1.2.1-1_all.deb
2370+Size: 5204
2371+MD5sum: 0d565263feaeccfbec63394b7e4673ed
2372+SHA1: 7ba06758378f25432267cf3fdd6c8106cce16b43
2373+SHA256: 7a0827ae60faaca21079f2c5beca5dd7419edb1803ce2765e65b91306e51d7de
2374+SHA512: 7cecd1997dc3ebb741faaa54401cf01275d37e68edbd92a203327c5b9a8c00e78e2ba697dba1d8c63ab2e9fd35c0fe25970047075a6c2356c9acf18d71e5123e
2375+Homepage: https://www.x.org
2376+Description: X.Org X server -- libinput input driver (development headers)
2377+Description-md5: 4b5e846f463943f6804a3550660477a7
2378+
2379+Package: xserver-xorg-input-wacom
2380+Architecture: amd64
2381+Version: 1:1.1.0-1ubuntu1
2382+Priority: optional
2383+Section: x11
2384+Source: xf86-input-wacom
2385+Origin: Ubuntu
2386+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2387+Original-Maintainer: Boyuan Yang <byang@debian.org>
2388+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2389+Installed-Size: 288
2390+Provides: xorg-driver-input
2391+Depends: libc6 (>= 2.34), libudev1 (>= 183), libx11-6, libxi6 (>= 2:1.2.0), libxinerama1 (>= 2:1.1.4), libxrandr2 (>= 2:1.2.0), xorg-input-abi-24, xserver-xorg-core (>= 2:21.1.1)
2392+Suggests: xinput
2393+Conflicts: wacom-tools (<< 0.10.0)
2394+Replaces: wacom-tools (<< 0.10.0)
2395+Filename: pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom_1.1.0-1ubuntu1_amd64.deb
2396+Size: 95582
2397+MD5sum: c2b086c07f38b7b0453d405c4c451a55
2398+SHA1: 1fd61411d4b0c3c09bfb0919ad1fc5ebfbfdb955
2399+SHA256: c9545d5d40b7d3b36618c155ec962a0968f6cb9b89e6bc831785d6e1562d62ab
2400+SHA512: 15b61011de93a6804c98f14a32bb896fe31b1d56b8bd8df692986c1af71e8aca432ef79a2e62eb81966fd96fcf6d5d213b0c9a05df66489ee4a85fd51f9752c2
2401+Homepage: https://linuxwacom.github.io/
2402+Description: X.Org X server -- Wacom input driver
2403+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2404+Description-md5: 990a6fd67780d38db31b26b3018b5519
2405+
2406+Package: xserver-xorg-legacy
2407+Architecture: amd64
2408+Version: 2:21.1.6-1ubuntu1
2409+Priority: extra
2410+Section: x11
2411+Source: xorg-server
2412+Origin: Ubuntu
2413+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2414+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2415+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2416+Installed-Size: 179
2417+Depends: xserver-common (>= 2:21.1.6-1ubuntu1), libc6 (>= 2.34), debconf (>= 0.5) | debconf-2.0
2418+Breaks: x11-common (<< 1:7.7+10~), xserver-xorg-core (<< 2:1.17.2-3~)
2419+Replaces: x11-common (<< 1:7.7+10~), xserver-xorg-core (<< 2:1.17.2-3~)
2420+Filename: pool/main/x/xorg-server/xserver-xorg-legacy_21.1.6-1ubuntu1_amd64.deb
2421+Size: 33944
2422+MD5sum: 99cbe4faeb19d2af6bc90a3ce3969427
2423+SHA1: 24f8a682bc9cb47fcea87cebfe084d0a6bcf3ee2
2424+SHA256: 719a035e94398f9aff48dd570e0d64f710c4a593bf88c164fbe3af0f7a172ac1
2425+SHA512: 0507b98638db8237f6c742d41cc02c8b40dbf60cc243048f9300ac08789df5e82a85b28f986853732ecced9cfe8a67bf5b65fb12e9ef83cc32c001fe3f2a9524
2426+Homepage: https://www.x.org/
2427+Description: setuid root Xorg server wrapper
2428+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2429+Description-md5: a49fa8443df84effdf1fd36e26ad0f94
2430+
2431+Package: xserver-xorg-video-all
2432+Architecture: amd64
2433+Version: 1:7.7+23ubuntu2
2434+Priority: optional
2435+Section: x11
2436+Source: xorg
2437+Origin: Ubuntu
2438+Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com>
2439+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2440+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2441+Installed-Size: 47
2442+Depends: xserver-xorg-video-amdgpu, xserver-xorg-video-ati, xserver-xorg-video-fbdev, xserver-xorg-video-nouveau, xserver-xorg-video-vesa, xserver-xorg-video-vmware
2443+Recommends: xserver-xorg-video-intel, xserver-xorg-video-qxl
2444+Conflicts: xserver-xorg-driver-all
2445+Replaces: xserver-xorg-driver-all
2446+Filename: pool/main/x/xorg/xserver-xorg-video-all_7.7+23ubuntu2_amd64.deb
2447+Size: 4110
2448+MD5sum: 0ea2aa1c5c13cbd0613f0ba99012386f
2449+SHA1: e1a7252849e0175e3262f847d6d7737f1856f1df
2450+SHA256: cddaab1244d6b424e4a8c0c1b44fc56bba1128b524d7cea18d3d3079066ec5e2
2451+SHA512: dc96db248fcf7694d950caa98368ee65c1c2b4323f09ad2b93b0449a66bd0e7209a7ad6f70209bec87985ad4f419ed84d6a7927303a67939b44334f29f278b18
2452+Homepage: https://www.x.org/
2453+Description: X.Org X server -- output driver metapackage
2454+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2455+Description-md5: d6c33380f65bba53cd75efae633435bf
2456+
2457+Package: xserver-xorg-video-amdgpu
2458+Architecture: amd64
2459+Version: 22.0.0-3
2460+Priority: optional
2461+Section: x11
2462+Origin: Ubuntu
2463+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2464+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2465+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2466+Installed-Size: 184
2467+Provides: xorg-driver-video
2468+Depends: libc6 (>= 2.17), libdrm-amdgpu1 (>= 2.4.73), libgbm1 (>= 8.1~0), libudev1 (>= 183), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2469+Suggests: firmware-amd-graphics
2470+Filename: pool/main/x/xserver-xorg-video-amdgpu/xserver-xorg-video-amdgpu_22.0.0-3_amd64.deb
2471+Size: 69696
2472+MD5sum: ab29fb664d3e1c6c27ccbecece0e6575
2473+SHA1: c78674b5e09281ea58f620f9c565cd35514482d3
2474+SHA256: 107461f371574caaf34a87b9b69731d52e0a2899dbe37d4786196d525410a576
2475+SHA512: da7a84fb96be33e400827f91933c5a76e64a8e816a382574133ce40ffc2430856922e484bb6fb6403f21c180739f4aee24b1dc9a54c7de8a55a8871b49449dd8
2476+Description: X.Org X server -- AMDGPU display driver
2477+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2478+Description-md5: e2b193b8ecbf0f4c08a535d8f9541c51
2479+
2480+Package: xserver-xorg-video-ati
2481+Architecture: amd64
2482+Version: 1:19.1.0-3
2483+Priority: optional
2484+Section: x11
2485+Origin: Ubuntu
2486+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2487+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2488+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2489+Installed-Size: 50
2490+Provides: xorg-driver-video
2491+Depends: libc6 (>= 2.4), libpciaccess0, xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1), xserver-xorg-video-radeon
2492+Suggests: xserver-xorg-video-r128, xserver-xorg-video-mach64
2493+Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_19.1.0-3_amd64.deb
2494+Size: 7280
2495+MD5sum: 3712a93315922a54d4b99400771ccd9e
2496+SHA1: 5e6c7686ad1014665390f94f99f04df5bea2f976
2497+SHA256: 6372e0bd744014ab6a2a2a43f8201071d857d8ec82aeb58e1de7da767afe995a
2498+SHA512: 1a80940f2d0dfc1aab67515eef636a2f395d7cf048fa8d19be71accd19b195f29703da5fc484724d1c9acf8ce21e2bfd31c80c34d7d3a08c3aedd05a5e43e4ee
2499+Homepage: https://wiki.freedesktop.org/xorg/RadeonFeature/
2500+Description: X.Org X server -- AMD/ATI display driver wrapper
2501+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2502+Description-md5: f033d1f2dd0d21738c7fdc5296ac1d8d
2503+
2504+Package: xserver-xorg-video-dummy
2505+Architecture: amd64
2506+Version: 1:0.4.0-1
2507+Priority: optional
2508+Section: x11
2509+Origin: Ubuntu
2510+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2511+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2512+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2513+Installed-Size: 41
2514+Provides: xorg-driver-video
2515+Depends: libc6 (>= 2.4), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2516+Filename: pool/main/x/xserver-xorg-video-dummy/xserver-xorg-video-dummy_0.4.0-1_amd64.deb
2517+Size: 11434
2518+MD5sum: 6b33b91cd29cfa84f69d677143fde8f3
2519+SHA1: 5eb28c0bf7f4a621e3f0f4b47c39557b23717b1a
2520+SHA256: 8ca2b90d90233a2143bb54f48537b0b2acf444c7d8e09ac4bcf2a2122921bf08
2521+SHA512: e9bff3397edb45e0bc6084f3d7fab6c006bdd48a60ede036a79550992844ced94ceeee6a4e5d0c68b2bc796f8aec5d5b8d7df77943fd82a701d5d0f420f525b4
2522+Description: X.Org X server -- dummy display driver
2523+Description-md5: 43e4fd7aaa94ac5f196f6eb508f1969c
2524+
2525+Package: xserver-xorg-video-fbdev
2526+Architecture: amd64
2527+Version: 1:0.5.0-2build1
2528+Priority: optional
2529+Section: x11
2530+Origin: Ubuntu
2531+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2532+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2533+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2534+Installed-Size: 55
2535+Provides: xorg-driver-video
2536+Depends: libc6 (>= 2.4), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2537+Filename: pool/main/x/xserver-xorg-video-fbdev/xserver-xorg-video-fbdev_0.5.0-2build1_amd64.deb
2538+Size: 13298
2539+MD5sum: 196ad813b0def66b065ce5b4198fe600
2540+SHA1: c6a40c52632b184c05b9f6f3af385a90620b24cd
2541+SHA256: 05b48348324fa2d2fc05dfdea338833394921f3eb33787eed8438a0db78b53f4
2542+SHA512: ad3658522b0ae5291f38a8cf391db5ccd202dd1eb9ef87dc75b4f45207666a83a104e880708d45f031048641be089db9ea8b4fafbcf91fd3c3412c8d10566567
2543+Description: X.Org X server -- fbdev display driver
2544+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2545+Description-md5: 64c436c9c202e79fa1c638b0252edf4c
2546+
2547+Package: xserver-xorg-video-intel
2548+Architecture: amd64
2549+Version: 2:2.99.917+git20210115-1
2550+Priority: optional
2551+Section: x11
2552+Origin: Ubuntu
2553+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2554+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2555+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2556+Installed-Size: 3210
2557+Provides: xorg-driver-video
2558+Depends: libc6 (>= 2.34), libdrm-intel1 (>= 2.4.38), libdrm2 (>= 2.4.62), libpciaccess0 (>= 0.8.0+git20071002), libpixman-1-0 (>= 0.30.0), libudev1 (>= 183), libx11-6, libx11-xcb1 (>= 2:1.7.2), libxcb-dri2-0, libxcb-util1 (>= 0.4.0), libxcb1, libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxinerama1 (>= 2:1.1.4), libxrandr2 (>= 2:1.2.99.2), libxrender1, libxss1, libxtst6, libxvmc1 (>= 2:1.0.12), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2559+Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.99.917+git20210115-1_amd64.deb
2560+Size: 774664
2561+MD5sum: 38037d0ac91f62ed022feebb4d4bbbb8
2562+SHA1: 4f228127d2bc432114956224b528779ac7374701
2563+SHA256: 9e99664d9262f6d340a914e1917ce3b3abffba9528f1e9796e552b7fa1019dfc
2564+SHA512: e1c832968c6c080ef277c7e2eb4460b2f4bc521a79b991993c42a37dd1276372a44839de711e1b21c95c9a6793339c0de4ca4128d547e74a6a8232b1c1cb64e9
2565+Homepage: https://www.x.org/
2566+Description: X.Org X server -- Intel i8xx, i9xx display driver
2567+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2568+Description-md5: 6f99289cb68f1933937f7c2f79305530
2569+
2570+Package: xserver-xorg-video-nouveau
2571+Architecture: amd64
2572+Version: 1:1.0.17-2build1
2573+Priority: optional
2574+Section: x11
2575+Origin: Ubuntu
2576+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2577+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2578+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2579+Installed-Size: 268
2580+Provides: xorg-driver-video
2581+Depends: libc6 (>= 2.33), libdrm-nouveau2 (>= 2.4.38), libdrm2 (>= 2.4.61), libudev1 (>= 183), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2582+Recommends: libgl1-mesa-dri (>= 9.0)
2583+Suggests: firmware-misc-nonfree
2584+Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau_1.0.17-2build1_amd64.deb
2585+Size: 93596
2586+MD5sum: 660127099d62a3523f4faa46190c3329
2587+SHA1: 09cbd81e53dee033b7bfceb4dfee1282d6b38364
2588+SHA256: 7342bf1f4278ac57c09202ca756d46288f8247247c49c7d909b612b6f7710a85
2589+SHA512: d717424e963b079c810654384ac3413dfc2f001377567d9e25861b12ed84712e1edb4122da0b804ff798ecaf3f5e3f1aa77b5b5eee8c70c8fea9bac83c4d63a2
2590+Homepage: https://nouveau.freedesktop.org/wiki/
2591+Description: X.Org X server -- Nouveau display driver
2592+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2593+Description-md5: b084a16945b86c1eda89ad33dbb4530d
2594+
2595+Package: xserver-xorg-video-qxl
2596+Architecture: amd64
2597+Version: 0.1.5+git20200331-3
2598+Priority: optional
2599+Section: x11
2600+Origin: Ubuntu
2601+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2602+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2603+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2604+Installed-Size: 190
2605+Provides: xorg-driver-video
2606+Depends: libc6 (>= 2.14), libudev1 (>= 183), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2607+Filename: pool/main/x/xserver-xorg-video-qxl/xserver-xorg-video-qxl_0.1.5+git20200331-3_amd64.deb
2608+Size: 82950
2609+MD5sum: 5c3a38421291cf17dea764cf0bfb5bb1
2610+SHA1: b4a57ee419acc025187e4ed8b2be05379cc069d1
2611+SHA256: ae8095c399a7b72514f44c93b5dbb398eda803e120228f0cfe103745bf1964e3
2612+SHA512: da9de9271d0ba9e18a89577eb393c5d35ef4ed15ba041ca33649e81ebe603e69d0382dda1171a90e009ce62e2eb39784ed44a8b36bec2dcb7a527566f57b8c36
2613+Homepage: https://www.spice-space.org/
2614+Description: X.Org X server -- QXL display driver
2615+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2616+Description-md5: 9d2c19c3827f1261a65414b2acd67b67
2617+
2618+Package: xserver-xorg-video-radeon
2619+Architecture: amd64
2620+Version: 1:19.1.0-3
2621+Priority: optional
2622+Section: x11
2623+Source: xserver-xorg-video-ati
2624+Origin: Ubuntu
2625+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2626+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2627+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2628+Installed-Size: 526
2629+Provides: xorg-driver-video
2630+Depends: libc6 (>= 2.17), libdrm-radeon1 (>= 2.4.39), libgbm1 (>= 8.1~0), libudev1 (>= 183), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2631+Suggests: firmware-amd-graphics
2632+Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_19.1.0-3_amd64.deb
2633+Size: 161108
2634+MD5sum: 861c5d5aab53262f2d8235aa9aa0732a
2635+SHA1: 46a35f02f280ee4ca8d520644af6cdf35d7415e0
2636+SHA256: 0ff22f9ea37be675a0377110b0c2bc40652ed1bacc51f3e3229547e15c7c50d0
2637+SHA512: 3d6b1dd09916535d0a34ac0c5c5fd35dbb43a52c3f8f404fdbeea5ef166ecd094768e665eab5a542c2cb89ae293de6c07e37252a8e6bbe5895470c4b9546fae0
2638+Homepage: https://wiki.freedesktop.org/xorg/RadeonFeature/
2639+Description: X.Org X server -- AMD/ATI Radeon display driver
2640+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2641+Description-md5: 0fde75386f38d2861207c166e64f19d4
2642+
2643+Package: xserver-xorg-video-vesa
2644+Architecture: amd64
2645+Version: 1:2.5.0-1build4
2646+Priority: optional
2647+Section: x11
2648+Origin: Ubuntu
2649+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2650+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2651+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2652+Installed-Size: 54
2653+Provides: xorg-driver-video
2654+Depends: libc6 (>= 2.14), xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2655+Filename: pool/main/x/xserver-xorg-video-vesa/xserver-xorg-video-vesa_2.5.0-1build4_amd64.deb
2656+Size: 15886
2657+MD5sum: 0d89fb52201757a7e539065fe4a22137
2658+SHA1: a4f72bfc37160ba64a0e0439ab8c51d8368c8f61
2659+SHA256: d54152272828c7ceba172b65caccb4bc99d0eff328076fca8d0ae20bbc2b442f
2660+SHA512: 9912ef34cad7c5d903d3d2acf72f9960d7bc987525c9a0e42b5456b5d8c8b99eb8bb68ac7438c13b0870ee30c927648ee632140d87dd0ae301ea62bbbe97047d
2661+Description: X.Org X server -- VESA display driver
2662+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2663+Description-md5: 09beb2a31bd27ae3444fb260bf0f887f
2664+
2665+Package: xserver-xorg-video-vmware
2666+Architecture: amd64
2667+Version: 1:13.3.0-3.1
2668+Priority: optional
2669+Section: x11
2670+Origin: Ubuntu
2671+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2672+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2673+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2674+Installed-Size: 204
2675+Provides: xorg-driver-video
2676+Depends: libc6 (>= 2.34), libdrm2 (>= 2.4.60), libudev1 (>= 183), libx11-6 (>= 2:1.4.99.1), libxatracker2 (>= 11.1.0~), libxext6, xorg-video-abi-25, xserver-xorg-core (>= 2:21.1.1)
2677+Filename: pool/main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_13.3.0-3.1_amd64.deb
2678+Size: 75710
2679+MD5sum: 6cda404690a00b6c5a648af06a84b577
2680+SHA1: f568ffef863a790457930f0a77e78b6cfcb843fc
2681+SHA256: 75788494cf74b6d2c9d289dac8a9143317256be6a2baf6a1daa1598f503ada5e
2682+SHA512: 39bd95d78f25a5193a525126424f23974b68d8e12b64a897d6dc301ca2c60ae973369531e90ce41f20f09ae1ed745b96f049db2650393bcda4764b90ec8d5037
2683+Description: X.Org X server -- VMware display driver
2684+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2685+Description-md5: 21afce1387bf1052ec99956e90ec2d1c
2686+
2687+Package: xsltproc
2688+Architecture: amd64
2689+Version: 1.1.35-1
2690+Multi-Arch: foreign
2691+Priority: optional
2692+Section: text
2693+Source: libxslt
2694+Origin: Ubuntu
2695+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2696+Original-Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@lists.alioth.debian.org>
2697+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2698+Installed-Size: 162
2699+Depends: libc6 (>= 2.34), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.27)
2700+Filename: pool/main/libx/libxslt/xsltproc_1.1.35-1_amd64.deb
2701+Size: 14870
2702+MD5sum: c9025ec11861182b4b3ac4a5e18cda90
2703+SHA1: d2c1de5c37a27464f56a0dddc9bb5ca26619c9ac
2704+SHA256: 9085102552d3eb0824f757bfc9bcc5dda873b43a8291385ef726de6d78d42312
2705+SHA512: 99f0b3207627eae36a190527059cbd6791cc75731bed33e5a1e3cb6f50a78b1d4ec80fccc2896d95e3ebe8c8579658afc4fdd85f5ac33fd240240a1d2fe6d3d2
2706+Homepage: https://gitlab.gnome.org/GNOME/libxslt/-/wikis/home
2707+Description: XSLT 1.0 command line processor
2708+Description-md5: 269c4daf3d326a815e26cdd2e64cf686
2709+
2710+Package: xtrans-dev
2711+Architecture: all
2712+Version: 1.4.0-1
2713+Multi-Arch: foreign
2714+Priority: optional
2715+Section: x11
2716+Source: xtrans
2717+Origin: Ubuntu
2718+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2719+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2720+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2721+Installed-Size: 302
2722+Filename: pool/main/x/xtrans/xtrans-dev_1.4.0-1_all.deb
2723+Size: 68900
2724+MD5sum: 5411362f7caeccc1185750f3a1a508ee
2725+SHA1: edb12d6a666d507e1cb1589ab0c24434001878d5
2726+SHA256: 45277c51d5d83db351b61859314b59595c9626ac372fbb2fc0d5542e169d9086
2727+SHA512: bd7b220c57f705f7f6274f1c12166042f5f82d4a39ef54c8b968c8fc58fa3439233431a6a175ab41487a45ce09e035eecd6baffb1eebac845328d4d50363d16f
2728+Description: X transport library (development files)
2729+Task: lubuntu-desktop, ubuntu-unity-desktop
2730+Description-md5: 3e54bc7198040be15a6ef352cf9a6812
2731+
2732+Package: xwayland
2733+Architecture: amd64
2734+Version: 2:22.1.8-1
2735+Priority: optional
2736+Section: x11
2737+Origin: Ubuntu
2738+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2739+Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
2740+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2741+Installed-Size: 2286
2742+Depends: xserver-common, libc6 (>= 2.35), libdrm2 (>= 2.4.75), libepoxy0 (>= 1.5.4), libgbm1 (>= 17.1.0~rc2), libgcrypt20 (>= 1.10.0), libgl1, libpixman-1-0 (>= 0.30.0), libtirpc3 (>= 1.0.2), libwayland-client0 (>= 1.20.0), libxau6 (>= 1:1.0.9), libxcvt0 (>= 0.1.0), libxdmcp6, libxfont2 (>= 1:2.0.1), libxshmfence1
2743+Filename: pool/main/x/xwayland/xwayland_22.1.8-1_amd64.deb
2744+Size: 930246
2745+MD5sum: 095eae6ce94cf3ab0565c48391bf5ec6
2746+SHA1: 889b6b85b607143b5c5b22e8a45d6240042dc754
2747+SHA256: 176378d2847e70c7f4c0590946bad72e82ea5690e65c661c687a10bf07cd6f93
2748+SHA512: 9179b997967b64d6f198d59928acfdd0ebb92825d62a0b4b6e5584abc6a8016e3011d7f016d601bc16317267660160224b86a408b599ace58687e1edf58575bb
2749+Homepage: https://www.x.org/
2750+Description: X server for running X clients under Wayland
2751+Task: ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, kubuntu-full, ubuntustudio-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2752+Description-md5: 46119f00e9401992b76d381dca9d3438
2753+
2754+Package: xxd
2755+Architecture: amd64
2756+Version: 2:9.0.1000-4ubuntu2
2757+Multi-Arch: foreign
2758+Priority: important
2759+Section: editors
2760+Source: vim
2761+Origin: Ubuntu
2762+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2763+Original-Maintainer: Debian Vim Maintainers <team+vim@tracker.debian.org>
2764+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2765+Installed-Size: 126
2766+Depends: libc6 (>= 2.34)
2767+Breaks: vim-common (<< 2:7.4.2347-1~)
2768+Replaces: vim-common (<< 2:7.4.2347-1~)
2769+Filename: pool/main/v/vim/xxd_9.0.1000-4ubuntu2_amd64.deb
2770+Size: 49178
2771+MD5sum: c447b0dd356903f587b7891506172390
2772+SHA1: adc929a7849bc1044cbc8cc1882e6667b1392813
2773+SHA256: 954ddc290de4923bce4e728a6be7a0f87a2461baec95b137b7b1483cc9a79d73
2774+SHA512: 2f3e5d7fa2529cba9164abbb19becb6d6e55e315914497bcbc406e99177aa5f272d8199f72d3e18bea5dd37437f15fa1561bff119beee43f943b414092fc7619
2775+Homepage: https://www.vim.org/
2776+Description: tool to make (or reverse) a hex dump
2777+Task: minimal, server-minimal
2778+Description-md5: d658dacad23806722eb421aab7cc53e5
2779+
2780+Package: xz-utils
2781+Architecture: amd64
2782+Version: 5.4.1-0.0
2783+Multi-Arch: foreign
2784+Priority: standard
2785+Section: utils
2786+Origin: Ubuntu
2787+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2788+Original-Maintainer: Jonathan Nieder <jrnieder@gmail.com>
2789+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2790+Installed-Size: 644
2791+Provides: lzma
2792+Depends: libc6 (>= 2.34), liblzma5 (>= 5.4.0)
2793+Conflicts: lzma (<< 9.22-1), xz-lzma
2794+Breaks: lzip (<< 1.8~rc2), manpages-de (<< 4.1.0-1), manpages-fr (<< 4.1.0-1)
2795+Replaces: lzip (<< 1.8~rc2), manpages-de (<< 4.1.0-1), manpages-fr (<< 4.1.0-1), xz-lzma
2796+Filename: pool/main/x/xz-utils/xz-utils_5.4.1-0.0_amd64.deb
2797+Size: 239950
2798+MD5sum: b9e936347a34e27be83fafda20594859
2799+SHA1: e2425021e31e877e340131bc3cef1db9d3551978
2800+SHA256: 25cc6c552d6d438242048d994b6d72ed7db382d3226356f39c55dd50e95ff494
2801+SHA512: 859f7b466bb4f75d8593a940d67c46ee9fc1463a04dfcbc238edf288bbf4038d4004e3eb21d5fd36f80dabe1f61d5f7466bd304d434ffb0f1d8dd99d0a7f0bff
2802+Homepage: https://tukaani.org/xz/
2803+Description: XZ-format compression utilities
2804+Task: standard, server-minimal, ubuntu-wsl, edubuntu-wsl
2805+Description-md5: ea97a558c8575aebbed2c11cbd20e0f2
2806+Build-Essential: yes
2807+
2808+Package: yaru-theme-gnome-shell
2809+Architecture: all
2810+Version: 22.10.3-1
2811+Priority: optional
2812+Section: misc
2813+Source: yaru-theme
2814+Origin: Ubuntu
2815+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2816+Original-Maintainer: Debian Desktop Theme Team <yaru-theme@packages.debian.org>
2817+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2818+Installed-Size: 10158
2819+Breaks: gnome-shell (<< 43~)
2820+Filename: pool/main/y/yaru-theme/yaru-theme-gnome-shell_22.10.3-1_all.deb
2821+Size: 74980
2822+MD5sum: f2ac0c72584b2e3307a64765f0c22e35
2823+SHA1: 30362f8fee0eb149373bc3cd6736a7d2adea11ef
2824+SHA256: 954b37e36674182b313fa839d9d991aa39f6a12d58646ec514ca58860cef5408
2825+SHA512: 2a8d6ddebc273bcfac44b47f02e452aac6c982adbf3327714c671d261da064fa9112e1c97e2408463390b1fd072e87ddda1f8ad28467cf87b5cec2b22ed676d5
2826+Homepage: https://github.com/ubuntu/yaru
2827+Description: Yaru GNOME Shell desktop theme from the Ubuntu Community
2828+Task: ubuntu-desktop-minimal, ubuntu-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2829+Description-md5: df1960daa1bf06cfb631cb74ba506b27
2830+
2831+Package: yaru-theme-gtk
2832+Architecture: all
2833+Version: 22.10.3-1
2834+Priority: optional
2835+Section: misc
2836+Source: yaru-theme
2837+Origin: Ubuntu
2838+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2839+Original-Maintainer: Debian Desktop Theme Team <yaru-theme@packages.debian.org>
2840+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2841+Installed-Size: 28469
2842+Depends: gnome-themes-extra, gtk2-engines-pixbuf, gtk2-engines-murrine, libglib2.0-bin
2843+Filename: pool/main/y/yaru-theme/yaru-theme-gtk_22.10.3-1_all.deb
2844+Size: 653372
2845+MD5sum: 5d76d12feca356c5d8ec6e7cf9c92715
2846+SHA1: 83d9097f47aa8982b9305d62f93c6466914583c4
2847+SHA256: 431991a01fe39827b661c2e9e8a1efef4b462d0ed0247493b929d2b094b6b5b3
2848+SHA512: 55f5291a7ffe1f5477f9bd7f307a59564e8d0bbd409f8de76f12671d97ef92caff1481912ed533713c1caf752e325d056a85dbcbe320a19be1ed936ad6712d38
2849+Homepage: https://github.com/ubuntu/yaru
2850+Description: Yaru GTK theme from the Ubuntu Community
2851+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2852+Description-md5: 9233c6e7e5e658941fa43c9d66c2ff6b
2853+
2854+Package: yaru-theme-icon
2855+Architecture: all
2856+Version: 22.10.3-1
2857+Priority: optional
2858+Section: misc
2859+Source: yaru-theme
2860+Origin: Ubuntu
2861+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2862+Original-Maintainer: Debian Desktop Theme Team <yaru-theme@packages.debian.org>
2863+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2864+Installed-Size: 108800
2865+Filename: pool/main/y/yaru-theme/yaru-theme-icon_22.10.3-1_all.deb
2866+Size: 27262646
2867+MD5sum: 4949b19a459e3133a288a9255acd020a
2868+SHA1: 4d2462d73da774e54c073e67145f5afe61d2a7d9
2869+SHA256: 68cf8a40944920807d8f3e8114d00e8178b6794dd07c764cc0ffd853cca81ec8
2870+SHA512: 0c0b8809583acdb04d4d1bdcfb1c2cdbce6e50baf4e8c55e5c8ca40e2b5152c24e07edf9f34036a58a240de697cf330c5194b9c6a07523c5253bf99d158e6cc1
2871+Homepage: https://github.com/ubuntu/yaru
2872+Description: Yaru icon theme from the Ubuntu Community
2873+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2874+Description-md5: c87b5d085e2e33248552c237e0889612
2875+
2876+Package: yaru-theme-sound
2877+Architecture: all
2878+Version: 22.10.3-1
2879+Priority: optional
2880+Section: misc
2881+Source: yaru-theme
2882+Origin: Ubuntu
2883+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2884+Original-Maintainer: Debian Desktop Theme Team <yaru-theme@packages.debian.org>
2885+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2886+Installed-Size: 778
2887+Filename: pool/main/y/yaru-theme/yaru-theme-sound_22.10.3-1_all.deb
2888+Size: 483782
2889+MD5sum: 386c6f2a016917bea8939348472dc9ce
2890+SHA1: bbb5a0a49f0550ad348bb57d095346c79589a442
2891+SHA256: 8b3cacf3c7be944166992d767a031349a84eb0e49f3a847923ebbed26bb4ecf5
2892+SHA512: c6c60f396988455ca5bd249107913e07937e7ed7b169eff071fd8c4dbf26dfa67eaf8e2200d2fbeab99f9d8974144990752f9e60b643f471fece2e359649e6e4
2893+Homepage: https://github.com/ubuntu/yaru
2894+Description: Yaru sound theme from the Ubuntu Community
2895+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-mate-core, ubuntu-mate-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2896+Description-md5: 4d20510de98f2150f6880c6d066f0bcd
2897+
2898+Package: yelp
2899+Architecture: amd64
2900+Version: 42.2-1
2901+Priority: optional
2902+Section: gnome
2903+Origin: Ubuntu
2904+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2905+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
2906+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2907+Installed-Size: 2124
2908+Depends: libatk1.0-0 (>= 1.12.4), libbz2-1.0, libc6 (>= 2.34), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.2.4), libgdk-pixbuf-2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.67.4), libgtk-3-0 (>= 3.13.3), libhandy-1-0 (>= 1.5.0), libharfbuzz0b (>= 0.6.0), libjavascriptcoregtk-4.1-0 (>= 2.38.0), liblzma5 (>= 5.1.1alpha+20110809), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libsoup-3.0-0 (>= 2.4.0), libsqlite3-0 (>= 3.5.9), libwebkit2gtk-4.1-0 (>= 2.5.3), libxml2 (>= 2.6.27), libxslt1.1 (>= 1.1.25), libyelp0 (= 42.2-1), dconf-gsettings-backend | gsettings-backend, python3-distro, yelp-xsl (>= 41~), man-db (>= 2.5.1-1)
2909+Recommends: docbook-xml
2910+Filename: pool/main/y/yelp/yelp_42.2-1_amd64.deb
2911+Size: 548318
2912+MD5sum: 054dc5d63302f75d90ec8875192b5723
2913+SHA1: c43e8bd278266ba7b59aee79166b6f9046ce5369
2914+SHA256: 453a1b66d19f32c54e7568bee06853ec39a58e8cd9add24f58d2234d4643a135
2915+SHA512: 602ec94a2dbd738e488ef11e025a09258bff91b7f499ad3d06b558f2a09b5073c3a8e8d9854c34cb1c53c784b69f36bff241b5a0255211644b2dc0b3aed61a8c
2916+Homepage: https://wiki.gnome.org/Apps/Yelp
2917+Description: Help browser for GNOME
2918+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, xubuntu-minimal, xubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2919+Description-md5: b660f3f94d2a495572d2b53c6824da41
2920+
2921+Package: yelp-xsl
2922+Architecture: all
2923+Version: 42.1-2
2924+Multi-Arch: foreign
2925+Priority: optional
2926+Section: gnome
2927+Origin: Ubuntu
2928+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2929+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
2930+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2931+Installed-Size: 1439
2932+Filename: pool/main/y/yelp-xsl/yelp-xsl_42.1-2_all.deb
2933+Size: 200644
2934+MD5sum: 8a84b02bd91539357180d17bada131fa
2935+SHA1: 5871d47e20ce42caa5e202f779e7bfbadfcc8511
2936+SHA256: 7f08defc888de8db1b03003e9bcd48c5dfbb0d449c52c3d6660c114699b51871
2937+SHA512: feea3b845f4f907dc34cb6ad79dcd07dd469856a1ef8803e98a88fbee8e95eacfd691d74bfc6f2a1729cd04dd9ca87537eb656a1624bb970bff5e8fbd16fc4e6
2938+Homepage: https://wiki.gnome.org/Apps/Yelp
2939+Description: XSL stylesheets for the yelp help browser
2940+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, xubuntu-minimal, xubuntu-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
2941+Description-md5: 9ccda596c294dc3049012cfa172e5063
2942+
2943+Package: zenity
2944+Architecture: amd64
2945+Version: 3.44.0-1
2946+Multi-Arch: foreign
2947+Priority: optional
2948+Section: gnome
2949+Origin: Ubuntu
2950+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2951+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
2952+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2953+Installed-Size: 173
2954+Depends: libc6 (>= 2.34), libgdk-pixbuf-2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk-3-0 (>= 3.19.12), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libwebkit2gtk-4.1-0 (>= 2.15.1), libx11-6, zenity-common (>= 3.44.0-1)
2955+Filename: pool/main/z/zenity/zenity_3.44.0-1_amd64.deb
2956+Size: 65590
2957+MD5sum: ac3149524d0cd5e42b4b925585438289
2958+SHA1: 9e69d48fa029a2fb8bd73d56acceb676d7779f00
2959+SHA256: 9e055c964b81c8344b466f4a205795e916bd4ba91c74b4514fff2b59d9d417ae
2960+SHA512: 44709e655bb9c1d7b311f0657486ebdd49526bcac5daa7da7cb3463fed5c3ce6a113a37016be7d80d05c7222e406546f50e9209e2fc4cd2ea6be724f9401a91c
2961+Homepage: https://wiki.gnome.org/Projects/Zenity
2962+Description: Display graphical dialog boxes from shell scripts
2963+Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2964+Description-md5: 0eaa042a6247aca86bac2f94a69fc906
2965+
2966+Package: zenity-common
2967+Architecture: all
2968+Version: 3.44.0-1
2969+Multi-Arch: foreign
2970+Priority: optional
2971+Section: gnome
2972+Source: zenity
2973+Origin: Ubuntu
2974+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2975+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
2976+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2977+Installed-Size: 1636
2978+Filename: pool/main/z/zenity/zenity-common_3.44.0-1_all.deb
2979+Size: 275942
2980+MD5sum: fbc59ef6906c527bfeb0e765989de556
2981+SHA1: e37c9c22e7c6ff4856389e4edebdbf2d182f247b
2982+SHA256: 302b7d214ec9c0cde0948d6a4e44cc11c6ed0252d281251561985e4803781db6
2983+SHA512: 55d6d2a89f43abbef572afb9606b5338825690cc6d96ade980d8d541ca2014d8f003b806c08a46795c473b1627523bd394cd0f072726b140b23b1073b91f8003
2984+Homepage: https://wiki.gnome.org/Projects/Zenity
2985+Description: Display graphical dialog boxes from shell scripts (common files)
2986+Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome
2987+Description-md5: 31577d10cdc7dea3e76b1ffaca46c1f6
2988+
2989+Package: zerofree
2990+Architecture: amd64
2991+Version: 1.1.1-1build3
2992+Priority: extra
2993+Section: admin
2994+Origin: Ubuntu
2995+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2996+Original-Maintainer: Thibaut Paumard <thibaut@debian.org>
2997+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
2998+Installed-Size: 30
2999+Depends: libc6 (>= 2.34), libext2fs2 (>= 1.42)
3000+Filename: pool/main/z/zerofree/zerofree_1.1.1-1build3_amd64.deb
3001+Size: 8814
3002+MD5sum: c16eab0131c22e00cd53ce60400f50fe
3003+SHA1: 45aa04ef31af497aae9d4870b8dc689051a50eff
3004+SHA256: b65039dcc39ab399264e5cea9dd26996d7422b04983a044baca578e436d1072c
3005+SHA512: b3bc4e3c22c02c892a90cfa71297f24dd7f61dfe606e5260422536f0ea1841908aeced4c57fdab923e85a35f823dcbde630a7a59f0536eb1fbe5f201d1e72e09
3006+Homepage: https://frippery.org/uml/
3007+Description: zero free blocks from ext2, ext3 and ext4 file-systems
3008+Task: cloud-image, server, ubuntu-server-raspi, edubuntu-server-raspi
3009+Description-md5: e8c47b284082ddf9145a003c9cbeafdb
3010+
3011+Package: zfs-initramfs
3012+Architecture: all
3013+Version: 2.1.7-1ubuntu1
3014+Priority: extra
3015+Section: kernel
3016+Source: zfs-linux
3017+Origin: Ubuntu
3018+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3019+Original-Maintainer: Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@alioth-lists.debian.net>
3020+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3021+Installed-Size: 116
3022+Depends: busybox-initramfs | busybox-static | busybox, initramfs-tools, zfsutils-linux (>= 2.1.7-1ubuntu1)
3023+Breaks: zfsutils-linux (<= 0.7.11-2)
3024+Replaces: zfsutils-linux (<= 0.7.11-2)
3025+Filename: pool/main/z/zfs-linux/zfs-initramfs_2.1.7-1ubuntu1_all.deb
3026+Size: 24892
3027+MD5sum: 60c56e73f939be48c58f32ac22969247
3028+SHA1: 56f8f8a3da64f5d6c74d75a111f2e83004846374
3029+SHA256: 4898acf6abae6200f5c007e1cfa3a9ac2db39ea239d14a4496c3eef4ca4ffd8a
3030+SHA512: fc432a278526f1e4477ae7e822c8ca354557df334585ee099944fde14f9a86f46d5ab9f88e15404d399bccc0db549a8dc256e59dcb2f2f5d735339b78cdb91dd
3031+Homepage: https://zfsonlinux.org/
3032+Description: OpenZFS root filesystem capabilities for Linux - initramfs
3033+Task: ubuntu-live, xubuntu-live, ubuntukylin-live, ubuntu-mate-live, ubuntu-budgie-live
3034+Description-md5: ed136876804c562cd1f81b87863a33a9
3035+
3036+Package: zfs-zed
3037+Architecture: amd64
3038+Version: 2.1.7-1ubuntu1
3039+Priority: extra
3040+Section: admin
3041+Source: zfs-linux
3042+Origin: Ubuntu
3043+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3044+Original-Maintainer: Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@alioth-lists.debian.net>
3045+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3046+Installed-Size: 262
3047+Pre-Depends: init-system-helpers (>= 1.54~)
3048+Depends: zfsutils-linux (>= 2.1.7-1ubuntu1), libc6 (>= 2.34), libnvpair3linux (>= 0.8.2), libudev1 (>= 183), libuuid1 (>= 2.16), libuutil3linux (>= 0.8.2), libzfs4linux (>= 2.0)
3049+Filename: pool/main/z/zfs-linux/zfs-zed_2.1.7-1ubuntu1_amd64.deb
3050+Size: 65364
3051+MD5sum: 52c555351c93ebe94719d8ca36d63aed
3052+SHA1: ed12f6b740fcf15bffc7b0e37652ece8a2747102
3053+SHA256: 1323d3f4359b89e6f2d67e314a5b6daa7c4bffdb14f31a4aaa54c70b017c086f
3054+SHA512: 71fb3721fdd25fadfb4a24ca74952feb5823f1fc2dcb6798550c1a01c5e8f2d377008fb9a4b92b09274155d6b4f1eadae8172777473a334c2b6b5ded8e7bf386
3055+Homepage: https://zfsonlinux.org/
3056+Description: OpenZFS Event Daemon
3057+Task: ubuntu-live, xubuntu-live, ubuntukylin-live, ubuntu-mate-live, ubuntu-budgie-live
3058+Description-md5: 371f25433afc0f13d827a77c432615a1
3059+
3060+Package: zfsutils-linux
3061+Architecture: amd64
3062+Version: 2.1.7-1ubuntu1
3063+Priority: extra
3064+Section: admin
3065+Source: zfs-linux
3066+Origin: Ubuntu
3067+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3068+Original-Maintainer: Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@alioth-lists.debian.net>
3069+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3070+Installed-Size: 1614
3071+Provides: zfsutils
3072+Pre-Depends: init-system-helpers (>= 1.54~)
3073+Depends: libnvpair3linux (= 2.1.7-1ubuntu1), libuutil3linux (= 2.1.7-1ubuntu1), libzfs4linux (= 2.1.7-1ubuntu1), libzpool5linux (= 2.1.7-1ubuntu1), python3, libblkid1 (>= 2.16), libc6 (>= 2.34), libuuid1 (>= 2.16)
3074+Recommends: lsb-base, zfs-zed
3075+Suggests: nfs-kernel-server, samba-common-bin (>= 3.0.23), zfs-initramfs | zfs-dracut
3076+Conflicts: zfs, zfs-fuse
3077+Breaks: openrc, spl (<< 0.7.9-2), spl-dkms (<< 0.8.0~rc1), zfs-dkms (>> 2.1.7-1ubuntu1...), zfs-dkms (<< 2.1.7-1ubuntu1)
3078+Replaces: spl (<< 0.7.9-2), spl-dkms
3079+Filename: pool/main/z/zfs-linux/zfsutils-linux_2.1.7-1ubuntu1_amd64.deb
3080+Size: 496374
3081+MD5sum: 5b40698756f6f10bda16b94de41b60a9
3082+SHA1: b62244742ebd96f21d9af4daa1f83a58415066dc
3083+SHA256: c41e424fd8a02336428b6a08cbcd15f4ccf8602ded505ddab5613221f66b5425
3084+SHA512: d69e9d8634f82fd124125f696f3e1ef35621d5bb2475da2d4ce979f316d2dc5b2551f1dc01f39501ee87cf1d4ebbbc8181b59348a675f2efedff93d75b3c0b7e
3085+Homepage: https://zfsonlinux.org/
3086+Description: command-line tools to manage OpenZFS filesystems
3087+Task: ubuntu-live, xubuntu-live, ubuntukylin-live, ubuntu-mate-live, ubuntu-budgie-live
3088+Description-md5: e0d1624ff402201471b9a32e9cb71f16
3089+
3090+Package: zip
3091+Architecture: amd64
3092+Version: 3.0-12build2
3093+Multi-Arch: foreign
3094+Priority: optional
3095+Section: utils
3096+Origin: Ubuntu
3097+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3098+Original-Maintainer: Santiago Vila <sanvila@debian.org>
3099+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3100+Installed-Size: 531
3101+Depends: libbz2-1.0, libc6 (>= 2.34)
3102+Recommends: unzip
3103+Filename: pool/main/z/zip/zip_3.0-12build2_amd64.deb
3104+Size: 175730
3105+MD5sum: e005b780185b9eef9b24c3a4943e0ba7
3106+SHA1: c410f13c2c900d5b460f911792b271ae02e3fd0f
3107+SHA256: f4b43f651abf5f4835792f01d97410221403f14961d363dbd2864990b97620ce
3108+SHA512: 13f5b9c2f4be2382cb9d32e4e14fb03c809bffe87e6717461004ad6bfa78e9b661376de1e66f98873a5aee238002c22f6c2be1774be9cc9228811f01b6fc113f
3109+Homepage: http://www.info-zip.org/Zip.html
3110+Description: Archiver for .zip files
3111+Task: ubuntu-desktop-minimal, ubuntu-desktop, ubuntu-desktop-raspi, kubuntu-desktop, xubuntu-minimal, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-raspi
3112+Description-md5: 581928d34d669e63c353cd694bd040b0
3113+
3114+Package: zlib1g
3115+Architecture: amd64
3116+Version: 1:1.2.13.dfsg-1ubuntu4
3117+Multi-Arch: same
3118+Priority: required
3119+Section: libs
3120+Source: zlib
3121+Origin: Ubuntu
3122+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3123+Original-Maintainer: Mark Brown <broonie@debian.org>
3124+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3125+Installed-Size: 166
3126+Provides: libz1
3127+Depends: libc6 (>= 2.14)
3128+Conflicts: zlib1 (<= 1:1.0.4-7)
3129+Breaks: libxml2 (<< 2.7.6.dfsg-2), texlive-binaries (<< 2009-12)
3130+Filename: pool/main/z/zlib/zlib1g_1.2.13.dfsg-1ubuntu4_amd64.deb
3131+Size: 61212
3132+MD5sum: 81078d6b17157ea1140033acff31a210
3133+SHA1: e20c4b5e276c391f162a00936be856b5169268f8
3134+SHA256: 6962be4748fb4a36837353fdacdfd4199057eb70b893896fbb8b85e4ce9c7d94
3135+SHA512: 3aad0ec7cf7862bbd5e9b32b9a5745a9d310e7c8b684e0a80a702b357e591fe3eb2270d33b933b7d9ab7be10921c6d2a346ef4b24dbd106e0e34d3dd5d3afea5
3136+Homepage: http://zlib.net/
3137+Description: compression library - runtime
3138+Task: minimal, server-minimal
3139+Description-md5: 567f396aeeb2b2b63295099aed237057
3140+
3141+Package: zlib1g-dev
3142+Architecture: amd64
3143+Version: 1:1.2.13.dfsg-1ubuntu4
3144+Multi-Arch: same
3145+Priority: optional
3146+Section: libdevel
3147+Source: zlib
3148+Origin: Ubuntu
3149+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3150+Original-Maintainer: Mark Brown <broonie@debian.org>
3151+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3152+Installed-Size: 1327
3153+Provides: libz-dev
3154+Depends: zlib1g (= 1:1.2.13.dfsg-1ubuntu4), libc6-dev | libc-dev
3155+Conflicts: zlib1-dev
3156+Filename: pool/main/z/zlib/zlib1g-dev_1.2.13.dfsg-1ubuntu4_amd64.deb
3157+Size: 894544
3158+MD5sum: 8df528a3bb0351629828307304b9c1b6
3159+SHA1: 0b8e048d18c912b04470c202902883f091899a6b
3160+SHA256: 6401579be26a9c0301d787b9e4519b23f5a61ca38ac82286cb4a60a306378158
3161+SHA512: 696accb4c0b1a0ed09cf2d1fbb2233dad6bef23f93733e4013ec4731d3de82bd991140fcce67527fdc2d94f66780c0025c6449feba62282ef094ddeb577c5478
3162+Homepage: http://zlib.net/
3163+Description: compression library - development
3164+Task: lubuntu-desktop, ubuntustudio-audio, ubuntustudio-publishing, ubuntu-unity-desktop, edubuntu-desktop-gnome
3165+Description-md5: d7f4e8a626131fc83c643c5d59096290
3166+
3167+Package: zsh
3168+Architecture: amd64
3169+Version: 5.9-4
3170+Priority: optional
3171+Section: shells
3172+Origin: Ubuntu
3173+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3174+Original-Maintainer: Debian Zsh Maintainers <pkg-zsh-devel@lists.alioth.debian.org>
3175+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3176+Installed-Size: 2428
3177+Depends: zsh-common (= 5.9-4), libc6 (>= 2.34), libcap2 (>= 1:2.10), libtinfo6 (>= 6), debianutils (>= 5.3-1~)
3178+Recommends: libc6 (>= 2.35), libgdbm6 (>= 1.16), libncursesw6 (>= 6), libpcre3
3179+Suggests: zsh-doc
3180+Filename: pool/main/z/zsh/zsh_5.9-4_amd64.deb
3181+Size: 809212
3182+MD5sum: b96bf9c5915b978506b03f0787ae04af
3183+SHA1: 0aceb5bbc0583ff51a7ec0ca5f137af51f84f62f
3184+SHA256: 9a4a8f70f6e97ce4d96e9de294a316af73d593995d51a707dfb92b0641f72c8f
3185+SHA512: d803f4884fabc3b734827e8d008e24aa2cf49cbc7ed9eeecc9862904876f544f109a394710255a07f88c5c1aa9612bef560968331ed6021dd9e01f8a71e3e8c9
3186+Homepage: https://www.zsh.org/
3187+Description: shell with lots of features
3188+Description-md5: a129d6b2d23d2d5d3a6b822d3f8f856d
3189+
3190+Package: zsh-common
3191+Architecture: all
3192+Version: 5.9-4
3193+Multi-Arch: foreign
3194+Priority: optional
3195+Section: shells
3196+Source: zsh
3197+Origin: Ubuntu
3198+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3199+Original-Maintainer: Debian Zsh Maintainers <pkg-zsh-devel@lists.alioth.debian.org>
3200+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3201+Installed-Size: 16249
3202+Recommends: zsh
3203+Suggests: zsh-doc
3204+Breaks: zsh-doc (<= 5.8-7~)
3205+Replaces: zsh (<= 5.0.2-1), zsh-doc (<= 5.8-7~)
3206+Filename: pool/main/z/zsh/zsh-common_5.9-4_all.deb
3207+Size: 4171320
3208+MD5sum: a50b5fb1b70b0bc2c34b03a683e8cb72
3209+SHA1: ff0259e09b28939148c7beb811bce3d2924f5aee
3210+SHA256: 9fec2561f9528bdd0ba545d10432621885b0e63d2cedce50414343da226e5521
3211+SHA512: 784ea9812d2ccdd298b5949bf1ad6295a9557be4794af9457b9482b01e5572aa47667af6e184ecaa124735b641e75c558666c1245b33bb63b78508cef756b6c3
3212+Homepage: https://www.zsh.org/
3213+Description: architecture independent files for Zsh
3214+Description-md5: 8aac20ad1d93f2ea018a327bcfd5912f
3215+
3216+Package: zsh-dev
3217+Architecture: amd64
3218+Version: 5.9-4
3219+Priority: optional
3220+Section: libdevel
3221+Source: zsh
3222+Origin: Ubuntu
3223+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3224+Original-Maintainer: Debian Zsh Maintainers <pkg-zsh-devel@lists.alioth.debian.org>
3225+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3226+Installed-Size: 511
3227+Depends: zsh-common (= 5.9-4)
3228+Filename: pool/main/z/zsh/zsh-dev_5.9-4_amd64.deb
3229+Size: 97892
3230+MD5sum: c36eea54cb373f3c6cbf2eb70867d9d6
3231+SHA1: f91dcb51a6cfc7d8f4f3ced74bcc82f899827349
3232+SHA256: 43181bbb7347036e21ee629d99142cac6a7328be6b86451e3cc5bf92b5754616
3233+SHA512: 0503cdfde78fd5fa85b1f48a69baf3b2469ecdac0d03d695e0c6a96642eaf0871da353e2badab7dcc6964599dd86222584d1abcb27435aaa87fef7a41f724f8f
3234+Homepage: https://www.zsh.org/
3235+Description: shell with lots of features (development files)
3236+Description-md5: 958eee099c22df2f69105f5ecae036a2
3237+
3238+Package: zsh-doc
3239+Architecture: all
3240+Version: 5.9-4
3241+Multi-Arch: foreign
3242+Priority: optional
3243+Section: doc
3244+Source: zsh
3245+Origin: Ubuntu
3246+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3247+Original-Maintainer: Debian Zsh Maintainers <pkg-zsh-devel@lists.alioth.debian.org>
3248+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3249+Installed-Size: 5853
3250+Depends: zsh-common (= 5.9-4)
3251+Filename: pool/main/z/zsh/zsh-doc_5.9-4_all.deb
3252+Size: 2772506
3253+MD5sum: 8fb50e469de36ea156e790a7e9f2ecf4
3254+SHA1: b64c26cabde92188d02b7ce3f99abe0ccb891107
3255+SHA256: 04b57998e60a593326920314a8c86a8d424691fb05dd604cf091a2126415d124
3256+SHA512: 4c016643a1e060bd75d875ecdec89e16e4154e7dfb83ce44fbd359f455859a02099953a0066c72d221c25669996b10816082ea7374f74e75b9e9c65a48a9fc7d
3257+Homepage: https://www.zsh.org/
3258+Description: zsh documentation - info/HTML format
3259+Description-md5: 9b5459fce7bedf54d5694a22e68389c7
3260+
3261+Package: zstd
3262+Architecture: amd64
3263+Version: 1.5.2+dfsg2-3
3264+Multi-Arch: foreign
3265+Priority: optional
3266+Section: utils
3267+Source: libzstd
3268+Origin: Ubuntu
3269+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3270+Original-Maintainer: RPM packaging team <team+pkg-rpm@tracker.debian.org>
3271+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3272+Installed-Size: 1679
3273+Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3.1), liblz4-1 (>= 0.0~r127), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 12), zlib1g (>= 1:1.1.4)
3274+Filename: pool/main/libz/libzstd/zstd_1.5.2+dfsg2-3_amd64.deb
3275+Size: 590406
3276+MD5sum: f4ea7fd218aa5229bdb2751c9d54106a
3277+SHA1: 709d22adcd71bea1005d3e94d71f0700f9d50847
3278+SHA256: d09a75a0314a790bb875f19377e86578e4250092bbc5cb372b08a123ca3e7a3d
3279+SHA512: 1032bea4f49990a87da2bf7085a9b0d41ca3b99854637f1fc2fa311dfae269dd383226c6596de76c442487e45dde68a3905473d5288ea30ee07d30f4ea54157e
3280+Homepage: https://github.com/facebook/zstd
3281+Description: fast lossless compression algorithm -- CLI tool
3282+Task: ubuntu-desktop-minimal, ubuntu-desktop, cloud-image, ubuntu-live, server, ubuntu-server-raspi, kubuntu-desktop, kubuntu-live, kubuntu-full, xubuntu-desktop, xubuntu-live, lubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntustudio-dvd-live, ubuntukylin-desktop, ubuntukylin-live, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-mate-live, ubuntu-budgie-desktop, ubuntu-budgie-live, ubuntu-budgie-desktop-raspi, ubuntu-unity-desktop, ubuntu-unity-live, edubuntu-desktop-minimal, edubuntu-desktop, edubuntu-desktop-gnome, edubuntu-dvd-live, edubuntu-server-raspi
3283+Description-md5: d2e4d40bb07cc70b5a32d3b4a9b5f53d
3284+
3285+Package: zsys
3286+Architecture: amd64
3287+Version: 0.5.9
3288+Built-Using: golang-1.18 (= 1.18-1ubuntu1)
3289+Priority: optional
3290+Section: admin
3291+Origin: Ubuntu
3292+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3293+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3294+Installed-Size: 11052
3295+Depends: libc6 (>= 2.34), libnvpair3linux (>= 2.0.1), libzfs4linux (>= 2.0.1), init-system-helpers (>= 1.52), grub2-common, zfs-zed
3296+Recommends: zfsutils-linux
3297+Filename: pool/main/z/zsys/zsys_0.5.9_amd64.deb
3298+Size: 3475910
3299+MD5sum: e2abe958afb3304a9bfee02d2ed28a64
3300+SHA1: 592c50e4f7f94241c13ae2481f1f17b4f6f9bfa9
3301+SHA256: a982748f0554d125d48626f7013b302f9801c9a98ad6951f1a7f689fe70a0ca6
3302+SHA512: e0e07f5b7278eb4915c17404a354131354f96e202d4fdaf1cc94ec0f4c81b6c6ab413ca9bf83d41c6d087c26861327b7bbd39f7fbf326a44626540503b144497
3303+Homepage: https://github.com/ubuntu/zsys
3304+Description: ZFS SYStem integration
3305+Description-md5: dabfaa2297d4001c7e247851fbcc2086
3306+
3307+Package: zvmcloudconnector-common
3308+Architecture: all
3309+Version: 2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu3
3310+Priority: optional
3311+Section: python
3312+Source: zvmcloudconnector
3313+Origin: Ubuntu
3314+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3315+Original-Maintainer: Corey Bryant <corey.bryant@canonical.com>
3316+Bugs: https://bugs.launchpad.net/ubuntu/+filebug
3317+Installed-Size: 56
3318+Depends: adduser
3319+Filename: pool/main/z/zvmcloudconnector/zvmcloudconnector-common_2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu3_all.deb
3320+Size: 11948
3321+MD5sum: b6356b883d475e5552eb61f3d3dac051
3322+SHA1: f411b822cdf581e7f83f9bbf59371f91a00ff9bb
3323+SHA256: f55ba72804b82daa77fd10afe07ac75fd5ce24740bafd26bc587be34850b96c5
3324+SHA512: 396c0a4b3746ee3330a09294093e051eacb9850b28c2e7945a120caf201a318482a9e62ce3cd9eafb62aa449fc5953b46fddd834640cb58f11a943736aba5217
3325+Homepage: https://github.com/mfcloud/python-zvm-sdk
3326+Description: z/VM Development SDK for managing z/VM - Common Files
3327+Description-md5: d05e72aec9e53ee776fc0735e135889b
3328+
3329diff --git a/tests/data/binary-amd64/Packages.gz b/tests/data/binary-amd64/Packages.gz
3330new file mode 100644
3331index 0000000..3d0a72b
3332Binary files /dev/null and b/tests/data/binary-amd64/Packages.gz differ
3333diff --git a/tests/data/binary-amd64/Packages.xz b/tests/data/binary-amd64/Packages.xz
3334new file mode 100644
3335index 0000000..c3c464f
3336Binary files /dev/null and b/tests/data/binary-amd64/Packages.xz differ
3337diff --git a/tests/data/binary-amd64/Release b/tests/data/binary-amd64/Release
3338new file mode 100644
3339index 0000000..1fb25a7
3340--- /dev/null
3341+++ b/tests/data/binary-amd64/Release
3342@@ -0,0 +1,6 @@
3343+Archive: lunar
3344+Version: 23.04
3345+Component: main
3346+Origin: Ubuntu
3347+Label: Ubuntu
3348+Architecture: amd64
3349diff --git a/tests/test_binary_package.py b/tests/test_binary_package.py
3350new file mode 100644
3351index 0000000..0647221
3352--- /dev/null
3353+++ b/tests/test_binary_package.py
3354@@ -0,0 +1,110 @@
3355+#!/usr/bin/env python3
3356+# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3357+
3358+# Author: Bryce Harrington <bryce@canonical.com>
3359+#
3360+# Copyright (C) 2023 Bryce W. Harrington
3361+#
3362+# Released under GNU GPLv2 or later, read the file 'LICENSE.GPLv2+' for
3363+# more information.
3364+
3365+'''Tests BinaryPackage as an interface to an Apt binary package record.'''
3366+
3367+import os
3368+import sys
3369+
3370+import pytest
3371+
3372+sys.path.insert(0, os.path.realpath(
3373+ os.path.join(os.path.dirname(os.path.realpath(__file__)), "..")))
3374+
3375+from ppa.binary_package import BinaryPackage
3376+
3377+
3378+@pytest.mark.parametrize('pkg_dict, expected_repr, expected_str', [
3379+ ({'package': 'a', 'architecture': 'b', 'version': '1'},
3380+ "BinaryPackage(pkg_dict={'package': 'a', 'architecture': 'b', 'version': '1'})",
3381+ 'a (1) [b]'),
3382+])
3383+def test_object(pkg_dict, expected_repr, expected_str):
3384+ """Checks that BinaryPackage objects can be instantiated."""
3385+ obj = BinaryPackage(pkg_dict)
3386+
3387+ assert obj
3388+ assert repr(obj) == expected_repr
3389+ assert str(obj) == expected_str
3390+
3391+
3392+@pytest.mark.parametrize('pkg_dict, expected_exception', [
3393+ ({}, ValueError),
3394+ ({'package': 'x'}, ValueError),
3395+ ({'architecture': 'x'}, ValueError),
3396+ ({'version': 'x'}, ValueError),
3397+ ({'package': None, 'architecture': None, 'version': None}, ValueError),
3398+ ({'package': None, 'architecture': 'x', 'version': 'x'}, ValueError),
3399+ ({'package': 'x', 'architecture': None, 'version': 'x'}, ValueError),
3400+ ({'package': 'x', 'architecture': 'x', 'version': None}, ValueError),
3401+])
3402+def test_object_error(pkg_dict, expected_exception):
3403+ """Checks that BinaryPackage objects can be instantiated."""
3404+ with pytest.raises(expected_exception):
3405+ obj = BinaryPackage(pkg_dict)
3406+ assert obj
3407+
3408+
3409+@pytest.mark.parametrize('pkg_dict, expected_binary_package_name', [
3410+ ({'package': 'a', 'architecture': 'b', 'version': '1'}, 'a'),
3411+])
3412+def test_name(pkg_dict, expected_binary_package_name):
3413+ """Checks the package name is obtained from pkg_dict."""
3414+ binary_package = BinaryPackage(pkg_dict)
3415+
3416+ assert binary_package.name == expected_binary_package_name
3417+
3418+
3419+@pytest.mark.parametrize('pkg_info, expected_deps', [
3420+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'depends': 'a'},
3421+ {'a': ''}),
3422+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'depends': 'a, b, c'},
3423+ {'a': '', 'b': '', 'c': ''}),
3424+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'depends': 'a | b | c'},
3425+ {('a', 'b', 'c'): {'a': '', 'b': '', 'c': ''}}),
3426+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'depends': 'a (= 1) | b (> 2) | c (<= 3)'},
3427+ {('a', 'b', 'c'): {'a': '(= 1)', 'b': '(> 2)', 'c': '(<= 3)'}}),
3428+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'depends': 'a (>= 1.0)'},
3429+ {'a': '(>= 1.0)'}),
3430+ ({'package': 'zlib1g-dev', 'architecture': 'amd64', 'version': '1:1.2.13.dfsg-1ubuntu4',
3431+ 'depends': 'zlib1g (= 1:1.2.13.dfsg-1ubuntu4), libc6-dev | libc-dev'},
3432+ {('libc6-dev', 'libc-dev'): {'libc-dev': '', 'libc6-dev': ''},
3433+ 'zlib1g': '(= 1:1.2.13.dfsg-1ubuntu4)'}),
3434+])
3435+def test_installation_dependencies(pkg_info, expected_deps):
3436+ """Checks that BinaryPackage objects parse their Dependencies field."""
3437+ binary_package = BinaryPackage(pkg_info)
3438+
3439+ assert binary_package.installation_dependencies == expected_deps
3440+
3441+
3442+@pytest.mark.parametrize('pkg_info, expected_recommends', [
3443+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'recommends': 'a'},
3444+ {'a': ''}),
3445+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'recommends': 'a'},
3446+ {'a': ''}),
3447+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'recommends': 'a, b, c'},
3448+ {'a': '', 'b': '', 'c': ''}),
3449+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'recommends': 'a | b | c'},
3450+ {('a', 'b', 'c'): {'a': '', 'b': '', 'c': ''}}),
3451+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'recommends': 'a (= 1) | b (> 2) | c (<= 3)'},
3452+ {('a', 'b', 'c'): {'a': '(= 1)', 'b': '(> 2)', 'c': '(<= 3)'}}),
3453+ ({'package': 'x', 'architecture': 'x', 'version': 'x', 'recommends': 'a (>= 1.0)'},
3454+ {'a': '(>= 1.0)'}),
3455+ ({'package': 'zlib1g-dev', 'architecture': 'amd64', 'version': '1:1.2.13.dfsg-1ubuntu4',
3456+ 'recommends': 'zlib1g (= 1:1.2.13.dfsg-1ubuntu4), libc6-dev | libc-dev'},
3457+ {('libc6-dev', 'libc-dev'): {'libc-dev': '', 'libc6-dev': ''},
3458+ 'zlib1g': '(= 1:1.2.13.dfsg-1ubuntu4)'}),
3459+])
3460+def test_recommended_packages(pkg_info, expected_recommends):
3461+ """Checks that BinaryPackage objects parse their Recommends field."""
3462+ binary_package = BinaryPackage(pkg_info)
3463+
3464+ assert binary_package.recommended_packages == expected_recommends

Subscribers

People subscribed via source and target branches

to all changes: