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

Subscribers

People subscribed via source and target branches

to all changes: