From 0350607359f552ee7651d006dba46b90d7869e92 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 18 Jun 2024 08:47:02 -0700 Subject: [PATCH 01/52] fix for space if filesystem name --- docs/parsers/mount.md | 2 +- jc/parsers/mount.py | 20 +++++++++++--------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/docs/parsers/mount.md b/docs/parsers/mount.md index 21a89e093..fd61b63dc 100644 --- a/docs/parsers/mount.md +++ b/docs/parsers/mount.md @@ -100,4 +100,4 @@ Compatibility: linux, darwin, freebsd, aix Source: [`jc/parsers/mount.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/mount.py) -Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/mount.py b/jc/parsers/mount.py index c2297130e..0d7b2f4b7 100644 --- a/jc/parsers/mount.py +++ b/jc/parsers/mount.py @@ -77,7 +77,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.9' + version = '1.10' description = '`mount` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -138,16 +138,18 @@ def _linux_parse(data): pattern = re.compile( r''' - (?P\S+)\s+ - on\s+ - (?P.*?)\s+ - type\s+ - (?P\S+)\s+ - \((?P.*?)\)\s*''', + (?P.*) + \son\s + (?P.*?) + \stype\s + (?P\S+) + \s+ + \((?P.*?)\) + \s*''', re.VERBOSE) - match = pattern.match(entry) - groups = match.groupdict() + mymatch = pattern.match(entry) + groups = mymatch.groupdict() if groups: output_line['filesystem'] = groups["filesystem"] From 921133f3ac2e9554ad85f829e5d870342e8054e5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 18 Jun 2024 08:47:24 -0700 Subject: [PATCH 02/52] version bump --- CHANGELOG | 3 +++ jc/lib.py | 2 +- man/jc.1 | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0c91429c4..27a19ce81 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20240618 v1.25.4 +- Fix `mount` parser for cases where there are spaces in the filesystem name + 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field - Enhance `git-log` standard and streaming parsers with added `lines_changed` field under `file_stats` diff --git a/jc/lib.py b/jc/lib.py index a313d7c73..9bcd9a2ad 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -10,7 +10,7 @@ from jc import utils -__version__ = '1.25.3' +__version__ = '1.25.4' parsers: List[str] = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index 51083396c..65d5df25f 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-06-09 1.25.3 "JSON Convert" +.TH jc 1 2024-06-18 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings diff --git a/setup.py b/setup.py index bbcf9414e..321d27607 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='jc', - version='1.25.3', + version='1.25.4', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.', From 9eb4df34b190c57d020b70153ef3faa8984c02ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 18 Jun 2024 17:53:19 +0200 Subject: [PATCH 03/52] adjust expected test_ip_address_ipv6_6to4 output for Python 3.12.4 (#573) Adjust the expected output in `test_ip_address_ipv6_6to4` to account for `is_global`/`is_private` changes for 6to4 addresses in Python 3.12.4 and Python 3.13.0. Fixes #572 Co-authored-by: Kelly Brazil --- tests/test_ip_address.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index 8c24d8823..99d7fd5fd 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -1,6 +1,7 @@ import unittest import json import jc.parsers.ip_address +import sys class MyTests(unittest.TestCase): @@ -98,7 +99,11 @@ def test_ip_address_ipv6_6to4(self): Test ipv6 6to4 address string """ data = r'2002:c000:204::/48' - expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,"is_private":false,"is_global":true,"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') + if sys.version_info >= (3, 12, 4): + expected_private = r'"is_private":true,"is_global":false' + else: + expected_private = r'"is_private":false,"is_global":true' + expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) From c68c9190244d55d360802959e103ff8f46a0ffad Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 18 Jun 2024 17:34:17 -0700 Subject: [PATCH 04/52] add mount test --- .../fixtures/generic/mount-spaces-in-filename.json | 1 + tests/fixtures/generic/mount-spaces-in-filename.out | 1 + tests/test_mount.py | 13 +++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 tests/fixtures/generic/mount-spaces-in-filename.json create mode 100644 tests/fixtures/generic/mount-spaces-in-filename.out diff --git a/tests/fixtures/generic/mount-spaces-in-filename.json b/tests/fixtures/generic/mount-spaces-in-filename.json new file mode 100644 index 000000000..4fa4bd325 --- /dev/null +++ b/tests/fixtures/generic/mount-spaces-in-filename.json @@ -0,0 +1 @@ +[{"filesystem":"//10.100.1.237/Bilder und Videos","mount_point":"/mnt/smb/thw/media","type":"cifs","options":["rw","nosuid","nodev","relatime","vers=2.1","cache=strict","username=iweinmann","uid=1000","noforceuid","gid=1000","noforcegid","addr=10.100.1.237","file_mode=0755","dir_mode=0755","iocharset=utf8","soft","nounix","serverino","mapposix","rsize=1048576","wsize=1048576","bsize=1048576","retrans=1","echo_interval=60","actimeo=1","closetimeo=1","user=ingo"]}] diff --git a/tests/fixtures/generic/mount-spaces-in-filename.out b/tests/fixtures/generic/mount-spaces-in-filename.out new file mode 100644 index 000000000..491f891a5 --- /dev/null +++ b/tests/fixtures/generic/mount-spaces-in-filename.out @@ -0,0 +1 @@ +//10.100.1.237/Bilder und Videos on /mnt/smb/thw/media type cifs (rw,nosuid,nodev,relatime,vers=2.1,cache=strict,username=iweinmann,uid=1000,noforceuid,gid=1000,noforcegid,addr=10.100.1.237,file_mode=0755,dir_mode=0755,iocharset=utf8,soft,nounix,serverino,mapposix,rsize=1048576,wsize=1048576,bsize=1048576,retrans=1,echo_interval=60,actimeo=1,closetimeo=1,user=ingo) diff --git a/tests/test_mount.py b/tests/test_mount.py index f1d6bca9a..895730cb4 100644 --- a/tests/test_mount.py +++ b/tests/test_mount.py @@ -27,6 +27,10 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/mount-spaces-in-mountpoint.out'), 'r', encoding='utf-8') as f: generic_mount_spaces_in_mountpoint = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/mount-spaces-in-filename.out'), 'r', encoding='utf-8') as f: + generic_mount_spaces_in_filename = f.read() + + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/mount.json'), 'r', encoding='utf-8') as f: centos_7_7_mount_json = json.loads(f.read()) @@ -46,6 +50,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/mount-spaces-in-mountpoint.json'), 'r', encoding='utf-8') as f: generic_mount_spaces_in_mountpoint_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/mount-spaces-in-filename.json'), 'r', encoding='utf-8') as f: + generic_mount_spaces_in_filename_json = json.loads(f.read()) + def test_mount_nodata(self): """ @@ -89,6 +96,12 @@ def test_mount_spaces_in_mountpoint(self): """ self.assertEqual(jc.parsers.mount.parse(self.generic_mount_spaces_in_mountpoint, quiet=True), self.generic_mount_spaces_in_mountpoint_json) + def test_mount_spaces_in_filename(self): + """ + Test 'mount' with spaces in the filename + """ + self.assertEqual(jc.parsers.mount.parse(self.generic_mount_spaces_in_filename, quiet=True), self.generic_mount_spaces_in_filename_json) + if __name__ == '__main__': unittest.main() From 9f5532d91f73423e7f8bc77cc229eba4f643cd05 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 18 Jun 2024 17:43:16 -0700 Subject: [PATCH 05/52] formatting --- jc/parsers/mount.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/jc/parsers/mount.py b/jc/parsers/mount.py index 0d7b2f4b7..9fe67558a 100644 --- a/jc/parsers/mount.py +++ b/jc/parsers/mount.py @@ -138,15 +138,16 @@ def _linux_parse(data): pattern = re.compile( r''' - (?P.*) - \son\s - (?P.*?) - \stype\s - (?P\S+) - \s+ - \((?P.*?)\) - \s*''', - re.VERBOSE) + (?P.*) + \son\s + (?P.*?) + \stype\s + (?P\S+) + \s+ + \((?P.*?)\) + \s* + ''', re.VERBOSE + ) mymatch = pattern.match(entry) groups = mymatch.groupdict() @@ -225,7 +226,4 @@ def parse(data, raw=False, quiet=False): else: raw_output = _linux_parse(cleandata) - if raw: - return raw_output - else: - return _process(raw_output) + return raw_output if raw else _process(raw_output) From 71af0c55553e17c598c9f43b8271bfb069795af5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 6 Sep 2024 10:26:34 -0700 Subject: [PATCH 06/52] fix for IPv4 mapped IPv6 address changes in Python 3.13 --- CHANGELOG | 3 ++- jc/parsers/ip_address.py | 14 ++++++++++++-- tests/test_ip_address.py | 10 +++++++++- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 27a19ce81..d94ae2bba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,8 @@ jc changelog -20240618 v1.25.4 +20240906 v1.25.4 - Fix `mount` parser for cases where there are spaces in the filesystem name +- Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field diff --git a/jc/parsers/ip_address.py b/jc/parsers/ip_address.py index 7e6b37cb4..3e44f7fe5 100644 --- a/jc/parsers/ip_address.py +++ b/jc/parsers/ip_address.py @@ -533,7 +533,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = 'IPv4 and IPv6 Address string parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -661,8 +661,18 @@ def parse( if interface.version == 4: ip_split = ip_exploded.split('.') + else: - ip_split = ip_exploded.split(':') + # regular IPv6 + if not '.' in ip_exploded: + ip_split = ip_exploded.split(':') + + # IPv4 mapped IPv6 + else: + ip_split_v6 = ip_exploded.split(':')[:-1] + ip_split_v4_mapped_str = ip_exploded.split(':')[-1] + ip_split_v4_mapped = ip_split_v4_mapped_str.split('.') + ip_split = ip_split_v6 + ip_split_v4_mapped # fix for ipv6-only attributes scope_id = None diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index 99d7fd5fd..0e46cd6bf 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -90,7 +90,15 @@ def test_ip_address_ipv6_ipv4_mapped(self): Test ipv6 address with ipv4 mapped string """ data = r'::FFFF:192.168.1.35' - expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"::ffff:c0a8:123","ip_compressed":"::ffff:c0a8:123","ip_exploded":"0000:0000:0000:0000:0000:ffff:c0a8:0123","ip_split":["0000","0000","0000","0000","0000","ffff","c0a8","0123"],"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:c0a8:123","broadcast":"::ffff:c0a8:123","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:c0a8:123","last_host":"::ffff:c0a8:123","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171},"hex":{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"},"bin":{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}''') + if sys.version_info >= (3, 13, 0): + expected_ipv4 = '192.168.1.35' + expected_ipv4_exploded = '192.168.1.35' + expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' + else: + expected_ipv4 = 'c0a8:123' + expected_ipv4_exploded = 'c0a8:0123' + expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) From 40eb2b7ef60184a049c34c4f423585f31e42fd99 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 7 Sep 2024 17:24:21 -0700 Subject: [PATCH 07/52] fix uptime for "user" instead of "users" --- CHANGELOG | 3 ++- jc/parsers/uptime.py | 4 ++-- tests/test_uptime.py | 8 ++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d94ae2bba..8603c04b7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,9 @@ jc changelog -20240906 v1.25.4 +20240907 v1.25.4 - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `uptime` parser for data that contains `user` instead of `users` 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field diff --git a/jc/parsers/uptime.py b/jc/parsers/uptime.py index 2e9d31fa5..5fc6bf773 100644 --- a/jc/parsers/uptime.py +++ b/jc/parsers/uptime.py @@ -65,7 +65,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.9' + version = '1.10' description = '`uptime` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -162,7 +162,7 @@ def parse(data, raw=False, quiet=False): raw_output = {} if jc.utils.has_data(data): - if 'users' in data: + if 'user' in data: # standard uptime output time, _, *uptime, users, _, _, _, load_1m, load_5m, load_15m = data.split() diff --git a/tests/test_uptime.py b/tests/test_uptime.py index 25c6d8100..416bbed1b 100644 --- a/tests/test_uptime.py +++ b/tests/test_uptime.py @@ -73,6 +73,14 @@ def test_uptime_busybox(self): expected = {"time":"00:03:32","uptime":"3 min","load_1m":0.0,"load_5m":0.0,"load_15m":0.0,"time_hour":0,"time_minute":3,"time_second":32,"uptime_days":0,"uptime_hours":0,"uptime_minutes":3,"uptime_total_seconds":180} self.assertEqual(jc.parsers.uptime.parse(data, quiet=True), expected) + def test_uptime_user(self): + """ + Test 'uptime' with 'user' instead of 'users' in the data + """ + data = ' 12:44:19 up 1 day, 23:12, 0 user, load average: 3.94, 4.43, 2.75' + expected = {"time":"12:44:19","uptime":"1 day, 23:12","users":0,"load_1m":3.94,"load_5m":4.43,"load_15m":2.75,"time_hour":12,"time_minute":44,"time_second":19,"uptime_days":1,"uptime_hours":23,"uptime_minutes":12,"uptime_total_seconds":169920} + self.assertEqual(jc.parsers.uptime.parse(data, quiet=True), expected) + if __name__ == '__main__': unittest.main() From c26f0641ff2339fa03e2f6a3d70acaec95393205 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 7 Sep 2024 18:11:25 -0700 Subject: [PATCH 08/52] enhance ifconfig parser to support utun interfaces with assigned ipv4 addresses on macOS --- CHANGELOG | 1 + jc/parsers/ifconfig.py | 13 +++++++++---- tests/test_ifconfig.py | 12 ++++++++++++ 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8603c04b7..cc00a3d00 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog 20240907 v1.25.4 +- Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses - Fix `uptime` parser for data that contains `user` instead of `users` diff --git a/jc/parsers/ifconfig.py b/jc/parsers/ifconfig.py index d24b91470..021f50266 100644 --- a/jc/parsers/ifconfig.py +++ b/jc/parsers/ifconfig.py @@ -212,14 +212,14 @@ """ import re from ipaddress import IPv4Network -from typing import List, Dict, Optional +from typing import List, Dict from jc.jc_types import JSONDictType import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '2.3' + version = '2.4' description = '`ifconfig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -548,6 +548,11 @@ def parse( broadcast\s+(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3}))? ''', re.IGNORECASE | re.VERBOSE ) + re_freebsd_ipv4_utun = re.compile(r''' + inet\s(?P
(?:[0-9]{1,3}\.){3}[0-9]{1,3})\s-->\s(?:(?:[0-9]{1,3}\.){3}[0-9]{1,3})\s + netmask\s(?P\S*) + ''', re.IGNORECASE | re.VERBOSE + ) re_freebsd_ipv6 = re.compile(r''' \s?inet6\s(?P
.*?) (?:\%(?P\w+\d+))?\s @@ -624,14 +629,14 @@ def parse( re_openbsd_rx_stats, re_openbsd_tx, re_openbsd_tx_stats ] re_freebsd = [ - re_freebsd_interface, re_freebsd_ipv4, re_freebsd_ipv4_v2, re_freebsd_ipv6, + re_freebsd_interface, re_freebsd_ipv4, re_freebsd_ipv4_v2, re_freebsd_ipv4_utun, re_freebsd_ipv6, re_freebsd_details, re_freebsd_status, re_freebsd_nd6_options, re_freebsd_plugged, re_freebsd_vendor_pn_sn_date, re_freebsd_temp_volts, re_freebsd_hwaddr, re_freebsd_media, re_freebsd_tx_rx_power, re_freebsd_options ] interface_patterns = [re_linux_interface, re_openbsd_interface, re_freebsd_interface] - ipv4_patterns = [re_linux_ipv4, re_openbsd_ipv4, re_freebsd_ipv4, re_freebsd_ipv4_v2] + ipv4_patterns = [re_linux_ipv4, re_openbsd_ipv4, re_freebsd_ipv4, re_freebsd_ipv4_v2, re_freebsd_ipv4_utun] ipv6_patterns = [re_linux_ipv6, re_openbsd_ipv6, re_freebsd_ipv6] if jc.utils.has_data(data): diff --git a/tests/test_ifconfig.py b/tests/test_ifconfig.py index 58ea8f3f7..9f9953b4d 100644 --- a/tests/test_ifconfig.py +++ b/tests/test_ifconfig.py @@ -148,5 +148,17 @@ def test_ifconfig_freebsd_extra_fields4(self): """ self.assertEqual(jc.parsers.ifconfig.parse(self.osx_freebsd12_ifconfig_extra_fields4, quiet=True), self.freebsd12_ifconfig_extra_fields4_json) + def test_ifconfig_utun_ipv4(self): + """ + Test 'ifconfig' with ipv4 utun addresses (macOS) + """ + data = r'''utun2: flags=8051 mtu 1400 + inet 10.85.40.243 --> 10.85.40.243 netmask 0xffffffff + inet6 fe80::3af9:d3ff:fe69:1732%utun2 prefixlen 64 scopeid 0xd + inet6 fdae:f7e0:9f37:64::146 prefixlen 128 + nd6 options=201''' + expected = [{"name":"utun2","flags":8051,"state":["UP","POINTOPOINT","RUNNING","MULTICAST"],"mtu":1400,"type":None,"mac_addr":None,"ipv4_addr":"10.85.40.243","ipv4_mask":"255.255.255.255","ipv4_bcast":None,"ipv6_addr":"fdae:f7e0:9f37:64::146","ipv6_mask":128,"ipv6_scope":None,"ipv6_type":None,"metric":None,"rx_packets":None,"rx_errors":None,"rx_dropped":None,"rx_overruns":None,"rx_frame":None,"tx_packets":None,"tx_errors":None,"tx_dropped":None,"tx_overruns":None,"tx_carrier":None,"tx_collisions":None,"rx_bytes":None,"tx_bytes":None,"ipv6_scope_id":None,"nd6_options":201,"nd6_flags":["PERFORMNUD","DAD"],"ipv4":[{"address":"10.85.40.243","mask":"255.255.255.255"}],"ipv6":[{"address":"fe80::3af9:d3ff:fe69:1732","scope_id":"utun2","mask":64,"scope":"0xd"},{"address":"fdae:f7e0:9f37:64::146","scope_id":None,"mask":128,"scope":None}]}] + self.assertEqual(jc.parsers.ifconfig.parse(self.osx_freebsd12_ifconfig_extra_fields4, quiet=True), self.freebsd12_ifconfig_extra_fields4_json) + if __name__ == '__main__': unittest.main() From 8a22f8a46822e92d1c85869cf4f5e92367b850a4 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 7 Sep 2024 18:43:41 -0700 Subject: [PATCH 09/52] add support for Link partner advertised link modes to ethtool parser --- CHANGELOG | 1 + jc/parsers/ethtool.py | 20 ++++++++++-- ...l--link-partner-advertised-link-modes.json | 1 + ...ol--link-partner-advertised-link-modes.out | 31 +++++++++++++++++++ 4 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.json create mode 100644 tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.out diff --git a/CHANGELOG b/CHANGELOG index cc00a3d00..509b50d8c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog 20240907 v1.25.4 +- Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses diff --git a/jc/parsers/ethtool.py b/jc/parsers/ethtool.py index 3a353a3f8..51657188a 100644 --- a/jc/parsers/ethtool.py +++ b/jc/parsers/ethtool.py @@ -172,7 +172,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.0' + version = '1.1' description = '`ethtool` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -248,10 +248,11 @@ def _parse_default(data: str) -> JSONDictType: supported_link_modes: List[str] = [] supported_fec_modes: List[str] = [] advertised_link_modes: List[str] = [] + link_partner_advertised_link_modes: List[str] = [] advertised_fec_modes: List[str] = [] current_message_level: List[str] = [] mode: str = '' # supported_link_modes, supported_fec_modes, advertised_link_modes, - # advertised_fec_modes, current_message_level + # link_partner_advertised_link_modes, advertised_fec_modes, current_message_level for line in filter(None, data.splitlines()): @@ -294,6 +295,14 @@ def _parse_default(data: str) -> JSONDictType: mode = 'advertised_link_modes' continue + if 'Link partner advertised link modes:' in line and 'Not reported' not in line: + _, val = line.split(':', maxsplit=1) + val = val.strip() + val_list = val.split() + link_partner_advertised_link_modes.extend(val_list) + mode = 'link_partner_advertised_link_modes' + continue + if 'Advertised FEC modes:' in line and 'Not reported' not in line: _, val = line.split(':', maxsplit=1) val = val.strip() @@ -326,6 +335,12 @@ def _parse_default(data: str) -> JSONDictType: advertised_link_modes.extend(val_list) continue + if mode == 'link_partner_advertised_link_modes': + val = line.strip() + val_list = val.split() + link_partner_advertised_link_modes.extend(val_list) + continue + if mode == 'advertised_fec_modes': val = line.strip() val_list = val.split() @@ -346,6 +361,7 @@ def _parse_default(data: str) -> JSONDictType: (supported_link_modes, 'supported_link_modes'), (supported_fec_modes, 'supported_fec_modes'), (advertised_link_modes, 'advertised_link_modes'), + (link_partner_advertised_link_modes, 'link_partner_advertised_link_modes'), (advertised_fec_modes, 'advertised_fec_modes'), (current_message_level, 'current_message_level') ] diff --git a/tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.json b/tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.json new file mode 100644 index 000000000..e700141df --- /dev/null +++ b/tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.json @@ -0,0 +1 @@ +{"name":"eth0","supported_pause_frame_use":"Symmetric Receive-only","supports_auto_negotiation":true,"supported_fec_modes":[],"advertised_pause_frame_use":false,"advertised_auto_negotiation":true,"advertised_fec_modes":[],"link_partner_advertised_pause_frame_use":"Symmetric","link_partner_advertised_auto_negotiation":"Yes","link_partner_advertised_fec_modes":"Not reported","speed":"100Mb/s","duplex":"Full","port":"Twisted Pair","phyad":"0","transceiver":"external","auto_negotiation":false,"mdi_x":"Unknown","supports_wake_on":"d","wake_on":"d","link_detected":true,"supported_ports":["TP","MII"],"supported_link_modes":["10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/Half","1000baseT/Full"],"advertised_link_modes":["10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/Half","1000baseT/Full"],"link_partner_advertised_link_modes":["10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full"],"current_message_level":["0x00000007 (7)","drv probe link"],"speed_bps":100000000} diff --git a/tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.out b/tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.out new file mode 100644 index 000000000..ff4a06eaa --- /dev/null +++ b/tests/fixtures/generic/ethtool--link-partner-advertised-link-modes.out @@ -0,0 +1,31 @@ +Settings for eth0: + Supported ports: [ TP MII ] + Supported link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + 1000baseT/Half 1000baseT/Full + Supported pause frame use: Symmetric Receive-only + Supports auto-negotiation: Yes + Supported FEC modes: Not reported + Advertised link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + 1000baseT/Half 1000baseT/Full + Advertised pause frame use: Symmetric Receive-only + Advertised auto-negotiation: Yes + Advertised FEC modes: Not reported + Link partner advertised link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + Link partner advertised pause frame use: Symmetric + Link partner advertised auto-negotiation: Yes + Link partner advertised FEC modes: Not reported + Speed: 100Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: external + Auto-negotiation: on + MDI-X: Unknown + Supports Wake-on: d + Wake-on: d + Current message level: 0x00000007 (7) + drv probe link + Link detected: yes From 1593d0bf79ca1e122f093da04808bcc2223ed113 Mon Sep 17 00:00:00 2001 From: Mabuchin Date: Sun, 8 Sep 2024 11:46:43 +0900 Subject: [PATCH 10/52] Add error type support for Linux Ping (#575) * feat: add icmp error handle into linux_parse * refactor: fixed timestamp offset logic(including error-response-type condition) --- jc/parsers/ping_s.py | 102 ++++++++++++++---- .../ping-dest-unreachable-streaming.json | 2 +- tests/test_ping_s.py | 2 +- 3 files changed, 83 insertions(+), 23 deletions(-) diff --git a/jc/parsers/ping_s.py b/jc/parsers/ping_s.py index 8178f2d74..46c4885a9 100644 --- a/jc/parsers/ping_s.py +++ b/jc/parsers/ping_s.py @@ -169,7 +169,7 @@ def _ipv6_in(line): return ipv6 -def _error_type(line): +def _error_type_v4(line): # from https://github.com/dgibson/iputils/blob/master/ping.c # https://android.googlesource.com/platform/external/ping/+/8fc3c91cf9e7f87bc20b9e6d3ea2982d87b70d9a/ping.c # https://opensource.apple.com/source/network_cmds/network_cmds-328/ping.tproj/ping.c @@ -207,6 +207,37 @@ def _error_type(line): return None +def _error_type_v6(line): + type_map = { + 'Destination unreachable': 'destination_unreachable', + 'Packet too big': 'packet_too_big', + 'Time exceeded:': 'time_exceeded', + 'Parameter problem:': 'parameter_problem', + } + code_map = { + 'destination_unreachable': { + 'No route': 'no_route', + 'Administratively prohibited': 'administratively_prohibited', + "Beyond scope of source address": 'beyond_scope_of_source_address', + 'Address unreachable': 'address_unreachable', + 'Port unreachable': 'port_unreachable', + }, + 'time_exceeded': { + 'Hop limit': 'hop_limit', + 'Fragment reassembly time exceeded': 'fragment_reassembly_time_exceeded', + }, + } + + return_code = None + for err_type, code in type_map.items(): + if err_type in line: + return_code = code + for err_code, code_name in code_map[code].items(): + if err_code in line: + return_code += '_' + code_name + return return_code + + def _bsd_parse(line, s): output_line = {} @@ -263,6 +294,24 @@ def _bsd_parse(line, s): # ping response lines + err = None + if s.ipv4: + err = _error_type_v4(line) + else: + err = _error_type_v6(line) + + if err: + output_line = { + 'type': err + } + try: + output_line['sent_bytes'] = line.split()[0] + output_line['destination_ip'] = s.destination_ip + output_line['response_ip'] = line.split()[4].strip(':').strip('(').strip(')') + except Exception: + pass + return output_line + # ipv4 lines if not _ipv6_in(line): @@ -279,7 +328,7 @@ def _bsd_parse(line, s): return output_line # catch error responses - err = _error_type(line) + err = _error_type_v4(line) if err: output_line = { 'type': err @@ -444,25 +493,40 @@ def _linux_parse(line, s): } return output_line + # if timestamp option is specified, then shift icmp sequence field right by one + timestamp = False + if line[0] == '[': + timestamp = True + + timestamp_offset = 1 if timestamp else 0 + # ping response lines + err = None + if s.ipv4: + err = _error_type_v4(line) + else: + err = _error_type_v6(line) + + if err: + output_line = { + 'type': err, + 'destination_ip': s.destination_ip or None, + 'sent_bytes': s.sent_bytes or None, + 'response_ip': line.split()[timestamp_offset + 1] if type != 'timeout' else None, + 'icmp_seq': line.replace('=', ' ').split()[timestamp_offset + 3], + 'timestamp': line.split()[0].lstrip('[').rstrip(']') if timestamp else None, + } + return output_line # request timeout if 'no answer yet for icmp_seq=' in line: - timestamp = False - isequence = 5 - - # if timestamp option is specified, then shift icmp sequence field right by one - if line[0] == '[': - timestamp = True - isequence = 6 - output_line = { 'type': 'timeout', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'timestamp': line.split()[0].lstrip('[').rstrip(']') if timestamp else None, - 'icmp_seq': line.replace('=', ' ').split()[isequence] + 'icmp_seq': line.replace('=', ' ').split()[timestamp_offset + 5] } return output_line @@ -473,20 +537,16 @@ def _linux_parse(line, s): line = line.replace('(', ' ').replace(')', ' ').replace('=', ' ') # positions of items depend on whether ipv4/ipv6 and/or ip/hostname is used + param_positions = None if s.ipv4 and not s.hostname: - bts, rip, iseq, t2l, tms = (0, 3, 5, 7, 9) + param_positions = (0, 3, 5, 7, 9) elif s.ipv4 and s.hostname: - bts, rip, iseq, t2l, tms = (0, 4, 7, 9, 11) + param_positions = (0, 4, 7, 9, 11) elif not s.ipv4 and not s.hostname: - bts, rip, iseq, t2l, tms = (0, 3, 5, 7, 9) + param_positions = (0, 3, 5, 7, 9) elif not s.ipv4 and s.hostname: - bts, rip, iseq, t2l, tms = (0, 4, 7, 9, 11) - - # if timestamp option is specified, then shift everything right by one - timestamp = False - if line[0] == '[': - timestamp = True - bts, rip, iseq, t2l, tms = (bts + 1, rip + 1, iseq + 1, t2l + 1, tms + 1) + param_positions = (0, 4, 7, 9, 11) + bts, rip, iseq, t2l, tms = (x + timestamp_offset for x in param_positions) output_line = { 'type': 'reply', diff --git a/tests/fixtures/ubuntu-22.04/ping-dest-unreachable-streaming.json b/tests/fixtures/ubuntu-22.04/ping-dest-unreachable-streaming.json index 16aae8532..978878600 100644 --- a/tests/fixtures/ubuntu-22.04/ping-dest-unreachable-streaming.json +++ b/tests/fixtures/ubuntu-22.04/ping-dest-unreachable-streaming.json @@ -1 +1 @@ -{"type":"summary","destination_ip":"10.0.3.22","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":0,"packet_loss_percent":100.0,"duplicates":0,"errors":3,"corrupted":null,"time_ms":2049.0,"round_trip_ms_min":null,"round_trip_ms_avg":null,"round_trip_ms_max":null,"round_trip_ms_stddev":null} +[{"type": "destination_host_unreachable", "destination_ip": "10.0.3.22", "sent_bytes": 56, "response_ip": "10.0.0.1", "icmp_seq": 1, "timestamp": null}, {"type": "destination_host_unreachable", "destination_ip": "10.0.3.22", "sent_bytes": 56, "response_ip": "10.0.0.1", "icmp_seq": 2, "timestamp": null}, {"type": "destination_host_unreachable", "destination_ip": "10.0.3.22", "sent_bytes": 56, "response_ip": "10.0.0.1", "icmp_seq": 3, "timestamp": null}, {"type": "summary", "destination_ip": "10.0.3.22", "sent_bytes": 56, "pattern": null, "packets_transmitted": 3, "packets_received": 0, "packet_loss_percent": 100.0, "duplicates": 0, "errors": 3, "corrupted": null, "time_ms": 2049.0, "round_trip_ms_min": null, "round_trip_ms_avg": null, "round_trip_ms_max": null, "round_trip_ms_stddev": null}] diff --git a/tests/test_ping_s.py b/tests/test_ping_s.py index 2c475755e..c6bb11f0b 100644 --- a/tests/test_ping_s.py +++ b/tests/test_ping_s.py @@ -597,7 +597,7 @@ def test_ping_s_dest_unreachable_ubuntu_22_4(self): """ Test 'ping' on Ubuntu 22.4 with destination unreachable message """ - self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_22_4_ping_dest_unreachable.splitlines(), quiet=True)), [self.ubuntu_22_4_ping_dest_unreachable_streaming_json]) + self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_22_4_ping_dest_unreachable.splitlines(), quiet=True)), self.ubuntu_22_4_ping_dest_unreachable_streaming_json) def test_ping_s_hostname_I_ubuntu_22_4(self): From b054b1b782aa49bf2539f3f57087c914a2797b4e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 7 Sep 2024 19:50:08 -0700 Subject: [PATCH 11/52] doc update --- CHANGELOG | 1 + docs/parsers/ethtool.md | 2 +- docs/parsers/ifconfig.md | 2 +- docs/parsers/ip_address.md | 2 +- docs/parsers/ping_s.md | 2 +- docs/parsers/uptime.md | 2 +- jc/parsers/ping_s.py | 2 +- man/jc.1 | 2 +- 8 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 509b50d8c..182fb9301 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog 20240907 v1.25.4 +- Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS - Fix `mount` parser for cases where there are spaces in the filesystem name diff --git a/docs/parsers/ethtool.md b/docs/parsers/ethtool.md index bd0946b02..b60d3e01e 100644 --- a/docs/parsers/ethtool.md +++ b/docs/parsers/ethtool.md @@ -194,4 +194,4 @@ Compatibility: linux Source: [`jc/parsers/ethtool.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ethtool.py) -Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ifconfig.md b/docs/parsers/ifconfig.md index e9b0ddc9a..c297e839c 100644 --- a/docs/parsers/ifconfig.md +++ b/docs/parsers/ifconfig.md @@ -242,4 +242,4 @@ Compatibility: linux, aix, freebsd, darwin Source: [`jc/parsers/ifconfig.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ifconfig.py) -Version 2.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ip_address.md b/docs/parsers/ip_address.md index efdcc21f8..4c85908b9 100644 --- a/docs/parsers/ip_address.md +++ b/docs/parsers/ip_address.md @@ -556,4 +556,4 @@ Source: [`jc/parsers/ip_address.py`](https://github.com/kellyjonbrazil/jc/blob/m This parser can be used with the `--slurp` command-line option. -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ping_s.md b/docs/parsers/ping_s.md index 813dee9c3..7a3d3da98 100644 --- a/docs/parsers/ping_s.md +++ b/docs/parsers/ping_s.md @@ -109,4 +109,4 @@ Compatibility: linux, darwin, freebsd Source: [`jc/parsers/ping_s.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ping_s.py) -Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/uptime.md b/docs/parsers/uptime.md index d26cddbf5..0e19dab68 100644 --- a/docs/parsers/uptime.md +++ b/docs/parsers/uptime.md @@ -92,4 +92,4 @@ Source: [`jc/parsers/uptime.py`](https://github.com/kellyjonbrazil/jc/blob/maste This parser can be used with the `--slurp` command-line option. -Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/ping_s.py b/jc/parsers/ping_s.py index 46c4885a9..c74bd24b6 100644 --- a/jc/parsers/ping_s.py +++ b/jc/parsers/ping_s.py @@ -88,7 +88,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.5' + version = '1.6' description = '`ping` and `ping6` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/man/jc.1 b/man/jc.1 index 65d5df25f..0c4c997ea 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-06-18 1.25.4 "JSON Convert" +.TH jc 1 2024-09-07 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings From b66c5dbf55b5d58e6dc53bf0bb385cb7a6aa7fb7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 12 Sep 2024 19:38:31 -0700 Subject: [PATCH 12/52] doc update --- jc/parsers/proc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/proc.py b/jc/parsers/proc.py index 92b667aee..46526d8b0 100644 --- a/jc/parsers/proc.py +++ b/jc/parsers/proc.py @@ -26,7 +26,7 @@ or - $ cat /proc/meminfo | jc --proc-memifno + $ cat /proc/meminfo | jc --proc-meminfo Usage (module): From 5c855e40c6cb9432b630cdf22f20ccf3285b24d7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 17 Sep 2024 09:52:38 -0700 Subject: [PATCH 13/52] fix 6to4 test for python backports --- tests/test_ip_address.py | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index 0e46cd6bf..a3757d404 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -106,13 +106,36 @@ def test_ip_address_ipv6_6to4(self): """ Test ipv6 6to4 address string """ + # 6to4 behavior changes in newer versions of python are being backported + # to old versions so we are checking if more than one style fails before + # failing the test + data = r'2002:c000:204::/48' - if sys.version_info >= (3, 12, 4): - expected_private = r'"is_private":true,"is_global":false' - else: - expected_private = r'"is_private":false,"is_global":true' + actual = jc.parsers.ip_address.parse(data, quiet=True) + failures = 0 + failure_msg1 = '' + failure_msg2 = '' + + # New-Style 6to4 output + expected_private = r'"is_private":true,"is_global":false' expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + try: + self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + except AssertionError: + failures += 1 + failure_msg1 = f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' + + # Old-Style 6to4 output + expected_private = r'"is_private":false,"is_global":true' + expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') + try: + self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + except AssertionError: + failures += 1 + failure_msg2 = f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' + + if failures > 1: + self.fail(failure_msg1 + '\n' + failure_msg2) def test_ip_address_ipv6_teredo(self): From 413519e02c286c4ca9513316ab84ba73b5acfb7a Mon Sep 17 00:00:00 2001 From: Leonard Crestez Date: Mon, 23 Sep 2024 05:28:45 +0300 Subject: [PATCH 14/52] #592: Handle df size suffixes as binary (#593) * df: convert_size_to_int as binary * tests: Update df -h expected output --------- Co-authored-by: Kelly Brazil --- jc/parsers/df.py | 2 +- tests/fixtures/centos-7.7/df-h.json | 2 +- tests/fixtures/osx-10.11.6/df-h.json | 2 +- tests/fixtures/osx-10.14.6/df-h.json | 2 +- tests/fixtures/ubuntu-18.04/df-h.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jc/parsers/df.py b/jc/parsers/df.py index fbe1ca802..d8a25d39e 100644 --- a/jc/parsers/df.py +++ b/jc/parsers/df.py @@ -159,7 +159,7 @@ def _process(proc_data): # parse the size, used, and available fields to bytes for key in entry: if key in size_list: - entry[key] = jc.utils.convert_size_to_int(entry[key]) + entry[key] = jc.utils.convert_size_to_int(entry[key], True) # convert integers for key in entry: diff --git a/tests/fixtures/centos-7.7/df-h.json b/tests/fixtures/centos-7.7/df-h.json index 54d0d0541..9f38e03c4 100644 --- a/tests/fixtures/centos-7.7/df-h.json +++ b/tests/fixtures/centos-7.7/df-h.json @@ -1 +1 @@ -[{"filesystem":"devtmpfs","size":1900000000,"used":0,"mounted_on":"/dev","available":1900000000,"use_percent":0},{"filesystem":"tmpfs","size":1900000000,"used":0,"mounted_on":"/dev/shm","available":1900000000,"use_percent":0},{"filesystem":"tmpfs","size":1900000000,"used":12000000,"mounted_on":"/run","available":1900000000,"use_percent":1},{"filesystem":"tmpfs","size":1900000000,"used":0,"mounted_on":"/sys/fs/cgroup","available":1900000000,"use_percent":0},{"filesystem":"/dev/mapper/centos-root","size":17000000000,"used":1800000000,"mounted_on":"/","available":16000000000,"use_percent":11},{"filesystem":"/dev/sda1","size":1014000000,"used":233000000,"mounted_on":"/boot","available":782000000,"use_percent":23},{"filesystem":"tmpfs","size":378000000,"used":0,"mounted_on":"/run/user/1000","available":378000000,"use_percent":0}] +[{"filesystem":"devtmpfs","size":2040109465,"used":0,"mounted_on":"/dev","available":2040109465,"use_percent":0},{"filesystem":"tmpfs","size":2040109465,"used":0,"mounted_on":"/dev/shm","available":2040109465,"use_percent":0},{"filesystem":"tmpfs","size":2040109465,"used":12582912,"mounted_on":"/run","available":2040109465,"use_percent":1},{"filesystem":"tmpfs","size":2040109465,"used":0,"mounted_on":"/sys/fs/cgroup","available":2040109465,"use_percent":0},{"filesystem":"/dev/mapper/centos-root","size":18253611008,"used":1932735283,"mounted_on":"/","available":17179869184,"use_percent":11},{"filesystem":"/dev/sda1","size":1063256064,"used":244318208,"mounted_on":"/boot","available":819986432,"use_percent":23},{"filesystem":"tmpfs","size":396361728,"used":0,"mounted_on":"/run/user/1000","available":396361728,"use_percent":0}] diff --git a/tests/fixtures/osx-10.11.6/df-h.json b/tests/fixtures/osx-10.11.6/df-h.json index bcb76e374..4b3e1fc3a 100644 --- a/tests/fixtures/osx-10.11.6/df-h.json +++ b/tests/fixtures/osx-10.11.6/df-h.json @@ -1 +1 @@ -[{"filesystem":"/dev/disk1s1","size":466000000000,"used":137000000000,"iused":674413,"ifree":9223372036854101394,"mounted_on":"/","available":326000000000,"capacity_percent":30,"iused_percent":0},{"filesystem":"devfs","size":188000,"used":188000,"iused":650,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":466000000000,"used":2000000000,"iused":2,"ifree":9223372036854775805,"mounted_on":"/private/var/vm","available":326000000000,"capacity_percent":1,"iused_percent":0},{"filesystem":"map -hosts","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":3500000000000,"used":1100000000000,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2400000000000,"capacity_percent":32,"iused_percent":32}] +[{"filesystem":"/dev/disk1s1","size":500363689984,"used":147102629888,"iused":674413,"ifree":9223372036854101394,"mounted_on":"/","available":350039834624,"capacity_percent":30,"iused_percent":0},{"filesystem":"devfs","size":192512,"used":192512,"iused":650,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":500363689984,"used":2147483648,"iused":2,"ifree":9223372036854775805,"mounted_on":"/private/var/vm","available":350039834624,"capacity_percent":1,"iused_percent":0},{"filesystem":"map -hosts","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":3848290697216,"used":1209462790553,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2638827906662,"capacity_percent":32,"iused_percent":32}] diff --git a/tests/fixtures/osx-10.14.6/df-h.json b/tests/fixtures/osx-10.14.6/df-h.json index 790a3604b..da9ce27c5 100644 --- a/tests/fixtures/osx-10.14.6/df-h.json +++ b/tests/fixtures/osx-10.14.6/df-h.json @@ -1 +1 @@ -[{"filesystem":"/dev/disk1s1","size":466000000000,"used":144000000000,"iused":1507697,"ifree":9223372036853268110,"mounted_on":"/","available":315000000000,"capacity_percent":32,"iused_percent":0},{"filesystem":"devfs","size":334000,"used":334000,"iused":1154,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":466000000000,"used":6000000000,"iused":6,"ifree":9223372036854775801,"mounted_on":"/private/var/vm","available":315000000000,"capacity_percent":2,"iused_percent":0},{"filesystem":"map -hosts","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk2s2","size":6900000000,"used":5200000000,"iused":8,"ifree":4294967271,"mounted_on":"/Volumes/InstallESD","available":1700000000,"capacity_percent":76,"iused_percent":0},{"filesystem":"com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1","size":466000000000,"used":132000000000,"iused":1459164,"ifree":9223372036853316643,"mounted_on":"/Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD","available":315000000000,"capacity_percent":30,"iused_percent":0},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":3500000000000,"used":1100000000000,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2400000000000,"capacity_percent":32,"iused_percent":32}] +[{"filesystem":"/dev/disk1s1","size":500363689984,"used":154618822656,"iused":1507697,"ifree":9223372036853268110,"mounted_on":"/","available":338228674560,"capacity_percent":32,"iused_percent":0},{"filesystem":"devfs","size":342016,"used":342016,"iused":1154,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":500363689984,"used":6442450944,"iused":6,"ifree":9223372036854775801,"mounted_on":"/private/var/vm","available":338228674560,"capacity_percent":2,"iused_percent":0},{"filesystem":"map -hosts","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk2s2","size":7408818585,"used":5583457484,"iused":8,"ifree":4294967271,"mounted_on":"/Volumes/InstallESD","available":1825361100,"capacity_percent":76,"iused_percent":0},{"filesystem":"com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1","size":500363689984,"used":141733920768,"iused":1459164,"ifree":9223372036853316643,"mounted_on":"/Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD","available":338228674560,"capacity_percent":30,"iused_percent":0},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":3848290697216,"used":1209462790553,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2638827906662,"capacity_percent":32,"iused_percent":32}] diff --git a/tests/fixtures/ubuntu-18.04/df-h.json b/tests/fixtures/ubuntu-18.04/df-h.json index a297c8549..073c72b64 100644 --- a/tests/fixtures/ubuntu-18.04/df-h.json +++ b/tests/fixtures/ubuntu-18.04/df-h.json @@ -1 +1 @@ -[{"filesystem":"udev","size":955000000,"used":0,"mounted_on":"/dev","available":955000000,"use_percent":0},{"filesystem":"tmpfs","size":198000000,"used":1200000,"mounted_on":"/run","available":196000000,"use_percent":1},{"filesystem":"/dev/sda2","size":20000000000,"used":5500000000,"mounted_on":"/","available":14000000000,"use_percent":30},{"filesystem":"tmpfs","size":986000000,"used":0,"mounted_on":"/dev/shm","available":986000000,"use_percent":0},{"filesystem":"tmpfs","size":5000000,"used":0,"mounted_on":"/run/lock","available":5000000,"use_percent":0},{"filesystem":"tmpfs","size":986000000,"used":0,"mounted_on":"/sys/fs/cgroup","available":986000000,"use_percent":0},{"filesystem":"/dev/loop0","size":55000000,"used":55000000,"mounted_on":"/snap/core18/1223","available":0,"use_percent":100},{"filesystem":"/dev/loop1","size":11000000,"used":11000000,"mounted_on":"/snap/slcli/383","available":0,"use_percent":100},{"filesystem":"/dev/loop2","size":89000000,"used":89000000,"mounted_on":"/snap/core/7396","available":0,"use_percent":100},{"filesystem":"/dev/loop3","size":67000000,"used":67000000,"mounted_on":"/snap/google-cloud-sdk/103","available":0,"use_percent":100},{"filesystem":"/dev/loop5","size":55000000,"used":55000000,"mounted_on":"/snap/core18/1074","available":0,"use_percent":100},{"filesystem":"/dev/loop7","size":8700000,"used":8700000,"mounted_on":"/snap/doctl/187","available":0,"use_percent":100},{"filesystem":"/dev/loop8","size":3200000,"used":3200000,"mounted_on":"/snap/stress-ng/847","available":0,"use_percent":100},{"filesystem":"/dev/loop10","size":90000000,"used":90000000,"mounted_on":"/snap/core/7917","available":0,"use_percent":100},{"filesystem":"/dev/loop11","size":3300000,"used":3300000,"mounted_on":"/snap/stress-ng/924","available":0,"use_percent":100},{"filesystem":"tmpfs","size":197000000,"used":0,"mounted_on":"/run/user/1000","available":197000000,"use_percent":0},{"filesystem":"/dev/loop9","size":8700000,"used":8700000,"mounted_on":"/snap/doctl/215","available":0,"use_percent":100},{"filesystem":"/dev/loop4","size":67000000,"used":67000000,"mounted_on":"/snap/google-cloud-sdk/104","available":0,"use_percent":100}] +[{"filesystem":"udev","size":1001390080,"used":0,"mounted_on":"/dev","available":1001390080,"use_percent":0},{"filesystem":"tmpfs","size":207618048,"used":1258291,"mounted_on":"/run","available":205520896,"use_percent":1},{"filesystem":"/dev/sda2","size":21474836480,"used":5905580032,"mounted_on":"/","available":15032385536,"use_percent":30},{"filesystem":"tmpfs","size":1033895936,"used":0,"mounted_on":"/dev/shm","available":1033895936,"use_percent":0},{"filesystem":"tmpfs","size":5242880,"used":0,"mounted_on":"/run/lock","available":5242880,"use_percent":0},{"filesystem":"tmpfs","size":1033895936,"used":0,"mounted_on":"/sys/fs/cgroup","available":1033895936,"use_percent":0},{"filesystem":"/dev/loop0","size":57671680,"used":57671680,"mounted_on":"/snap/core18/1223","available":0,"use_percent":100},{"filesystem":"/dev/loop1","size":11534336,"used":11534336,"mounted_on":"/snap/slcli/383","available":0,"use_percent":100},{"filesystem":"/dev/loop2","size":93323264,"used":93323264,"mounted_on":"/snap/core/7396","available":0,"use_percent":100},{"filesystem":"/dev/loop3","size":70254592,"used":70254592,"mounted_on":"/snap/google-cloud-sdk/103","available":0,"use_percent":100},{"filesystem":"/dev/loop5","size":57671680,"used":57671680,"mounted_on":"/snap/core18/1074","available":0,"use_percent":100},{"filesystem":"/dev/loop7","size":9122611,"used":9122611,"mounted_on":"/snap/doctl/187","available":0,"use_percent":100},{"filesystem":"/dev/loop8","size":3355443,"used":3355443,"mounted_on":"/snap/stress-ng/847","available":0,"use_percent":100},{"filesystem":"/dev/loop10","size":94371840,"used":94371840,"mounted_on":"/snap/core/7917","available":0,"use_percent":100},{"filesystem":"/dev/loop11","size":3460300,"used":3460300,"mounted_on":"/snap/stress-ng/924","available":0,"use_percent":100},{"filesystem":"tmpfs","size":206569472,"used":0,"mounted_on":"/run/user/1000","available":206569472,"use_percent":0},{"filesystem":"/dev/loop9","size":9122611,"used":9122611,"mounted_on":"/snap/doctl/215","available":0,"use_percent":100},{"filesystem":"/dev/loop4","size":70254592,"used":70254592,"mounted_on":"/snap/google-cloud-sdk/104","available":0,"use_percent":100}] From 97e9798cef0b71b0e91b741b0a8bb873d22cae1a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 22 Sep 2024 19:34:23 -0700 Subject: [PATCH 15/52] add posix_mode to utils/convert_size_to_int and use in df --- jc/parsers/df.py | 6 ++++-- jc/utils.py | 35 ++++++++++++++++++++++++++++++++--- 2 files changed, 36 insertions(+), 5 deletions(-) diff --git a/jc/parsers/df.py b/jc/parsers/df.py index d8a25d39e..67dbeaad2 100644 --- a/jc/parsers/df.py +++ b/jc/parsers/df.py @@ -101,7 +101,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '2.0' + version = '2.1' description = '`df` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -127,6 +127,7 @@ def _process(proc_data): """ int_list = {'use_percent', 'capacity_percent', 'ifree', 'iused', 'iused_percent'} size_list = {'size', 'used', 'available'} + posix_mode = False for entry in proc_data: if 'avail' in entry: @@ -134,6 +135,7 @@ def _process(proc_data): if 'use%' in entry: entry['use_percent'] = entry.pop('use%') + posix_mode = True if 'capacity' in entry: entry['capacity_percent'] = entry.pop('capacity') @@ -159,7 +161,7 @@ def _process(proc_data): # parse the size, used, and available fields to bytes for key in entry: if key in size_list: - entry[key] = jc.utils.convert_size_to_int(entry[key], True) + entry[key] = jc.utils.convert_size_to_int(entry[key], posix_mode=posix_mode) # convert integers for key in entry: diff --git a/jc/utils.py b/jc/utils.py index b5076a382..d8f366fb8 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -365,7 +365,11 @@ def convert_to_bool(value: object) -> bool: # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -def convert_size_to_int(size: str, binary: bool = False) -> Optional[int]: +def convert_size_to_int( + size: str, + binary: bool = False, + posix_mode: bool = False, + decimal_bias: bool = False) -> Optional[int]: """ Parse a human readable data size and return the number of bytes. @@ -375,6 +379,11 @@ def convert_size_to_int(size: str, binary: bool = False) -> Optional[int]: binary: (boolean) `True` to use binary multiples of bytes (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). + posix_mode: Treat one-letter units (k, m, g, etc.) as binary. + decimal_bias: (boolean) `True` to treat slightly ambiguous two- + letter unit symbols ending in "i" (e.g. Ki, Gi) to + use decimal multiples of bytes (base-10). `False` + (default) to use binary multiples of bytes. Returns: integer/None Integer if successful conversion, otherwise None @@ -394,6 +403,10 @@ def convert_size_to_int(size: str, binary: bool = False) -> Optional[int]: 1000 >>> convert_size_to_int('1 KiB') 1024 + >>> convert_size_to_int('1 Ki') + 1024 + >>> convert_size_to_int('1 Ki', decimal_bias=True) + 1000 >>> convert_size_to_int('1 KB', binary=True) 1024 >>> convert_size_to_int('1.5 GB') @@ -441,17 +454,33 @@ def tokenize(text: str) -> List[str]: # Convert plural units to singular units, for details: # https://github.com/xolox/python-humanfriendly/issues/26 normalized_unit = normalized_unit.rstrip('s') + + # Handle POSIX mode units where `k`, `m`, etc. are treated as bindary + # https://www.gnu.org/software/coreutils/manual/html_node/Block-size.html + if len(normalized_unit) == 1 and posix_mode: + normalized_unit = normalized_unit + 'ib' + + # Handle two-letter units (Ki, Gi, etc.) These are somewhat + # ambiguous, but are treated as binary by default. This can be + # changed with the `decimal_bias` parameter + if len(normalized_unit) == 2 and normalized_unit[1].lower() == 'i': + if decimal_bias: + normalized_unit = normalized_unit[0] + else: + normalized_unit = normalized_unit + 'b' + for unit in disk_size_units: # First we check for unambiguous symbols (KiB, MiB, GiB, etc) # and names (kibibyte, mebibyte, gibibyte, etc) because their # handling is always the same. if normalized_unit in (unit.binary.symbol.lower(), unit.binary.name.lower()): return int(tokens[0] * unit.binary.divider) + # Now we will deal with ambiguous prefixes (K, M, G, etc), # symbols (KB, MB, GB, etc) and names (kilobyte, megabyte, # gigabyte, etc) according to the caller's preference. - if (normalized_unit in (unit.decimal.symbol.lower(), unit.decimal.name.lower()) or - normalized_unit.startswith(unit.decimal.symbol[0].lower())): + if (normalized_unit in (unit.decimal.symbol.lower(), unit.decimal.name.lower()) + or normalized_unit.startswith(unit.decimal.symbol[0].lower())): return int(tokens[0] * (unit.binary.divider if binary else unit.decimal.divider)) # We failed to parse the size specification. return None From f2a8e0087b16e458d1d4f223986903bb503d1a24 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 22 Sep 2024 20:01:40 -0700 Subject: [PATCH 16/52] add tests and doc update --- CHANGELOG | 4 +++- docs/parsers/df.md | 2 +- docs/utils.md | 14 +++++++++++++- man/jc.1 | 7 ++++++- tests/fixtures/osx-10.14.6/df-hh.json | 1 + tests/fixtures/osx-10.14.6/df-hh.out | 13 +++++++++++++ tests/test_df.py | 12 ++++++++++++ tests/test_jc_utils.py | 28 +++++++++++++++++++++++++++ 8 files changed, 77 insertions(+), 4 deletions(-) create mode 100644 tests/fixtures/osx-10.14.6/df-hh.json create mode 100644 tests/fixtures/osx-10.14.6/df-hh.out diff --git a/CHANGELOG b/CHANGELOG index 182fb9301..b6396c11c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,12 +1,14 @@ jc changelog -20240907 v1.25.4 +20240922 v1.25.4 - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses - Fix `uptime` parser for data that contains `user` instead of `users` +- Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field diff --git a/docs/parsers/df.md b/docs/parsers/df.md index 06f17325d..b5c74bb75 100644 --- a/docs/parsers/df.md +++ b/docs/parsers/df.md @@ -124,4 +124,4 @@ Compatibility: linux, darwin, freebsd Source: [`jc/parsers/df.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/df.py) -Version 2.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/utils.md b/docs/utils.md index de07a4e4f..eb0df3a41 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -55,7 +55,10 @@ Returns: ### convert_size_to_int ```python -def convert_size_to_int(size: str, binary: bool = False) -> Optional[int] +def convert_size_to_int(size: str, + binary: bool = False, + posix_mode: bool = False, + decimal_bias: bool = False) -> Optional[int] ``` Parse a human readable data size and return the number of bytes. @@ -66,6 +69,11 @@ Parameters: binary: (boolean) `True` to use binary multiples of bytes (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). + posix_mode: Treat one-letter units (k, m, g, etc.) as binary. + decimal_bias: (boolean) `True` to treat slightly ambiguous two- + letter unit symbols ending in "i" (e.g. Ki, Gi) to + use decimal multiples of bytes (base-10). `False` + (default) to use binary multiples of bytes. Returns: integer/None Integer if successful conversion, otherwise None @@ -85,6 +93,10 @@ gigabytes, terabytes and petabytes. Some examples: 1000 >>> convert_size_to_int('1 KiB') 1024 + >>> convert_size_to_int('1 Ki') + 1024 + >>> convert_size_to_int('1 Ki', decimal_bias=True) + 1000 >>> convert_size_to_int('1 KB', binary=True) 1024 >>> convert_size_to_int('1.5 GB') diff --git a/man/jc.1 b/man/jc.1 index 0c4c997ea..9049d40d8 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-09-07 1.25.4 "JSON Convert" +.TH jc 1 2024-09-22 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -507,6 +507,11 @@ openvpn-status.log file parser \fB--os-release\fP `/etc/os-release` file parser +.TP +.B +\fB--pacman\fP +`pacman` command parser + .TP .B \fB--passwd\fP diff --git a/tests/fixtures/osx-10.14.6/df-hh.json b/tests/fixtures/osx-10.14.6/df-hh.json new file mode 100644 index 000000000..f20473323 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/df-hh.json @@ -0,0 +1 @@ +[{"filesystem":"/dev/disk3s3s1","size":494000000000,"used":16000000000,"iused":356840,"ifree":3660412200,"mounted_on":"/","available":375000000000,"capacity_percent":5,"iused_percent":0},{"filesystem":"devfs","size":215000,"used":215000,"iused":729,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk3s6","size":494000000000,"used":20000,"iused":0,"ifree":3660412200,"mounted_on":"/System/Volumes/VM","available":375000000000,"capacity_percent":1,"iused_percent":0},{"filesystem":"/dev/disk3s4","size":494000000000,"used":11000000000,"iused":1466,"ifree":3660412200,"mounted_on":"/System/Volumes/Preboot","available":375000000000,"capacity_percent":3,"iused_percent":0},{"filesystem":"/dev/disk3s2","size":494000000000,"used":349000000,"iused":162,"ifree":3660412200,"mounted_on":"/System/Volumes/Update","available":375000000000,"capacity_percent":1,"iused_percent":0},{"filesystem":"/dev/disk1s2","size":524000000,"used":6300000,"iused":1,"ifree":4933600,"mounted_on":"/System/Volumes/xarts","available":505000000,"capacity_percent":2,"iused_percent":0},{"filesystem":"/dev/disk1s1","size":524000000,"used":6500000,"iused":31,"ifree":4933600,"mounted_on":"/System/Volumes/iSCPreboot","available":505000000,"capacity_percent":2,"iused_percent":0},{"filesystem":"/dev/disk1s3","size":524000000,"used":1300000,"iused":63,"ifree":4933600,"mounted_on":"/System/Volumes/Hardware","available":505000000,"capacity_percent":1,"iused_percent":0},{"filesystem":"/dev/disk3s1","size":494000000000,"used":90000000000,"iused":724666,"ifree":3660412200,"mounted_on":"/System/Volumes/Data","available":375000000000,"capacity_percent":20,"iused_percent":0},{"filesystem":"map auto_home","size":0,"used":0,"iused":0,"ifree":0,"mounted_on":"/System/Volumes/Data/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk2s1","size":5400000000,"used":1700000000,"iused":62,"ifree":35253480,"mounted_on":"/System/Volumes/Update/SFR/mnt1","available":3600000000,"capacity_percent":33,"iused_percent":0},{"filesystem":"/dev/disk3s3","size":494000000000,"used":16000000000,"iused":404477,"ifree":3660412200,"mounted_on":"/System/Volumes/Update/mnt1","available":375000000000,"capacity_percent":5,"iused_percent":0}] diff --git a/tests/fixtures/osx-10.14.6/df-hh.out b/tests/fixtures/osx-10.14.6/df-hh.out new file mode 100644 index 000000000..1b6289ee7 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/df-hh.out @@ -0,0 +1,13 @@ +Filesystem Size Used Avail Capacity iused ifree %iused Mounted on +/dev/disk3s3s1 494G 16G 375G 5% 356840 3660412200 0% / +devfs 215k 215k 0B 100% 729 0 100% /dev +/dev/disk3s6 494G 20k 375G 1% 0 3660412200 0% /System/Volumes/VM +/dev/disk3s4 494G 11G 375G 3% 1466 3660412200 0% /System/Volumes/Preboot +/dev/disk3s2 494G 349M 375G 1% 162 3660412200 0% /System/Volumes/Update +/dev/disk1s2 524M 6.3M 505M 2% 1 4933600 0% /System/Volumes/xarts +/dev/disk1s1 524M 6.5M 505M 2% 31 4933600 0% /System/Volumes/iSCPreboot +/dev/disk1s3 524M 1.3M 505M 1% 63 4933600 0% /System/Volumes/Hardware +/dev/disk3s1 494G 90G 375G 20% 724666 3660412200 0% /System/Volumes/Data +map auto_home 0B 0B 0B 100% 0 0 100% /System/Volumes/Data/home +/dev/disk2s1 5.4G 1.7G 3.6G 33% 62 35253480 0% /System/Volumes/Update/SFR/mnt1 +/dev/disk3s3 494G 16G 375G 5% 404477 3660412200 0% /System/Volumes/Update/mnt1 diff --git a/tests/test_df.py b/tests/test_df.py index 3fab2c41f..11e0a69fb 100644 --- a/tests/test_df.py +++ b/tests/test_df.py @@ -33,6 +33,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df-h.out'), 'r', encoding='utf-8') as f: osx_10_14_6_df_h = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df-hh.out'), 'r', encoding='utf-8') as f: + osx_10_14_6_df_hh = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/df-long-filesystem.out'), 'r', encoding='utf-8') as f: generic_df_long_filesystem = f.read() @@ -61,6 +64,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df-h.json'), 'r', encoding='utf-8') as f: osx_10_14_6_df_h_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df-hh.json'), 'r', encoding='utf-8') as f: + osx_10_14_6_df_hh_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/df-long-filesystem.json'), 'r', encoding='utf-8') as f: generic_df_long_filesystem_json = json.loads(f.read()) @@ -119,6 +125,12 @@ def test_df_h_osx_10_14_6(self): """ self.assertEqual(jc.parsers.df.parse(self.osx_10_14_6_df_h, quiet=True), self.osx_10_14_6_df_h_json) + def test_df_hh_osx_10_14_6(self): + """ + Test 'df -H' on OSX 10.14.6 + """ + self.assertEqual(jc.parsers.df.parse(self.osx_10_14_6_df_hh, quiet=True), self.osx_10_14_6_df_hh_json) + def test_df_long_filesystem(self): """ Test older version of 'df' with long filesystem data diff --git a/tests/test_jc_utils.py b/tests/test_jc_utils.py index 9afa3a216..7d50c1027 100644 --- a/tests/test_jc_utils.py +++ b/tests/test_jc_utils.py @@ -209,6 +209,34 @@ def test_utils_convert_size_to_int_binary_true(self): self.assertEqual(jc.utils.convert_size_to_int(input_string, binary=True), expected_output) + def test_utils_convert_size_to_int_posix_mode(self): + io_map = { + '1 K': 1024, + '1 KiB': 1024, + '1 KB': 1000, + '1.5 G': 1610612736, + '1.5 GiB': 1610612736, + '1.5 GB': 1500000000 + } + + for input_string, expected_output in io_map.items(): + self.assertEqual(jc.utils.convert_size_to_int(input_string, posix_mode=True), expected_output) + + + def test_utils_convert_size_to_int_decimal_bias(self): + io_map = { + '1 K': 1000, + '1 Ki': 1000, + '1 KiB': 1024, + '1.5 G': 1500000000, + '1.5 Gi': 1500000000, + '1.5 GiB': 1610612736 + } + + for input_string, expected_output in io_map.items(): + self.assertEqual(jc.utils.convert_size_to_int(input_string, decimal_bias=True), expected_output) + + def test_utils_has_data_nodata(self): self.assertFalse(jc.utils.has_data(' \n ')) From 0955598b49084e1c1fe2c52c88431e16b1cc186e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 23 Sep 2024 06:55:17 -0700 Subject: [PATCH 17/52] formatting --- jc/utils.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/jc/utils.py b/jc/utils.py index d8f366fb8..f5ef0db53 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -366,10 +366,10 @@ def convert_to_bool(value: object) -> bool: # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. def convert_size_to_int( - size: str, - binary: bool = False, - posix_mode: bool = False, - decimal_bias: bool = False) -> Optional[int]: + size: str, + binary: bool = False, + posix_mode: bool = False, + decimal_bias: bool = False) -> Optional[int]: """ Parse a human readable data size and return the number of bytes. @@ -379,7 +379,8 @@ def convert_size_to_int( binary: (boolean) `True` to use binary multiples of bytes (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). - posix_mode: Treat one-letter units (k, m, g, etc.) as binary. + posix_mode: (boolean) Treat one-letter units (k, m, g, etc.) as + binary. decimal_bias: (boolean) `True` to treat slightly ambiguous two- letter unit symbols ending in "i" (e.g. Ki, Gi) to use decimal multiples of bytes (base-10). `False` From 0f367a435ad6ab8164e513f4fcb70bf5736b1fa3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 23 Sep 2024 06:58:33 -0700 Subject: [PATCH 18/52] formatting --- jc/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/utils.py b/jc/utils.py index f5ef0db53..cdd26e525 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -456,7 +456,7 @@ def tokenize(text: str) -> List[str]: # https://github.com/xolox/python-humanfriendly/issues/26 normalized_unit = normalized_unit.rstrip('s') - # Handle POSIX mode units where `k`, `m`, etc. are treated as bindary + # Handle POSIX mode units where `k`, `m`, etc. are treated as binary # https://www.gnu.org/software/coreutils/manual/html_node/Block-size.html if len(normalized_unit) == 1 and posix_mode: normalized_unit = normalized_unit + 'ib' From d9363ae4737aaf2116665f8075a9da905dc2b9a6 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 26 Sep 2024 09:49:06 -0700 Subject: [PATCH 19/52] doc update --- docs/parsers/proc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/parsers/proc.md b/docs/parsers/proc.md index 8b725fff5..dda4d1fa6 100644 --- a/docs/parsers/proc.md +++ b/docs/parsers/proc.md @@ -31,7 +31,7 @@ or or - $ cat /proc/meminfo | jc --proc-memifno + $ cat /proc/meminfo | jc --proc-meminfo Usage (module): From aec3e3cd13917f8c640971ce564cd43ea981508c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 09:15:29 -0700 Subject: [PATCH 20/52] force github test --- jc/parsers/ip_address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/ip_address.py b/jc/parsers/ip_address.py index 3e44f7fe5..fe8e11453 100644 --- a/jc/parsers/ip_address.py +++ b/jc/parsers/ip_address.py @@ -1,4 +1,4 @@ -r"""jc - JSON Convert IP Address string parser +r"""jc - JSON Convert IP Address string parser - force test Accepts standard and integer IP address notation for both IPv4 and IPv6 addresses. CIDR subnet mask and Scope ID is also allowed for standard From ba6e1e694e7fd3865945dad1e462eb94a2bba478 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 13:06:17 -0700 Subject: [PATCH 21/52] fix for python backports for ipv6 output --- jc/parsers/ip_address.py | 2 +- tests/test_ip_address.py | 48 ++++++++++++++++++++++++++++++---------- 2 files changed, 37 insertions(+), 13 deletions(-) diff --git a/jc/parsers/ip_address.py b/jc/parsers/ip_address.py index fe8e11453..3e44f7fe5 100644 --- a/jc/parsers/ip_address.py +++ b/jc/parsers/ip_address.py @@ -1,4 +1,4 @@ -r"""jc - JSON Convert IP Address string parser - force test +r"""jc - JSON Convert IP Address string parser Accepts standard and integer IP address notation for both IPv4 and IPv6 addresses. CIDR subnet mask and Scope ID is also allowed for standard diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index a3757d404..3f3225583 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -1,7 +1,6 @@ import unittest import json import jc.parsers.ip_address -import sys class MyTests(unittest.TestCase): @@ -89,17 +88,42 @@ def test_ip_address_ipv6_ipv4_mapped(self): """ Test ipv6 address with ipv4 mapped string """ + # IPv4 mapped behavior changes in newer versions of python are being backported + # to old versions so we are checking if more than one style fails before + # failing the test + data = r'::FFFF:192.168.1.35' - if sys.version_info >= (3, 13, 0): - expected_ipv4 = '192.168.1.35' - expected_ipv4_exploded = '192.168.1.35' - expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' - else: - expected_ipv4 = 'c0a8:123' - expected_ipv4_exploded = 'c0a8:0123' - expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' + actual = jc.parsers.ip_address.parse(data, quiet=True) + failures = 0 + failure_msg1 = '' + failure_msg2 = '' + + # New-Style IPv4 Mapped output + expected_ipv4 = '192.168.1.35' + expected_ipv4_exploded = '192.168.1.35' + expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msg1 = f'New-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + + # Old-Style IPv4 Mapped output + expected_ipv4 = 'c0a8:123' + expected_ipv4_exploded = 'c0a8:0123' + expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msg2 = f'Old-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + + if failures > 1: + self.fail(failure_msg1 + '\n' + failure_msg2) def test_ip_address_ipv6_6to4(self): @@ -120,7 +144,7 @@ def test_ip_address_ipv6_6to4(self): expected_private = r'"is_private":true,"is_global":false' expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') try: - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + self.assertEqual(actual, expected) except AssertionError: failures += 1 failure_msg1 = f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' @@ -129,7 +153,7 @@ def test_ip_address_ipv6_6to4(self): expected_private = r'"is_private":false,"is_global":true' expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') try: - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + self.assertEqual(actual, expected) except AssertionError: failures += 1 failure_msg2 = f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' From b7cf0ca8d4013b267d1b6403f0d836bb2138bcdc Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 13:13:31 -0700 Subject: [PATCH 22/52] flip is_reserved to false for python ipv6 backports --- tests/test_ip_address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index 3f3225583..d143667e8 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -102,7 +102,7 @@ def test_ip_address_ipv6_ipv4_mapped(self): expected_ipv4 = '192.168.1.35' expected_ipv4_exploded = '192.168.1.35' expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' - expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') try: self.assertEqual(actual, expected) From 05f3e4ea8a107e3d0cb039ba9bbe3f2747602a4b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 13:53:20 -0700 Subject: [PATCH 23/52] fixup tests --- tests/test_ip_address.py | 50 ++++++++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 15 deletions(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index d143667e8..a22a3b9db 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -95,35 +95,56 @@ def test_ip_address_ipv6_ipv4_mapped(self): data = r'::FFFF:192.168.1.35' actual = jc.parsers.ip_address.parse(data, quiet=True) failures = 0 - failure_msg1 = '' - failure_msg2 = '' + failure_msgs = [] - # New-Style IPv4 Mapped output + # New-Style IPv4 Mapped output with is_reserved=false expected_ipv4 = '192.168.1.35' expected_ipv4_exploded = '192.168.1.35' expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' - expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + expected_is_reserved = 'false' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') try: self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg1 = f'New-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'New-style IPv4 Mapped is_reserved=false failure:\n Expected: {expected}\n Actual: {actual}') - # Old-Style IPv4 Mapped output + # New-Style IPv4 Mapped output with is_reserved=true + expected_is_reserved = 'true' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msgs.append(f'New-style IPv4 Mapped is_reserved=true failure:\n Expected: {expected}\n Actual: {actual}') + + # Old-Style IPv4 Mapped output with is_reserved=false expected_ipv4 = 'c0a8:123' expected_ipv4_exploded = 'c0a8:0123' expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' - expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + expected_is_reserved = 'false' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') try: self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg2 = f'Old-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'Old-style IPv4 Mapped is_reserved=false failure:\n Expected: {expected}\n Actual: {actual}') - if failures > 1: - self.fail(failure_msg1 + '\n' + failure_msg2) + # Old-Style IPv4 Mapped output with is_reserved=true + expected_is_reserved = 'true' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msgs.append(f'Old-style IPv4 Mapped is_reserved=true failure:\n Expected: {expected}\n Actual: {actual}') + + if failures > 3: + self.fail('\n\n'.join(failure_msgs)) def test_ip_address_ipv6_6to4(self): @@ -137,8 +158,7 @@ def test_ip_address_ipv6_6to4(self): data = r'2002:c000:204::/48' actual = jc.parsers.ip_address.parse(data, quiet=True) failures = 0 - failure_msg1 = '' - failure_msg2 = '' + failure_msgs = [] # New-Style 6to4 output expected_private = r'"is_private":true,"is_global":false' @@ -147,7 +167,7 @@ def test_ip_address_ipv6_6to4(self): self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg1 = f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}') # Old-Style 6to4 output expected_private = r'"is_private":false,"is_global":true' @@ -156,10 +176,10 @@ def test_ip_address_ipv6_6to4(self): self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg2 = f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}') if failures > 1: - self.fail(failure_msg1 + '\n' + failure_msg2) + self.fail('\n\n'.join(failure_msgs)) def test_ip_address_ipv6_teredo(self): From 78150ded70d1068fc0f5a138e8704c57df7c97f9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 14:05:06 -0700 Subject: [PATCH 24/52] doc update --- tests/test_ip_address.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index a22a3b9db..da33f58a7 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -89,8 +89,7 @@ def test_ip_address_ipv6_ipv4_mapped(self): Test ipv6 address with ipv4 mapped string """ # IPv4 mapped behavior changes in newer versions of python are being backported - # to old versions so we are checking if more than one style fails before - # failing the test + # to old versions so we are checking if at least one style passes data = r'::FFFF:192.168.1.35' actual = jc.parsers.ip_address.parse(data, quiet=True) @@ -152,8 +151,7 @@ def test_ip_address_ipv6_6to4(self): Test ipv6 6to4 address string """ # 6to4 behavior changes in newer versions of python are being backported - # to old versions so we are checking if more than one style fails before - # failing the test + # to old versions so we are checking if at least one style passes data = r'2002:c000:204::/48' actual = jc.parsers.ip_address.parse(data, quiet=True) From c5e0642b0b38b5b7bee01e492ed93a72c879c09e Mon Sep 17 00:00:00 2001 From: Jake Ob Date: Fri, 18 Oct 2024 19:50:51 +0300 Subject: [PATCH 25/52] Fix broken controller regexp scheme in the bluetoothctl parser (#599) This commit fixes the controller parser scheme in order to take care and extract some extra attributes, the manufacturer and version. The order of the attributes appearing in the regexp scheme must follow the order they appear in the `bluetoothctl show` outputs. A new test has been added to test outputs with these extra attrs. Co-authored-by: Kelly Brazil --- jc/parsers/bluetoothctl.py | 16 +++++- ...etoothctl_controller_with_manufacturer.out | 37 +++++++++++++ tests/test_bluetoothctl.py | 52 +++++++++++++++++++ 3 files changed, 103 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out diff --git a/jc/parsers/bluetoothctl.py b/jc/parsers/bluetoothctl.py index 84de15282..2fabd41ba 100644 --- a/jc/parsers/bluetoothctl.py +++ b/jc/parsers/bluetoothctl.py @@ -28,6 +28,8 @@ Controller: [ { + "manufacturer": string, + "version": string, "name": string, "is_default": boolean, "is_public": boolean, @@ -127,6 +129,8 @@ class info(): Controller = TypedDict( "Controller", { + "manufacturer": str, + "version": str, "name": str, "is_default": bool, "is_public": bool, @@ -175,7 +179,9 @@ class info(): _controller_head_pattern = r"Controller (?P
([0-9A-F]{2}:){5}[0-9A-F]{2}) (?P.+)" _controller_line_pattern = ( - r"(\s*Name:\s*(?P.+)" + r"(\s*Manufacturer:\s*(?P.+)" + + r"|\s*Version:\s*(?P.+)" + + r"|\s*Name:\s*(?P.+)" + r"|\s*Alias:\s*(?P.+)" + r"|\s*Class:\s*(?P.+)" + r"|\s*Powered:\s*(?P.+)" @@ -203,6 +209,8 @@ def _parse_controller(next_lines: List[str]) -> Optional[Controller]: return None controller: Controller = { + "manufacturer": '', + "version": '', "name": '', "is_default": False, "is_public": False, @@ -241,7 +249,11 @@ def _parse_controller(next_lines: List[str]) -> Optional[Controller]: matches = result.groupdict() - if matches["name"]: + if matches["manufacturer"]: + controller["manufacturer"] = matches["manufacturer"] + elif matches["version"]: + controller["version"] = matches["version"] + elif matches["name"]: controller["name"] = matches["name"] elif matches["alias"]: controller["alias"] = matches["alias"] diff --git a/tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out b/tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out new file mode 100644 index 000000000..6b46fd96c --- /dev/null +++ b/tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out @@ -0,0 +1,37 @@ +Controller 48:A4:72:3C:96:63 (public) + Manufacturer: 0x0002 (2) + Version: 0x08 (8) + Name: ubuntu + Alias: ubuntu + Class: 0x007c0104 (8126724) + Powered: yes + Discoverable: yes + DiscoverableTimeout: 0x000000b4 (180) + Pairable: yes + UUID: Message Notification Se.. (00001133-0000-1000-8000-00805f9b34fb) + UUID: A/V Remote Control (0000110e-0000-1000-8000-00805f9b34fb) + UUID: OBEX Object Push (00001105-0000-1000-8000-00805f9b34fb) + UUID: Message Access Server (00001132-0000-1000-8000-00805f9b34fb) + UUID: PnP Information (00001200-0000-1000-8000-00805f9b34fb) + UUID: IrMC Sync (00001104-0000-1000-8000-00805f9b34fb) + UUID: Vendor specific (00005005-0000-1000-8000-0002ee000001) + UUID: A/V Remote Control Target (0000110c-0000-1000-8000-00805f9b34fb) + UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb) + UUID: Phonebook Access Server (0000112f-0000-1000-8000-00805f9b34fb) + UUID: Audio Sink (0000110b-0000-1000-8000-00805f9b34fb) + UUID: Device Information (0000180a-0000-1000-8000-00805f9b34fb) + UUID: Generic Access Profile (00001800-0000-1000-8000-00805f9b34fb) + UUID: Handsfree Audio Gateway (0000111f-0000-1000-8000-00805f9b34fb) + UUID: Audio Source (0000110a-0000-1000-8000-00805f9b34fb) + UUID: OBEX File Transfer (00001106-0000-1000-8000-00805f9b34fb) + UUID: Handsfree (0000111e-0000-1000-8000-00805f9b34fb) + Modalias: usb:v1D6Bp0246d0548 + Discovering: yes + Roles: central + Roles: peripheral +Advertising Features: + ActiveInstances: 0x00 (0) + SupportedInstances: 0x05 (5) + SupportedIncludes: tx-power + SupportedIncludes: appearance + SupportedIncludes: local-name diff --git a/tests/test_bluetoothctl.py b/tests/test_bluetoothctl.py index f573f950d..1df042135 100644 --- a/tests/test_bluetoothctl.py +++ b/tests/test_bluetoothctl.py @@ -104,6 +104,58 @@ def test_bluetoothctl_controller(self): if actual: for k, v in expected.items(): self.assertEqual(v, actual[0][k], f"Controller regex failed on {k}") + + def test_bluetoothctl_controller_with_manufacturer(self): + """ + Test 'bluetoothctl' with controller having manufacturer attr + """ + + with open("tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out", "r") as f: + output = f.read() + + actual = parse(output, quiet=True) + + self.assertIsNotNone(actual) + self.assertIsNotNone(actual[0]) + + expected = { + "manufacturer": "0x0002 (2)", + "version": "0x08 (8)", + "address": "48:A4:72:3C:96:63", + "is_public": True, + "name": "ubuntu", + "alias": "ubuntu", + "class": "0x007c0104 (8126724)", + "powered": "yes", + "discoverable": "yes", + "discoverable_timeout": "0x000000b4 (180)", + "pairable": "yes", + "uuids": [ + "Message Notification Se.. (00001133-0000-1000-8000-00805f9b34fb)", + "A/V Remote Control (0000110e-0000-1000-8000-00805f9b34fb)", + "OBEX Object Push (00001105-0000-1000-8000-00805f9b34fb)", + "Message Access Server (00001132-0000-1000-8000-00805f9b34fb)", + "PnP Information (00001200-0000-1000-8000-00805f9b34fb)", + "IrMC Sync (00001104-0000-1000-8000-00805f9b34fb)", + "Vendor specific (00005005-0000-1000-8000-0002ee000001)", + "A/V Remote Control Target (0000110c-0000-1000-8000-00805f9b34fb)", + "Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb)", + "Phonebook Access Server (0000112f-0000-1000-8000-00805f9b34fb)", + "Audio Sink (0000110b-0000-1000-8000-00805f9b34fb)", + "Device Information (0000180a-0000-1000-8000-00805f9b34fb)", + "Generic Access Profile (00001800-0000-1000-8000-00805f9b34fb)", + "Handsfree Audio Gateway (0000111f-0000-1000-8000-00805f9b34fb)", + "Audio Source (0000110a-0000-1000-8000-00805f9b34fb)", + "OBEX File Transfer (00001106-0000-1000-8000-00805f9b34fb)", + "Handsfree (0000111e-0000-1000-8000-00805f9b34fb)" + ], + "modalias": "usb:v1D6Bp0246d0548", + "discovering": "yes" + } + + if actual: + for k, v in expected.items(): + self.assertEqual(v, actual[0][k], f"Controller regex failed on {k}") def test_bluetoothctl_controllers(self): """ From 2df5e79295187b134b5c1d9bac01ac3e85e6d937 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 18 Oct 2024 09:56:32 -0700 Subject: [PATCH 26/52] doc update --- CHANGELOG | 3 ++- jc/parsers/bluetoothctl.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b6396c11c..89dd9665d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,10 @@ jc changelog -20240922 v1.25.4 +20241018 v1.25.4 - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses diff --git a/jc/parsers/bluetoothctl.py b/jc/parsers/bluetoothctl.py index 2fabd41ba..3d2413347 100644 --- a/jc/parsers/bluetoothctl.py +++ b/jc/parsers/bluetoothctl.py @@ -112,7 +112,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`bluetoothctl` command parser' author = 'Jake Ob' author_email = 'iakopap at gmail.com' From a2e0e6d5494587516a261fe0058db7714e5ca337 Mon Sep 17 00:00:00 2001 From: "Jose E. Rodriguez" Date: Fri, 18 Oct 2024 17:17:14 -0400 Subject: [PATCH 27/52] feat: Add Windows ipconfig parser to jc (#596) * feat: Introduce ipconfig parser * fix: add parsing support for "connection_specific_dns_suffix_search_list" and windows XP ipv4 addresses, remove dateutil dependency * fix: introduce unit tests, correct import of datetime * fix: changed preferred to status to account for other ip statuses, and parsed link local ipv6 prefix length * fix: compress _parse_header_line and _parse_adapter_line + fix casing in unit test file --------- Co-authored-by: Kelly Brazil --- jc/lib.py | 1 + jc/parsers/ipconfig.py | 778 ++++++++++++++++++ .../fixtures/windows/windows-10/ipconfig.json | 133 +++ .../fixtures/windows/windows-10/ipconfig.out | 57 ++ .../fixtures/windows/windows-11/ipconfig.json | 326 ++++++++ .../fixtures/windows/windows-11/ipconfig.out | 130 +++ .../windows/windows-2008/ipconfig.json | 80 ++ .../windows/windows-2008/ipconfig.out | 33 + .../windows/windows-2016/ipconfig.json | 82 ++ .../windows/windows-2016/ipconfig.out | 34 + .../fixtures/windows/windows-7/ipconfig.json | 82 ++ tests/fixtures/windows/windows-7/ipconfig.out | 37 + .../fixtures/windows/windows-xp/ipconfig.json | 51 ++ .../fixtures/windows/windows-xp/ipconfig.out | 25 + tests/test_ipconfig.py | 48 ++ 15 files changed, 1897 insertions(+) create mode 100644 jc/parsers/ipconfig.py create mode 100644 tests/fixtures/windows/windows-10/ipconfig.json create mode 100644 tests/fixtures/windows/windows-10/ipconfig.out create mode 100644 tests/fixtures/windows/windows-11/ipconfig.json create mode 100644 tests/fixtures/windows/windows-11/ipconfig.out create mode 100644 tests/fixtures/windows/windows-2008/ipconfig.json create mode 100644 tests/fixtures/windows/windows-2008/ipconfig.out create mode 100644 tests/fixtures/windows/windows-2016/ipconfig.json create mode 100644 tests/fixtures/windows/windows-2016/ipconfig.out create mode 100644 tests/fixtures/windows/windows-7/ipconfig.json create mode 100644 tests/fixtures/windows/windows-7/ipconfig.out create mode 100644 tests/fixtures/windows/windows-xp/ipconfig.json create mode 100644 tests/fixtures/windows/windows-xp/ipconfig.out create mode 100644 tests/test_ipconfig.py diff --git a/jc/lib.py b/jc/lib.py index 9bcd9a2ad..0b4341ba4 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -75,6 +75,7 @@ 'iostat', 'iostat-s', 'ip-address', + 'ipconfig', 'iptables', 'ip-route', 'iw-scan', diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py new file mode 100644 index 000000000..25ba615f3 --- /dev/null +++ b/jc/parsers/ipconfig.py @@ -0,0 +1,778 @@ +r"""jc - JSON Convert `ipconfig` command output parser + + +Usage (cli): + + $ ipconfig /all | jc --ipconfig + $ ipconfig | jc --ipconfig + +Usage (module): + + import jc + result = jc.parse('ipconfig', ipconfig_command_output) + +Schema: + + { + "host_name": string, + "primary_dns_suffix": string, + "node_type": string, + "ip_routing_enabled": boolean, + "wins_proxy_enabled": boolean, + "dns_suffix_search_list": [ + string + ], + "adapters": [ + { + "name_long": string, + "name": string, + "type": string, + "connection_specific_dns_suffix": string, + "connection_specific_dns_suffix_search_list": [ + string + ] + "description": string, + "physical_address": string, + "dhcp_enabled": boolean, + "autoconfiguration_enabled": boolean, + "ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "temporary_ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "link_local_ipv6_addresses": [ + { + "address": string, + "status": string, + "prefix_length": int, + } + ], + "ipv4_addresses": [ + { + "address": string, # [2] + "subnet_mask": string, + "status": string, + "autoconfigured": boolean # [1] + } + ], + "default_gateways": [ + string + ], + "dhcp_server": null, + "dhcpv6_iaid": string, + "dhcpv6_client_duid": string, + "dns_servers": [ + string + ], + "primary_wins_server": string, + "lease_expires": string, # [0] + "lease_obtained": string, # [0] + "netbios_over_tcpip": boolean, + "media_state": string, + "extras": [ + string: string + ] + } + ], + "extras": [] + } + + Notes: + [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 format date strings. if the value was unable + to be parsed by datetime, the fields will be in their raw form + [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as + "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any information from other fields + [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both values are parsed to the 'ipv4_address' + object for consistency + +Examples: + + $ ipconfig /all | jc --ipconfig -p + { + "host_name": "DESKTOP-WIN11-HOME", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "localdomain" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet", + "name": "Ethernet", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) I211 Gigabit Network Connection", + "physical_address": "24-4B-FE-AB-43-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Realtek PCIe 2.5GbE Family Controller", + "physical_address": "24-4B-FE-57-3D-F2", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", + "name": "OpenVPN Data Channel Offload for NordVPN", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "OpenVPN Data Channel Offload", + "physical_address": null, + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "TAP-NordVPN Windows Adapter V9", + "physical_address": "00-FF-4C-F4-5E-49", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 1", + "name": "Local Area Connection* 1", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter", + "physical_address": "A8-7E-EA-5A-7F-DE", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 2", + "name": "Local Area Connection* 2", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", + "physical_address": "AA-7E-EA-F3-64-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet1", + "name": "VMware Network Adapter VMnet1", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet1", + "physical_address": "00-50-56-CC-27-73", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::f47d:9c7f:69dc:591e", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.181.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.181.254", + "dhcpv6_iaid": "771772502", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet8", + "name": "VMware Network Adapter VMnet8", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet8", + "physical_address": "00-50-56-C9-A3-78", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4551:bf0d:59dd:a4f0", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.213.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.213.254", + "dhcpv6_iaid": "788549718", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": "192.168.213.2", + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Wi-Fi", + "name": "Wi-Fi", + "type": "Wireless LAN", + "connection_specific_dns_suffix": "localdomain", + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) Wi-Fi 6 AX200 160MHz", + "physical_address": "A8-7E-EA-55-26-B0", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", + "status": "Preferred" + } + ], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4fae:1380:5a1b:8b6b", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.1.169", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.1.1" + ], + "dhcp_server": "192.168.1.1", + "dhcpv6_iaid": "162037482", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [ + "192.168.1.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-20T08:31:30", + "lease_obtained": "2024-09-19T08:31:30", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "A8-7E-EA-43-23-14", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] + } + +""" +from datetime import datetime +import re +import jc.utils + + +class info(): + """Provides parser metadata (version, author, etc.)""" + version = '1.0' + description = '`ipconfig` command parser' + author = 'joehacksalot' + author_email = 'joehacksalot@gmail.com' + compatible = ['windows'] + magic_commands = ['ipconfig'] + tags = ['command'] + + +__version__ = info.version + + +def parse(data, raw=False, quiet=False): + """ + Main text parsing function + + Parameters: + + data: (string) text data to parse + raw: (boolean) unprocessed output if True + quiet: (boolean) suppress warning messages if True + + Returns: + + Parsed dictionary. The raw and processed data structures are the same. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output = {} + if jc.utils.has_data(data): + # Initialize the parsed output dictionary with all fields set to None or empty lists + raw_output = _parse(data) + + return raw_output if raw else _process(raw_output) + +def _process_ipv6_address(ip_address): + address_split = ip_address["address"].split('%') + try: + if len(address_split) > 1: + address = address_split[0] + prefix_length = int(address_split[1]) + else: + address = ip_address["address"] + prefix_length = None + except: + address = ip_address["address"] + prefix_length = None + return { + "address": address, + "prefix_length": prefix_length, + "status": ip_address["status"] + } + +def _process_ipv4_address(ip_address): + autoconfigured = True if ip_address.get("autoconfigured","") is not None and 'autoconfigured' in ip_address.get("autoconfigured","") else False + subnet_mask = ip_address["subnet_mask"] + return { + "address": ip_address["address"], + "subnet_mask": subnet_mask, + "status": ip_address["status"], + "autoconfigured": autoconfigured + } + +def _process(proc_data): + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (Dictionary) raw structured data to process + + Returns: + + Processed Dictionary. Structured data to conform to the schema. + """ + processed = proc_data + + + if "ip_routing_enabled" in processed and processed["ip_routing_enabled"] is not None: + processed["ip_routing_enabled"] = (processed["ip_routing_enabled"].lower() == "yes") + + if "wins_proxy_enabled" in processed and processed["wins_proxy_enabled"] is not None: + processed["wins_proxy_enabled"] = (processed["wins_proxy_enabled"].lower() == "yes") + + for adapter in processed["adapters"]: + if "dhcp_enabled" in adapter and adapter["dhcp_enabled"] is not None: + adapter["dhcp_enabled"] = (adapter["dhcp_enabled"].lower() == "yes") + if "autoconfiguration_enabled" in adapter and adapter["autoconfiguration_enabled"] is not None: + adapter["autoconfiguration_enabled"] = (adapter["autoconfiguration_enabled"].lower() == "yes") + if "netbios_over_tcpip" in adapter and adapter["netbios_over_tcpip"] is not None: + adapter["netbios_over_tcpip"] = (adapter["netbios_over_tcpip"].lower() == "enabled") + if "lease_expires" in adapter and adapter["lease_expires"] is not None and adapter["lease_expires"] != "": + try: + adapter["lease_expires"] = datetime.strptime(adapter["lease_expires"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() + except: + pass # Leave date in raw format if not parseable + if "lease_obtained" in adapter and adapter["lease_obtained"] is not None and adapter["lease_obtained"] != "": + try: + adapter["lease_obtained"] = datetime.strptime(adapter["lease_obtained"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() + except: + pass # Leave date in raw format if not parseable + adapter["link_local_ipv6_addresses"] = [_process_ipv6_address(address) for address in adapter.get("link_local_ipv6_addresses", [])] + adapter["ipv4_addresses"] = [_process_ipv4_address(address) for address in adapter.get("ipv4_addresses", [])] + return processed + +class _PushbackIterator: + def __init__(self, iterator): + self.iterator = iterator + self.pushback_stack = [] + def __iter__(self): + return self + def __next__(self): + if self.pushback_stack: + return self.pushback_stack.pop() + else: + return next(self.iterator) + def pushback(self, value): + self.pushback_stack.append(value) + +def _parse(data): + # Initialize the parsed output dictionary with all fields set to None or empty lists + parse_output = { + "host_name": None, + "primary_dns_suffix": None, + "node_type": None, + "ip_routing_enabled": None, + "wins_proxy_enabled": None, + "dns_suffix_search_list": [], + "adapters": [], + "extras": [] # To store unrecognized fields + } + + lines = data.splitlines() + lines = [line.rstrip() for line in lines if line.strip() != ""] + + line_iter = _PushbackIterator(iter(lines)) + adapter = None + in_adapter_section = False + + for line in line_iter: + line = line.rstrip() + + # Skip empty lines + if not line.strip(): + continue + + # Header Section + if not in_adapter_section: + if "Windows IP Configuration" in line: + continue + elif _is_adapter_start_line(line): + # Start of Adapter Section + in_adapter_section = True + adapter_name = line.strip(":").strip() + adapter = _initialize_adapter(adapter_name) + parse_output["adapters"].append(adapter) + elif line.startswith(" "): + key, value = _parse_line(line) + if key: + _parse_header_line(parse_output, key, value, line_iter) + else: + continue + else: + # Adapter Sections + if _is_adapter_start_line(line): + # Start of new adapter + adapter_name = line.strip(":").strip() + adapter = _initialize_adapter(adapter_name) + parse_output["adapters"].append(adapter) + elif line.startswith(" "): + key, value = _parse_line(line) + if key: + _parse_adapter_line(adapter, key, value, line_iter) + else: + continue + + return parse_output + +def _is_adapter_start_line(line): + # Detect adapter start lines, e.g., "Ethernet adapter Ethernet:" + return re.match(r"^[^\s].*adapter.*:", line, re.IGNORECASE) + +def _initialize_adapter(adapter_name): + adapter_name_split = adapter_name.split(" adapter ", 1) + if len(adapter_name_split) > 1: + adapter_type = adapter_name_split[0] + adapter_short_name = adapter_name_split[1] + else: + adapter_type = None + adapter_short_name = adapter_name + + # Initialize adapter dictionary with all fields set to None or empty lists + return { + "name_long": adapter_name, + "name": adapter_short_name, + "type": adapter_type, + "connection_specific_dns_suffix": None, + "connection_specific_dns_suffix_search_list": [], + "description": None, + "physical_address": None, + "dhcp_enabled": None, + "autoconfiguration_enabled": None, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": None, + "dhcpv6_iaid": None, + "dhcpv6_client_duid": None, + "dns_servers": [], + "primary_wins_server": None, + "lease_expires": None, + "lease_obtained": None, + "netbios_over_tcpip": None, + "media_state": None, + "extras": [] # To store unrecognized fields + } + +def _parse_line(line): + # Split the line into key and value using ':' or multiple spaces + key_value = re.split(r":", line.strip(), 1) + if len(key_value) == 2: + key, value = key_value + key = key.strip().rstrip('. ') + key = re.sub(r'[^\w]+', '_', key.lower()) + value = value.strip() if value.strip() != "" else None + return key, value + else: + return None, None + +def _parse_header_line(result, key, value, line_iter): + if key in ["host_name", "primary_dns_suffix", "node_type", "ip_routing_enabled", "wins_proxy_enabled"]: + result[key] = value + elif key == "dns_suffix_search_list": + if value: + result["dns_suffix_search_list"].append(value) + # Process additional entries + _parse_additional_entries(result["dns_suffix_search_list"], line_iter) + else: + # Store unrecognized fields in extras + result["extras"].append({key: value}) + +def _parse_adapter_line(adapter, key, value, line_iter): + if key in ["connection_specific_dns_suffix","media_state", "description", "physical_address", "dhcp_enabled", + "autoconfiguration_enabled", "dhcpv6_iaid", "dhcpv6_client_duid", "netbios_over_tcpip", "dhcp_server", + "lease_obtained", "lease_expires", "primary_wins_server"]: + adapter[key] = value + elif key in ["ipv6_address", "temporary_ipv6_address", "link_local_ipv6_address"]: + address_dict = _parse_ipv6_address(value) + if key == "ipv6_address": + adapter["ipv6_addresses"].append(address_dict) + elif key == "temporary_ipv6_address": + adapter["temporary_ipv6_addresses"].append(address_dict) + elif key == "link_local_ipv6_address": + adapter["link_local_ipv6_addresses"].append(address_dict) + elif key in ["ipv4_address", "autoconfiguration_ipv4_address", "ip_address", "autoconfiguration_ip_address"]: + ipv4_address_dict = _parse_ipv4_address(value, key, line_iter) + adapter["ipv4_addresses"].append(ipv4_address_dict) + elif key == "connection_specific_dns_suffix_search_list": + if value: + adapter["connection_specific_dns_suffix_search_list"].append(value) + # Process additional connection specific dns suffix search list entries + _parse_additional_entries(adapter["connection_specific_dns_suffix_search_list"], line_iter) + elif key == "default_gateway": + if value: + adapter["default_gateways"].append(value) + # Process additional gateways + _parse_additional_entries(adapter["default_gateways"], line_iter) + elif key == "dns_servers": + if value: + adapter["dns_servers"].append(value) + # Process additional DNS servers + _parse_additional_entries(adapter["dns_servers"], line_iter) + elif key == "subnet_mask": + # Subnet Mask should be associated with the last IPv4 address + if adapter["ipv4_addresses"]: + adapter["ipv4_addresses"][-1]["subnet_mask"] = value + else: + # Store unrecognized fields in extras + adapter["extras"].append({key: value}) + +def _parse_ipv6_address(value): + # Handle multiple status indicators + match = re.match(r"([^\(]+)\((.*)\)", value) if value else None + if match: + address = match.group(1).strip() + status = match.group(2).strip('()') + else: + address = value + status = None + return { + "address": address, + "status": status + } + +def _parse_ipv4_address(value, key, line_iter): + # Handle autoconfigured status + match = re.match(r"([^\(]+)\((.*)\)", value) if value else None + if match: + address = match.group(1).strip() + status = match.group(2).strip('()') + autoconfigured = 'autoconfigured' if 'autoconfiguration' in key or 'autoconfigured' in status else None + else: + address = value + status = None + autoconfigured = 'autoconfigured' if 'autoconfiguration' in key else None + # Get subnet mask + subnet_mask = None + # Peek ahead for "Subnet Mask" line + try: + next_line = next(line_iter) + next_key, next_value = _parse_line(next_line) + if next_key == "subnet_mask": + subnet_mask = next_value + else: + # If it's not "Subnet Mask", put it back into the iterator + line_iter.pushback(next_line) + except StopIteration: + pass + return { + "address": address, + "subnet_mask": subnet_mask, + "autoconfigured": autoconfigured, + "status": status + } + +def _parse_additional_entries(entry_list, line_iter): + # Process additional lines that belong to the current entry (e.g., additional DNS servers, DNS Suffix Search List) + while True: + try: + next_line = next(line_iter) + if not next_line.strip(): + continue # Skip empty lines + + # Check if the line is indented (starts with whitespace) + if re.match(r"^\s\s\s\s", next_line): + # It's an indented line; append the stripped line to entry_list + entry_list.append(next_line.strip()) + else: + # Not an indented line; push it back and exit + line_iter.pushback(next_line) + break + except StopIteration: + break \ No newline at end of file diff --git a/tests/fixtures/windows/windows-10/ipconfig.json b/tests/fixtures/windows/windows-10/ipconfig.json new file mode 100644 index 000000000..e9fbd94ca --- /dev/null +++ b/tests/fixtures/windows/windows-10/ipconfig.json @@ -0,0 +1,133 @@ +{ + "host_name": "DESKTOP-WIN10-PRO", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "tailff123.ts.net", + "internal.companyname.com" + ], + "adapters": [ + { + "name_long": "Unknown adapter Tailscale", + "name": "Tailscale", + "type": "Unknown", + "connection_specific_dns_suffix": "tailff123.ts.net", + "connection_specific_dns_suffix_search_list": [ + "tailff123.ts.net" + ], + "description": "Tailscale Tunnel", + "physical_address": null, + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::99d0:ec2d:b2e7:536b", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "100.115.71.66", + "subnet_mask": "255.255.255.255", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [ + "fec0:0:0:ffff::1%1", + "fec0:0:0:ffff::2%1", + "fec0:0:0:ffff::3%1" + ], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": "internal.companyname.com", + "connection_specific_dns_suffix_search_list": [], + "description": "ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2", + "physical_address": "F8-E4-3B-AD-F2-6D", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::c936:c2db:79ad:e1c6", + "prefix_length": 16, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "10.50.13.132", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "10.50.13.1" + ], + "dhcp_server": "10.50.13.1", + "dhcpv6_iaid": "351866565", + "dhcpv6_client_duid": "00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1", + "dns_servers": [ + "10.50.13.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-23T02:31:46", + "lease_obtained": "2023-06-22T10:39:04", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "1C-C1-0C-C3-25-B4", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-10/ipconfig.out b/tests/fixtures/windows/windows-10/ipconfig.out new file mode 100644 index 000000000..4630a700c --- /dev/null +++ b/tests/fixtures/windows/windows-10/ipconfig.out @@ -0,0 +1,57 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-WIN10-PRO + Primary Dns Suffix . . . . . . . : + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : tailff123.ts.net + internal.companyname.com + +Unknown adapter Tailscale: + + Connection-specific DNS Suffix . : tailff123.ts.net + Description . . . . . . . . . . . : Tailscale Tunnel + Physical Address. . . . . . . . . : + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes + IPv6 Address. . . . . . . . . . . : fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2(Preferred) + Link-local IPv6 Address . . . . . : fe80::99d0:ec2d:b2e7:536b%8(Preferred) + IPv4 Address. . . . . . . . . . . : 100.115.71.66(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.255 + Default Gateway . . . . . . . . . : + DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1 + fec0:0:0:ffff::2%1 + fec0:0:0:ffff::3%1 + NetBIOS over Tcpip. . . . . . . . : Enabled + Connection-specific DNS Suffix Search List : + tailff123.ts.net + +Ethernet adapter Ethernet 2: + + Connection-specific DNS Suffix . : internal.companyname.com + Description . . . . . . . . . . . : ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2 + Physical Address. . . . . . . . . : F8-E4-3B-AD-F2-6D + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::c936:c2db:79ad:e1c6%16(Preferred) + IPv4 Address. . . . . . . . . . . : 10.50.13.132(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, June 22, 2023 10:39:04 AM + Lease Expires . . . . . . . . . . : Monday, September 23, 2024 2:31:46 AM + Default Gateway . . . . . . . . . : 10.50.13.1 + DHCP Server . . . . . . . . . . . : 10.50.13.1 + DHCPv6 IAID . . . . . . . . . . . : 351866565 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1 + DNS Servers . . . . . . . . . . . : 10.50.13.1 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Ethernet adapter Bluetooth Network Connection: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network) + Physical Address. . . . . . . . . : 1C-C1-0C-C3-25-B4 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-11/ipconfig.json b/tests/fixtures/windows/windows-11/ipconfig.json new file mode 100644 index 000000000..5976d9168 --- /dev/null +++ b/tests/fixtures/windows/windows-11/ipconfig.json @@ -0,0 +1,326 @@ +{ + "host_name": "DESKTOP-WIN11-HOME", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "localdomain" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet", + "name": "Ethernet", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) I211 Gigabit Network Connection", + "physical_address": "24-4B-FE-AB-43-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Realtek PCIe 2.5GbE Family Controller", + "physical_address": "24-4B-FE-57-3D-F2", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", + "name": "OpenVPN Data Channel Offload for NordVPN", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "OpenVPN Data Channel Offload", + "physical_address": null, + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "TAP-NordVPN Windows Adapter V9", + "physical_address": "00-FF-4C-F4-5E-49", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 1", + "name": "Local Area Connection* 1", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter", + "physical_address": "A8-7E-EA-5A-7F-DE", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 2", + "name": "Local Area Connection* 2", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", + "physical_address": "AA-7E-EA-F3-64-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet1", + "name": "VMware Network Adapter VMnet1", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet1", + "physical_address": "00-50-56-CC-27-73", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::f47d:9c7f:69dc:591e", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.181.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.181.254", + "dhcpv6_iaid": "771772502", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet8", + "name": "VMware Network Adapter VMnet8", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet8", + "physical_address": "00-50-56-C9-A3-78", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4551:bf0d:59dd:a4f0", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.213.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.213.254", + "dhcpv6_iaid": "788549718", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": "192.168.213.2", + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Wi-Fi", + "name": "Wi-Fi", + "type": "Wireless LAN", + "connection_specific_dns_suffix": "localdomain", + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) Wi-Fi 6 AX200 160MHz", + "physical_address": "A8-7E-EA-55-26-B0", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", + "status": "Preferred" + } + ], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4fae:1380:5a1b:8b6b", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.1.169", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.1.1" + ], + "dhcp_server": "192.168.1.1", + "dhcpv6_iaid": "162037482", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [ + "192.168.1.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-20T08:31:30", + "lease_obtained": "2024-09-19T08:31:30", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "A8-7E-EA-43-23-14", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-11/ipconfig.out b/tests/fixtures/windows/windows-11/ipconfig.out new file mode 100644 index 000000000..ab7d63f1e --- /dev/null +++ b/tests/fixtures/windows/windows-11/ipconfig.out @@ -0,0 +1,130 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-WIN11-HOME + Primary Dns Suffix . . . . . . . : + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : localdomain + +Ethernet adapter Ethernet: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) I211 Gigabit Network Connection + Physical Address. . . . . . . . . : 24-4B-FE-AB-43-C3 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Ethernet adapter Ethernet 2: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Realtek PCIe 2.5GbE Family Controller + Physical Address. . . . . . . . . : 24-4B-FE-57-3D-F2 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Unknown adapter OpenVPN Data Channel Offload for NordVPN: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : OpenVPN Data Channel Offload + Physical Address. . . . . . . . . : + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Unknown adapter Local Area Connection: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : TAP-NordVPN Windows Adapter V9 + Physical Address. . . . . . . . . : 00-FF-4C-F4-5E-49 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Wireless LAN adapter Local Area Connection* 1: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter + Physical Address. . . . . . . . . : A8-7E-EA-5A-7F-DE + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Wireless LAN adapter Local Area Connection* 2: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2 + Physical Address. . . . . . . . . : AA-7E-EA-F3-64-C3 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Ethernet adapter VMware Network Adapter VMnet1: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet1 + Physical Address. . . . . . . . . : 00-50-56-CC-27-73 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::f47d:9c7f:69dc:591e%8(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.181.1(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, September 19, 2024 8:31:29 AM + Lease Expires . . . . . . . . . . : Thursday, September 19, 2024 6:01:29 PM + Default Gateway . . . . . . . . . : + DHCP Server . . . . . . . . . . . : 192.168.181.254 + DHCPv6 IAID . . . . . . . . . . . : 771772502 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Ethernet adapter VMware Network Adapter VMnet8: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet8 + Physical Address. . . . . . . . . : 00-50-56-C9-A3-78 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::4551:bf0d:59dd:a4f0%10(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.213.1(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, September 19, 2024 8:31:29 AM + Lease Expires . . . . . . . . . . : Thursday, September 19, 2024 6:01:29 PM + Default Gateway . . . . . . . . . : + DHCP Server . . . . . . . . . . . : 192.168.213.254 + DHCPv6 IAID . . . . . . . . . . . : 788549718 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6 + Primary WINS Server . . . . . . . : 192.168.213.2 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Wireless LAN adapter Wi-Fi: + + Connection-specific DNS Suffix . : localdomain + Description . . . . . . . . . . . : Intel(R) Wi-Fi 6 AX200 160MHz + Physical Address. . . . . . . . . : A8-7E-EA-55-26-B0 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + IPv6 Address. . . . . . . . . . . : fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08(Preferred) + Temporary IPv6 Address. . . . . . : fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef(Preferred) + Link-local IPv6 Address . . . . . : fe80::4fae:1380:5a1b:8b6b%11(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.1.169(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, September 19, 2024 8:31:30 AM + Lease Expires . . . . . . . . . . : Friday, September 20, 2024 8:31:30 AM + Default Gateway . . . . . . . . . : 192.168.1.1 + DHCP Server . . . . . . . . . . . : 192.168.1.1 + DHCPv6 IAID . . . . . . . . . . . : 162037482 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6 + DNS Servers . . . . . . . . . . . : 192.168.1.1 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Ethernet adapter Bluetooth Network Connection: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network) + Physical Address. . . . . . . . . : A8-7E-EA-43-23-14 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-2008/ipconfig.json b/tests/fixtures/windows/windows-2008/ipconfig.json new file mode 100644 index 000000000..93935d127 --- /dev/null +++ b/tests/fixtures/windows/windows-2008/ipconfig.json @@ -0,0 +1,80 @@ +{ + "host_name": "WIN-SERVER8", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [], + "adapters": [ + { + "name_long": "Ethernet adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) PRO/1000 MT Network Connection", + "physical_address": "00-0C-29-76-C8-D0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::9595:e8d9:b190:ecac", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.23.154", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.23.1" + ], + "dhcp_server": null, + "dhcpv6_iaid": "234884137", + "dhcpv6_client_duid": "00-01-00-01-2D-32-79-97-00-0C-29-76-C8-D0", + "dns_servers": [ + "192.168.23.151" + ], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Tunnel adapter isatap.{F856FDB3-CE70-489D-A231-704790DC1351}", + "name": "isatap.{F856FDB3-CE70-489D-A231-704790DC1351}", + "type": "Tunnel", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft ISATAP Adapter", + "physical_address": "00-00-00-00-00-00-00-E0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-2008/ipconfig.out b/tests/fixtures/windows/windows-2008/ipconfig.out new file mode 100644 index 000000000..89f71d464 --- /dev/null +++ b/tests/fixtures/windows/windows-2008/ipconfig.out @@ -0,0 +1,33 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : WIN-SERVER8 + Primary Dns Suffix . . . . . . . : + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + +Ethernet adapter Local Area Connection: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection + Physical Address. . . . . . . . . : 00-0C-29-76-C8-D0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::9595:e8d9:b190:ecac%11(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.23.154(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Default Gateway . . . . . . . . . : 192.168.23.1 + DHCPv6 IAID . . . . . . . . . . . : 234884137 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2D-32-79-97-00-0C-29-76-C8-D0 + DNS Servers . . . . . . . . . . . : 192.168.23.151 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Tunnel adapter isatap.{F856FDB3-CE70-489D-A231-704790DC1351}: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft ISATAP Adapter + Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-2016/ipconfig.json b/tests/fixtures/windows/windows-2016/ipconfig.json new file mode 100644 index 000000000..b590bc693 --- /dev/null +++ b/tests/fixtures/windows/windows-2016/ipconfig.json @@ -0,0 +1,82 @@ +{ + "host_name": "WIN-SERVER16", + "primary_dns_suffix": "somecompany.corp", + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "somecompany.corp" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet0", + "name": "Ethernet0", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) 82574L Gigabit Network Connection", + "physical_address": "00-0C-29-D6-12-2E", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::40c:2f5f:6658:9ec3", + "prefix_length": 2, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.22.153", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.22.1" + ], + "dhcp_server": null, + "dhcpv6_iaid": "50334761", + "dhcpv6_client_duid": "00-01-00-01-29-4D-1C-4C-00-0C-29-A3-37-4E", + "dns_servers": [ + "192.168.22.151" + ], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Tunnel adapter isatap.{17A4D79E-85D7-47FC-8972-ABBD8B58DC71}", + "name": "isatap.{17A4D79E-85D7-47FC-8972-ABBD8B58DC71}", + "type": "Tunnel", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft ISATAP Adapter #2", + "physical_address": "00-00-00-00-00-00-00-E0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-2016/ipconfig.out b/tests/fixtures/windows/windows-2016/ipconfig.out new file mode 100644 index 000000000..dd8af0526 --- /dev/null +++ b/tests/fixtures/windows/windows-2016/ipconfig.out @@ -0,0 +1,34 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : WIN-SERVER16 + Primary Dns Suffix . . . . . . . : somecompany.corp + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : somecompany.corp + +Ethernet adapter Ethernet0: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) 82574L Gigabit Network Connection + Physical Address. . . . . . . . . : 00-0C-29-D6-12-2E + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::40c:2f5f:6658:9ec3%2(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.22.153(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Default Gateway . . . . . . . . . : 192.168.22.1 + DHCPv6 IAID . . . . . . . . . . . : 50334761 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-29-4D-1C-4C-00-0C-29-A3-37-4E + DNS Servers . . . . . . . . . . . : 192.168.22.151 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Tunnel adapter isatap.{17A4D79E-85D7-47FC-8972-ABBD8B58DC71}: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2 + Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-7/ipconfig.json b/tests/fixtures/windows/windows-7/ipconfig.json new file mode 100644 index 000000000..53b15bed7 --- /dev/null +++ b/tests/fixtures/windows/windows-7/ipconfig.json @@ -0,0 +1,82 @@ +{ + "host_name": "DESKTOP-WIN7", + "primary_dns_suffix": "somecompany.corp", + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "somecompany.corp" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) PRO/1000 MT Network Connection", + "physical_address": "00-0C-29-37-3B-4E", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::c447:d1ef:c29f:c44c", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.22.33", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.22.1" + ], + "dhcp_server": "192.168.22.1", + "dhcpv6_iaid": "234881473", + "dhcpv6_client_duid": "00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F", + "dns_servers": [ + "192.168.22.151" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-24T07:02:58", + "lease_obtained": "2024-09-20T12:13:59", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", + "name": "isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", + "type": "Tunnel", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft ISATAP Adapter", + "physical_address": "00-00-00-00-00-00-00-E0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-7/ipconfig.out b/tests/fixtures/windows/windows-7/ipconfig.out new file mode 100644 index 000000000..80226fa12 --- /dev/null +++ b/tests/fixtures/windows/windows-7/ipconfig.out @@ -0,0 +1,37 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-WIN7 + Primary Dns Suffix . . . . . . . : somecompany.corp + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : somecompany.corp + +Ethernet adapter Local Area Connection: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection + Physical Address. . . . . . . . . : 00-0C-29-37-3B-4E + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::c447:d1ef:c29f:c44c%10(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.22.33(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Friday, September 20, 2024 12:13:59 PM + Lease Expires . . . . . . . . . . : Tuesday, September 24, 2024 7:02:58 AM + Default Gateway . . . . . . . . . : 192.168.22.1 + DHCP Server . . . . . . . . . . . : 192.168.22.1 + DHCPv6 IAID . . . . . . . . . . . : 234881473 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F + DNS Servers . . . . . . . . . . . : 192.168.22.151 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft ISATAP Adapter + Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-xp/ipconfig.json b/tests/fixtures/windows/windows-xp/ipconfig.json new file mode 100644 index 000000000..5cf60b4af --- /dev/null +++ b/tests/fixtures/windows/windows-xp/ipconfig.json @@ -0,0 +1,51 @@ +{ + "host_name": "DESKTOP-PC4", + "primary_dns_suffix": "somecompany.corp", + "node_type": "Unknown", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "somecompany.corp", + "somecompany.xyz" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) PRO/1000 MT Network Connection", + "physical_address": "00-0C-29-25-B6-4D", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [ + { + "address": "192.168.22.135", + "subnet_mask": "255.255.255.0", + "status": null, + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.22.1" + ], + "dhcp_server": "192.168.22.1", + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [ + "192.168.22.151" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-22T22:31:26", + "lease_obtained": "2024-09-21T22:31:26", + "netbios_over_tcpip": null, + "media_state": null, + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-xp/ipconfig.out b/tests/fixtures/windows/windows-xp/ipconfig.out new file mode 100644 index 000000000..3ed618d01 --- /dev/null +++ b/tests/fixtures/windows/windows-xp/ipconfig.out @@ -0,0 +1,25 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-PC4 + Primary Dns Suffix . . . . . . . : somecompany.corp + Node Type . . . . . . . . . . . . : Unknown + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : somecompany.corp + somecompany.xyz + +Ethernet adapter Local Area Connection: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection + Physical Address. . . . . . . . . : 00-0C-29-25-B6-4D + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + IP Address. . . . . . . . . . . . : 192.168.22.135 + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Default Gateway . . . . . . . . . : 192.168.22.1 + DHCP Server . . . . . . . . . . . : 192.168.22.1 + DNS Servers . . . . . . . . . . . : 192.168.22.151 + Lease Obtained. . . . . . . . . . : Saturday, September 21, 2024 10:31:26 PM + Lease Expires . . . . . . . . . . : Sunday, September 22, 2024 10:31:26 PM diff --git a/tests/test_ipconfig.py b/tests/test_ipconfig.py new file mode 100644 index 000000000..544e8016b --- /dev/null +++ b/tests/test_ipconfig.py @@ -0,0 +1,48 @@ +import json +import os +import unittest +import jc.parsers.ipconfig + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + test_files = [ + "tests/fixtures/windows/windows-xp/ipconfig", + "tests/fixtures/windows/windows-7/ipconfig", + "tests/fixtures/windows/windows-10/ipconfig", + "tests/fixtures/windows/windows-11/ipconfig", + "tests/fixtures/windows/windows-2008/ipconfig", + "tests/fixtures/windows/windows-2016/ipconfig", + ] + + def setUp(self): + for tf in MyTests.test_files: + in_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.out") + out_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.json") + + with open(in_file, "r", encoding="utf-8") as f: + setattr(self, self.varName(tf), f.read()) + with open(out_file, "r", encoding="utf-8") as f: + setattr(self, self.varName(tf) + "_json", json.loads(f.read())) + + def varName(self, path): + return ( + path.replace("tests/fixtures/windows", "") + .replace("-", "_") + .replace("/", "_") + ) + + def test_windows_ipconfig(self): + """ + Test a sample Windows "ipconfig" command output + """ + for tf in MyTests.test_files: + in_var = getattr(self, self.varName(tf)) + out_var = getattr(self, self.varName(tf) + "_json") + + self.assertEqual(jc.parsers.ipconfig.parse(in_var, quiet=True), out_var) + + +if __name__ == "__main__": + unittest.main() From 95672c23b710748ea41fcaa8ca3d0b8815e96f37 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 18 Oct 2024 14:30:04 -0700 Subject: [PATCH 28/52] doc update --- CHANGELOG | 1 + README.md | 1 + completions/jc_bash_completion.sh | 4 +- completions/jc_zsh_completion.sh | 6 +- docs/parsers/bluetoothctl.md | 4 +- docs/parsers/ipconfig.md | 458 ++++++++++++++++++++++++++++++ docs/utils.md | 3 +- jc/parsers/ipconfig.py | 54 +++- man/jc.1 | 12 +- 9 files changed, 519 insertions(+), 24 deletions(-) create mode 100644 docs/parsers/ipconfig.md diff --git a/CHANGELOG b/CHANGELOG index 89dd9665d..3e2fbafc0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog 20241018 v1.25.4 +- Add `ipconfig` command parser - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS diff --git a/README.md b/README.md index b81ca7dc0..0ec8c9c94 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,7 @@ option. | `--iostat` | `iostat` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat) | | `--iostat-s` | `iostat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s) | | `--ip-address` | IPv4 and IPv6 Address string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address) | +| `--ipconfig` | `ipconfig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig) | | `--iptables` | `iptables` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables) | | `--ip-route` | `ip route` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_route) | | `--iw-scan` | `iw dev [device] scan` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 445cc14c9..743347f4e 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -3,8 +3,8 @@ _jc() local cur prev words cword jc_commands jc_parsers jc_options \ jc_about_options jc_about_mod_options jc_help_options jc_special_options - jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) - jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) + jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) + jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) jc_options=(--force-color -C --debug -d --monochrome -m --meta-out -M --pretty -p --quiet -q --raw -r --slurp -s --unbuffer -u --yaml-out -y) jc_about_options=(--about -a) jc_about_mod_options=(--pretty -p --yaml-out -y --monochrome -m --force-color -C) diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index 13ed727a8..46cd56721 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -9,7 +9,7 @@ _jc() { jc_help_options jc_help_options_describe \ jc_special_options jc_special_options_describe - jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) + jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) jc_commands_describe=( 'acpi:run "acpi" command with magic syntax.' 'airport:run "airport" command with magic syntax.' @@ -46,6 +46,7 @@ _jc() { 'ifconfig:run "ifconfig" command with magic syntax.' 'iostat:run "iostat" command with magic syntax.' 'ip:run "ip" command with magic syntax.' + 'ipconfig:run "ipconfig" command with magic syntax.' 'iptables:run "iptables" command with magic syntax.' 'iw:run "iw" command with magic syntax.' 'iwconfig:run "iwconfig" command with magic syntax.' @@ -121,7 +122,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) + jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) jc_parsers_describe=( '--acpi:`acpi` command parser' '--airport:`airport -I` command parser' @@ -185,6 +186,7 @@ _jc() { '--iostat:`iostat` command parser' '--iostat-s:`iostat` command streaming parser' '--ip-address:IPv4 and IPv6 Address string parser' + '--ipconfig:`ipconfig` command parser' '--iptables:`iptables` command parser' '--ip-route:`ip route` command parser' '--iw-scan:`iw dev [device] scan` command parser' diff --git a/docs/parsers/bluetoothctl.md b/docs/parsers/bluetoothctl.md index d09e800ff..fc82d38b1 100644 --- a/docs/parsers/bluetoothctl.md +++ b/docs/parsers/bluetoothctl.md @@ -33,6 +33,8 @@ a controller and a device but there might be fields corresponding to one entity. Controller: [ { + "manufacturer": string, + "version": string, "name": string, "is_default": boolean, "is_public": boolean, @@ -134,4 +136,4 @@ Compatibility: linux Source: [`jc/parsers/bluetoothctl.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/bluetoothctl.py) -Version 1.2 by Jake Ob (iakopap at gmail.com) +Version 1.3 by Jake Ob (iakopap at gmail.com) diff --git a/docs/parsers/ipconfig.md b/docs/parsers/ipconfig.md new file mode 100644 index 000000000..c550f0759 --- /dev/null +++ b/docs/parsers/ipconfig.md @@ -0,0 +1,458 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.ipconfig + +jc - JSON Convert `ipconfig` command output parser + +Usage (cli): + + $ ipconfig /all | jc --ipconfig + $ ipconfig | jc --ipconfig + $ jc ipconfig /all + +Usage (module): + + import jc + result = jc.parse('ipconfig', ipconfig_command_output) + +Schema: + + { + "host_name": string, + "primary_dns_suffix": string, + "node_type": string, + "ip_routing_enabled": boolean, + "wins_proxy_enabled": boolean, + "dns_suffix_search_list": [ + string + ], + "adapters": [ + { + "name_long": string, + "name": string, + "type": string, + "connection_specific_dns_suffix": string, + "connection_specific_dns_suffix_search_list": [ + string + ] + "description": string, + "physical_address": string, + "dhcp_enabled": boolean, + "autoconfiguration_enabled": boolean, + "ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "temporary_ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "link_local_ipv6_addresses": [ + { + "address": string, + "status": string, + "prefix_length": int, + } + ], + "ipv4_addresses": [ + { + "address": string, # [2] + "subnet_mask": string, + "status": string, + "autoconfigured": boolean # [1] + } + ], + "default_gateways": [ + string + ], + "dhcp_server": null, + "dhcpv6_iaid": string, + "dhcpv6_client_duid": string, + "dns_servers": [ + string + ], + "primary_wins_server": string, + "lease_expires": string, # [0] + "lease_obtained": string, # [0] + "netbios_over_tcpip": boolean, + "media_state": string, + "extras": [ + string: string + ] + } + ], + "extras": [] + } + + Notes: + [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 + format date strings. if the value was unable to be parsed by + datetime, the fields will be in their raw form + [1] - 'autoconfigured' under 'ipv4_address' is only providing + indication if the ipv4 address was labeled as "Autoconfiguration + IPv4 Address" vs "IPv4 Address". It does not infer any + information from other fields + [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both + values are parsed to the 'ipv4_address' object for consistency + +Examples: + + $ ipconfig /all | jc --ipconfig -p + { + "host_name": "DESKTOP-WIN11-HOME", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "localdomain" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet", + "name": "Ethernet", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) I211 Gigabit Network Connection", + "physical_address": "24-4B-FE-AB-43-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Realtek PCIe 2.5GbE Family Controller", + "physical_address": "24-4B-FE-57-3D-F2", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", + "name": "OpenVPN Data Channel Offload for NordVPN", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "OpenVPN Data Channel Offload", + "physical_address": null, + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "TAP-NordVPN Windows Adapter V9", + "physical_address": "00-FF-4C-F4-5E-49", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 1", + "name": "Local Area Connection* 1", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter", + "physical_address": "A8-7E-EA-5A-7F-DE", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 2", + "name": "Local Area Connection* 2", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", + "physical_address": "AA-7E-EA-F3-64-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet1", + "name": "VMware Network Adapter VMnet1", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet1", + "physical_address": "00-50-56-CC-27-73", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::f47d:9c7f:69dc:591e", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.181.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.181.254", + "dhcpv6_iaid": "771772502", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet8", + "name": "VMware Network Adapter VMnet8", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet8", + "physical_address": "00-50-56-C9-A3-78", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4551:bf0d:59dd:a4f0", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.213.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.213.254", + "dhcpv6_iaid": "788549718", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": "192.168.213.2", + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Wi-Fi", + "name": "Wi-Fi", + "type": "Wireless LAN", + "connection_specific_dns_suffix": "localdomain", + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) Wi-Fi 6 AX200 160MHz", + "physical_address": "A8-7E-EA-55-26-B0", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", + "status": "Preferred" + } + ], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4fae:1380:5a1b:8b6b", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.1.169", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.1.1" + ], + "dhcp_server": "192.168.1.1", + "dhcpv6_iaid": "162037482", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [ + "192.168.1.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-20T08:31:30", + "lease_obtained": "2024-09-19T08:31:30", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "A8-7E-EA-43-23-14", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] + } + + + +### parse + +```python +def parse(data, raw=False, quiet=False) +``` + +Main text parsing function + +Parameters: + + data: (string) text data to parse + raw: (boolean) unprocessed output if True + quiet: (boolean) suppress warning messages if True + +Returns: + + Parsed dictionary. The raw and processed data structures are the same. + +### Parser Information +Compatibility: windows + +Source: [`jc/parsers/ipconfig.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ipconfig.py) + +Version 1.0 by joehacksalot (joehacksalot@gmail.com) diff --git a/docs/utils.md b/docs/utils.md index eb0df3a41..447187542 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -69,7 +69,8 @@ Parameters: binary: (boolean) `True` to use binary multiples of bytes (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). - posix_mode: Treat one-letter units (k, m, g, etc.) as binary. + posix_mode: (boolean) Treat one-letter units (k, m, g, etc.) as + binary. decimal_bias: (boolean) `True` to treat slightly ambiguous two- letter unit symbols ending in "i" (e.g. Ki, Gi) to use decimal multiples of bytes (base-10). `False` diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index 25ba615f3..c63c1fbe6 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -1,10 +1,10 @@ r"""jc - JSON Convert `ipconfig` command output parser - Usage (cli): $ ipconfig /all | jc --ipconfig $ ipconfig | jc --ipconfig + $ jc ipconfig /all Usage (module): @@ -85,12 +85,15 @@ } Notes: - [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 format date strings. if the value was unable - to be parsed by datetime, the fields will be in their raw form - [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as - "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any information from other fields - [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both values are parsed to the 'ipv4_address' - object for consistency + [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 + format date strings. if the value was unable to be parsed by + datetime, the fields will be in their raw form + [1] - 'autoconfigured' under 'ipv4_address' is only providing + indication if the ipv4 address was labeled as "Autoconfiguration + IPv4 Address" vs "IPv4 Address". It does not infer any + information from other fields + [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both + values are parsed to the 'ipv4_address' object for consistency Examples: @@ -420,8 +423,7 @@ } ], "extras": [] - } - + } """ from datetime import datetime import re @@ -466,6 +468,7 @@ def parse(data, raw=False, quiet=False): return raw_output if raw else _process(raw_output) + def _process_ipv6_address(ip_address): address_split = ip_address["address"].split('%') try: @@ -484,6 +487,7 @@ def _process_ipv6_address(ip_address): "status": ip_address["status"] } + def _process_ipv4_address(ip_address): autoconfigured = True if ip_address.get("autoconfigured","") is not None and 'autoconfigured' in ip_address.get("autoconfigured","") else False subnet_mask = ip_address["subnet_mask"] @@ -494,6 +498,7 @@ def _process_ipv4_address(ip_address): "autoconfigured": autoconfigured } + def _process(proc_data): """ Final processing to conform to the schema. @@ -507,8 +512,7 @@ def _process(proc_data): Processed Dictionary. Structured data to conform to the schema. """ processed = proc_data - - + if "ip_routing_enabled" in processed and processed["ip_routing_enabled"] is not None: processed["ip_routing_enabled"] = (processed["ip_routing_enabled"].lower() == "yes") @@ -518,38 +522,49 @@ def _process(proc_data): for adapter in processed["adapters"]: if "dhcp_enabled" in adapter and adapter["dhcp_enabled"] is not None: adapter["dhcp_enabled"] = (adapter["dhcp_enabled"].lower() == "yes") + if "autoconfiguration_enabled" in adapter and adapter["autoconfiguration_enabled"] is not None: adapter["autoconfiguration_enabled"] = (adapter["autoconfiguration_enabled"].lower() == "yes") + if "netbios_over_tcpip" in adapter and adapter["netbios_over_tcpip"] is not None: adapter["netbios_over_tcpip"] = (adapter["netbios_over_tcpip"].lower() == "enabled") + if "lease_expires" in adapter and adapter["lease_expires"] is not None and adapter["lease_expires"] != "": try: adapter["lease_expires"] = datetime.strptime(adapter["lease_expires"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() except: pass # Leave date in raw format if not parseable + if "lease_obtained" in adapter and adapter["lease_obtained"] is not None and adapter["lease_obtained"] != "": try: adapter["lease_obtained"] = datetime.strptime(adapter["lease_obtained"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() except: pass # Leave date in raw format if not parseable + adapter["link_local_ipv6_addresses"] = [_process_ipv6_address(address) for address in adapter.get("link_local_ipv6_addresses", [])] adapter["ipv4_addresses"] = [_process_ipv4_address(address) for address in adapter.get("ipv4_addresses", [])] + return processed + class _PushbackIterator: def __init__(self, iterator): self.iterator = iterator self.pushback_stack = [] + def __iter__(self): return self + def __next__(self): if self.pushback_stack: return self.pushback_stack.pop() else: return next(self.iterator) + def pushback(self, value): self.pushback_stack.append(value) + def _parse(data): # Initialize the parsed output dictionary with all fields set to None or empty lists parse_output = { @@ -609,10 +624,12 @@ def _parse(data): return parse_output + def _is_adapter_start_line(line): # Detect adapter start lines, e.g., "Ethernet adapter Ethernet:" return re.match(r"^[^\s].*adapter.*:", line, re.IGNORECASE) + def _initialize_adapter(adapter_name): adapter_name_split = adapter_name.split(" adapter ", 1) if len(adapter_name_split) > 1: @@ -650,6 +667,7 @@ def _initialize_adapter(adapter_name): "extras": [] # To store unrecognized fields } + def _parse_line(line): # Split the line into key and value using ':' or multiple spaces key_value = re.split(r":", line.strip(), 1) @@ -662,6 +680,7 @@ def _parse_line(line): else: return None, None + def _parse_header_line(result, key, value, line_iter): if key in ["host_name", "primary_dns_suffix", "node_type", "ip_routing_enabled", "wins_proxy_enabled"]: result[key] = value @@ -674,11 +693,13 @@ def _parse_header_line(result, key, value, line_iter): # Store unrecognized fields in extras result["extras"].append({key: value}) + def _parse_adapter_line(adapter, key, value, line_iter): if key in ["connection_specific_dns_suffix","media_state", "description", "physical_address", "dhcp_enabled", "autoconfiguration_enabled", "dhcpv6_iaid", "dhcpv6_client_duid", "netbios_over_tcpip", "dhcp_server", "lease_obtained", "lease_expires", "primary_wins_server"]: adapter[key] = value + elif key in ["ipv6_address", "temporary_ipv6_address", "link_local_ipv6_address"]: address_dict = _parse_ipv6_address(value) if key == "ipv6_address": @@ -687,32 +708,39 @@ def _parse_adapter_line(adapter, key, value, line_iter): adapter["temporary_ipv6_addresses"].append(address_dict) elif key == "link_local_ipv6_address": adapter["link_local_ipv6_addresses"].append(address_dict) + elif key in ["ipv4_address", "autoconfiguration_ipv4_address", "ip_address", "autoconfiguration_ip_address"]: ipv4_address_dict = _parse_ipv4_address(value, key, line_iter) adapter["ipv4_addresses"].append(ipv4_address_dict) + elif key == "connection_specific_dns_suffix_search_list": if value: adapter["connection_specific_dns_suffix_search_list"].append(value) # Process additional connection specific dns suffix search list entries _parse_additional_entries(adapter["connection_specific_dns_suffix_search_list"], line_iter) + elif key == "default_gateway": if value: adapter["default_gateways"].append(value) # Process additional gateways _parse_additional_entries(adapter["default_gateways"], line_iter) + elif key == "dns_servers": if value: adapter["dns_servers"].append(value) # Process additional DNS servers _parse_additional_entries(adapter["dns_servers"], line_iter) + elif key == "subnet_mask": # Subnet Mask should be associated with the last IPv4 address if adapter["ipv4_addresses"]: adapter["ipv4_addresses"][-1]["subnet_mask"] = value + else: # Store unrecognized fields in extras adapter["extras"].append({key: value}) + def _parse_ipv6_address(value): # Handle multiple status indicators match = re.match(r"([^\(]+)\((.*)\)", value) if value else None @@ -727,6 +755,7 @@ def _parse_ipv6_address(value): "status": status } + def _parse_ipv4_address(value, key, line_iter): # Handle autoconfigured status match = re.match(r"([^\(]+)\((.*)\)", value) if value else None @@ -758,6 +787,7 @@ def _parse_ipv4_address(value, key, line_iter): "status": status } + def _parse_additional_entries(entry_list, line_iter): # Process additional lines that belong to the current entry (e.g., additional DNS servers, DNS Suffix Search List) while True: @@ -775,4 +805,4 @@ def _parse_additional_entries(entry_list, line_iter): line_iter.pushback(next_line) break except StopIteration: - break \ No newline at end of file + break diff --git a/man/jc.1 b/man/jc.1 index 9049d40d8..722cc7f82 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-09-22 1.25.4 "JSON Convert" +.TH jc 1 2024-10-18 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -347,6 +347,11 @@ INI with duplicate key file parser \fB--ip-address\fP IPv4 and IPv6 Address string parser +.TP +.B +\fB--ipconfig\fP +`ipconfig` command parser + .TP .B \fB--iptables\fP @@ -507,11 +512,6 @@ openvpn-status.log file parser \fB--os-release\fP `/etc/os-release` file parser -.TP -.B -\fB--pacman\fP -`pacman` command parser - .TP .B \fB--passwd\fP From 6072ea0ec76efeb3a34635b1321c4b49eced2cd0 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 18 Oct 2024 14:34:29 -0700 Subject: [PATCH 29/52] doc update --- CHANGELOG | 2 +- README.md | 2 +- completions/jc_zsh_completion.sh | 2 +- docs/parsers/ipconfig.md | 2 +- jc/parsers/ipconfig.py | 4 ++-- man/jc.1 | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3e2fbafc0..575407f90 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ jc changelog 20241018 v1.25.4 -- Add `ipconfig` command parser +- Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS diff --git a/README.md b/README.md index 0ec8c9c94..555b908f6 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ option. | `--iostat` | `iostat` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat) | | `--iostat-s` | `iostat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s) | | `--ip-address` | IPv4 and IPv6 Address string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address) | -| `--ipconfig` | `ipconfig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig) | +| `--ipconfig` | `ipconfig` Windows command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig) | | `--iptables` | `iptables` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables) | | `--ip-route` | `ip route` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_route) | | `--iw-scan` | `iw dev [device] scan` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan) | diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index 46cd56721..c81d5dbd4 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -186,7 +186,7 @@ _jc() { '--iostat:`iostat` command parser' '--iostat-s:`iostat` command streaming parser' '--ip-address:IPv4 and IPv6 Address string parser' - '--ipconfig:`ipconfig` command parser' + '--ipconfig:`ipconfig` Windows command parser' '--iptables:`iptables` command parser' '--ip-route:`ip route` command parser' '--iw-scan:`iw dev [device] scan` command parser' diff --git a/docs/parsers/ipconfig.md b/docs/parsers/ipconfig.md index c550f0759..ca44e8cb8 100644 --- a/docs/parsers/ipconfig.md +++ b/docs/parsers/ipconfig.md @@ -3,7 +3,7 @@ # jc.parsers.ipconfig -jc - JSON Convert `ipconfig` command output parser +jc - JSON Convert `ipconfig` Windows command output parser Usage (cli): diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index c63c1fbe6..318b1353c 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -1,4 +1,4 @@ -r"""jc - JSON Convert `ipconfig` command output parser +r"""jc - JSON Convert `ipconfig` Windows command output parser Usage (cli): @@ -433,7 +433,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' - description = '`ipconfig` command parser' + description = '`ipconfig` Windows command parser' author = 'joehacksalot' author_email = 'joehacksalot@gmail.com' compatible = ['windows'] diff --git a/man/jc.1 b/man/jc.1 index 722cc7f82..a5f2efcb7 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -350,7 +350,7 @@ IPv4 and IPv6 Address string parser .TP .B \fB--ipconfig\fP -`ipconfig` command parser +`ipconfig` Windows command parser .TP .B From 26133261f9c470885ea7d1174fd2e9c3db62ac65 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 20 Oct 2024 09:45:08 -0700 Subject: [PATCH 30/52] use jc.utils.timestamp() for datetime conversions --- jc/parsers/ipconfig.py | 33 +- jc/utils.py | 1 + .../fixtures/windows/windows-10/ipconfig.json | 134 +------ .../fixtures/windows/windows-11/ipconfig.json | 327 +----------------- .../fixtures/windows/windows-7/ipconfig.json | 83 +---- .../fixtures/windows/windows-xp/ipconfig.json | 52 +-- tests/test_jc_utils.py | 2 + 7 files changed, 24 insertions(+), 608 deletions(-) diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index 318b1353c..7f421b5dc 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -72,8 +72,12 @@ string ], "primary_wins_server": string, - "lease_expires": string, # [0] - "lease_obtained": string, # [0] + "lease_expires": string, + "lease_expires_epoch": integer, # [0] + "lease_expires_iso": string, + "lease_obtained": string, + "lease_obtained_epoch": integer, # [0] + "lease_obtained_iso": string, "netbios_over_tcpip": boolean, "media_state": string, "extras": [ @@ -85,9 +89,8 @@ } Notes: - [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 - format date strings. if the value was unable to be parsed by - datetime, the fields will be in their raw form + [0] - The epoch calculated timestamp field is naive. (i.e. based on + the local time of the system the parser is run on) [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any @@ -529,17 +532,15 @@ def _process(proc_data): if "netbios_over_tcpip" in adapter and adapter["netbios_over_tcpip"] is not None: adapter["netbios_over_tcpip"] = (adapter["netbios_over_tcpip"].lower() == "enabled") - if "lease_expires" in adapter and adapter["lease_expires"] is not None and adapter["lease_expires"] != "": - try: - adapter["lease_expires"] = datetime.strptime(adapter["lease_expires"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() - except: - pass # Leave date in raw format if not parseable - - if "lease_obtained" in adapter and adapter["lease_obtained"] is not None and adapter["lease_obtained"] != "": - try: - adapter["lease_obtained"] = datetime.strptime(adapter["lease_obtained"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() - except: - pass # Leave date in raw format if not parseable + if "lease_expires" in adapter and adapter["lease_expires"]: + ts = jc.utils.timestamp(adapter['lease_expires'], format_hint=(1720,)) + adapter["lease_expires_epoch"] = ts.naive + adapter["lease_expires_iso"] = ts.iso + + if "lease_obtained" in adapter and adapter["lease_obtained"]: + ts = jc.utils.timestamp(adapter['lease_obtained'], format_hint=(1720,)) + adapter["lease_obtained_epoch"] = ts.naive + adapter["lease_obtained_iso"] = ts.iso adapter["link_local_ipv6_addresses"] = [_process_ipv6_address(address) for address in adapter.get("link_local_ipv6_addresses", [])] adapter["ipv4_addresses"] = [_process_ipv4_address(address) for address in adapter.get("ipv4_addresses", [])] diff --git a/jc/utils.py b/jc/utils.py index cdd26e525..4b1901421 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -696,6 +696,7 @@ def _parse_dt( {'id': 1700, 'format': '%m/%d/%Y, %I:%M:%S %p', 'locale': None}, # Windows english format wint non-UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC-0600) {'id': 1705, 'format': '%m/%d/%Y, %I:%M:%S %p %Z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC) {'id': 1710, 'format': '%m/%d/%Y, %I:%M:%S %p UTC%z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC+0000) + {'id': 1720, 'format': '%A, %B %d, %Y %I:%M:%S %p', 'locale': None}, # ipconfig cli output format: Thursday, June 22, 2023 10:39:04 AM {'id': 1750, 'format': '%Y/%m/%d-%H:%M:%S.%f', 'locale': None}, # Google Big Table format with no timezone: 1970/01/01-01:00:00.000000 {'id': 1755, 'format': '%Y/%m/%d-%H:%M:%S.%f%z', 'locale': None}, # Google Big Table format with timezone: 1970/01/01-01:00:00.000000+00:00 {'id': 1760, 'format': '%Y-%m-%d %H:%M:%S%z', 'locale': None}, # certbot format with timezone: 2023-06-12 01:35:30+00:00 diff --git a/tests/fixtures/windows/windows-10/ipconfig.json b/tests/fixtures/windows/windows-10/ipconfig.json index e9fbd94ca..942de7f0c 100644 --- a/tests/fixtures/windows/windows-10/ipconfig.json +++ b/tests/fixtures/windows/windows-10/ipconfig.json @@ -1,133 +1 @@ -{ - "host_name": "DESKTOP-WIN10-PRO", - "primary_dns_suffix": null, - "node_type": "Hybrid", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "tailff123.ts.net", - "internal.companyname.com" - ], - "adapters": [ - { - "name_long": "Unknown adapter Tailscale", - "name": "Tailscale", - "type": "Unknown", - "connection_specific_dns_suffix": "tailff123.ts.net", - "connection_specific_dns_suffix_search_list": [ - "tailff123.ts.net" - ], - "description": "Tailscale Tunnel", - "physical_address": null, - "dhcp_enabled": false, - "autoconfiguration_enabled": true, - "ipv6_addresses": [ - { - "address": "fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2", - "status": "Preferred" - } - ], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::99d0:ec2d:b2e7:536b", - "prefix_length": 8, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "100.115.71.66", - "subnet_mask": "255.255.255.255", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [ - "fec0:0:0:ffff::1%1", - "fec0:0:0:ffff::2%1", - "fec0:0:0:ffff::3%1" - ], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter Ethernet 2", - "name": "Ethernet 2", - "type": "Ethernet", - "connection_specific_dns_suffix": "internal.companyname.com", - "connection_specific_dns_suffix_search_list": [], - "description": "ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2", - "physical_address": "F8-E4-3B-AD-F2-6D", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::c936:c2db:79ad:e1c6", - "prefix_length": 16, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "10.50.13.132", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [ - "10.50.13.1" - ], - "dhcp_server": "10.50.13.1", - "dhcpv6_iaid": "351866565", - "dhcpv6_client_duid": "00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1", - "dns_servers": [ - "10.50.13.1" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-23T02:31:46", - "lease_obtained": "2023-06-22T10:39:04", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter Bluetooth Network Connection", - "name": "Bluetooth Network Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Bluetooth Device (Personal Area Network)", - "physical_address": "1C-C1-0C-C3-25-B4", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-WIN10-PRO","primary_dns_suffix":null,"node_type":"Hybrid","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["tailff123.ts.net","internal.companyname.com"],"adapters":[{"name_long":"Unknown adapter Tailscale","name":"Tailscale","type":"Unknown","connection_specific_dns_suffix":"tailff123.ts.net","connection_specific_dns_suffix_search_list":["tailff123.ts.net"],"description":"Tailscale Tunnel","physical_address":null,"dhcp_enabled":false,"autoconfiguration_enabled":true,"ipv6_addresses":[{"address":"fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2","status":"Preferred"}],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::99d0:ec2d:b2e7:536b","prefix_length":8,"status":"Preferred"}],"ipv4_addresses":[{"address":"100.115.71.66","subnet_mask":"255.255.255.255","status":"Preferred","autoconfigured":false}],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":["fec0:0:0:ffff::1%1","fec0:0:0:ffff::2%1","fec0:0:0:ffff::3%1"],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":true,"media_state":null,"extras":[]},{"name_long":"Ethernet adapter Ethernet 2","name":"Ethernet 2","type":"Ethernet","connection_specific_dns_suffix":"internal.companyname.com","connection_specific_dns_suffix_search_list":[],"description":"ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2","physical_address":"F8-E4-3B-AD-F2-6D","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::c936:c2db:79ad:e1c6","prefix_length":16,"status":"Preferred"}],"ipv4_addresses":[{"address":"10.50.13.132","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":["10.50.13.1"],"dhcp_server":"10.50.13.1","dhcpv6_iaid":"351866565","dhcpv6_client_duid":"00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1","dns_servers":["10.50.13.1"],"primary_wins_server":null,"lease_expires":"Monday, September 23, 2024 2:31:46 AM","lease_obtained":"Thursday, June 22, 2023 10:39:04 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1727083906,"lease_expires_iso":"2024-09-23T02:31:46","lease_obtained_epoch":1687455544,"lease_obtained_iso":"2023-06-22T10:39:04"},{"name_long":"Ethernet adapter Bluetooth Network Connection","name":"Bluetooth Network Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Bluetooth Device (Personal Area Network)","physical_address":"1C-C1-0C-C3-25-B4","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]}],"extras":[]} diff --git a/tests/fixtures/windows/windows-11/ipconfig.json b/tests/fixtures/windows/windows-11/ipconfig.json index 5976d9168..3a1257ec2 100644 --- a/tests/fixtures/windows/windows-11/ipconfig.json +++ b/tests/fixtures/windows/windows-11/ipconfig.json @@ -1,326 +1 @@ -{ - "host_name": "DESKTOP-WIN11-HOME", - "primary_dns_suffix": null, - "node_type": "Hybrid", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "localdomain" - ], - "adapters": [ - { - "name_long": "Ethernet adapter Ethernet", - "name": "Ethernet", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) I211 Gigabit Network Connection", - "physical_address": "24-4B-FE-AB-43-C3", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Ethernet adapter Ethernet 2", - "name": "Ethernet 2", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Realtek PCIe 2.5GbE Family Controller", - "physical_address": "24-4B-FE-57-3D-F2", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", - "name": "OpenVPN Data Channel Offload for NordVPN", - "type": "Unknown", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "OpenVPN Data Channel Offload", - "physical_address": null, - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Unknown adapter Local Area Connection", - "name": "Local Area Connection", - "type": "Unknown", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "TAP-NordVPN Windows Adapter V9", - "physical_address": "00-FF-4C-F4-5E-49", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Wireless LAN adapter Local Area Connection* 1", - "name": "Local Area Connection* 1", - "type": "Wireless LAN", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Microsoft Wi-Fi Direct Virtual Adapter", - "physical_address": "A8-7E-EA-5A-7F-DE", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Wireless LAN adapter Local Area Connection* 2", - "name": "Local Area Connection* 2", - "type": "Wireless LAN", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", - "physical_address": "AA-7E-EA-F3-64-C3", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Ethernet adapter VMware Network Adapter VMnet1", - "name": "VMware Network Adapter VMnet1", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "VMware Virtual Ethernet Adapter for VMnet1", - "physical_address": "00-50-56-CC-27-73", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::f47d:9c7f:69dc:591e", - "prefix_length": 8, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.181.1", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [], - "dhcp_server": "192.168.181.254", - "dhcpv6_iaid": "771772502", - "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": "2024-09-19T18:01:29", - "lease_obtained": "2024-09-19T08:31:29", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter VMware Network Adapter VMnet8", - "name": "VMware Network Adapter VMnet8", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "VMware Virtual Ethernet Adapter for VMnet8", - "physical_address": "00-50-56-C9-A3-78", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::4551:bf0d:59dd:a4f0", - "prefix_length": 10, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.213.1", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [], - "dhcp_server": "192.168.213.254", - "dhcpv6_iaid": "788549718", - "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", - "dns_servers": [], - "primary_wins_server": "192.168.213.2", - "lease_expires": "2024-09-19T18:01:29", - "lease_obtained": "2024-09-19T08:31:29", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Wireless LAN adapter Wi-Fi", - "name": "Wi-Fi", - "type": "Wireless LAN", - "connection_specific_dns_suffix": "localdomain", - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) Wi-Fi 6 AX200 160MHz", - "physical_address": "A8-7E-EA-55-26-B0", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [ - { - "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", - "status": "Preferred" - } - ], - "temporary_ipv6_addresses": [ - { - "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", - "status": "Preferred" - } - ], - "link_local_ipv6_addresses": [ - { - "address": "fe80::4fae:1380:5a1b:8b6b", - "prefix_length": 11, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.1.169", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [ - "192.168.1.1" - ], - "dhcp_server": "192.168.1.1", - "dhcpv6_iaid": "162037482", - "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", - "dns_servers": [ - "192.168.1.1" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-20T08:31:30", - "lease_obtained": "2024-09-19T08:31:30", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter Bluetooth Network Connection", - "name": "Bluetooth Network Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Bluetooth Device (Personal Area Network)", - "physical_address": "A8-7E-EA-43-23-14", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-WIN11-HOME","primary_dns_suffix":null,"node_type":"Hybrid","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["localdomain"],"adapters":[{"name_long":"Ethernet adapter Ethernet","name":"Ethernet","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Intel(R) I211 Gigabit Network Connection","physical_address":"24-4B-FE-AB-43-C3","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Ethernet adapter Ethernet 2","name":"Ethernet 2","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Realtek PCIe 2.5GbE Family Controller","physical_address":"24-4B-FE-57-3D-F2","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Unknown adapter OpenVPN Data Channel Offload for NordVPN","name":"OpenVPN Data Channel Offload for NordVPN","type":"Unknown","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"OpenVPN Data Channel Offload","physical_address":null,"dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Unknown adapter Local Area Connection","name":"Local Area Connection","type":"Unknown","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"TAP-NordVPN Windows Adapter V9","physical_address":"00-FF-4C-F4-5E-49","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Wireless LAN adapter Local Area Connection* 1","name":"Local Area Connection* 1","type":"Wireless LAN","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Microsoft Wi-Fi Direct Virtual Adapter","physical_address":"A8-7E-EA-5A-7F-DE","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Wireless LAN adapter Local Area Connection* 2","name":"Local Area Connection* 2","type":"Wireless LAN","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Microsoft Wi-Fi Direct Virtual Adapter #2","physical_address":"AA-7E-EA-F3-64-C3","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Ethernet adapter VMware Network Adapter VMnet1","name":"VMware Network Adapter VMnet1","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"VMware Virtual Ethernet Adapter for VMnet1","physical_address":"00-50-56-CC-27-73","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::f47d:9c7f:69dc:591e","prefix_length":8,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.181.1","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":[],"dhcp_server":"192.168.181.254","dhcpv6_iaid":"771772502","dhcpv6_client_duid":"00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6","dns_servers":[],"primary_wins_server":null,"lease_expires":"Thursday, September 19, 2024 6:01:29 PM","lease_obtained":"Thursday, September 19, 2024 8:31:29 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1726794089,"lease_expires_iso":"2024-09-19T18:01:29","lease_obtained_epoch":1726759889,"lease_obtained_iso":"2024-09-19T08:31:29"},{"name_long":"Ethernet adapter VMware Network Adapter VMnet8","name":"VMware Network Adapter VMnet8","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"VMware Virtual Ethernet Adapter for VMnet8","physical_address":"00-50-56-C9-A3-78","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::4551:bf0d:59dd:a4f0","prefix_length":10,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.213.1","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":[],"dhcp_server":"192.168.213.254","dhcpv6_iaid":"788549718","dhcpv6_client_duid":"00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6","dns_servers":[],"primary_wins_server":"192.168.213.2","lease_expires":"Thursday, September 19, 2024 6:01:29 PM","lease_obtained":"Thursday, September 19, 2024 8:31:29 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1726794089,"lease_expires_iso":"2024-09-19T18:01:29","lease_obtained_epoch":1726759889,"lease_obtained_iso":"2024-09-19T08:31:29"},{"name_long":"Wireless LAN adapter Wi-Fi","name":"Wi-Fi","type":"Wireless LAN","connection_specific_dns_suffix":"localdomain","connection_specific_dns_suffix_search_list":[],"description":"Intel(R) Wi-Fi 6 AX200 160MHz","physical_address":"A8-7E-EA-55-26-B0","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[{"address":"fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08","status":"Preferred"}],"temporary_ipv6_addresses":[{"address":"fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef","status":"Preferred"}],"link_local_ipv6_addresses":[{"address":"fe80::4fae:1380:5a1b:8b6b","prefix_length":11,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.1.169","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":["192.168.1.1"],"dhcp_server":"192.168.1.1","dhcpv6_iaid":"162037482","dhcpv6_client_duid":"00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6","dns_servers":["192.168.1.1"],"primary_wins_server":null,"lease_expires":"Friday, September 20, 2024 8:31:30 AM","lease_obtained":"Thursday, September 19, 2024 8:31:30 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1726846290,"lease_expires_iso":"2024-09-20T08:31:30","lease_obtained_epoch":1726759890,"lease_obtained_iso":"2024-09-19T08:31:30"},{"name_long":"Ethernet adapter Bluetooth Network Connection","name":"Bluetooth Network Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Bluetooth Device (Personal Area Network)","physical_address":"A8-7E-EA-43-23-14","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]}],"extras":[]} diff --git a/tests/fixtures/windows/windows-7/ipconfig.json b/tests/fixtures/windows/windows-7/ipconfig.json index 53b15bed7..a16abe8f5 100644 --- a/tests/fixtures/windows/windows-7/ipconfig.json +++ b/tests/fixtures/windows/windows-7/ipconfig.json @@ -1,82 +1 @@ -{ - "host_name": "DESKTOP-WIN7", - "primary_dns_suffix": "somecompany.corp", - "node_type": "Hybrid", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "somecompany.corp" - ], - "adapters": [ - { - "name_long": "Ethernet adapter Local Area Connection", - "name": "Local Area Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) PRO/1000 MT Network Connection", - "physical_address": "00-0C-29-37-3B-4E", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::c447:d1ef:c29f:c44c", - "prefix_length": 10, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.22.33", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [ - "192.168.22.1" - ], - "dhcp_server": "192.168.22.1", - "dhcpv6_iaid": "234881473", - "dhcpv6_client_duid": "00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F", - "dns_servers": [ - "192.168.22.151" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-24T07:02:58", - "lease_obtained": "2024-09-20T12:13:59", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", - "name": "isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", - "type": "Tunnel", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Microsoft ISATAP Adapter", - "physical_address": "00-00-00-00-00-00-00-E0", - "dhcp_enabled": false, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-WIN7","primary_dns_suffix":"somecompany.corp","node_type":"Hybrid","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["somecompany.corp"],"adapters":[{"name_long":"Ethernet adapter Local Area Connection","name":"Local Area Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Intel(R) PRO/1000 MT Network Connection","physical_address":"00-0C-29-37-3B-4E","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::c447:d1ef:c29f:c44c","prefix_length":10,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.22.33","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":["192.168.22.1"],"dhcp_server":"192.168.22.1","dhcpv6_iaid":"234881473","dhcpv6_client_duid":"00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F","dns_servers":["192.168.22.151"],"primary_wins_server":null,"lease_expires":"Tuesday, September 24, 2024 7:02:58 AM","lease_obtained":"Friday, September 20, 2024 12:13:59 PM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1727186578,"lease_expires_iso":"2024-09-24T07:02:58","lease_obtained_epoch":1726859639,"lease_obtained_iso":"2024-09-20T12:13:59"},{"name_long":"Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}","name":"isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}","type":"Tunnel","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Microsoft ISATAP Adapter","physical_address":"00-00-00-00-00-00-00-E0","dhcp_enabled":false,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]}],"extras":[]} diff --git a/tests/fixtures/windows/windows-xp/ipconfig.json b/tests/fixtures/windows/windows-xp/ipconfig.json index 5cf60b4af..d0c9a9db7 100644 --- a/tests/fixtures/windows/windows-xp/ipconfig.json +++ b/tests/fixtures/windows/windows-xp/ipconfig.json @@ -1,51 +1 @@ -{ - "host_name": "DESKTOP-PC4", - "primary_dns_suffix": "somecompany.corp", - "node_type": "Unknown", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "somecompany.corp", - "somecompany.xyz" - ], - "adapters": [ - { - "name_long": "Ethernet adapter Local Area Connection", - "name": "Local Area Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) PRO/1000 MT Network Connection", - "physical_address": "00-0C-29-25-B6-4D", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [ - { - "address": "192.168.22.135", - "subnet_mask": "255.255.255.0", - "status": null, - "autoconfigured": false - } - ], - "default_gateways": [ - "192.168.22.1" - ], - "dhcp_server": "192.168.22.1", - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [ - "192.168.22.151" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-22T22:31:26", - "lease_obtained": "2024-09-21T22:31:26", - "netbios_over_tcpip": null, - "media_state": null, - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-PC4","primary_dns_suffix":"somecompany.corp","node_type":"Unknown","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["somecompany.corp","somecompany.xyz"],"adapters":[{"name_long":"Ethernet adapter Local Area Connection","name":"Local Area Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Intel(R) PRO/1000 MT Network Connection","physical_address":"00-0C-29-25-B6-4D","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[{"address":"192.168.22.135","subnet_mask":"255.255.255.0","status":null,"autoconfigured":false}],"default_gateways":["192.168.22.1"],"dhcp_server":"192.168.22.1","dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":["192.168.22.151"],"primary_wins_server":null,"lease_expires":"Sunday, September 22, 2024 10:31:26 PM","lease_obtained":"Saturday, September 21, 2024 10:31:26 PM","netbios_over_tcpip":null,"media_state":null,"extras":[],"lease_expires_epoch":1727069486,"lease_expires_iso":"2024-09-22T22:31:26","lease_obtained_epoch":1726983086,"lease_obtained_iso":"2024-09-21T22:31:26"}],"extras":[]} diff --git a/tests/test_jc_utils.py b/tests/test_jc_utils.py index 7d50c1027..4370a50f7 100644 --- a/tests/test_jc_utils.py +++ b/tests/test_jc_utils.py @@ -37,6 +37,8 @@ def test_utils_timestamp(self): '3/22/2021, 1:15:51 PM (Coordinated Universal Time)': {'string': '3/22/2021, 1:15:51 PM (Coordinated Universal Time)', 'format': 1705, 'naive': 1616444151, 'utc': 1616418951}, # Windows english format with UTC tz (found in systeminfo cli output) '3/22/2021, 1:15:51 PM (UTC+0000)': {'string': '3/22/2021, 1:15:51 PM (UTC+0000)', 'format': 1710, 'naive': 1616444151, 'utc': 1616418951}, + # Windows ipconfig cli output format + 'Thursday, June 22, 2023 10:39:04 AM': {'string': 'Thursday, June 22, 2023 10:39:04 AM', 'format': 1720, 'naive': 1687455544, 'utc': None}, # Google Big Table format with no timezone: '2000/01/01-01:00:00.000000': {'string': '2000/01/01-01:00:00.000000', 'format': 1750, 'naive': 946717200, 'utc': None}, # Google Big Table format with timezone: From a8f769eea3d606695f5d9ffddc42a66b4eba890c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 20 Oct 2024 09:50:36 -0700 Subject: [PATCH 31/52] doc update --- jc/parsers/ipconfig.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index 7f421b5dc..4687cea8a 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -20,7 +20,7 @@ "ip_routing_enabled": boolean, "wins_proxy_enabled": boolean, "dns_suffix_search_list": [ - string + string ], "adapters": [ { @@ -51,7 +51,7 @@ { "address": string, "status": string, - "prefix_length": int, + "prefix_length": integer, } ], "ipv4_addresses": [ @@ -81,7 +81,7 @@ "netbios_over_tcpip": boolean, "media_state": string, "extras": [ - string: string + : string ] } ], From e858faa746866ad0c8561eb28c400bf3261fd7cf Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 18 Nov 2024 16:21:40 -0800 Subject: [PATCH 32/52] fix for contiguous packages with the same name --- CHANGELOG | 3 ++- jc/parsers/rpm_qi.py | 22 ++++++++-------------- tests/fixtures/generic/pkg-index-deb.json | 2 +- 3 files changed, 11 insertions(+), 16 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 575407f90..da5ee3feb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20241018 v1.25.4 +20241118 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` @@ -9,6 +9,7 @@ jc changelog - Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/rpm_qi.py b/jc/parsers/rpm_qi.py index e48fb731b..c2a3dc2e4 100644 --- a/jc/parsers/rpm_qi.py +++ b/jc/parsers/rpm_qi.py @@ -185,7 +185,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.8' + version = '1.9' description = '`rpm -qi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -256,8 +256,6 @@ def parse(data, raw=False, quiet=False): raw_output = [] entry_obj = {} - last_entry = None - this_entry = None desc_entry = False desc_en_entry = False description = [] @@ -268,17 +266,13 @@ def parse(data, raw=False, quiet=False): split_line = line.split(': ', maxsplit=1) if (split_line[0].startswith('Name') or split_line[0] == 'Package') and len(split_line) == 2: - this_entry = split_line[1].strip() - - if this_entry != last_entry: - if entry_obj: - if description: - entry_obj['description'] = ' '.join(description) - raw_output.append(entry_obj) - entry_obj = {} - last_entry = this_entry - desc_entry = False - desc_en_entry = False + if entry_obj: + if description: + entry_obj['description'] = ' '.join(description) + raw_output.append(entry_obj) + entry_obj = {} + desc_entry = False + desc_en_entry = False if line.startswith('Description :'): desc_entry = True diff --git a/tests/fixtures/generic/pkg-index-deb.json b/tests/fixtures/generic/pkg-index-deb.json index d98972274..968059b72 100644 --- a/tests/fixtures/generic/pkg-index-deb.json +++ b/tests/fixtures/generic/pkg-index-deb.json @@ -1 +1 @@ -[{"package":"dotnet-host","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2557da13447d61382f255eb751ba29cc1a8220899c1e3e640a7bb3d2a0c1d297","size":32594,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.16-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.10)"],"sha256":"1d9869f862cb4e9c46b245a343d8e39fbbc84d9f8ab9ef357c4643da20805ad3","size":6084188,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.10-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5fcdc041e503ffcd726bf6455f339b5438d3fac3689a5f5313e1eba67e606f88","size":165966956,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2883-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68167,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.25 Microsoft.NETCore.App 2.1.25","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.25)","dotnet-hostfxr-2.1 (>= 2.1.25)"],"sha256":"935826f9edac6762c4f65ec5a9199110229470b6e72274a5efe0e6d9104d3c02","size":20321788,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.25-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.25 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.25)","libc6"],"sha256":"f1b30770705e2b8b2ab722ba42623ad15d27a43c0f29c621aeab112e948260f8","size":143780,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.25-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.7)"],"sha256":"386f3e029fb52b33fcc5b98cbc481c17f0d496a609523b1878cfa16173bb61bc","size":6087024,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.7-x64.deb"},{"package":"aadsshlogin","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"68466418441afe8eb6b557d81065eb47d43646b9538c0c996ecbe8c58dbe6e75","size":418558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016820001_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d50a5c1bd8242f0320d52774d5266d94fae98779f49d9a8a096855d56177c571","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.1-x64.deb"},{"package":"dotnet-host","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.31","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"50e08c977e2cb6c3353a59c323bf52d57b78ca74c061b3ee659132103b2eca33","size":32458,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.31-x64.deb"},{"package":"sysmonforlinux","version":"1.1.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"b1f813bc8e0359f218dfb182bb64f8b5c0f6fc352e72e615758826841739e58e","size":1515746,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.0-0_amd64.deb"},{"package":"moby-containerd","version":"1.3.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.10)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"62378c56cd108ebaad70d9e0bfe8c30f715c2ae86df2393435303ceb1ed2aded","size":27668988,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.5+azure-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"d4725a8504b3a6d73f7cb82907d02e9c2176424432ad35e7fcb2d468841bf528","size":3863540,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.1-1_amd64.deb"},{"package":"azapi2azurerm","version":"1.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20596,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3d76c30d08189db164b13f34a39bfb57e8a79700effa18024b9d1fcd2aa66673","size":6702890,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.1.0-1-amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.13)","libc6"],"sha256":"93ef511b5897aead2d0d9452c19aa0d9b938e6e7986edd76fb781fb6b770f4f6","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.13-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.5 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.5)","libc6"],"sha256":"9125c2843951d5149930d1260854223ce4050eb86a9b9bbe6a5056c4b64c274d","size":140778,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.5-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2492,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"7505fd24b596049d1b573bcda9df3f1b3bb7be7611734a91825f1442d2587c4e","size":602668,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71088,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.6 Microsoft.NETCore.App 3.1.6","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.6)","dotnet-runtime-deps-3.1 (>= 3.1.6)"],"sha256":"b2b20959dcca02ffdabe5a7b212ed63d1d3a454603ab34c2c7df5f9f52671a21","size":21776838,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.6-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.0)","libc6"],"sha256":"4e10a768c6e9bee484c47e4d4e4d321556c9c5cb283d06a2655cd678497f881f","size":142176,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.0-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228009,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"361a22a6e60ec80a40351b2e1453a389e1702b31bec93ed5ceacd4fe17527874","size":58788182,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.406-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.15 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.15)","libc6"],"sha256":"d9683a54735da8114110ba75f1da9f15e1f2692b2ad33df3a6d8f95477fa35a4","size":140318,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.15-x64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":52732,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5636c437bdf857d8835c7c1ab26c6beada631fe4989efd3cd2d01140120a860b","size":10877354,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11746,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"3f8aeb1f6a3d17bf42d286c5083d43f65f07d08ba0195a88992a02b023320210","size":1314262,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"3da92fd67c733645ccdba3b0608bb1382a4e949193d5cd2eec0e1ff37e61cbb0","size":2654,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.13-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.519-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228812,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.519","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"a59888761f41fb6d1953ea2e30d4e6194bc1a610f2a93046655d290e361c982e","size":88705220,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.519-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.316-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.316","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"47cfedb8743e3dbea1e1e600cd95706dfa2f6efe425cf4662693d8734405ee8f","size":85176670,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.316-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"96ae0131a8f65e2f5deddce96f8cd00b750a8fd86379ca63ae7851f77e063700","size":419334,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016890001_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"0edf4c43e4be13a8390269ffea663cfc7a6a25a5faac9afcf4b8189abef8de10","size":2124278,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.7-x64.deb"},{"package":"mystikos","version":"0.12.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"770c905b3d7e55cd373b5459fddb2c2e14163d31218f424bdc850a4764ece70d","size":6579698,"filename":"pool/main/m/mystikos/mystikos_0.12.0_amd64.deb"},{"package":"open-enclave","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":124310,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"db486581c4046e9c983e71df1556a3568dd9ed6aed55e278fce721c827bddbcf","size":34456690,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.0_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8ab1b6ef86eac3f6043c56bc6d4c2906e547474885a27b9fca89a45e717bcd04","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.23-ubuntu.14.04-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"022b3e1cf0a2b0c3c140aa89d992dbf8b428378610056b888ea890ec95ceaced","size":227619356,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4626-1.deb"},{"package":"powershell","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0af024461c5184a387fb346ee00b3da3da5fa734ce7bdeec65b085870ca4ea7e","size":68393634,"filename":"pool/main/p/powershell/powershell_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b7518a808d2ba0cf80647bc5b0f7cfca6f8bae47d743961e5da83352c31ea64a","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.24-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ce2c901402023712f4554503d55066540b03d87efdce76db242e1db2b441390d","size":209992028,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3785-1.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.17","homepage":"https://github.com/dotnet/core","sha256":"1ea44b76143ccedabec500b42707d06edc50041d0d26b7d0689cd2a7f8e364d3","size":42336,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.17-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.27 Microsoft.NETCore.App 2.1.27","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.27)","dotnet-hostfxr-2.1 (>= 2.1.27)"],"sha256":"a3f9825b3ffe3087d7c5ebea0ee16cab29759fbdc4ab633455c7a9ed5c6f6d2a","size":20332510,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.27-x64.deb"},{"package":"azcmagent","version":"1.15.01874.34","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e30e3813d8803cc7e69e61f3d6440fcd1224451b446a596241bf913ebf840ef4","size":51722932,"filename":"pool/main/a/azcmagent/azcmagent_1.15.01874.34_amd64.deb"},{"package":"moby-containerd","version":"1.6.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":123878,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a08844feebd523f95dc261969c609f253d7bdafa34d02fa9887759c15164e31c","size":30980814,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"29b8a014222d013e3cd033f89d51bd7b1fdf5253e1be0dd94e22f219d779417b","size":1307204,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.5-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.17 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.17)","libc6"],"sha256":"675177925887deef31b6b82e5226234ce7a2a20ccd152255e0e1eff469869675","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.17-x64.deb"},{"package":"intune-portal","version":"1.2210.50","architecture":"amd64","section":"utils","priority":"optional","installed_size":26727,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["gnome-keyring (>= 3.36)","libsoup2.4-1 (>= 2.4.0)","libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libsqlite3-0 (>= 3.7.14)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libcurl4 (>= 7.16.2)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libpango-1.0-0 (>= 1.14.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.16.2)","libx11-6","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.9.10)","libglib2.0-0 (>= 2.35.8)","libssl1.1 (>= 1.1.0)","msalsdk-dbusclient (>= 1.0)","libsecret-1-0 (>= 0.19.1)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a25651c703a76d9a6c8c7b3753fc4e269cc8dcda7f3618db609da97a9df92941","size":6756548,"filename":"pool/main/i/intune-portal/intune-portal_1.2210.50_amd64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2729,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"3bfe8ee9b4483f22e063417f8441365e412007ce4242107e6857b6c89a25fe67","size":684054,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.24)","libc6"],"sha256":"78a20e961d0562c05c79ed809636535c594f3cfeb18b9b662d7768757bd7c8b9","size":142386,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.24-1_amd64.deb"},{"package":"moby-tini","version":"0.19.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":823,"maintainer":"Microsoft ","description":"tiny but valid init for containers","homepage":"https://github.com/krallin/tini","sha256":"f9e1777db87f1d10edf19f35b62bf9288ff47f1ebbb219edcaa3cd1db4539430","size":349856,"filename":"pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70843,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.10)","dotnet-hostfxr-7.0 (>= 7.0.10)"],"sha256":"61ff73e62903f96a7f4e85005bbae9c324958747a1369684754b9da69dfce308","size":23207202,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"intune-portal","version":"1.2302.11","architecture":"amd64","section":"utils","priority":"optional","installed_size":18603,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["msalsdk-dbusclient (>= 1.0)","libc6 (>= 2.29)","libsqlite3-0 (>= 3.7.14)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","libatk1.0-0 (>= 1.12.4)","gnome-keyring (>= 3.36)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libstdc++6 (>= 9)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libpam0g (>= 0.99.7.1)","libsecret-1-0 (>= 0.19.1)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)","libx11-6","libglib2.0-0 (>= 2.35.8)","libpango-1.0-0 (>= 1.14.0)","libgtk-3-0 (>= 3.9.10)","libc6 (>= 2.28)","libsystemd0"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"685c7f694bf7a1e3e8cf1cbed3198a218283c37c0b23eebdf543eec400f10374","size":3344596,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.11_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.2+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348986,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5a711a4e64db7b4b7b0b0e79be0fd182722b16e83bac584d2edfa92c309fc433","size":205342114,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.2+7-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13097,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.11)"],"sha256":"f978b549faf888d3b27caecc94ed4afe26b9bd7be908e44349e7fc7b749747fc","size":1526066,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.19 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.19)"],"sha256":"be05d2befe19c95107b1cde4fc0abe6fa6b0e4cca03f1be32408505851f2e5ce","size":21928174,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"5f5903bfd7dfc455dd48530121cd67250de834a5667fc1a022e976238ee6e5f5","size":1307476,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11285,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"4eebb74f244a7909a4b8a72ca1ffd3a75fa75a192917285f513986393c504645","size":3523918,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227516,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"d84b52c828206632fee8f7f830ccf87847b8a66d65f8d91a66f98f08f200e4a5","size":59002212,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10784,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.6","homepage":"https://github.com/dotnet/core","sha256":"8d0f284061b82e7ba4089363a14630bc7e0d5ecf89e2a14a2130b8660e34ed01","size":3411678,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.6-x64.deb"},{"package":"open-enclave","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":113802,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"1b4d1a00cf3e49a79f8b4c7bc7738a815cbb68c29ea3a896225664e1a8cc02f8","size":31111910,"filename":"pool/main/o/open-enclave/open-enclave_0.17.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.30 3.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.30)","libc6"],"sha256":"be3ff69b76c9ceca3c2e664ae2829cedeeebe40a6a8113c65cb3d39c3c15b006","size":120710,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.30-x64.deb"},{"package":"azcmagent","version":"1.10.21228.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"279296ab5dc1f4455a8ba0d2c50247c5c0db6028c648e32ed9e33c201be46009","size":49565968,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21228.010_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"b1e6af88a0ee657e0147ba620ffb0797e88185e9c81e8d39fcb4eb21cd1721ee","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022090001_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"bee6959620c1cf6a6018d530e34b328c8ae3ef6ef5ac9ed725177cc45c3bb158","size":10124,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015280001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.5)"],"sha256":"13624f3fb400d4daba08db8c7b81a08fbe0e76d012741092e1bec6630217ed74","size":6086620,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.5-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"7286ff6948a8668ec80770b44d4f665ba87c8ce39ea00b5d52fa6ed3dff0e0a0","size":26989344,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-1_amd64.deb"},{"package":"blobfuse","version":"1.4.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":34258,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.2 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"03c3eb0229ea30aa561b231555cc8971c071d424f535bb1b79dc79e0a922d4a8","size":9837918,"filename":"pool/main/b/blobfuse/blobfuse-1.4.2-ubuntu-20.04-x86_64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d0e717c4b68da8d23ca511e28c5816c1f97a9f28b39af6500cbce82d516ad4db","size":141849620,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4544-1.deb"},{"package":"defender-iot-micro-agent","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"89c53fc7ed37643ada062c31d3242b137867b0270077bbab5e8e44265f3cf0ac","size":276272,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.13.1.deb"},{"package":"scx","source":"scx","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"8efc366fcd0bea36aa4e7350f1fcefa009b8c3c5e2c08124882dc2ceadb526dc","size":2588282,"filename":"pool/main/s/scx/scx-1.6.11-0.universal.x64.deb"},{"package":"procdump","version":"1.1.1-220","architecture":"amd64","section":"devel","priority":"optional","installed_size":280,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"aa9b16f4940719db016ae7645c3deb3abefcda85ec37373be7239d0a36015901","size":91470,"filename":"pool/main/p/procdump/procdump_1.1.1-220_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3788fcba514cd7f6813cad1cc023a87a0c354b5e62fb0bba66f999622d6030fe","size":5341828,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68422,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.13)","dotnet-runtime-deps-6.0 (>= 6.0.13)"],"sha256":"0e1debddea9b7ff4939a88af07867fcefc87b2f468f98f71fadd4aa71b176a80","size":22613226,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.13-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11277,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"c6bbe37dd7bbeccff48a6b65ab692f6d778ae9dc5af29816541a54682df2f35e","size":3524590,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.3-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cae69c3c33de3da4bfcd4b7efa29c4023c518e4adba34056ebaa1b0f9f78ba22","size":2674,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.21.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59364,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"e9f35d0b7fd6e8032d7a1be840dd7546a17a76a78ce2dc244846e2e5c01309b1","size":17815234,"filename":"pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.3","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"468e51c36fa323f47ae5789cf8ae9d45475d3639062bae7e8db688d4fa85154d","size":4117940,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71082,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.23 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.23)"],"sha256":"d8a5eef5d923878c0a7533aed050532a30b0dba4ca34cce16997633eb6f13bc0","size":21927716,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.23-x64.deb"},{"package":"aziot-edge","version":"1.4.20-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18518,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.6-1)","sed"],"sha256":"201b83f04628b7b4ca023681fc1cfb79c31a58fad34bf5aa46fada8554f170ee","size":4431946,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.20-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.9 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.9)","libc6"],"sha256":"f8bf3566081aaf2d5d48876aa066a63f19112718076a64d72286492927b2848f","size":140282,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.9-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.5 Microsoft.NETCore.App 5.0.5","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.5)","dotnet-hostfxr-5.0 (>= 5.0.5)"],"sha256":"212e1082ed580e382c344308ceaa810c4c6b22369578fb02799fc7d765f3c51f","size":21795820,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.23","homepage":"https://github.com/dotnet/core","sha256":"6055ab67097c149fdbde1ce7da11181f5198f72eccbedf998cd1e5dcc38b788b","size":41920,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.23-x64.deb"},{"package":"moby-containerd","version":"1.4.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138428,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b73911216929949d23a8b4a664b75a0dd5c676488fb38ce74f5a2d25439300ef","size":30822564,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.4+azure-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"b96158bd7f48db6917e50449fcadb7e6d154735ec19973410c81da18b4585f4f","size":1315894,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313428,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.112","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"bbb517ce8930b6c25860a34f7d1858c67965ed9a4c445ab36f0482eecd123afd","size":78525266,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.112-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a8028acfa074da855eef31805a52ed341f95f33bf74319a083903b8fc17bca7c","size":157155760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5348-1.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189593,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.416","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.22)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.22)","aspnetcore-runtime-3.1 (>= 3.1.22)"],"sha256":"8b2cf4f47bff8d9768fb21626f6847e5223dc9ac12ee951718f9db41bf7c5985","size":48071620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.416-x64.deb"},{"package":"dotnet-host","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.24","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3e1b4542b0a826316d1fbbcd96f5c4672de7988939f11d478995ab0ee00fbf7","size":55918,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.24-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6670365be8316093097de476a0054d9989fc1f9116d3b558b0922e9c0190ab1f","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124223,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"bba9e4e3481c121b2cf4b208c2c2540486cd9ac5e1a6488c9a5902a15ffd5a7d","size":27583496,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.10+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.2.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23914,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"242c7beed66e90503bae72243abf10c08e68b087e601122ac18bc19c4f63aa95","size":5777600,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.8-1_amd64.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":85898,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8b0a0833dde01dd7dee5b94cd38a7379a2feba6183464f034e2c521f6eb90aa2","size":20426268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5f72d3dd601e5211aa00f26cc5ed578eca7762c0d34bea0e560e5147d1e0d8d7","size":69440998,"filename":"pool/main/p/powershell/powershell_7.2.8-1.deb_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8fa09b323ce9042ad1e8cda02546047bc6e2e9ba07afddd498ebe4a86b13df69","size":227702464,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4669-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.525-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228666,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.525","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7bf4042264f848adb36b1b8729e413ce86a772586076aa05a0f2937c403b0908","size":89342040,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.525-x64.deb"},{"package":"azcmagent","version":"1.10.21239.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"606ecba800eb9417ea5c4f2cef0c2b31e3b154e310aa95223d52c4d7cb8d684b","size":49538204,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21239.003_amd64.deb"},{"package":"dotnet-host","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fcdf2ff915a09a0eadef97518df927e173fb16f3ace90f29ee509188d945dd12","size":32478,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"1c730d33b41d3cb90a4b4113c422c1be81b5fa8f739046643befb55903921675","size":3522798,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.10-1_amd64.deb"},{"package":"open-enclave","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":191735,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e20e03dab90cd3cf7b17d8672bfc6385bd27a7adb9db4ca13ce02a7c4ad26511","size":54537200,"filename":"pool/main/o/open-enclave/open-enclave_0.19.4_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"1ff382ea6af6364f8f35a5ccd64bae88c31d09652d5ad252fd55bb212e99673d","size":2567222,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"b777ed2b90ea97dda2a8654b23901d8a2c8366e5a8c2b2573e8aba042fd9e835","size":285622,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022300001_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"b22a9d3b4e9383be7d8f3c0c7922bd1552775b7abc446a46bedb6ccaef4211f2","size":264512,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.11.1.deb"},{"package":"msalsdk-dbusclient","version":"1.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["msft-identity-broker (>= 1.0)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"78588d17039d3bf3096f1a0476e70eece76d732fd938e447e37a3c3c33af0b36","size":9932,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.9 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.9)","libc6"],"sha256":"745a556521a404a87e636a6a051021d66b0708db00201b0a8127baedc4394ec9","size":121016,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.9-x64.deb"},{"package":"open-enclave","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e312248f847146ffc16a3a44dd3379d9bbc9bc623ba41c11bdfc8daa700cbf79","size":54508872,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.2_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"267046f6a5bdc652cdff399e69bb048a9fe31b9fffa5ecf59e5ffa8651fd105b","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.7-x64.deb"},{"package":"dotnet-host","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"59f7084cb3930657e8e08dfb41bb360553a7820fac22fe19217dfe678c367a30","size":55714,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.4.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":56247,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"f4ba4ef6fd9b049349ac21d6f3dac387da99fc573b6d2aa0e8c8e3c25ff87eac","size":19462424,"filename":"pool/main/m/moby-buildx/moby-buildx_0.4.2+azure-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.7-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324493,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"d85c672f28263e589bb24c644a0d514c022c54d9a82c932dd7e204913746b408","size":192238598,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.7-1_amd64.deb"},{"package":"azureauth","version":"0.8.2-7","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"88293e261db82ab4065f3121d5347305dafae0cc18976a9db7dc857b0c9a23c8","size":24108106,"filename":"pool/main/a/azureauth/azureauth_0.8.2-7_amd64.deb"},{"package":"mdatp","version":"101.03.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"1cdeb1f84286fcfc3634aa636184e69d8de4a256d7bc3395c3cd46299cbb311c","size":16306366,"filename":"pool/main/m/mdatp/mdatp_101.03.48.amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17467,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.8)"],"sha256":"1d7fdcf419bf3a78364d885517fbbe694b34fbb4259ba1184bc1b7f7f993c435","size":5769702,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.8-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c4b114bffd76a55588d9dad3bbea3d0edb2290fb212b89501fe1dee9d0fb8886","size":10570860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-2_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120070,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4b38f17f2fcfce60d3de5c5ca99dc6443e335f273210e68d9d1e83ae7f300335","size":26969412,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"86d1b67b0287593f023edc08217c3d7b4d9fe34db6bed602f089057c7135ddd4","size":172048900,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5148-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4425-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ebda02d39c2f184fe7798f607f9baf741a726166bdf620faf30df1e8cb78ef83","size":211264760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4425-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"248211ce798f17bc101da096123ab085072f718891e812ab28d54b1ef2177267","size":124416520,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4629-1.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19877,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.18)"],"sha256":"fb2b920c58eafd21f1603fab79ad877e1a1d6b52f1b09bb3e574ba4c52e5790b","size":6614146,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.18-x64.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1cf0fe4a1864137275b9ae732c2955f6a38e652633ec31ed295f109da4b8b9c8","size":31535086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"d77d76800156fe2f8927c4058e9f38c5869792154381eaab1f21c390c1f2339f","size":1315890,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"48a86372085acf1ef0654ccca308a29db18d0cd892dfa37f707b0170ebdff1c9","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.22-x64.deb"},{"package":"azureauth","version":"0.8.2-5","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"16af522abeaf26d129c2fe85797a1545885a9ca971cffa1d139caae64f8a6bfc","size":24114326,"filename":"pool/main/a/azureauth/azureauth_0.8.2-5_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.6)"],"sha256":"04e742a057549d5c5e523ffcaa2b141e2c72746844a0129f7cebcc2c9f8707cf","size":6086044,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.6-x64.deb"},{"package":"moby-containerd","version":"1.5.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109077,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fb25060e68694a6ed58f6083001aa10e158831e537ccd8381a91683fc6dac4e0","size":26798086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"blobfuse","version":"1.3.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":32372,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6caf1a6e677ad286dd707a2ab99c202357e9b523c06980ac62e83eac577814bc","size":9299024,"filename":"pool/main/b/blobfuse/blobfuse-1.3.5-Linux-Ubuntu2004.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-common-media (= 0.11.1~beta.1)"],"sha256":"dc35ab240cb86855ab55cd95f92f89fc3900c72c1ddc234e90ddbf87a6cf5b2a","size":149912,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fad642753e596b724728fdffda51446c1371892559c07e8155f819a93a20f2a5","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.17-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.806-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.806","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"dc70903977d4832aa821e17a3734942f806dab283332eed711ab45d5de531ec7","size":92091884,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.806-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3d49b06db4758632dcb37f6e77e67fd27c62b7ca92b88a4402534d12427acc5c","size":227694792,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4727-1.deb"},{"package":"apt-transport-https-sas","version":"0.9-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"847f65c962d5a64d5d9c84673ac1aefa9e93d6456f5da6bcf84728dcfba8d707","size":12426,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-3_amd64.deb"},{"package":"aadsshlogin","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"c29b7738d9aa27f63ddb3385a104bb770de79ba757bc79156a256830a84c4e8f","size":419498,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017540001_amd64.deb"},{"package":"aziot-identity-service","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17955,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"2393429995c94361cb1691e3be79b1a210bb4ced647905c8951bd196356a71fd","size":3756332,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.3.0-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195083,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2518230120bde23d124e8a8d30d560b14572a588af57e441c4c24ea52ca79e2f","size":70861036,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336633,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.404","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"b0db8754304b29c3a8a28820080713733b8cba9cc4549e6496bf7f4945685562","size":86631222,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.404-x64.deb"},{"package":"moby-engine","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98009,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"aa0eb3b0654816491b036a85d6b3df81b0e26c54fd0086c136d973bb49b2e25c","size":21182268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.10+azure-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3069,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"87b13cedd03de43b952a2b0678191adadda03f8fcf9e584ad5d3a43b2b7c6450","size":838158,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.0_amd64.deb"},{"package":"dotnet-host","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10d190304d21b10b7f51a79d08bd5e867ef97b59cc866841d12f0970e91f62a9","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.2-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"75d79e64f4f3525555196c3de3b6a6d6c255a317a51538cfe30567f92caf51a9","size":2130996,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.13-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.16 Microsoft.NETCore.App 5.0.16","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.16)","dotnet-hostfxr-5.0 (>= 5.0.16)"],"sha256":"94c64f37c5366da138ba001c362d9f0fa75b8131817558b68e52b20bab538b56","size":21840928,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.16-x64.deb"},{"package":"powershell-preview","version":"7.2.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":164716,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f93016a0cfd85711d8eb274a123b353f463f3e589baa53c8af18c5c269126a12","size":66452168,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ce62dc4ac114de9cd82ad3db7eab8551addd5f329c55d9bc8f1a9c0ee7ea8119","size":32452,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.27-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.27)"],"sha256":"0bbe47ed2413a67ce2f84a38145cc4a3dbbefa668c8704e305818c7f4b0c7951","size":5771296,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.27-x64.deb"},{"package":"dotnet-host","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9aafd51da5c39d88c7190f208b874e8b159359b74481d46ea87159cf0fc9ffb1","size":32504,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.24-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4fab6a262de18f8b64e57dd27c5a6acd9bf769a233561ea50f9ecd5013581fc8","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.20-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3696,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"dfe9e0705a4186d418ea9a48e3c80c353e8fd943e3f566d829173d20aaaea537","size":1010380,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.19.4_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3477-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08cb107257aca65fa156ef7c7708d0620c703769cceb4aedff56f0eea688f6c6","size":209487336,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3477-1.deb"},{"package":"dotnet-host","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"168de157996cc20afcb22c99aa363447aa177347b7d053ee1e4c12e36e5adebc","size":57382,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.12-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.15+10-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316139,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"0a2a9f6be1fca5891486b90c4676b95c547e2df1a9750443ae2a8782234f3fa5","size":193176730,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.15+10-LTS-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"59a7d8c4a06591962abcea21dad220af537f300bac1f6cfc1be78cb898676457","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.1-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f7854d72dcce33b230cbcb69a9f7ddd7189d96b52edd5fda39f4cc8d24673ca8","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.11-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.2)","libc6"],"sha256":"8348f279c3614c93676cfefecf6f653135b910dd9ab0a702edc6d65f5f2bf36b","size":142108,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.2-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f6627857e9a11b74d9e676ab62b2a2a50a5f567a0c55e4bc006456159acbdfed","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.021030001_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.14 Microsoft.NETCore.App 3.1.14","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.14)","dotnet-runtime-deps-3.1 (>= 3.1.14)"],"sha256":"10563481588e18f8d8ed70d9b99a58c158b98b1ef8159c789ba55073bb240a67","size":21744410,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.14-x64.deb"},{"package":"dotnet-host","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.16","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f3beedd7786937c7fa0cf6fdc620a9b6e9a0630d49e36f868bd22526ad402bb","size":55864,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.16-x64.deb"},{"package":"moby-engine","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103382,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a5aba3a499328a654304da3ec4d5ca323c96c7849ff05f0f6f854bb980f1f435","size":22538834,"filename":"pool/main/m/moby-engine/moby-engine_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.3 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.3)","libc6"],"sha256":"d2d7de4f041b6168ae2a7be47ac3840fcb8da578f77ee0e52fda25ef5b9261c6","size":140808,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.3-x64.deb"},{"package":"dotnet-host","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d4b1ef40a32e948e99370003c3e89f4834d509b6707c5709d53b1ebf1bfe6c14","size":57278,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.8-x64.deb"},{"package":"moby-containerd","version":"1.3.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126915,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b875b91d14263bfbf3eda9313a15375f74cfa22d94e6c0ab03d62fc32032a186","size":27677300,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.8+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"36ff1945d3e7a0c5cecd8f5618a4e2790faa7cd802bda9468e09bbad39e0c8d1","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.5-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.425-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.425","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.31)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.31)","aspnetcore-runtime-3.1 (>= 3.1.31)"],"sha256":"d5baa261325602144fe72944358d02371a8dbec5d2df322e7459a4dcde0dd60a","size":49834620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.425-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71114,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.19 Microsoft.NETCore.App 3.1.19","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.19)","dotnet-runtime-deps-3.1 (>= 3.1.19)"],"sha256":"50b3441944ac5bd8b56cf77397327cb3974a7f645047ab67d6886e5ccc8def9f","size":21752250,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.19-x64.deb"},{"package":"mdatp","version":"101.24.45","architecture":"amd64","section":"devel","priority":"optional","installed_size":151288,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"862be7267065eb548f25fe8ec8654bb43d92d1b80188def5b8818e805787846e","size":44872594,"filename":"pool/main/m/mdatp/mdatp_101.24.45.amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.5)","libc6"],"sha256":"26ec1b1a281088177f66da1de36d31fd31a427f5a0e42b18538dabc503d52a1e","size":143998,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.5-x64.deb"},{"package":"dotnet-host","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"19d6e6d8937060556a8efc783fd27a32e7424da20c39ad933e27342c365f4d1b","size":52590,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19872,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.14)"],"sha256":"0734d77b6149db2d071b8b15f126cb9f7da613166cdd6bc835b791bad9f666fe","size":6612218,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.14-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4a991eb6e48937efcce608f70e0c2357df03d3d85bbe071071a0307b21dfbbc6","size":227788672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4837-1.deb"},{"package":"az-dcap-client","version":"1.8","architecture":"amd64","section":"unknown","priority":"optional","installed_size":306,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"96b4f5d6bc3d4ca79de4ea99b3cb3f1c7d518678397e8e24dada9034a53df036","size":63924,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.8_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.21 Microsoft.NETCore.App 3.1.21","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.21)","dotnet-runtime-deps-3.1 (>= 3.1.21)"],"sha256":"e2283c2375c028a33decced88a16a94d4e196b4decea7d3f61e2f7e9e0cec41d","size":21754372,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.114","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"5e73956aa56a60e1e89549e0d33fdfa6614b64234632baabb4a5c89076b61b70","size":78676286,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.114-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"80fe990383c5ed0f6cfa98079e98d93ad46324b84e254b8e8fee8150c813efb7","size":141836620,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4544-1.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.6 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.6)","libc6"],"sha256":"e3423518b16a0cbaaaddc030121ab010e47a5da00474be54cdf4260fbf31398f","size":121074,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.6-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68400,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.4)","dotnet-runtime-deps-6.0 (>= 6.0.4)"],"sha256":"01f8138ab2c5d9070f1890822f4c4dc24692b6a913b9787c9df6892aff11a234","size":23011424,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.4-x64.deb"},{"package":"dotnet-host","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"380fdc61ed10647dde7e1cf2580428c1e5ed7c492c58636e7e57087ffa30852c","size":32416,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.25-x64.deb"},{"package":"moby-compose","version":"2.1.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"73bab455d7ea48f0d15b363a15237dc7299779e05a5c16c3515e95ef52ca7310","size":6295332,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e335ea6e6fdf673e537b320a9c194b55aabf77d1a8de548941d13a008bde2398","size":21199964,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-1_amd64.deb"},{"package":"moby-containerd-shim-systemd","version":"0.1.0~beta.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":30091,"maintainer":"Microsoft ","description":"A containerd shim runtime that uses systemd to monitor runc containers","homepage":"https://github.com/cpuguy83/containerd-shim-systemd-v1","depends":["libc6 (>= 2.14)","systemd (>= 239)","moby-containerd (>= 1.6)"],"recommends":["moby-runc"],"sha256":"a8265847f51b994ae68a7e05b2768dca28c037aa8e9499e02ffeb38aa3e525de","size":11959090,"filename":"pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-common-media (= 0.13.0~beta.1)"],"sha256":"58acb3b752c6503043aaf1cfcdb3ce19ae976ba01f548c7f75dc6a91c0bb33fe","size":150004,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"241bb67ad6d16299940702fe03bff3fc17bff41d8ac8e72ba83290c5232a74c0","size":59709278,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.407-x64.deb"},{"package":"mdatp","version":"101.25.63","architecture":"amd64","section":"devel","priority":"optional","installed_size":155265,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"6c06505c5e2e9fe6a1e63dada236173729f337039fa5333f7a6026bbd0650cbd","size":46140804,"filename":"pool/main/m/mdatp/mdatp_101.25.63.amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227344,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"6a056d7df7133fb877e8f77d234642ca13f88dff9861d74738569fa9c9e02e87","size":58722724,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.302-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8289d669492f741297929c892421d04b3bb0830c5435baa14a578c45ff039827","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019630001_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"6b2b8194c70db56df207d29a1fc982494607c0e6478cf650cffd8973662d1e2a","size":3523898,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.2-x64.deb"},{"package":"procmon","version":"1.0.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":51981,"maintainer":"OSS Tooling Dev Team OSSToolingDevTeam@service.microsoft.com","description":"Procmon for Linux","homepage":"https://github.com/Microsoft/Procmon-for-Linux","depends":["libc6 (>= 2.31)","libstdc++6 (>= 10.2)","libzstd1 (>= 1.4)","libelf1 (>= 0.176)","libncurses6 (>= 6.2)","libtinfo6 (>= 6)"],"sha256":"7b989d56a131bd40a8446ad957f1f546ee9152198564354dfb5476948ba95cb0","size":19862512,"filename":"pool/main/p/procmon/procmon_1.0.1-339_amd64.deb"},{"package":"dotnet-host","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.22","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"08db6e033a295f61b61c4b7145530cce7dbde0dd485a58e67fa98a0873b7abc2","size":56000,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.22-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f04b2dab917e9b09b5b1cdac3033c8048eb822d7dae1991a0827a2c7ccbcbf97","size":156746648,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5274-1.deb"},{"package":"aadsshlogin","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"59c9bf98488d40ce7ec735416708f9117f2d7ec5dd1cc7bdccc4feaa6ff33a9a","size":421814,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020950001_amd64.deb"},{"package":"dotnet-host","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.23","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec31c357657956224fdcd301fbd64535bb2e3343fc10823c35a5c906e0573ac9","size":36584,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.23-x64.deb"},{"package":"mssql-tools","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"9e68a0f83ba7e770449e399b1513edc9826aa0c3a58e3d911ea982a362c6c41d","size":212296,"filename":"pool/main/m/mssql-tools/mssql-tools_17.6.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"849c5f843caf50de8804d6a844501f8cff8af42cd3a515683c61de98e8e8d8d8","size":32812,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.14-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.16)"],"sha256":"d4e52045a7aeb72dcadcbcab02c644253d73d7fc0f9942636a47bd36bcaf117d","size":6612278,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.16-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2a4a5500354c749fca852837ca6df935e709bf147995ddd7a1407130931c9133","size":26976612,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-3_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49824,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"32d6d1eae5e5619551b2a2704526ca2e46771b67d7170fd20df9fc0e00ba3da0","size":9653820,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ddd3c0eb7332dacfecf2a3a8ed8988439431c5f9b6b84a08e92edadec9024b08","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"04c85e431825e28b2bbcf43e18f3f8bacfde9686ea78dbba815a61e21078bf56","size":2810,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.116","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"6ac2f5102837c57d6d66a4336a1631b0cc6607b02b8a2271bb6fa43cd9c15876","size":43510406,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.116-x64.deb"},{"package":"dotnet-host","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f058e88012bda709259371aad36f8c8e51494835dd43b09ba3acc8094c1a3cb","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.12-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68444,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.16","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.16)","dotnet-runtime-deps-6.0 (>= 6.0.16)"],"sha256":"c61139846f6ab095ef9b3476feaf955eb82042525da39bc512d8eda7134f8c6b","size":22707182,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.16-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70820,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.5)","dotnet-hostfxr-7.0 (>= 7.0.5)"],"sha256":"6fad7162dbcf639ebe9609c6b4ae4167dc0488ae7c0581a6c322c007259cffa3","size":23193486,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.20 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.20)"],"sha256":"ee7e20d382b444fad8299534c3133d27180af3cdfe4c82e401298e64bfde618b","size":21927704,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175287,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"c3b8a52fd632b2a4e36fd85f7bf106cd58237cfc098687df8a2312d4d8a46881","size":43432848,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.202-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71232,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.23 Microsoft.NETCore.App 3.1.23","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.23)","dotnet-runtime-deps-3.1 (>= 3.1.23)"],"sha256":"fe6490d54339207c8f946b7f15d5770ec2d08ab37cc55d5c86da27bceb2943a1","size":21817076,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.23-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.9 Microsoft.NETCore.App 5.0.9","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.9)","dotnet-hostfxr-5.0 (>= 5.0.9)"],"sha256":"f0a48fbfc02dec7912902ad28356d282212dc0b6f6823bdcca7d2579bd2296fd","size":21522292,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.9-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-4","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7-minimal","python3","apt-transport-https"],"sha256":"839c820fdbf60e2ef630c5444ed52b172cc6e51380ed2e84f0e5c49784ecdd74","size":12482,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-4_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175200,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.107","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"c78a136dc95f35e7c59d83287185421b8b537ee49bd150312e32c462f463b726","size":43694236,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.107-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.13)"],"sha256":"8dc6bd1555aa8cab7b1e37434a8ba49e24c1d427cf8cdae4203c3a72f901979e","size":7064190,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.29 Microsoft.NETCore.App 2.1.29","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.29)","dotnet-hostfxr-2.1 (>= 2.1.29)"],"sha256":"f6d4a92499646860af596f86a0a4cf4319887149bdbf09807d0cf6a1e0aa56bb","size":20506622,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.29-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.211-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222064,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.211","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"ca310e5c489a53cd12cd5e00535269572d5cb7443dd242eab568629553c1a1d0","size":57090632,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.211-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.23)"],"sha256":"968b3d4a4417eaa5820cd2ac8c4ec35e0b6d67e1efb996461644efa175b2567a","size":5771268,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319917,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.203","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"debc94f20bcb9123d2c3bd8c369049d8af2858791da3a114c953786da442c1a2","size":80517208,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.203-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a5d634cb0d45f125a3760972b8b4accba973a18226083ee024e987860eeefe22","size":2672,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.9-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"5425475e280b41cdc55df0a2dca006cc0c88c1b2d86662a0c487091e375b435c","size":3523526,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.13-1_amd64.deb"},{"package":"procdump","version":"1.2-359","architecture":"amd64","section":"devel","priority":"optional","installed_size":292,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3499e3c5ec87145fd656dadb03e6ed9ecf200453f83c6bfe6d2d73572e74e7c3","size":95620,"filename":"pool/main/p/procdump/procdump_1.2-359_amd64.deb"},{"package":"azcmagent","version":"0.10.20195.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"4e559522e0c89907e55a576508ec1f76fa15fcf9c93d25c015f92c9fdde6cb21","size":34075864,"filename":"pool/main/a/azcmagent/azcmagent_0.10.20195.006_amd64.deb"},{"package":"mdatp","version":"101.98.30","architecture":"amd64","section":"devel","priority":"optional","installed_size":305838,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"dfec95ca4abf684f6818ad812a68cb324660a8207b5d269029b188e18a6a1afd","size":119529588,"filename":"pool/main/m/mdatp/mdatp_101.98.30.amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19885,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.20)"],"sha256":"843d5b35e21303e2e9575436c5b4c59e7795186dd4a8759eada1cf23cecb6c6d","size":6613502,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e6a14e318f264a02f26a872c2e0c2549b0081075de95b0cde221b438a1f90a37","size":54509148,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71080,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.21 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.21)"],"sha256":"a95ab0fba4b44a70f83d9430731fdd4e33fb7b25b044c301d6db22ce2db50fed","size":21919612,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.21-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"fafcef4bf72ce0f1e04f2a7ec0e81007e608ab5634aaca0798f307b44165f66e","size":499544,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.6.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19838,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.3)"],"sha256":"c6f2932646657fc4ba8921d7668e462883a5231dfb7875bf3e4a209aaafbf2c0","size":6601416,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.3-x64.deb"},{"package":"dotnet-host","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"49d4d28af9f1f097b60da2b8518d54729703542556840a988fdb188cdf9a278c","size":36650,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.18-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["apt-transport-https"],"sha256":"0cfe901ab94e9795ee5ef62180dee5192053bc6f132126e40f621b273f545762","size":12264,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-2_amd64.deb"},{"package":"dotnet-host","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8a635a0abb40c0ddcc6ea2cf3e932a4b529360d0a1cda10a01e5b5fe36007436","size":32906,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.9-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4264cfb88a9565f15594d8b54ec57bda33e06684acd8d5c9d3081ceb5089e750","size":157254364,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5390-1.deb"},{"package":"powershell","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9132d97fea77d5a8de56b5801b7579bdc1ce669dae084295ddae6b43cf5a3fdb","size":69382904,"filename":"pool/main/p/powershell/powershell_7.2.5-1.deb_amd64.deb"},{"package":"procdump","version":"1.4-13733","architecture":"amd64","section":"devel","priority":"optional","installed_size":11065,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"459930388ecacd1df86996b86fe3c52a714a3a4f9eecd62d594e6e92eb83ec4d","size":1646306,"filename":"pool/main/p/procdump/procdump_1.4-13733_amd64.deb"},{"package":"mdatp","version":"101.80.97","architecture":"amd64","section":"devel","priority":"optional","installed_size":278033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"28535a2926aaddaa715cd559ab06e1db9d70546e355c6c8b57ab9de58feac2f3","size":112232294,"filename":"pool/main/m/mdatp/mdatp_101.80.97.amd64.deb"},{"package":"moby-engine","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d9802f061fd24ef6df5db7c64173525b197a084ff982e6fbf2d6ba4fea047f24","size":22479456,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1035.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"6011d41e8e1db082d711d80b98eb923db9ae2bd81b75a7b8951a32b572b7e6d9","size":226516056,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1035.1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331328,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.309","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"1b15ae59bf908d402771e5f04ce49a9e1e79e56efbbf37f51e44ae85e4fe5775","size":85106134,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.309-x64.deb"},{"package":"moby-runc","version":"1.0.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20366,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"60f4a66821abb4c6bdccd3303ee8016572acd3ced6232beb0ab8892dbb9f39fa","size":6695040,"filename":"pool/main/m/moby-runc/moby-runc_1.0.1+azure-1_amd64.deb"},{"package":"mssql-mlservices-packages-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":1166747,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Minimal install). Provides revoscalepy and microsoftml. Excludes pre-trained models","depends":["mssql-mlservices-python","libgomp1","microsoft-openmpi (>=3.0.0)","mssql-server-extensibility (>=15.0.2000)","zip","unzip"],"sha256":"758899dc2be1d7b359e459d3017ba4c3943fed31a8cdf51159c0029dd84b472d","size":391350996,"filename":"pool/main/m/mssql-mlservices-packages-py/mssql-mlservices-packages-py_9.4.7.958_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.523-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228602,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.523","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"de54ae0983b981fa5ce72bd6d670ae23104b789bffec79ee2cbad1bd415f29c7","size":89337968,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.523-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337371,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.411","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"84f679ab43f1a1f9a9c55801fc7b8be18159b4d39a25e4cdb6e79df3ee4eea05","size":86793590,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.411-x64.deb"},{"package":"libmsquic","version":"2.2.1","architecture":"amd64","section":"default","priority":"optional","installed_size":17370,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"75ff0c9d79a479a06b4639e59143eed78f6278e04f502c682732e26c0bd739ae","size":4564454,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.1_amd64.deb"},{"package":"msopenjdk-21","version":"21.0.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352673,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"5fb5615e574cabaf0dd699797e738034523810d46b15a811ddec67b029d40744","size":176352102,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.1-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.8 Microsoft.NETCore.App 3.1.8","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.8)","dotnet-runtime-deps-3.1 (>= 3.1.8)"],"sha256":"58b750cac76d6e553d55731f03cc484a0f74e1539c86b8d4c1f4361a9a90436b","size":21765344,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.18","homepage":"https://github.com/dotnet/core","sha256":"6bbac63b66f8b3b0cee25d7e0a952f29723bab86f44184cc58d8e7ea05672897","size":41912,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.18-x64.deb"},{"package":"azcmagent","version":"1.4.21070.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"bb4843d9264533220d1ee8d13edfdec5f639257cdcb8152dbcddf60b07045bf4","size":18061030,"filename":"pool/main/a/azcmagent/azcmagent_1.4.21070.006_amd64.deb"},{"package":"moby-cli","version":"19.03.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83545,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a4d0f91e818dacdb189bbf923a2f1ea393c061e43b32bc0fc916aed5c571efb8","size":16420708,"filename":"pool/main/m/moby-cli/moby-cli_19.03.11+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.123-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.123","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"5ddc3e6e75eb51c2310082120b0bf93c960fbba747869b392df4989ebc8410e3","size":78945110,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.123-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120054,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2291a34f3f8f15c17fbef62e1412c2ded8178608d09a8441fbd65a1f4cb5301e","size":26994720,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"40e5dc44634227b722c8f5d25c7a8e5675a198a9e9befc1e7d646f45ae37677c","size":10587520,"filename":"pool/main/m/moby-cli/moby-cli_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b204c9015fcc56ba8397286a2ec440964c498b65fa9ef83effe64d64a782c29e","size":2800,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.12-x64.deb"},{"package":"sysmonforlinux","version":"1.1.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.1.1)"],"sha256":"da5104110392ea4362980b2a4794f71c3b99fc37372df645193ba73d68e3243e","size":1530018,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.1-0_amd64.deb"},{"package":"moby-cli","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafc180e60330284cb8058dda081a563238121aeaaa686ed3dee211a3cd01eda","size":10587576,"filename":"pool/main/m/moby-cli/moby-cli_20.10.8+azure-1_amd64.deb"},{"package":"moby-containerd","version":"1.3.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126931,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"84c208d774bd93f4b35567359fe4ac51b52aba7861b4b426f58c014818b219c5","size":27658608,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.9+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.115","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"75839c38082c6a12f50210010f3db9c1c7570853664b5ae31806835b12e4936e","size":78668378,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.115-x64.deb"},{"package":"moby-containerd","version":"1.4.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120026,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["init-system-helpers (>= 1.18~)","libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"5f8a73e8b1dd7ef167b85fe8778d3879ed0cb76c7493d89bfc286e8c03a1cbd7","size":27328778,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.8+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"758f26010760cd1b7e36aaeb4c04903d1b6f0544809e5c2d2b302d130a5d553a","size":3523928,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eb256873e4cc87bc58d309da546fa07c13fb3b979437a3da2036cbce0cb4f1e4","size":158763596,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4895-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.516-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":229026,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.516","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"39e874bcdef1e41b7f8ed6f9747d4b9422fa29a4bea185934791b6b88d819cda","size":88800084,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.516-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.28 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.28)","libc6"],"sha256":"9e32978def8d2974dd8e1884e0661fd89a66923ae40d8afa8e88ec5a804f3b55","size":120692,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.28-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3125,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"fcf42631731b58d2c9017fde53ff7c1f5cc24013f264e2484e5c9fcad000dbc1","size":853504,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.4_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.514-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228764,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.514","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"fc29ebc3fc802213fae488f6b19c26b288e4c2dcf678d52ab05a255cfff9a7f3","size":89261598,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.514-x64.deb"},{"package":"sysmonforlinux","version":"1.3.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"7f12efadf7332ca8cf6f84980b4dab8947b35e57e4ea159b757678da4c685cce","size":3204094,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":8998,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"e46789887409f1c15a58e15de83dcb4ab0ee0d85bf43b7eed26c95164173615b","size":949024,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.3.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.1)","libc6"],"sha256":"4bca2d54df5756f1b361876940374502d13bd7f6a282080e8479cb44f2bd2aae","size":143974,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.1-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.12)"],"sha256":"42f106527e3629dcb4ad94c463f7b4fbec07587d3899b9f3629f2eb975611792","size":6084640,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.12-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c95488e066f938e6293333142d9d28246393ab388e8132ec0a131448ba322973","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.17-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367144,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.309","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"f3a9e3fe50a489fed2d245de896f015ddad0bccd8de94f7fc471711327e272fc","size":96629046,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.309-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3976d4e13d7479b7a9768adadb6ed39a8ae039f6e6a6feff7f9fee3f24cfb08b","size":156787220,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5312-1.deb"},{"package":"dotnet-host","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"11057d665df8116673ac80ca53ba4a9a3269bfa6ed388fa2b4fdb19137419acc","size":36516,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319710,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.201","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"548e27d4c5b6560f91a13debf2e6337d1c6fa4f7640edf457b4262693adc056a","size":80538626,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.15.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.15.1~beta.1)"],"sha256":"debc3c3de7c09b9cc825fcdc157e74b7a1d436c8f294cd3afe766a114836f675","size":80022,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"iotedge","version":"1.1.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":21774,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.9-1)","sed"],"sha256":"fbda5dcebc6c8b304b635fb5bc1dad31a29c58ff904da74077f77477ef065f52","size":5205412,"filename":"pool/main/i/iotedge/iotedge_1.1.9-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"17e137e6afeb1ecec0f417dfad45ebbc04b5ef0f5eafec995e9972e5abffae0d","size":10214,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015090003_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.26","homepage":"https://github.com/dotnet/core","sha256":"186548e9c722eebb8317a826fb1dcccf1a402e33f086d7f88b7695bb155c1f22","size":42036,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.26-x64.deb"},{"package":"mdatp","version":"101.34.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":149583,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"c74f1485c2c1741190b1b7159077b1dc88ea023d2be967f62cd60da0e151dde8","size":44125452,"filename":"pool/main/m/mdatp/mdatp_101.34.27.amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174867,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f3d8ee4df9a80856a1dd968a1ea80e341c09a26eec7907a5cff825f234271280","size":68369482,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.1-1.ubuntu.20.04_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4824,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"0fded967b3068f387c96304c3df40e4f1475654ce7e981eaee08aa0261a1e6ce","size":1861004,"filename":"pool/main/o/omi/omi-1.6.8-1.ssl_110.ulinux.x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"bd8a0ae1102ed9e2ba317529c889024ac07fd0fd2a2a053e0af1938805ab35eb","size":1314134,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.16-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.20 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.20)","libc6"],"sha256":"568d44dc56ba8b9a1b9ed49699575f5bd9735adde91ce76f8a594185989e924a","size":120832,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.20-x64.deb"},{"package":"moby-cli","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70472,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"94a944da36bf361996e26544e4173f0c068093d455b720caf5fac4447085f306","size":12147772,"filename":"pool/main/m/moby-cli/moby-cli_20.10.7+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"43761ba143682b53b883675cd17a70bb7f89defa6162f7705354c603cb8284fe","size":152285560,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2628-1.deb"},{"package":"omi","source":"omi","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"f724b1039e8ec0b382fdd69a5e753666e0f752b8b8fc8a4504e218dfc1e96c65","size":1884694,"filename":"pool/main/o/omi/omi-1.6.10-2.ssl_110.ulinux.x64.deb"},{"package":"powershell","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"93612aa09171838e997c85b78f6fe42041fbc73741b9751f975b1e908d6e77f0","size":69457500,"filename":"pool/main/p/powershell/powershell_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f39f88e19d93e296841c9a7a072ea4d8bd6855cce4278f5ba0a51aaf1508785","size":32768,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.5-x64.deb"},{"package":"moby-cli","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":35184,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafb6aac41b3af3df5bbc6652d16408b3c4349105c60f6ba9708a73898520447","size":13037282,"filename":"pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"6c363e4748de6d674af31db7ba09cee89dae9c22636e883bd418225c08b64926","size":2127714,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.10-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"1.0.6","architecture":"amd64","section":"java","priority":"optional","installed_size":83681,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"5523be2d7b0a502b34268f94b1c95d4a892500b1ab69a1ab0e9c9cafb7c62bbb","size":77280998,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_1.0.6_amd64.deb"},{"package":"mssql-server-sqliosim","version":"15.0.2000.173581-5","architecture":"amd64","section":"misc","priority":"extra","installed_size":688855,"maintainer":"Microsoft Data Platform Group ","description":"Microsoft SQL Server SQLIOSIM","depends":["libatomic1","libunwind8","libnuma1","libc6","adduser","libc++1","gdb","debconf","hostname","openssl (>= 1.0.1g)","libgssapi-krb5-2","libsss-nss-idmap0","gawk","sed","libpam0g","libldap-2.4-2","libsasl2-2","libsasl2-modules-gssapi-mit","tzdata"],"sha256":"da98d84586f19a9ddce428f04a504b3afd2a78a546084ddb97be87261cb1b2cd","size":275507482,"filename":"pool/main/m/mssql-server-sqliosim/mssql-server-sqliosim_15.0.2000.173581-5_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"31e20c09d20ae7e532ba362411737b526cd08ad64ced422fa6ffb46285c243e3","size":227705672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4669-1.deb"},{"package":"mssql-tools18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"4475bc79d1a909605846d351ed237631e7f09d33c0125d4dbbf265e72f79b9aa","size":211222,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.0.1.1-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.521-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228520,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.521","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"a25df3dbd37b6290b8e135ee7990b2a4e71c80d45fcd93dabfede62846b41faa","size":89215248,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.521-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.7 Microsoft.NETCore.App 3.1.7","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.7)","dotnet-runtime-deps-3.1 (>= 3.1.7)"],"sha256":"72280aa6efa11801c6122ac04d69743ef2d174c006b016e95dd7a5ff6cdbeca3","size":21784186,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.7-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68403,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.8)","dotnet-runtime-deps-6.0 (>= 6.0.8)"],"sha256":"c00f193c145dbe8b518b9eea0506db8f9667205eb953e0399c9652eb79d1dec2","size":22977266,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.8-x64.deb"},{"package":"moby-compose","version":"2.3.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25856,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ef10e25980ca3063e0e47aa1e4bf696acce9d18b461d8bd52d72be497f3b6f5b","size":6533904,"filename":"pool/main/m/moby-compose/moby-compose_2.3.4+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16145,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)"],"sha256":"9dda765ea87c75ac95ca3bd36ea5bef5935f0d56de1d39a9c65d903aaf174436","size":4976178,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"641b1d131285d90449bc0e2051ca8b47b1cc1a8c6221b137dbf3f224e03e3664","size":3505028,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.1-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eac97fb739bdd5b39f9813f1376cb0cf419d87657ae5f6c2fb74b263ff5b398e","size":166080896,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3023-1.deb"},{"package":"servicefabric","version":"9.1.1230.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"86d09942e5f1b9aaaa51d714f1974d4cd9c6e6128b102cc3c103d9eb772770ec","size":219806842,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1230.1.deb"},{"package":"powershell-preview","version":"7.3.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195779,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5cca8118d8e2238bd4c7ed40a2cd370c12320ea5096aa5dfc6ab4911f3d6e7f1","size":71153972,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"6e37c1a434eb56c348f0371a658bc3e68f1332fc9f41dcb94a5c668a57434ef3","size":3509404,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.8-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68341,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.10 Microsoft.NETCore.App 5.0.10","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.10)","dotnet-hostfxr-5.0 (>= 5.0.10)"],"sha256":"a24a42a7bfccebe91fa973f09288b4158632a057d8a87108806f5ffaf00dc720","size":21664136,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.10-x64.deb"},{"package":"libmsquic","version":"2.1.0","architecture":"amd64","section":"default","priority":"extra","installed_size":22568,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"1b4cdb99cf8e012c21098ac60cd6f1a364e4dc191173cb5e8782032eaed30e39","size":6402384,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.0_amd64.deb"},{"package":"netstandard-targeting-pack-2.1","version":"2.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":19773,"maintainer":".NET Core Team ","description":"NETStandard.Library.Ref 2.1.0","homepage":"https://github.com/dotnet/core","sha256":"0f12001d1918f7ad2452d14d70bd396c82080b691407735213e90de637061f57","size":1476016,"filename":"pool/main/n/netstandard-targeting-pack-2.1/netstandard-targeting-pack-2.1_2.1.0-1_amd64.deb"},{"package":"libmsquic","version":"2.2.2","architecture":"amd64","section":"default","priority":"optional","installed_size":17401,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"a4972341d1579569c738a1de4118fc076cfcbb4a4e5b63e1459ddd59b29eb3de","size":4569798,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.2_amd64.deb"},{"package":"mdatp","version":"101.04.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":68366,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"c121d4fb5728139f2b3ba50d5de6fb5703e1139118af2262056c4d2818d7db0a","size":20445826,"filename":"pool/main/m/mdatp/mdatp_101.04.76.amd64.deb"},{"package":"moby-cli","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70537,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"85cdb0a043d8edfcfe82144526661da13438201edb7d2984df0cb6c26169a0ab","size":12181032,"filename":"pool/main/m/moby-cli/moby-cli_20.10.5+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.10)"],"sha256":"eea82ce5151760291cc9ad3d16eeb43f4fa1559f91ba0c186354822cbe97bd54","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1e55812af3a9d6a640104018bc37157ae7c5c88a742bd43bb86cf0cf6f497884","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"c73045067b66eef7d977ef52b3795d35e3b82a4016b45f32a30c3b2108e4bbfd","size":3521952,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.0-x64.deb"},{"package":"azcmagent","version":"1.20.02012.246","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"25125a7d7badbebb380d09851eb4a4b5969a081e7f1c6318c9ae046d76a076ae","size":52490324,"filename":"pool/main/a/azcmagent/azcmagent_1.20.02012.246_amd64.deb"},{"package":"moby-buildx","version":"0.8.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67232,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"fabbdaf903c269a615a9099dd9affa8476ec75e68ba54b2d0a88aa4442cdf493","size":23117324,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357028,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.202","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"7cb68886075b3361642aadd467bb4335f635d9471fcc3600d97cf8d6ec6ddaa8","size":91828358,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.202-x64.deb"},{"package":"aztfexport","version":"0.11.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"1deb19cd102b06a8444878c2b92effc0fa6599d44118519001555136c6614a1b","size":9403238,"filename":"pool/main/a/aztfexport/aztfexport-0.11.0-1-amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.0)","libc6"],"sha256":"7be696a38a2b7c6c0d000678b8dc028d48651dfc409f9c6cfcb091b2b8604fa2","size":140842,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.0-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"16595bc03b136fdb2fe41c5a326370472452543e6d320f5c3dea04f8e5f66b1c","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.7-x64.deb"},{"package":"moby-cli","version":"20.10.16+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":59397,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cddad90c0641734a6d2914e2ae5c9ccaf101764c6301dc6ac2cb1c4d72cf22fb","size":10275940,"filename":"pool/main/m/moby-cli/moby-cli_20.10.16+azure-3_amd64.deb"},{"package":"dotnet-host","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"47eae0ac1d31cfe189c0d1b7b3d3804512dacd5bc198833ebfcf25710e6ad684","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.7-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70840,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.11)","dotnet-hostfxr-7.0 (>= 7.0.11)"],"sha256":"fa711a6984616fe99212ded1e724154711ced7a404e8488d346eae0e0ca7efc6","size":23210182,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"mssql-tools","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"17d9bec19aecf32db61ff9be63c51d0b5eb332965deacb119915d1aecc447faf","size":210584,"filename":"pool/main/m/mssql-tools/mssql-tools_17.8.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.19)"],"sha256":"b75917fef8f2599d1d589e0852f8d83a125f236d6223693a5d07dccfb52e1719","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.19-x64.deb"},{"package":"libmsquic","version":"2.2.3","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"834decab349d3505421a5fb3de2e75d9d28c540d6cf60d5d83c631f7d866695e","size":4576276,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.3_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.11)","libc6"],"sha256":"c5da373a2a75523c25dd212534c37ed6bb14054de2a174e3fefe32df6595016e","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403101,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.402","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"882135010f01d9e5910fa74c786791851b205b7968cab9146849169a06caba7e","size":108189490,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.402-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8bac3dc53fab2fbcaf0a4a9406e72934a9070698d7678bee05a3b720cc580b8d","size":10144,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015950001_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317508,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"fc126a9bb2987bfa6425e72e24d481e98d1fb80abff88558ec135a5b5a42c891","size":166575154,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20.1-1_amd64.deb"},{"package":"moby-buildx","version":"0.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76252,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"e20e3ad6da8f27a77ffd2026ad8c4895cbff849ed7353788178b62be1a948d3c","size":28218310,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.4.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120038,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"3117b7ff5601d415141163ca19a32a6eca87f34c653a3f9b8a9623948c01810c","size":26961964,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.212-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222404,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.212","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"d0310b6dd5b9f2ed3e37c534d2cbaedf0a8da4e1122a2c2b6976e95ffb5dc148","size":57384856,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.212-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71083,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.24 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.24)"],"sha256":"96893026ba8f5d7ed0365960bd2f1e9b4d915bb3e1fb910ae5bcc3815cfb648b","size":21933302,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6acec0ac75a21a0081b2000090c2e0dd9c79016e1d85e8eea6129e52eba3b87f","size":124360040,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4629-1.deb"},{"package":"mdatp","version":"101.52.57","architecture":"amd64","section":"devel","priority":"optional","installed_size":186593,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8fefc473943f5096ef74a41e2d1830f90a09e4cd96609d734903bab67fb1503c","size":54831640,"filename":"pool/main/m/mdatp/mdatp_101.52.57.amd64.deb"},{"package":"unixodbc","version":"2.3.11","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11)","libodbc1 (>= 2.3.11)"],"sha256":"c77073cc0e8c641e708d08f9e9360541d98c2d9b1cefce56791866f788bd329e","size":51530,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"caebc792731e03b35387c703705967fed4e7215b649e9c2cef74632f2e38c986","size":227774608,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4806-1.deb"},{"package":"dotnet-host","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"cf12c37d476d235791f785f1e62688fb3f2a4e59c81629b8d8b63e5bdf6fff34","size":32924,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.6-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8c3aa46619d36596cc6325c2e18ebe70611f34fcaeda4c9311e6ccf6fc01d60f","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.24-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"c1d0c68d3c49d41e233931a6298b2f0a659b557beb4a3a2aa4d306583a373a32","size":3509660,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312664,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.107","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"5698bf62dedf1a1ec22304245d131c274e75f494c78a7b387b8b7a142ce28e74","size":78043244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.107-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.814-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241067,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.814","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.26)","aspnetcore-runtime-2.1 (>= 2.1.26)"],"sha256":"e32d4dd6800c2075c20001828e4896d33759c5c4cad8840cfb5e0b0a61ff33c4","size":91748748,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.814-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71116,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.16 Microsoft.NETCore.App 3.1.16","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.16)","dotnet-runtime-deps-3.1 (>= 3.1.16)"],"sha256":"6f8196101ef19b12fa94c9db6642afb842172db9c391b764126b3567f06d6e93","size":21769106,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.22","homepage":"https://github.com/dotnet/core","sha256":"3d288e067550427b67057f24260ea8cbe2f15f7620aa9f4141f5836d848af2f8","size":42338,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.22-x64.deb"},{"package":"moby-buildx","version":"0.6.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59988,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"55d1b3342acb3451fdd1e8b4dfba53069c3f928e393235ea88349e1e0832462e","size":20975064,"filename":"pool/main/m/moby-buildx/moby-buildx_0.6.3+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.317-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331557,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.317","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e332d89262c096975451b24ee0330af9d96f3862d2088a6f322828bdeae3aa80","size":85292586,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.317-1_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"65f34ed79c6bbb46d6cf18e13dbaa462282b81e4b18bac52b2742099208bbd2e","size":155268560,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2796-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.28 Microsoft.NETCore.App 2.1.28","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.28)","dotnet-hostfxr-2.1 (>= 2.1.28)"],"sha256":"94d239c104eaeb8de96537448c51e219ec89585ebc13ff63f5626677a46df514","size":20814298,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.28-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.113","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"08b51645b7483e355d8560031b2705e4cd6cb93c3f0c37c52cc63fdbd7c3aad1","size":43818916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.113-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222041,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.5)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.5)"],"sha256":"7612ea0058043ef44665071f0360de87856353141e427390ee7181e219062ae5","size":57105162,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.202-x64.deb"},{"package":"dotnet-host","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b6ceccc4f0feb49b917b66af106c196c9407a5b57ed9b67b27f8aa92f2204c2f","size":32600,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.15-x64.deb"},{"package":"azureauth","version":"0.8.2-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"4a5f24a5e999a8a6c88dae58182bb1edf0259f0b5ef49e4b3d08e15384072bc1","size":24113038,"filename":"pool/main/a/azureauth/azureauth_0.8.2-1_amd64.deb"},{"package":"azcmagent","version":"1.3.20346.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7d8627f1d460601c10e472668a5e521c4af13f7df19aba55af96d1e453f748d4","size":18323922,"filename":"pool/main/a/azcmagent/azcmagent_1.3.20346.001_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.2","architecture":"amd64","section":"default","priority":"extra","installed_size":17616,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"e605e0cbfcd7061151efb24692097b4ab09ba6417b7a50bab2b5bf4496dce170","size":8349226,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.2-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-host","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7c9909580189ff3d3d91ac83c11dc3ec97ce862e652ca67ea6738dbf83eeb1bc","size":32448,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.20-x64.deb"},{"package":"msodbcsql17","version":"17.10.5.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"5a3ab39be1db72785a3f912c04d8e5a90c27fd7f628a413405d9b9033b84880c","size":749060,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.5.1-1_amd64.deb"},{"package":"azcmagent","version":"1.34.02440.1130","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"539864450190c5dcf44324c571a7ba99ed9ef4c74a99b9d97859c93213d4e815","size":54823178,"filename":"pool/main/a/azcmagent/azcmagent_1.34.02440.1130_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0fd87a5a6f9a7b63200abd189cb38286e8c58cd9fef34fb7ba0c028210bc69b2","size":270460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.12.2.deb"},{"package":"dotnet-host","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fbbe8b30c4b7c6c89119dcf4b59022cbb748466af203c2d5cfb8d8e6de55291c","size":55768,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.4-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.12)","libc6"],"sha256":"0842eef025ce499ec4ab04bb9b21baa16e7e4c92047478a1e2d2edeee7a9ea8f","size":143910,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.27 Microsoft.NETCore.App 3.1.27","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.27)","dotnet-runtime-deps-3.1 (>= 3.1.27)"],"sha256":"17394b210f5e438d273818dece094dbd34274b82cf7724b025b87b2cc20ae91e","size":22010700,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.27-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d5f98751774ccae04197b7d4932efe8f3545afda5dd309a8171805df6dabddd1","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017540001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175192,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.106","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"4639c629160639de7eec4619b4830e021b24fb0d30500f741b17d1c8dc1e604a","size":42924592,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.106-x64.deb"},{"package":"moby-cli","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"f735e2f6f437b7f03fa98421a70b79112f4c8b4f8fa1d209025b1bd0b0d2e70c","size":12121304,"filename":"pool/main/m/moby-cli/moby-cli_20.10.3+azure-1_amd64.deb"},{"package":"virtualclient","version":"1.11.5","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"45d2ac561ea209473e7647cbf18e544574b7a3c1d3b56a33c78709c13993b497","size":44774340,"filename":"pool/main/v/virtualclient/virtualclient_1.11.5_amd64.deb"},{"package":"azapi2azurerm","version":"1.4.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20908,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"0c6f68997ef36825f1e97b05ed227c8f12fecb3356029da3e10423c72b650661","size":6728440,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.4.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4604e1c0b284a336d13f9ec0182f3ad13c28360c6b76f441c9e66784ac6e36d3","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.2-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.817-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241017,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.817","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7e9ec00a9f124622c300510ce9bbf55857b4b03794f7583179f3c0f13a8ef02b","size":91745548,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.817-x64.deb"},{"package":"blobfuse2","version":"2.0.2","architecture":"amd64","section":"default","priority":"optional","installed_size":27889,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"2c59f5daab9808c18034460a5fbf417896af6ca6e6f14c293afd9dad408233c3","size":13168278,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.2-Ubuntu-20.04-x86-64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e440ee439dedac9ca32f22d071667983faeac58a7824679e8613b1f0615baed2","size":227762280,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4837-1.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68375,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.1)","dotnet-runtime-deps-6.0 (>= 6.0.1)"],"sha256":"b0ad2a9ef9c20650069f9df3f122406ac747aa5502d35d941a367a8c9b6691bf","size":22974272,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)"],"sha256":"ad5397ecbbc1ee438967c77c1d946a245a3d591d4427a83c3f54dc6d0fd597a3","size":5099424,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.28 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.28)","libc6"],"sha256":"bdc41745512364daa565cf6fa586fc3546fd8432ef70c179c31bcf5595cd8a30","size":143620,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.28-x64.deb"},{"package":"libk4abt1.1","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3328758,"maintainer":"Microsoft","description":"Dynamic Libraries for Azure Kinect Body Tracking Runtime","depends":["libc6 (>= 2.27)","libgcc1 (>= 1:4.2)","libgomp1 (>= 4.9)","libk4a1.4 (= 1.4.1)","libstdc++6 (>= 6)","libx11-6 (>= 2:1.2.99.901)"],"pre_depends":["libk4a1.4 (>= 1.4.1)"],"sha256":"0a507ffbe27b49127d53c265b9ef259d0fd993c30765fd612a1ef4054985dc50","size":1785149492,"filename":"pool/main/libk/libk4abt1.1/libk4abt1.1_1.1.2_amd64.deb"},{"package":"dotnet-host","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"395725e796a51348e6853245c06d0ec5b81cf038cbc9ebc4ec9f591f12ce7681","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.13-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a027e51a6927327dcd7f0e2ed2904119d3f474f54e1e521405cbbac79e619e2","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"34bdb4adc9be76d1496ff8281c4d66aed4ba8a5baf656fba7f75d9225d00354d","size":227764116,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4753-1.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"1e1b3c93eaa1f6fd742e7dd166928435d56ccce4217e1bbc6177f172977665a7","size":2567262,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.2-x64.deb"},{"package":"aziot-edge","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.0-1)","sed"],"sha256":"5649433a6fe9e89ec2fb4e9c0d2bb3979491d11c1bce35e7e8e018c909e15474","size":4203740,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.0-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.2.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17912,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"cb26d5cba1d1fa611dcf4f8dc7a5916bda3dd6b9077c4d91230b056e8c694130","size":3802656,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.6-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":175473,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38112c1586a450e87827823c559001662ca0950d580a611e3bf58e7b62791072","size":70114408,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb"},{"package":"mdatp","version":"101.23062.0010","architecture":"amd64","section":"devel","priority":"optional","installed_size":386184,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"55b7f08fa4748037e5f67c6ca844e289da69212b1c52b7e7de6ae9553a583069","size":133718266,"filename":"pool/main/m/mdatp/mdatp_101.23062.0010.amd64.deb"},{"package":"azcmagent","version":"1.33.02399.1041","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0306d2c2afa192ef8a6ed1d99aa34a59af54f88b20cf4bf9005316bcba9919ef","size":54719874,"filename":"pool/main/a/azcmagent/azcmagent_1.33.02399.1041_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11742,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"75232addc8ebe5da0ac7bbbf605f012da77390de8db6be5627c0c1d8fee7a858","size":1313808,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.9-x64.deb"},{"package":"msopenjdk-11","version":"11.0.11+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316734,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"57aa36a8dbde09c855491a13efcaf08cce3e3c4737f30683ed123e3b4f7896a0","size":193400792,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.11+9-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"e4f1574f7e6c0190741e4fad61ab8bcdf3576560688849c02f5b6a6e2600e855","size":2119388,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.6-x64.deb"},{"package":"moby-compose","version":"2.12.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"771e7aeb4360c19c59d8e341fa49388ca5f7368745a3ad70b48ed20554d83ca8","size":9661604,"filename":"pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":122255,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34b182d515b35049e97abe846e4e637fefbcd10198dcfdb12c342df7cd300dd3","size":33313338,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.4_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.22)"],"sha256":"4ff02ca997b12cdd067c268f9e173a5fb0383f7cb804b5458f460ff320b39cd3","size":5772820,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.22-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3284-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d09699e241214dd8462b0d0e1a52f6995d7c1d3fffb72926517a1a7d2d495631","size":208712656,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3284-1.deb"},{"package":"msodbcsql17","version":"17.10.4.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"31e2c8d37b011aa51d902bf14f5f7919e69fbe52ed350fa3a2e9b1e6c8fbaa29","size":744572,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.4.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350056,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.107","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"fc203dd1fe23030645b49fa957ca63bc80f3f14dd14c12a07be5ed5d08fe0e20","size":90663186,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.107-x64.deb"},{"package":"moby-containerd","version":"1.3.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126906,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a7462ad88c12cc2ec12a42cae20a13ed377751c459bd24864cd3bb2d9725a0b6","size":27655928,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.10+azure-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a4bb8a4d80a2c8bd3faac36527a945ff000ae68a31936645a711fa9081c3059a","size":1885604,"filename":"pool/main/o/omi/omi-1.6.12-1.ssl_110.ulinux.x64.deb"},{"package":"dotnet-host","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b478f09525bbacaa261ff0edb3e0faefc648861cd5cf1e582849cf2723a086c3","size":57230,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.13-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.16)","libc6"],"sha256":"92171aaffa0102e35a70d9d06d05bf47af94febe99aff6cb09c45f864289f64e","size":142298,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.16-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4426-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9367c0d31cdf86346a5404031e7e6641f43e2940ef39c4e40e358662f7c9e891","size":135350632,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4426-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"35da4e0bf4c9964644f931cf81c3bd6bdfa3dc1b2a1ccc4893cc3263ecb373b2","size":124424256,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4653-1.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"43d23398197e62254878b0dbebfb4192d6edcb529c898735fd127ee8bc2aba13","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.6-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"915a04a17975831a96837f44f068716a250b9cbe7c2911ac646c779825c2b3af","size":3519794,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.4-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"6fe87e736d18910d0fd815aa15aa0ca8c8d0c7fa260106a8d528d1cba940840c","size":2568046,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.7-x64.deb"},{"package":"mdatp","version":"101.65.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":209057,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5455c6d16c5a5aeceb81a3f17a3bc7b81cd0bdb0d2f1d70a3014c9ee3ad58b59","size":61280098,"filename":"pool/main/m/mdatp/mdatp_101.65.77.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"6270ce975a105d44cb78f6c9b9c1815027262173d03a8697f307b56fb250fc57","size":415558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020250002_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e77af1b8d2d5d5973cd7e633cb4be7c7ad4b994d59bddb890dba5c36c02aaf55","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319790,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.200","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.2)","dotnet-apphost-pack-6.0 (>= 6.0.2)","dotnet-runtime-6.0 (>= 6.0.2)","aspnetcore-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"1025e3b198f62a3624e66ea5b3c3e693ddb53ebedf8a74e56dd221f180bba9bd","size":80440736,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.200-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350086,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.111","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"420c6cbef880bde26abc7174ee4e182b764f04f02803425e340dcafdb1f6790f","size":90702250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.111-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"73608bb57c2aa9ef501d872841e7496c78bd2a8dda1b57a0271007e3106a0a96","size":135279404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4483-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"760dac7d7083b3f28b2fccaa7dfc529c6b71df58e70239c186da94b16d0f7d82","size":2130012,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":311307,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.116","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"70b59d15f436ace27bb104305b9986d4e9bfea432730e2c5d3d287cac1600f9a","size":78307442,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.116-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b2e8605baa0ace12a5a635924875fffedc8e73688d592758212e9fc6c3e23cdd","size":228284784,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4868-1.deb"},{"package":"blobfuse2","version":"2.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":31581,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1a0543ab79bb13a82781e025c48327af3dfa11c6df34ef4a86d08b8d137ce160","size":15604716,"filename":"pool/main/b/blobfuse2/blobfuse2-2.1.0.x86_64.deb"},{"package":"moby-containerd","version":"1.6.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"cd3059a1607539a0677546b39f4e57ab5287c36434e35e122dac8f0a108428d6","size":31522474,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbbfcba94cbb3b29315d952cf4f29a7012b6f46d12324aed88f56c9db039901b","size":52476,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.32","homepage":"https://github.com/dotnet/core","sha256":"92621393c0a814a263f3215121e9a9c722095c125f1f24939a43a56265ff706d","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.6.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25932,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"526974e4a68abb33b24b36b99fa42a886ea332f1c2581f71dca0b998f35581b1","size":6564228,"filename":"pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87d355268b192b05afe470e50bd08a6d88145a53b4ae60dbaa21c677f2eedc01","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.14-x64.deb"},{"package":"libk4abt1.1-dev","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":63,"maintainer":"Microsoft","description":"Headers and cmake files needed for Azure Kinect Body Tracking Development","depends":["libk4abt1.1 (= 1.1.2)"],"pre_depends":["libk4a1.4-dev (>= 1.4.1)"],"sha256":"e04028542d35fcd7d3db2343227afc8e44f3bdc856dbe39eda0f14c31841d55b","size":11314,"filename":"pool/main/libk/libk4abt1.1-dev/libk4abt1.1-dev_1.1.2_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.31)"],"sha256":"90c26a2bd56961ae41a6efcaabb3a0531cddb8f9d160d9a490c1c4863e4a6e9d","size":5772724,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.31-x64.deb"},{"package":"azcmagent","version":"1.12.21299.035","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"1d51a95cea00deeba08e8e375e35cc825473c370dc8190bfa00dd8c6bb8b1c5b","size":49869060,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21299.035_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.3)","libc6"],"sha256":"8985e06ed129ed00a442ecb28947c0f09782607633808fb2389c5f87f7bbf04a","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.3-x64.deb"},{"package":"deliveryoptimization-agent","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"2418758faf92cb4bf8879b592100213d6f2943c38e0713080ca1937145df2c4c","size":162138,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_0.6.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.12 Microsoft.NETCore.App 3.1.12","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.12)","dotnet-runtime-deps-3.1 (>= 3.1.12)"],"sha256":"9bfb94481c3dcb25abbffdb6d6a62d6519e5e27b285df328f754ac5a857cba07","size":21905222,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.114","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"d87754f9c437e4381313f3038ad558108e90bf1bdb3ea853701d085f2b64a51e","size":43875266,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.114-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.615-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237152,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.615","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"efbe8596983b759748d90f8700ab6b5d336beeb78bf8f9b0bef4952815fc650a","size":90796912,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.615-x64.deb"},{"package":"moby-runc","version":"1.1.9-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13373,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"provides":"runc","replaces":["runc"],"sha256":"9f6f3d00f1615b8859b1295852d27de3ec1cdfc78a9dad5b0911120c9ca11145","size":6707904,"filename":"pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d8c45cb378057394ad53edddb0a970025ca261743fa4621687c927ff5a445edd","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.73.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":274981,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5759eeb478f8225529149dd0891eb9f14d8ba47e8995590890d4de15964649c4","size":110911854,"filename":"pool/main/m/mdatp/mdatp_101.73.77.amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"recommends":["dmidecode"],"sha256":"4a101dc3b973bf0346fb74e616eb8b0bd0f152e56ce9719044797161c87105bf","size":522226,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.6.2.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":85899,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5a3722c7d132a27f557a004f4e40f96b417a5eaca4ff370f60ba44893e9888da","size":20423424,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2ce36274b152224ea6864bba49bf799c495f71fdc72c940cc76b143e5c2ed48c","size":9775330,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"blobfuse","version":"1.3.8","architecture":"amd64","section":"devel","priority":"optional","installed_size":33217,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.8 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"ecf0fa02ce55d860413a66de453e7c6b795379e7fb5c0ec2b38f4ac49bc70a5d","size":9492388,"filename":"pool/main/b/blobfuse/blobfuse-1.3.8-ubuntu-20.04-x86_64.deb"},{"package":"libiothsm-std","version":"1.1.13-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"e96bda6606c62fc82f3e479e3fd5b122a2ba55f9c8f10d795fe80ae8472a4ef7","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.13-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312610,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.105","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"633cc12c08795b939f67990b8677cbd693cede30ae09bbbd6bfed6e7397070db","size":78307244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.105-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.8","homepage":"https://github.com/dotnet/core","sha256":"4c6e03f5f8eca555a2020828204c7fedfee30fe0a4f22b02c1f251b5929aa05f","size":3399676,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.8-x64.deb"},{"package":"moby-cli","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70473,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6fe21617935a2cba4192e620a560ed7c320c9a83bcf09e1e3693083e13f56bf1","size":12149140,"filename":"pool/main/m/moby-cli/moby-cli_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.315-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331510,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.315","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"042fddd433534b98b33305082873f849468056d4a226d1d1addf226c19a95b82","size":85195842,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.315-x64.deb"},{"package":"msopenjdk-17","version":"17.0.1+12-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323380,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"36a5d50656f0bcfc4aeca6a388c924e88d47a994afa12470e24468f30b0cf90f","size":191722368,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.1+12-LTS-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189502,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"65956ec977a78d78aa4bd9bb4378fc0b4c3936c31f1da92c132211a86cc61630","size":48157850,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.401-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.319-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.319","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"385918a9f7fcb909bcab0f0a13ed6db6edfcb35a41f9123105495331ec28bee4","size":85294962,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.319-1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.2.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge"],"sha256":"ff240391cb2b7a0aec117e660262566509c71509b453620154aa98782c9a5ae8","size":236224,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge.deb"},{"package":"aziot-identity-service","version":"1.2.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17916,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"d857ac4eef5166fc531266c2e25d8c0f7b170819bb458f6853d63ede5cb22dc9","size":3805296,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.5-1_amd64.deb"},{"package":"msodbcsql17","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"f5562b6bc8f682f0f341d13700ae0d448276847c5de097fbb9d4c74943f1076f","size":743398,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.1.1-1_amd64.deb"},{"package":"moby-compose","version":"2.1.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"950ef8246e468ec4910f7dce964cdd19c350a754aa5317eda07bda99fa39e5f5","size":6293952,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-2_amd64.deb"},{"package":"azcmagent","version":"1.13.21320.014","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"5a6e6160af4077a337699916ebf1d45cf37025650f33dd910f0459d24af2acfa","size":49774358,"filename":"pool/main/a/azcmagent/azcmagent_1.13.21320.014_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18524,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.0)"],"sha256":"53f1e28fcd0f39d4b3aec9d7cd494e9003cdb6577017e4c45b7a837320a5adcc","size":6073980,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.0-x64.deb"},{"package":"moby-containerd","version":"1.5.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":124211,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"dac49f1dfa10cc76295d563ac4fdb6790c561a8952832cd9a4778a8f2953e583","size":27576204,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.9+azure-3_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.7)","odbcinst1debian2 (= 2.3.7)","libltdl3-dev"],"sha256":"dc575321dac251eaac96ebfa024cbb2605cec279a4baae176529be97ae61fe4e","size":37052,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.7_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.4.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323717,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"23df3c1a4b3bd9218632b828765cdecc49e2143f4969496df164dad9521c060f","size":191756484,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.17","homepage":"https://github.com/dotnet/core","sha256":"a417f24d032b7dc9111a61d71df2dd1232cb5c78b6e82380a515534aafa20181","size":3429892,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.17-x64.deb"},{"package":"powershell-lts","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"75a1204f0853c30057405dca9f725fb28d2a6114c217b501c3a541d1eaf5ed92","size":68396144,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.10 Microsoft.NETCore.App 3.1.10","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.10)","dotnet-runtime-deps-3.1 (>= 3.1.10)"],"sha256":"8998f609a34cef36b14e6c4aa6d85e25f99f70c88ef78f2586f45fda3c564c2e","size":21832770,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a86f12817d94c2ec721af3537e3ef92a4371d81bf96232dbd99543b1f0648988","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.2-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324571,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6d5a05b672e69cf7be78aead401c16068734af4d9002498ab6514bffe40490f7","size":164951794,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"ad64fd258860d079afd1c1784867be30625a31cbe09438a1102791ca085fea79","size":1306464,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.3.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":404208,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.400","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"4e1bc6ef9e5e0ec0a04ddee9c971b97087e6a9a0321ced9b4a872f2bcaac5270","size":108340086,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.400-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.9-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4510,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"1f02fb4b8e31154f9f44850af306a922994f18c8a5365f878da27bcbb8ddc98f","size":473350,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.9-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.120","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"2b0127f7334f7b4d29f4fd582d7a376cd3df021652eb5a8c2791cb60b45c66ca","size":78857458,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.120-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.32)"],"sha256":"b30812c75afd7ecf71f1c7369a474d066e00a208b4f6ed41f09c8722e82ec446","size":5772914,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50205,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cdb161b6e83ce7d0369120d876b1fbe92034944681d862ded2292bb971bfc1ac","size":9779402,"filename":"pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-buildx","version":"0.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66611,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"7237fe48a538cd9f08f5482c5f3e1a3afc0c1ee6dd302bea3f3b06e7c9ab5fdc","size":23640920,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.3.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172243,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bc7806942a6f28060686621bd922df555e61e11b00d5205896baba251ffa5b1f","size":69177584,"filename":"pool/main/p/powershell/powershell_7.3.7-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-3","architecture":"amd64","section":"java","priority":"optional","installed_size":318628,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"03dea1e256a822651b96db15d5ccaa92d74f70e118d670dba0f3249a156cb92e","size":167149714,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-3_amd64.deb"},{"package":"dotnet-host","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6b76d623e1e8a5867b635c656867f9b6df17f8b5dfa1c37f66265cd5d27f526c","size":36544,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175210,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"2dcf56dedacb98bc1f661a8c35fd818c14b348ab5ea6f2d984f3d480806e44b3","size":42839214,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.104-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.101","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.1)","dotnet-apphost-pack-6.0 (>= 6.0.1)","dotnet-runtime-6.0 (>= 6.0.1)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"12cef00f2632158eb8abb3134a76f3f03b644099c98f1e2ad947a89991a48582","size":78065748,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.101-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b71bb09108f7f90c47f7aa12647eb4b294adc990880eb2d87e7c7451af205b76","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.9-x64.deb"},{"package":"aztfy","version":"0.7.0","architecture":"amd64","section":"default","priority":"extra","installed_size":40620,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"23c48caeff05fb75c9486bf0685620a773ec46ec9d6263ee28670f19bd09571e","size":8353910,"filename":"pool/main/a/aztfy/aztfy-0.7.0-1-amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70836,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.8)","dotnet-hostfxr-7.0 (>= 7.0.8)"],"sha256":"ce1576434204df98a773ce62ea757b06997a110fea7d50720c6b39a5c0476337","size":23202254,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.8-x64.deb"},{"package":"blobfuse","version":"1.4.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":34742,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b4312aa8d8765031712e012b8ce36e87b66cb1295e276801fd69c47c85c2f877","size":10094342,"filename":"pool/main/b/blobfuse/blobfuse-1.4.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.6","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.6)","dotnet-runtime-deps-6.0 (>= 6.0.6)"],"sha256":"568ac6b27881ced8198b39bdf885bc864d07fe5d629356ca135cee3d4570f983","size":22760148,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.6-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"21aeb934942572b999ebe59d74ad66f42ed592ae2e81018913968c84a13cd557","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.12-x64.deb"},{"package":"moby-buildx","version":"0.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68426,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"20c7e33d3598ae3dcd0cd0bc127e554fefd1f1fd792bde4b0b29b214a1135017","size":25559006,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.2~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"a810af35585da4c42b563a185c8865f73aa517965d9dbb987a33c94c15fd6a1d","size":1648772,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.2_public_preview_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.27 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.27)","libc6"],"sha256":"701e89dbf39e921a5118d3fc3fe168c913bfc509006ee81db507dc5765f0dbb1","size":120786,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.27-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"1689060a6209de074a7ba1ca61658d7e7fecdd4ecd8afe241a1085ad1d2fb56e","size":3510004,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189613,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"0901442238c2d98efa877e9e707b593b2b38fc553ff2aa0d6f0ac8fd6450029f","size":47898062,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.407-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313389,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.110","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"675b0ac1cde55eaa4e5b917c32c32678076614f15a28d7854dcdc2f52a8ce652","size":78476464,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.110-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"da99f73d57adcfc0ff5cfa713f52f6dbe3d6198f6a996e481ddd1da183f77221","size":157183124,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5348-1.deb"},{"package":"powershell","version":"7.3.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196907,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a99e9fe370b0d9c05c736fa81521d32375ddb418ab75c76d9d0a14b4ce3d3df2","size":71728570,"filename":"pool/main/p/powershell/powershell_7.3.0-1.deb_amd64.deb"},{"package":"mystikos","version":"0.7.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"370fa35bb30e9919d98c900077cda8a212457ff740888d990e92793e1a2697f4","size":4280430,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.7.0-x86_64.deb"},{"package":"azureauth","version":"0.8.4-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":75617,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"79bd0a12a3bad516c7511db2f08232f7313501ace0785f85ce2ac6b385d2244e","size":24635978,"filename":"pool/main/a/azureauth/azureauth_0.8.4-1_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d038485c6f83ac8259778162feda60f6d9a3347b5292320db645daccdd375731","size":20686374,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u3_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":9056,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"1cba16e3b307177cbe15bd3fd8a2a87ab8d638846988202be8a17981b5e900c9","size":2747798,"filename":"pool/main/s/scx/scx-1.6.8-1.universal.x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2723,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"9d775e854e8f618f437e1c5124ef753a7687852eab28430f7f668e27ad87245c","size":681884,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.21)","libc6"],"sha256":"310e219c7383a2a6b98e541ea0458296c6eb4fcbfb80d9d9ac9d5a1f27d0c437","size":142420,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.21-1_amd64.deb"},{"package":"mssql-zulu-jre-11","version":"11.43.56-1","architecture":"amd64","section":"java","priority":"optional","installed_size":116708,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"dbc40163338219bedb88ada68302d9b89f0896251ef5e8f853a72abe86a1a4e6","size":40354792,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre-11_11.43.56-1_amd64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"69a1f6ffb194e386d3282c0d40847cdbc4a482a644c5289aae1f55f3d6d81ca1","size":10877658,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.118","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"8a7c3ffef5add57f593f7d903c514c118c45802f4590aaf2a39f7caf082e2eb8","size":44333922,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.118-x64.deb"},{"package":"sysmonforlinux","version":"1.0.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1)"],"sha256":"aaa94351e6626aa059e19c950c98bb078981268f0f77224eed46ef0d7b0773ea","size":225748,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.0-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13091,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.0)"],"sha256":"722f7d8e829269206ad71047ae84a13a9061a5d53f3e22fdfdc447eec19016d5","size":1526164,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.0-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.10","homepage":"https://github.com/dotnet/core","sha256":"f64503f74d2f6318966bfba4d124cf7ca087d3dafd56de5e9d72a5b575ce93c9","size":42400,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.10-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3233-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a161bdc4fc21f41312d5661573d4b6d055c3d8d9c3efdf0188b1240d9ba63f55","size":208751136,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3233-1.deb"},{"package":"libdeliveryoptimization","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1513,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"31e14621381b9f382fa30382bdcec3102f231b653fddc6426c995338eeb4c896","size":156484,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_0.6.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.12 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.12)","libc6"],"sha256":"caf03000692ae0e1e3255e34a6ba9d926642f65a618badbaab7e89b2c2b43dd7","size":121046,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.12-x64.deb"},{"package":"dotnet-host","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7e55da6f87aa87547fe6feb6bdae72ee2359d2db46ee35b86e58209fd951116","size":55976,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.12-x64.deb"},{"package":"azureauth","version":"0.8.2-4","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"6c67ce3cf97d82f6e014377d4a49426b10d0e725cadba7d868639ebec42d481a","size":24118762,"filename":"pool/main/a/azureauth/azureauth_0.8.2-4_amd64.deb"},{"package":"kevlar-repokey-dev","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-prod","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-prod","kevlar-repokey-test"],"sha256":"609c344c64cebccbca2a92d43b4284e5eafa3eb2135392e53f5b483e5179c7c7","size":2494,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-dev_1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3734-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3a0353ce615bd205a150e3bae61a3f8a851355f650d262cbbda6209a6ef35a95","size":209935436,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3734-1.deb"},{"package":"azcmagent","version":"0.11.20231.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"3cd72bd47a787bf6d4075d4ae541f48e93881e76a0851942fcf6ae51862ac61a","size":33039918,"filename":"pool/main/a/azcmagent/azcmagent_0.11.20231.010_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4aecf95e06f1d933e3c502fc7825af8dbad329c9fd5289bbdc8c3091a964f90c","size":2690,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.23-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6a1ddab72b597a0d7224031b5e29b74c38fb11cc57108f6decb5de0d71ff53a1","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1642.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","lttng-tools","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"4ba4bbfd1787ff0c8e0f611b01778fea768efe59b9d280c7d0ed51e39e0b54ac","size":219899262,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1642.1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68312,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.0 Microsoft.NETCore.App 5.0.0","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.0)","dotnet-hostfxr-5.0 (>= 5.0.0)"],"sha256":"bee07a7b6e16a0a65cc6bfc6c26ecec403aebf22cc02379d8e9d88b00b9662d3","size":21522046,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.0-x64.deb"},{"package":"mdatp","version":"101.23082.0006","architecture":"amd64","section":"devel","priority":"optional","installed_size":411033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"e80cb3c420998be4370f6da7724a335bf7a233fe9fe09fd85b15f10e6a9ed519","size":150359494,"filename":"pool/main/m/mdatp/mdatp_101.23082.0006_amd64.deb"},{"package":"servicefabricsdkcommon","version":"1.4.2","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric SDK Common","depends":["servicefabric (>= 9.0.1035.1)"],"sha256":"547885035e4b4811ed5bb2868869cb8eea6d64c5922a6779a0f4890bc423c61e","size":16460,"filename":"pool/main/s/servicefabricsdkcommon/servicefabric_sdkcommon_1.4.2.deb"},{"package":"open-enclave-hostverify","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"990276df2b07966cfe0808e7ad801a6d453774cec1fd5a2df4e4bc7452527911","size":854534,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8e8c6cc973ec8b33ebc1998ab7a3899edefd8292a91cf644a4da89117951f09f","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.19-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.421-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192852,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.421","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.27)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.27)","aspnetcore-runtime-3.1 (>= 3.1.27)"],"sha256":"7025fd412711f46edf16bacb0093011fb4c2ebcbefbce2a2e624a1ce63ed3c0b","size":49770728,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.421-x64.deb"},{"package":"procdump","version":"1.5-16239","architecture":"amd64","section":"devel","priority":"optional","installed_size":10616,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f38e3b29309d220c4c57729c3ec9ddad737d1d38c56387e971e55c6440b67f53","size":1625738,"filename":"pool/main/p/procdump/procdump_1.5-16239_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89518,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0accbbc7086ad733257ccf991a181302d7e7243b99aa663f856424ff56885461","size":82560948,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"730c784e1cb207ac9dd2055e7beb46d669395c64acdb1c0cf0587123189d51c8","size":158749964,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4895-1.deb"},{"package":"scx","source":"scx","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"da87ad658af6fd2be3e23de235f8a037e04f62fca9facf4890dbe3a8c8f211ec","size":2588282,"filename":"pool/main/s/scx/scx-1.6.12-1.universal.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330672,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.301","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"bbebeb9d409cc8531efee42c19ef31cfacb4163b1e0c9c11ecf9f64def2e9d7a","size":84510338,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.301-x64.deb"},{"package":"dotnet-host","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"35fe3c54c617ca32833454137accc1b1b5200f0525eafffe5575af9eac22ac06","size":32904,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.11-x64.deb"},{"package":"azcmagent","version":"1.27.02238.691","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0d3dba479960e05eb81a9adebab11eb5cf61f8e5c3b499db8e3b9d482a5c670b","size":53707946,"filename":"pool/main/a/azcmagent/azcmagent_1.27.02238.691_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"692c946fe2e041723b9ec97a77b6ce6c81c2a04cbaeb7c97625af9bef7c80235","size":2388,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020320001_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"56c6333632b1a4a16d5bd3dcdb6a7e9326a5fca99c06b466a18f46e2e9ea574c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.17.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52651,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"651e08385f1d09502042123169438defa3c6c0bdaffb6b9cb6a324e6e25230ba","size":10854258,"filename":"pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"7b71596ff75999d5eac2af059d597b48c370df332c2bebd4e813767ac68afac0","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.0-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.30 Microsoft.NETCore.App 3.1.30","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.30)","dotnet-runtime-deps-3.1 (>= 3.1.30)"],"sha256":"748af674ef3158330159ad766e13fe2e50df9f864053831ede774f22be9b5b8e","size":21656458,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.30-x64.deb"},{"package":"dotnet-host","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b1d34d47a7db8898824408b0cb2c83f2e17647a7ad2df8fd74df7bd7fbe8e646","size":32930,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.8-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18556,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.4)"],"sha256":"5d1c630d1847717c950f9c79d5bbf7d90de4e800b8999f679082e5dad9d8038b","size":6086556,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.4-x64.deb"},{"package":"servicefabric","version":"9.1.1388.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"b83b57255cb013301f0e4798e7e3dff853cb34f5b0ac61c29b4fdbdeed118a71","size":219279812,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1388.1.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21340,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.5)"],"sha256":"fb030c9ded8cf60148ce5fc0f70958a865fc3691eb64226213ec36079e77e319","size":7053294,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.5-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":66359,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ebf6160dbc40d51ea19d6b0a9ed941e809b3424f45452c644b761000e97c5319","size":22808628,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-2_amd64.deb"},{"package":"open-enclave","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":122315,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"77f2429e1d616d9403fc51ac662958f18a244c93ff4a1a24baeb965060bf4bb9","size":33343372,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.5_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120082,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c36cef2558aad2d83c60a22f700db49fce9d4637564665dd45d2c45c198c988d","size":26953884,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.5+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"957c2861468f1e1391ad3de2f030653600a07b1bec8f1e5dd06e4af2b7a2848d","size":5745714,"filename":"pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"9d5454c1cdc84def5bdbe93f3388c7183e81e53560114aaa220cf7a14bcb995b","size":2130310,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.20-x64.deb"},{"package":"dotnet-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":28828,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"4e02a0426e93fe860fe4a3f4496da2328fc7a827e66bdab3f84f0d1d859b2e8a","size":2086486,"filename":"pool/main/d/dotnet-targeting-pack-5.0/dotnet-targeting-pack-5.0.0-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.515-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228795,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.515","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3e21d2673d8ce6b4a4078091bc8c26051f2cfc6b9e49dd7758076d7facaef06c","size":89292452,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.515-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.1","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"e1d2d1f009afa3d6da5771c4888dc9a249944c1d331efded61486ffdde1b3d93","size":79756342,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.1_amd64.deb"},{"package":"powershell","version":"7.1.0-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174304,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"09ac03bdcd7c74a36807beca62eb4ccfca690be1dc3936ed08a7b8f14fe0cff9","size":68242798,"filename":"pool/main/p/powershell/powershell_7.1.0-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"446dac739f22121c02204f78199734069801f71568387b3435ad373987370ef5","size":59115640,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.408-x64.deb"},{"package":"powershell-lts","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"d7f432866b4da70a8e0ed7e2221c165406f2e04f2c691e69960ccf85aa53ba93","size":69388194,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.5-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.12+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317079,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"a54d8a5bd2786a883b9343909ca99dd7a7f22b26d24b52fbc5cb123d01a6ce96","size":193554082,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.12+7-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.7 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.7)","libc6"],"sha256":"3f8dfa80dbdac5db78ede515af8dd60d39f6492b96b122ce8a0ff0b118e5ecc9","size":140236,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.7-x64.deb"},{"package":"moby-engine","version":"20.10.15+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"dc6f35674c5ec41af4a03ce023e3b5b8e33f1322157fc78d33349820d1fc8b21","size":20926260,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.813-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240919,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.813","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"bff9e10d3dc9c4c99e5aa234fd2c6b187dec616be823d22ded8165f9680f43d5","size":91632412,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.813-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b6bfa17bec9d4b4ac9813d4eb615239966c224d7db7019550c07fd5bf22abc73","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.14-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.25 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.25)","libc6"],"sha256":"e5e623e0673d0cbc3fdd49dfc2e50babafb3b06a33b4365c3b3e9d97553d7ca2","size":120760,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.25-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189455,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"c17e3c941a3ea084d7eb47af90856eebe858de6a41ebd42e96fef21be3531573","size":47879916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.406-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"48a9d825c07a0f1c138ba6a60050c6719925d44b23cd0e32ed34efda554ebd01","size":152285536,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2628-1.deb"},{"package":"moby-runc","version":"1.0.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15169,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"1ec023e3176b21673b5d38f1cac01ab03ad5d245aee354cdef593a1c82092f4e","size":5339204,"filename":"pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17438,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.5)"],"sha256":"e5762c7d694afeafbfa292c97db318306e26fb20a68252e07934511ab53d6d4e","size":5760232,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213479,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.102","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.2)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.2)"],"sha256":"9a82f517d20c03e91eef89b195dc1cc52bae32a1bd4cb01a3db6bfd51ff9bce7","size":55237992,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.102-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"6240db10ea11860356bb455e0895d9862b7678d19737af4de7554eb83d333bb6","size":1000112,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.14 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.14)","libc6"],"sha256":"b1c1bfd55d24df9257d564346e385acc3bbc562899413c3712552ed9efe70bf1","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.14-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.3)"],"sha256":"2252e98ccca6ed8790f8007dd8118f8999d6b4ca7be41ca3bf46fc0f8fd66f22","size":1518038,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.7)","libc6"],"sha256":"fb83c49522ac9748ae6befed061b663011abed5cb031e15d22215771d30b170c","size":143966,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.7-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124805,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"07580974546b886fe611343f06359f58b43e3e3e0fc650ea839554ef7f76a955","size":46699494,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.4-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21363,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.10)"],"sha256":"4669c57ac123ea1f3d772bec04fb2468527d68d6783809ba4b6e7a137e9ba94e","size":7062470,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"dotnet-host","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.3","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c86af078631884cb8aecb055ad37570c49a2de66672df4f4ae9ff574eca4331c","size":57350,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.3-x64.deb"},{"package":"aziot-edge","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"0700e703b2373ed90c158783af14129f06c273d147401c5e2c8c752dc66c1f85","size":4204432,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.2-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.9-5","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"1f19bcbe826ba50f0796936df7e8caabc708a3fa075ce3558363a1f4672439fb","size":12514,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-5_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.5 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.5)","libc6"],"sha256":"c1d7056b143df44b476ede6a69671e4c09b352c6f984264f61a9518a01957a85","size":121024,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.5-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.6)","libc6"],"sha256":"7f249c085c34dd797a6aad06509714992d2f48a8452798623ead69194429454f","size":141988,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.6-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175188,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.105","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"03c9b1da04c9e0c2f8f362873bd56a357879a93192882d13ad1f89b449ddda83","size":43698950,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.105-x64.deb"},{"package":"libdeliveryoptimization","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1514,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"b70bfa739e450fb29a108e9790bcf98c1d001495175dcd52b4e8c39382394b96","size":156992,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.1.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e5b7ce564750f50a1aa6a99a4a5af8ec44e8aca36ed7babcc694282c47b7f7f2","size":36488,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.28-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.27","homepage":"https://github.com/dotnet/core","sha256":"9aff677e4984e24412ef2d41c7ee1bb5853d5a676724642090419f618ae32612","size":41966,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.27-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.4)","libc6"],"sha256":"868d65aea8e5f2dc487d5f3bc1f6611778a5193483f10f401bb3353dc82d9ce6","size":144018,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.4-x64.deb"},{"package":"mde-netfilter","version":"100.69.52","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"6e00f07a56be4097b9ff86ab3257017811d1b6f6bf121b69b53a8d6c06042c36","size":24430,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.52.amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"176e5dcfe41ae8e829b78799b22f2249c3f11aeffa831643c8e4c089e533366c","size":2124774,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.5-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"21cca571060049374d892dae2996cf33064b441631a5f0384aa917da4a518a7e","size":838580,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.13 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.13)","libc6"],"sha256":"3cc503e7a916ef558185f59e36ff57a855421e1684c291357d125cd26e9a9d32","size":121130,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.13-x64.deb"},{"package":"sysinternalsebpf","version":"1.2.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"b0c82c448966603c0e472e7227b51d8c02876cb2f62f5e6d501cb6dd50d02fb8","size":715290,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.2.0_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19862,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.9)"],"sha256":"14e18640740f852138cc60bd0f5c34d9d136f225b7a249e682ece80e9f2d83bb","size":6608408,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.9-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350037,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.103","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"a510a1e1ece4d989d4afe7c89015ba3771e42277139c0b84d919bf58659178f8","size":90608242,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.103-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.4 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.4)","libc6"],"sha256":"49d45fb8f2e68e35064744b9c21633a5aa87e7f451054936867b7716ecda0750","size":140852,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"586b47ef09438c1b2cd2b493d4947d861756b44d0183d0f4396c38f98df4b6a9","size":2794,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.13)","libc6"],"sha256":"532d2fa2dc9c1b2076010d25fcd7a89fa3a37a8134f8530c58894438aa751d8a","size":143994,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.13-1_amd64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"850b005a6cff5e198e0dbceb4a06793ad9777d97a1ba8aaff6647abc1d23787c","size":9652638,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"procdump","version":"2.1-17009","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"13f33965391c2baad2dcf171aa1ff79bd0f7c6e7c0a541bd18ea6d2ae73b488f","size":1649046,"filename":"pool/main/p/procdump/procdump_2.1-17009_amd64.deb"},{"package":"moby-containerd","version":"1.6.19+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1f9e70df328d8cf6ddddc456035eaa23c6bdd22fff61846b67c1079b98afc4a2","size":31449582,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86242,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"170524326ebefe90fb0cf12222d1887bfa0920c219ac15971e211c01d8ed9780","size":20510486,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88c81dd2fb63b2f5b9161b03e3db1f8b1569d3e5e7f419a958dc4a4dbf05461f","size":58314262,"filename":"pool/main/p/powershell/powershell_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"az-dcap-client","version":"1.12.1","architecture":"amd64","section":"unknown","priority":"optional","installed_size":949,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"31cdd52119bf90c8e93bfb420a48b07d7153b1109d62004451d78e96a646cb85","size":161772,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.1_amd64.deb"},{"package":"moby-buildx","version":"0.10.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"442ee6a05061d6d597fe04da223f68a3a0ecbdd03cefc293e7d8dae6293a3a76","size":25954582,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.2","architecture":"amd64","section":"default","priority":"extra","installed_size":16078,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"0df8998cc932b73a6ab74b9849a399e23d333772f47d1cd4d83a41e986202a20","size":4117900,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.2_amd64.deb"},{"package":"mde-netfilter","version":"100.69.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"1a6ca836ac97681f0fcec4088fa942783ec22b6e5d58be5a4adcc867301c8968","size":24434,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.55.amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"82d9ce5ab6130a8cf34ea3f04b636fa3b634ed9f1b518dcb4f34ef8a60e92b22","size":485622,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"83a0ae16d28a9c8822a7df6ad9d9b2f0e8a03a6b27f25487d3a341bfa4b0d1a9","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.28-ubuntu.14.04-x64.deb"},{"package":"azapi2azurerm","version":"1.8.0","architecture":"amd64","section":"default","priority":"optional","installed_size":70084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"f25bdb7d081fc4f4adcd6621926f8cddffc9a2248c30b46e6cd568469828eecc","size":9666182,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.8.0-1-amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"eda276458ea8423b699448a0009d7474ad47a0cc93886df47dd5d88780a4fcab","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022300001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189450,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"feea21e813e5f579221f266b87e6f55b3a49b35dd7dddcf1a54216d4f2a6921c","size":48035314,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.405-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0566fd72c633ba531b52f13b777579f056bffceb889bbf667a7b58278da3ed76","size":227697024,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4727-1.deb"},{"package":"moby-compose","version":"2.15.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"c0747669c5cf76ca6c8d31d73f726666d9a167d09bca61d25b96b858d5e5efc2","size":9668570,"filename":"pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71099,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.26 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.26)"],"sha256":"d58bbf6fa31169bc9e7965f75e6d1b403d13d2a0a564b2b9773b5d8e95aaa18f","size":21943940,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.26-x64.deb"},{"package":"azcmagent","version":"1.14.21351.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"929e5bbce54aaa08d2e9ea8026ec473827a0130b585fb9433250793e247c36c8","size":50495490,"filename":"pool/main/a/azcmagent/azcmagent_1.14.21351.009_amd64.deb"},{"package":"libdeliveryoptimization","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1501,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"af3ed5ab44fee987e86154358576b01369a18467c5361916d81b0704f90a3dd4","size":156634,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.0.0_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"42645637bdc5e5cbf71b83bc6f5ab80fbc0c8d1ff8b293060c106ca064b7f6d7","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.10-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.5.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89256,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2438b186365c527f546c59e0e3a5c660c431739a12026ad89c2e0acad56ce443","size":82330362,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.5.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3ec86621b0f80d91ba828774a3f0200046ee14b27046afc64f71d7719fc22e42","size":124473264,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4704-1.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367122,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.307","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"0dd6e99a413ea41be9ecb5d1815c41f19850d198911ef9d555f0fcd54e4cb7fe","size":96591194,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.307-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3442-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6f4924c5a51a13f2a01ca9f57ec4b8e42f2625f11b9959277b353d58fc031e57","size":209376948,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3442-1.deb"},{"package":"azcmagent","version":"1.25.02203.601","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"633d248a735db74f851d802144622a5cba9888a8c9741fdab3d72d0ace467940","size":53677954,"filename":"pool/main/a/azcmagent/azcmagent_1.25.02203.601_amd64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124219,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a97ea99ba9cf7972a17ef85142fdcabe17b065b66e2c62b778bcf1a5c05942bf","size":27591168,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-1_amd64.deb"},{"package":"mdatp","version":"101.85.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":294233,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"6b594c091b2e04b72c82656b7dfc54f908268b9ceacd0adaf96bac3dc7f171b6","size":117375540,"filename":"pool/main/m/mdatp/mdatp_101.85.27.amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b5c0552f571530933268426827b82de3c5a7e2c5d7a6cb1ddddada110a1a2cb7","size":166011704,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2936-1.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"1416466bb4b4c601800a49b5c6964425787f8a7952a26d8ed3d480c563904e85","size":25957390,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u1_amd64.deb"},{"package":"az-dcap-client","version":"1.11.2","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"cb92041be615d8ade85036d7de605278bd7188bc5c22947f03fcb85685a5fb62","size":154040,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11.2_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.21 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.21)","libc6"],"sha256":"22ffa22a05d7aa611d2ecf6ee2165ac2bbcd2e6c2b99ca2a3a8f5283174ea5dd","size":143556,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.21-x64.deb"},{"package":"msodbcsql18","version":"18.3.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"526caf38a98d0f850975cb728a670702e5e60b31f75c87234f298b08f3b34990","size":756482,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6869230ff316720ef8a2729482a976f0289f492feb631080d9fc15226700bc38","size":227641572,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4626-1.deb"},{"package":"msopenjdk-17","version":"17.0.9-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324191,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"4d02c06a12e5808ad3a512bb10de1c3290ad7ebcb57fa0b08bd5d83e1aabc92c","size":164729206,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.9-1_amd64.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":13389,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"95eaff7c67998b27fc830d4526ff639c696649653b2c321fb3eaa80569bbd4c4","size":5767202,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.9)","libc6"],"sha256":"1d7e48c097b8a44fbaf341d6eeb8d176c809cd8950c5f1aecc7ce0bdfc1540a9","size":142246,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.9-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"35df0bf15be9fb9a66e520425a3d4ec04b16612f9cb57570a2403ad84eda6e89","size":2133946,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.11-x64.deb"},{"package":"azcmagent","version":"1.22.02077.406","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"28449eccc7003a5c00f74031562f05ed662b7d33840b587527a499dd0725c472","size":53412088,"filename":"pool/main/a/azcmagent/azcmagent_1.22.02077.406_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.422-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192924,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.422","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.28)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.28)","aspnetcore-runtime-3.1 (>= 3.1.28)"],"sha256":"4fd46756de5a2440abf56c14b75ed131c814d28bef262992bb0fed801fd0e621","size":49803220,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.422-x64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.7)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.7)","unixodbc (<< 2.3.7)"],"sha256":"80b52c6b1728146dd1f6b3adecb311c24fa7ca191bda569263c1733b3e6a9675","size":12024,"filename":"pool/main/u/unixodbc/odbcinst_2.3.7_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27359,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"1f36ec7f18be7b459632ced20ee68303e5a3ddcba882706a55c54c11082fc64e","size":2119378,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.2-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3121,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"7dba065dc52b8eb0971a30d69c50dc293f75a6def60479e7d452a41c911dd0a7","size":853508,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.5_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.21 Microsoft.NETCore.App 2.1.21","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.21)","dotnet-hostfxr-2.1 (>= 2.1.21)"],"sha256":"8c825dcedb392ed3175a4b850d44f9e5f14ff6b80c3716c5265f66489c4b0bb5","size":20615080,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.21-x64.deb"},{"package":"procdump","version":"1.3-13160","architecture":"amd64","section":"devel","priority":"optional","installed_size":6912,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"31929586fc7fbffac526aea3586a20eb87fbd8cdcd113ab4681b691d86ea294b","size":1130220,"filename":"pool/main/p/procdump/procdump_1.3-13160_amd64.deb"},{"package":"libmsquic","version":"2.1.4","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"2275d8debabc093181fb3cf6f2c07c9351365bc4a8941c69b985a099673b298c","size":4117996,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.4_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330653,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.302","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"592c559cb5fc9dc5440cea502e388cc7b0aaa1beaccb03f9360e3378e0a851df","size":84868880,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.302-x64.deb"},{"package":"moby-compose","version":"2.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"4701d0142cf88e7c8d4ab4eb0a10dc047826be0c05c683960a3ca523ce01d518","size":6501704,"filename":"pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.4 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.4)","libc6"],"sha256":"c2f16c44b5de02851e803ff1d70c08eab56ffd3d466098bb37e5c6a9cc753911","size":120982,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.11)"],"sha256":"e9524164ec468565083307fa5cc0e2f6788016f36fc1aec2f4cef622f676ac08","size":5772760,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.11-x64.deb"},{"package":"dotnet-host","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fb5bd7ba708921c0ca4aa2d1f93eb6cc3f32fae622e7cc08d33f13bdae4cb05c","size":52942,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"e2e154b631f938328fdb2c262de25cc7c6769a3705a2b55d30f00fab3d715acb","size":3524566,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.7-x64.deb"},{"package":"powershell","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"11756a6265bdc1ebd14d678ab08a6999c03e24157b26b2c2e40640e44cb46acd","size":69690326,"filename":"pool/main/p/powershell/powershell_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql17","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"3353db998891244d924958830ed1c11662afd4541b41b2d4bb82add7b69147f1","size":744322,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.9.1.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"825da08fafaaf997b1fe218f01921fdac410e70b740fb8b025d2da238f0f51e6","size":3522960,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.19-x64.deb"},{"package":"procdump","version":"1.4.1-14851","architecture":"amd64","section":"devel","priority":"optional","installed_size":11111,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"a52dc999199e47240f20d68afa15a97609ddda007ee8f07d714eef1816960c8f","size":1655962,"filename":"pool/main/p/procdump/procdump_1.4.1-14851_amd64.deb"},{"package":"powershell-lts","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1d06b358202357801f6f90d65cea6d66b0033aabf1464b70862e62f3d296b393","size":68377710,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.16-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336555,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.401","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"c87f7c06058a2b355817e5671b8d94d18abbf70fba8f72824ae81ac4c5d83005","size":86551776,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.401-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19892,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.22)"],"sha256":"7f5c3705f1cc77f3c3193dca3832c6fdcb61f4fdb013c5b2ff3458cff7b490cf","size":6617570,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"046f75901d5530e3b309ebecb2e6f22138bcc93ca8bf03e24debd99f336616bc","size":3521770,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.24)"],"sha256":"a6b3a2d5fdd57d9d6c06da6eac82ffd1d8a533bc7cfe8f49fe1def4eb7773e41","size":5771272,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.24-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"180c6180ef50729b20d7057f5da16b052ce52825a2e34feb1a39581ad22dd40d","size":2132638,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.9","homepage":"https://github.com/dotnet/core","sha256":"a64f3530d4ea352189d2b3bd0bf7def827c9ff70fce7b7655df0db27038dcd0b","size":3524010,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.9-x64.deb"},{"package":"aadlogin","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"da831404adc54b986650b7a5d0ea77269a6ed0bace68e1e969622ae0fa31760c","size":411524,"filename":"pool/main/a/aadlogin/aadlogin_1.0.016050002_amd64.deb"},{"package":"hibernation-setup-tool","version":"1.0-8","architecture":"amd64","section":"utils","priority":"optional","installed_size":65,"maintainer":"Leandro Pereira ","description":"Azure Hibernation Agent","homepage":"https://github.com/microsoft/hibernation-setup-tool/","depends":["libc6 (>= 2.16)"],"suggests":["btrfs-progs","xfsprogs","grub2","udev","e2fsprogs","systemd"],"sha256":"2282e902a532536d75e032f859081891348a168a40a926502e53f67ae4587926","size":18548,"filename":"pool/main/h/hibernation-setup-tool/hibernation-setup-tool_1.0-8_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70804,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.4)","dotnet-hostfxr-7.0 (>= 7.0.4)"],"sha256":"b351edd6cc0a5ff6196cb3dcbc093b80cf9ade1d1c003e8ce5441debb7650fd0","size":23198918,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.4-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227302,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"06f173ff68233d5255696a39a7477298f54eecaeaa111142dc6dcc79077cd644","size":58426066,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.300-x64.deb"},{"package":"dotnet-host","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3d4b6997505f014ebb26d3aba0ccebd348de2c3bc4ec36593abf84e61a3fc0b9","size":36598,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.27-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.16 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.16)","libc6"],"sha256":"069a564507c39d531f4c4383944086c58d4d7b570320f847798b50c819d96ffb","size":120712,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.16-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"3722d70b879528db6c8c47037c5d0a2e0db429e4092032a613452fe2c84138cf","size":1306732,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.2.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.4)","libc6"],"sha256":"108cfdb263731e0868975ecc77c21c56b25ca9c10ae0e196e774beeed0504752","size":141998,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.4-x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2634,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"cf6dcd76811967d54319060586e829c571f12233571cbdb7d3b5a0aab3d796c5","size":658658,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.14","homepage":"https://github.com/dotnet/core","sha256":"eb25b730300d4bd9398698a6a0b036cdbc32242d0b24e4333d9f367442b9268a","size":42450,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.8 Microsoft.NETCore.App 5.0.8","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.8)","dotnet-hostfxr-5.0 (>= 5.0.8)"],"sha256":"d81bac8b4ab60b3050b04a0b3b492996ad157912b9e63766b246bafd1f986e4b","size":21796060,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.8-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.213-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.213","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"13e725e6ec66079135a45ac5c445ffc96655df68291e295ae37c52d4e70c12a9","size":57728570,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.213-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27358,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"8510cbfa8935eff4b4f008d7cd03b93235dcf14a846a4bb9242eb38aa4025782","size":2124532,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.1-x64.deb"},{"package":"moby-compose","version":"2.18.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"195167c2fa9045437964e94690e1d59ebbff788b3e7adde5261980c02f799ae4","size":10878722,"filename":"pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.3)","dotnet-runtime-deps-6.0 (>= 6.0.3)"],"sha256":"6525eb9f979c86b5ff8bcc4b4f003915845eb1cffd3f42611e134b468489d755","size":22886032,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169366,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7baa7d3e12053844fc4b069302b00346d11e83b7bb59a25702c58b555c643705","size":66943402,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.5-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"7d8324d65e4eefa0b979f0a92684391b1b554d31ca856895a4fce36b5a99d104","size":2125006,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.4-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"36cb535472ecafe46ca2004104756ef19386b677d54066a1f378b99b2de352a7","size":10216,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.015950001_amd64.deb"},{"package":"scx","source":"scx","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"bf2e8aedcd7b14cc7cf7030e8e1fbf341b8d50b083912d17a1ccfee9e1d1cd08","size":2588348,"filename":"pool/main/s/scx/scx-1.7.0-0.universal.x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.109","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"4b39fbb5aa288a2e676bc8103efddb6530271df6e4508c1589b98e9e8bcb06f0","size":43432762,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.109-x64.deb"},{"package":"moby-cli","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"ebb5874e6643b0d4fcfd33f0448db23fb7e0f85f63ed48bfd8ae666942b19c9d","size":9661496,"filename":"pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403080,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.401","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"65516f369d674b7cb6890bc5938d43689e154d468fadbfa8a0aa5e9739749694","size":108167894,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.401-1_amd64.deb"},{"package":"blobfuse","version":"1.4.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":34335,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"f9ec2fa0180f705094a90c3778ce77a3a7e3e01053134f84e40ba68601423734","size":9847136,"filename":"pool/main/b/blobfuse/blobfuse-1.4.3-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.15)","libc6"],"sha256":"9bd0c52c9ad70420d6df3cbecfe6163212c4f857b07a1d638f845b4a460d82ac","size":142382,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.15-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"cc2685bf04ed2521b1075a7f39183817da59cdcc894f56fb424b9f40863405c6","size":2122592,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"servicefabric","version":"9.1.1206.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"40de2a402e9a41d8e0e6b513fcf3a7d52c2aa0c7483600fb73b02a9c11e28b17","size":219772344,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1206.1.deb"},{"package":"aadsshlogin","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"a7a7b67e9a9c93d60f890520d4690266618f3c268ead39018680be43656d5526","size":422178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.021030001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18531,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.3)"],"sha256":"ca38e724678e3e24216f612b028dc1ab788988d7d97f47543b0b64e247a3e143","size":6085600,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.3-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":193677,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"be418a526d5fe68f39aa1ab126c6262dbf870ae8501ba44ce8b020a2282c536b","size":70083566,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.10","homepage":"https://github.com/dotnet/core","sha256":"037f67656103db1e0003abeb8f793a88164ae03ec0b3e1b20c5d64af326e0a79","size":3399672,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.10-x64.deb"},{"package":"moby-buildx","version":"0.11.2-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"52da4bc1d26985870e1840e26ce312fdeae4681c26b5ad96171370764dce449b","size":34231732,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu20.04u2_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.16.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5740ee368bda3a087c695eb0439b892dbfc5e57ea4fa95df28138065569b18a5","size":193677516,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16.1-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"7626df3cbaf454d15cad5272495e8d3a6e11b67a9ff314b92bc720ed9b5b0e3b","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020250002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.203","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"662a0caec7c1e365f7f653fec119cd1462a5a3617db478fe23fc7eda791e9bb2","size":57518152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.203-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.111","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"ffb75e9c46aa5f8bb9eba3adbcb9f4e1e31ea98a47c6cf0deeb7268ff26662cd","size":78477024,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.111-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.13 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.13)","libc6"],"sha256":"23aa9b20787674470eccbac91c559d35c35bf2ecb7e076e6d53aa5a39f52e792","size":140398,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.13-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":408,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"d0c20931d42e3bfa3c62692ed459310272d6c44896ed3dee5a8ef2f17bf44937","size":162704,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.1.0_amd64.deb"},{"package":"azure-ai-vision-dev-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"4be2318c1cd29827197b2d9645b26bee8401f05aa7971fcc1b742d3daf136de6","size":114308,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b289ce53e31fa8638fc202c4696fb2c192f3f9dabdba3181d79d5b7cbafed030","size":55824,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.11-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fc9288295fef2cfd7ae9a90ad3c26fa3ff760ed6e606796fb9741c6e9566ca72","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.26-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.311-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.311","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"c1a665a32c50c5304923b06d3186e921829b342b6be153a772b420d9e628b9bd","size":85165330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.311-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68142,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.20 Microsoft.NETCore.App 2.1.20","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.20)","dotnet-hostfxr-2.1 (>= 2.1.20)"],"sha256":"8575c612e0632a90710fabe8d76ea218b1b9dc83f62f2720d4f531c6d2aa6031","size":20602712,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.20-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d00554d3b7f1344606017276386b2036fe2651c068a346b69e0b04e1cd42851f","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019900001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.102","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.2)","dotnet-runtime-7.0 (>= 7.0.2)","dotnet-targeting-pack-7.0 (>= 7.0.2)","aspnetcore-runtime-7.0 (>= 7.0.2)"],"sha256":"33b2df24c016de3a7bc5436cc3ede1be2eb990a7b66d5744060b140890174a45","size":90599622,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.102-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.7)"],"sha256":"0ed727999af4970f63aefcb531cfb0d7f082b6aad5062d168dae767a61191c08","size":1518774,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.7-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"428a0d8326d46a397bd195f63b5954618491c838381bb1d550de054d0136883f","size":1315186,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.18-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21330,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.0)"],"sha256":"aac90ab87ac39bf89adcd5218905610d388b9c9721c82a7156eb7b3750c3a726","size":7050452,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.0-x64.deb"},{"package":"powershell","version":"7.1.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174315,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cf2d594765c3d40800ac6f838e8159d6952e1abcca18976e2b13e0a819d9c401","size":68281910,"filename":"pool/main/p/powershell/powershell_7.1.1-1.ubuntu.20.04_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"045926eb2b3ad031e0c2643bd6b219d3f8d8964fa484a10fd4e0fc29059cf7b2","size":172042448,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5148-1.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"302756ad147ecf2774368decd127789888ec31948fa42cd2d8bb3ce9435a8ca6","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.19-ubuntu.14.04-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":168,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"95ced03d2790f46ce2a827f44ba643158ccc8ae144d973f8ccc14e16e73f79bf","size":57830,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.4.0_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350036,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.104","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"1d57fcf96fa0c19c0bacc60a343952b9e21d1f3cadf38285b60160638bda93b6","size":90606898,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.104-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.28","homepage":"https://github.com/dotnet/core","sha256":"a70f9988c9e6f17bb5b7109b9901c44858c9a9bb3a65c85954a694a3c7f6a50e","size":41858,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.28-x64.deb"},{"package":"intune-portal","version":"1.2307.12","architecture":"amd64","section":"utils","priority":"optional","installed_size":23134,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libglib2.0-0 (>= 2.12.0)","libsystemd0","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","msalsdk-dbusclient (>= 1.0)","libgtk-3-0 (>= 3.21.4)","zlib1g (>= 1:1.2.0)","libgtk-3-0 (>= 3.9.10)","libsecret-1-0 (>= 0.7)","libatk1.0-0 (>= 1.12.4)","libstdc++6 (>= 9)","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libssl1.1 (>= 1.1.0)","libc6 (>= 2.28)","libsqlite3-0 (>= 3.7.14)","libpango-1.0-0 (>= 1.14.0)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","libpam0g (>= 0.99.7.1)","gnome-keyring (>= 3.36)","libcurl4 (>= 7.16.2)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ab7513205ea60621a08748343804d0e0675dfa29a62cfacea6d47531756032fc","size":5520188,"filename":"pool/main/i/intune-portal/intune-portal_1.2307.12_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227608,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"8cbb8c82766e861928b8e349046738ed8cf411e0be03cbaf63a625236056350b","size":59260772,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.401-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"77908625884345bc3114dc74ad4a48e0761d5ebfff8fa320cc195d1d30b107c1","size":838530,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.17.7_amd64.deb"},{"package":"intune-portal","version":"1.2302.9","architecture":"amd64","section":"utils","priority":"optional","installed_size":18587,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libssl1.1 (>= 1.1.0)","libsoup2.4-1 (>= 2.4.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libx11-6","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.9.10)","libpam0g (>= 0.99.7.1)","libglib2.0-0 (>= 2.12.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libcurl4 (>= 7.16.2)","libuuid1 (>= 2.16)","libsystemd0","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","gnome-keyring (>= 3.36)","libc6 (>= 2.28)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","msalsdk-dbusclient (>= 1.0)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ae0cad3b35b4601fe82a86d1c27b6526b47f0cc207b2bec0d85294059526ba71","size":3341216,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.9_amd64.deb"},{"package":"moby-cli","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e6b58e72860d678fd4892e01d410f22fa6a8b45b7998edf7991773e6e2337e00","size":16382092,"filename":"pool/main/m/moby-cli/moby-cli_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":215512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.100","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.0)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.0)"],"sha256":"fafe422d1610e009d4d68a433f651e43ef70ccbfa520d6163d50e92d407373a4","size":54972274,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.100-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18555,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.17)"],"sha256":"8ae0c155fdc56a6108e6ab13efcd2751bc1ac32a4c0a71cdd3bb9a200e5593ab","size":6086064,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.17-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.13","homepage":"https://github.com/dotnet/core","sha256":"11dc2d0bbc76ed8b6c61245a341f61d70c98c1dd8d46882aa9abde6f22d783c0","size":3403016,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.13-x64.deb"},{"package":"msopenjdk-11","version":"11.0.14.1+1-LTS-31205","architecture":"amd64","section":"java","priority":"extra","installed_size":317249,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9b31fe51c3b9edb59e8dc845eea04caca78d7bf1ccd9cac22b6004971663299f","size":193693992,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.14.1+1-LTS-31205_amd64.deb"},{"package":"blobfuse2","version":"2.1.1","architecture":"amd64","section":"default","priority":"optional","installed_size":30725,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"4b2d4ba747ca1d40625f3439382abc7245fda059f8d91df335f4028b099a00ad","size":15360896,"filename":"pool/main/b/blobfuse2/blobfuse2_2.1.1_amd64.deb"},{"package":"moby-cli","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"83d59b6074be2ce5d275af61e335bda29dca2de3c1c066f1068319f0bdab3fe7","size":10587436,"filename":"pool/main/m/moby-cli/moby-cli_20.10.10+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16368,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)"],"sha256":"3378d5a53fb6786597571960a69f94b58c4b271737689072d055ccc9758df51e","size":5060332,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.9.0~beta.1-Linux.deb"},{"package":"mystikos","version":"0.9.3","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"bbe27f1fee36b2c1138ad976ebe6c496821b51bfa74503ae06d8a894f14a9e8c","size":4315728,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.3-x86_64.deb"},{"package":"dotnet-host","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"15f7336f94ddc3131fb6977e38fef042fa0fe95198c111ec6faa8b4bf5d0119f","size":57386,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.7-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213489,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.103","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"3c18b7203d6a38930a0b5c266e6dc0946d2e7457f8db313629c8ba6391d76930","size":55140132,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.103-x64.deb"},{"package":"dotnet-host","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d9220d3f42b7960997b23f3254fbada2b905ea1b91fc80d200580d697bde1914","size":57270,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.1-x64.deb"},{"package":"powershell","version":"7.1.7-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171640,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9cd3e76f87fabb0078270cf7cf7f8e8380d9b442a5e5696fd9054d3f2015a744","size":67148874,"filename":"pool/main/p/powershell/powershell_7.1.7-1.ubuntu.20.04_amd64.deb"},{"package":"msodbcsql17","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"ea72c644ed9a2e0ef21486ef89544bb2aefbd7e0e9daa7ee708a9d6719ee38fe","size":744242,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"362826c34eff451d35a8970e7a755d70407ec1692e120df11e6f3906ee62a36a","size":52424,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.11-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.12 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.12)","libc6"],"sha256":"aa2138928390fb13617720957d7b3afb4f6ae2af59794505470d6a38f61ee419","size":140278,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.415","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.21)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.21)","aspnetcore-runtime-3.1 (>= 3.1.21)"],"sha256":"255fd286f4d28ecc4b6f9c7dc1d734231876651f46cbca9292bfcdceb3c007c2","size":48251046,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.415-x64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"89d9166fec67c6f23e21fbf7e33e0d40f3fb1ec8f77078f79bc42ee2eecc66cd","size":510722,"filename":"pool/main/u/unixodbc/libodbc1_2.3.7_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"c9672f06b201be1df4ef1834a98a1447fdb57907d817d35e47ffd01b9754e8e9","size":1314366,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70837,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.7)","dotnet-hostfxr-7.0 (>= 7.0.7)"],"sha256":"ba5c8bb6c3509d24c9f5fb8ed8b8ac51165044be3bbb726e094c781f9cc04d49","size":23204566,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ad734ae671ee9f3423e6bfc8d96b2e8fb0ac309ccf68618bd9c426a00d41c3e0","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.16-x64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.3","architecture":"amd64","section":"default","priority":"extra","installed_size":27627,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"2329a1130035d20325ac4ef38c174da38b51866c3ebc48c5f4ba6988493392d3","size":13042900,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.3-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.614-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237153,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.614","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"b7f99c6c345423943d5758c0b1857f4698280f0e35761aa3b1a848671ee466b4","size":90818518,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.614-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.426-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193108,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.426","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.32)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.32)","aspnetcore-runtime-3.1 (>= 3.1.32)"],"sha256":"5d0ffe69e1f9b2196e012a9ec3e7dd55045f2cf648f008f48871505083eb707c","size":49845438,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.426-x64.deb"},{"package":"dotnet-host","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.21","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10c0bb4a6e888b7b793ce8c2119cce80ec85c5dc2efcf36fd42be9c2ff123fe3","size":55830,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0690100dc9512fa877e61df0f6566c66635d634f8567bfa26edf9e9f317be0e1","size":2892,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.0-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"92e36a0001ef2bbe26cb348c1f28f73ec5d6d80f59f00466c043b63ee882814d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.27-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337395,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.415","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"271f45bad6cd63327162eccf54fd12bf0b13eac42100147cf03ab105d372241a","size":86815422,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.415-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.6 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.6)","libc6"],"sha256":"8e0cbb8d34ee9f019b93bc67988342e4342f8bc37c2a311c4f1536fb5612bc5f","size":140272,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.6-x64.deb"},{"package":"osconfig","version":"1.0.1.20220125","architecture":"amd64","section":"devel","priority":"optional","installed_size":3664,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"7d0a0742647236cc220429f357d9a140fc0c4961297528849d5aeb7234aab878","size":1279254,"filename":"pool/main/o/osconfig/osconfig_1.0.1.20220125_focal_x86_64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11-1)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"752ba4a9819e49a44200ddba803dd9c3f9147c0ee70b1d8fceacaa2a9fcb7cbb","size":21274,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71074,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.5 Microsoft.NETCore.App 3.1.5","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.5)","dotnet-runtime-deps-3.1 (>= 3.1.5)"],"sha256":"bbf2694874198386228b90ed189770f0f256bc2149732af4f31df060c2f6f762","size":21773970,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.5-x64.deb"},{"package":"dotnet-host","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.2","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9bffe3ef7d2deeb6bc0b7c57a8d0e1c82e801df762dd182da78f60529eb2111f","size":52992,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.2-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"11e47eee5018c4a82404e43a507b7dda59d44c7f0a34b5b2f7658749b4d105f3","size":166004040,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2936-1.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"recommends":["dmidecode"],"sha256":"99db20012d0600ad184a115e2668d18bba828539c6e9084cda153baf6f43e317","size":522078,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.6.2.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"6090cadb2918f982d6421b7b1307de164ec003d06146541f6154de564306b5b0","size":1315928,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.11-x64.deb"},{"package":"aadsshlogin","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"165d818aae5aebda9e537556b050574e813b9f8d4043cd55183f95728220be33","size":419386,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017820002_amd64.deb"},{"package":"mdatp","version":"101.02.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"eb9b29c37dd2c540a6d9601ca63dcd146aca555bec77d6cafb54d2bb53c58f5c","size":16305960,"filename":"pool/main/m/mdatp/mdatp_101.02.48.amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2664e4aa37902a632023857b19e7913c0f1bd356923af66f7a7a7ba5690b05cf","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.15-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"35ee7c2da9cf72d513b84a8bda149edcb7342248e50042216209289cf4e7e5e2","size":1315266,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.19.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"0559e3987e2fabfa1ae1d3a1586b33933876f2b849b3780d7a71f9a9d4fd5483","size":11862866,"filename":"pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.62.74","architecture":"amd64","section":"devel","priority":"optional","installed_size":210088,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"96d94685a98b33763201c3285713959757eb7255af58cae346fc71aedba2f80a","size":61608068,"filename":"pool/main/m/mdatp/mdatp_101.62.74.amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a52631688cf7998ef0677dd0931381e95606d0a0e194c2f861792281f6ce52d3","size":21194860,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-2_amd64.deb"},{"package":"moby-cli","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83541,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"58450e88d4bc91611b8838a5a2fe36f2b5241e160060a85d26040f258d7b5319","size":16409404,"filename":"pool/main/m/moby-cli/moby-cli_19.03.12+azure-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":173637,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"41ece23dc2b75bbce34604f3aac521ad2edcea4a3cf20f2c3016f509d9bd240c","size":69264320,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.4-1.deb_amd64.deb"},{"package":"mdatp","version":"101.25.09","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d3add92c54fa8c01cbff8a8f25f3e9e99b28add48a8cf11d9d03413505088aea","size":44872318,"filename":"pool/main/m/mdatp/mdatp_101.25.09.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.424-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.424","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.30)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.30)","aspnetcore-runtime-3.1 (>= 3.1.30)"],"sha256":"c210f414ae6fac87305dc87332e42eb236ecf9aa87dc239737603ead0745fb97","size":49828584,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.424-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"sha256":"6a8703b6c1146c24a62fc784a12ef0dc05517f6294dbecf7e88e5d512b8ae000","size":245508,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.6.1.deb"},{"package":"powershell","version":"7.3.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196880,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1447a6d90aa66616757290e8a4bde7df0ee14d9b77aba8d73021e849ad12f418","size":71750824,"filename":"pool/main/p/powershell/powershell_7.3.4-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.7","homepage":"https://github.com/dotnet/core","sha256":"484dca5074596febea3aeb4a00aec9e9c27c7cd408132f26ddb8fc3d3218e359","size":3399110,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.7-x64.deb"},{"package":"moby-compose","version":"2.20.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59070,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6b86549c464b157e4c9fc107296f8b591126a2ab07ff06517a9ece80f3d52523","size":11866170,"filename":"pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"microsoft-r-open-mkl-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":275115,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"c5dcc0d4756b0d6cac39ea38307c08726e518daa96b37efa597002e21888f81a","size":91215626,"filename":"pool/main/m/microsoft-r-open-mkl-3.5.2/microsoft-r-open-mkl-3.5.2.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21336,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.1)"],"sha256":"675601d3df8f116972c0786de4512a99f01c1f6cd8058cfb56f83ae7dee70ea8","size":7050794,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.1-x64.deb"},{"package":"servicefabric","version":"9.1.1457.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"70d31017bda3a7f1fcacbbed2db83f32c4f75be3d6e36679adf4ff0321a33740","size":219672394,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1457.1.deb"},{"package":"sysinternalsebpf","version":"1.0.2","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"856043680b2ccab0ccc12b284efa368d610e690a2165888dab349828dc21ea59","size":446972,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.2-1_amd64.deb"},{"package":"microsoft-r-open-sparklyr-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":267912,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"10b1881851d3ecb42e4283da60edf6f6b9f238765f2ee8d22a0d2899af4c412a","size":70041338,"filename":"pool/main/m/microsoft-r-open-sparklyr-3.5.2/microsoft-r-open-sparklyr-3.5.2.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.0)","libc6"],"sha256":"aba67fc99134f951372118c3f843be58fb05c33d5ceff5aea080eff62b8917eb","size":144012,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.0-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331267,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.304","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"4110bad4f70bd90a71271910d42d25449164217d2e2078e4f9280c024e2b76b8","size":85036956,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.304-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.413","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"388e3816185346fb6298d5ee0b165ac9510b0ed47881c4e652060a4877fe9120","size":48204804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.413-x64.deb"},{"package":"dotnet-host","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8fd1104b360e1dd8e47e89918e40055a270ea8f69721822d56a903f642c6e575","size":32402,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.22-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a6831312aa0061731cc78db5b255b3631093e10211d7c280f2a0010f188a7eeb","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.20-x64.deb"},{"package":"osconfig","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":8287,"maintainer":"osconfigsupport@microsoft.com","description":"Microsoft Azure Device OS Configuration Agent","depends":["liblttng-ust-dev (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"c80210777f54639283cdc6daffab34cbb020ffff9df15d771565f13c8bb2dba0","size":2009152,"filename":"pool/main/o/osconfig/osconfig_0.4.0_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.13 Microsoft.NETCore.App 5.0.13","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.13)","dotnet-hostfxr-5.0 (>= 5.0.13)"],"sha256":"9ad0e107c1ae2683cf643bf740a5fdebd342392e823f349d4ee8745748cf3816","size":22269634,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.13-x64.deb"},{"package":"moby-compose","version":"2.20.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59057,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6d3a316405dad90540fee81ff81841c0e24ab5de354ac4b3450e1232579046e5","size":11872246,"filename":"pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"80347c4205b28115fd646cd8d86a1fa3e09188dd3dc4c4d616097adfb0834940","size":20988132,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.616-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237173,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.616","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"986099cbca19649ad74900db804c7db7116581a3c676ff3f00c9b10c2b213bbe","size":90824460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.616-x64.deb"},{"package":"adutil","version":"1.0.014","architecture":"amd64","section":"default","priority":"extra","installed_size":13784,"maintainer":"","description":"no description given","homepage":"http://example.com/no-uri-given","depends":["realmd","krb5-user","software-properties-common","packagekit"],"vendor":"none","license":"microsoft_adutil_license","sha256":"8d4040fa87b6a2d79c22d7ad9094f9853c7af21646cb6d52b658e3eada0cc5b1","size":6701622,"filename":"pool/main/a/adutil/adutil_1.0.014_amd64.deb"},{"package":"azcmagent","version":"1.2.20314.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e62f0680c77eb9daa2c7ffd61846f6a6cdacc900d5b678b07d0367826bddd6b8","size":18337190,"filename":"pool/main/a/azcmagent/azcmagent_1.2.20314.002_amd64.deb"},{"package":"dotnet-host","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"665595e26dcde23629c8684e4aa7526237ea8d983000b46cd3d308ab6508f376","size":57242,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18560,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.1)"],"sha256":"94b5917f271e0c978ac095062cda3c349343cf22443ffe6c2cdc39909df10d53","size":6085584,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.24","homepage":"https://github.com/dotnet/core","sha256":"9cc4d53e2df092267fb8d53eb3bed3f1ee46d48a2adc7c82350b0310572bbc51","size":42318,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.24-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.5.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":164,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"67196e19834fbf9242a7b5d4e4e4f857fcdff2e1693e9c934a2a9b14c027cad3","size":57722,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.5.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.14)"],"sha256":"accb5c7d83b8029a841c5f644b3385059e4c0cc523dba69d0631c8649db65632","size":5771036,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.14-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.13","homepage":"https://github.com/dotnet/core","sha256":"1869df3ac2c3474befddf2c1c4be4ef5b86a25cca046613c7e5c85bcd5bb1984","size":42476,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.13-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"30f04454aaa1fd33c74b40c8e608dfb3810d89de0c21cd0587cefbdc6e7b6621","size":154905788,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5174-1.deb"},{"package":"dotnet-host","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4e62b76f0f8d8eae41ee1f21090bb9909f0024f2d3dc3fe928a312c2bec9fc69","size":57340,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.0-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366875,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.304","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"3e683a05c3ae357896c893fb09a56418274c00498d0344af59e5d0b152ae82fd","size":96542450,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.304-x64.deb"},{"package":"mdatp","version":"101.60.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":207295,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9dc82ebe9bb10197b5286a7e34985ff308f583b719b93f8fdc4e69e2034c649b","size":60778376,"filename":"pool/main/m/mdatp/mdatp_101.60.05.amd64.deb"},{"package":"dotnet-host","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"38a501c55de8b0a2524f3af7f9187c14998e71f029b39c129165947c7ee29559","size":32522,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.18-x64.deb"},{"package":"msodbcsql17","version":"17.10.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"cc1b9698129f000c611f81b30e095a4cad804fba0af522b4d4e0035e51b82284","size":744524,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a43e2efe34f43412e02ef3deffe082cafc2e807e52f435184ab4a80f9dd325ac","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.29-x64.deb"},{"package":"powershell-lts","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"015e5607bba35fa1a9f348dab3b550c1339763bd2fae07ec05c0c2155d045de2","size":58303714,"filename":"pool/main/p/powershell-lts/powershell-lts_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11-1)","odbcinst1debian2 (= 2.3.11-1)","libltdl3-dev"],"sha256":"2d23185d950036681d26bebe982a533480de1415899b767dc9f84bab6f0f4cff","size":42366,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18561,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.2)"],"sha256":"975acfce69f012f1021b60764458ffb3fc8012bfc774f7833a55900b044b7608","size":6086552,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.2-x64.deb"},{"package":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11-1)","libodbc1 (>= 2.3.11-1)"],"sha256":"7efce8fcc4bd0e64e4c0e86506af4c139e7cef469f4aa8162bdab9af2e1a575b","size":51534,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.26)"],"sha256":"32820d75d0adcceac8fd7a1384b13965f643f4b941c9388999f2e0cadf52fe16","size":5773088,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.26-x64.deb"},{"package":"moby-engine","version":"20.10.16+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"4f331b0590adc6b7ed0fdd3a952bf7a8e30cfe1a97ad13f0975219a024d0ed5c","size":20970224,"filename":"pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"800c8676b1b346df51b68e564e5c3b08a5f1b4adc66dcf304004ce8e7d747c72","size":69393916,"filename":"pool/main/p/powershell/powershell_7.2.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337170,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.408","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"edc5a25502bd63d67fcca871fee05dd2232b92a2d32318506942ab18c6b28b06","size":86692582,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.408-x64.deb"},{"package":"powershell","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38ad697f50dad11ff4579069505cad9c458f70604607156c8018ac01bca6c2e7","size":69408482,"filename":"pool/main/p/powershell/powershell_7.2.3-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-3.1","version":"3.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":24673,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 3.1.0","homepage":"https://github.com/dotnet/core","sha256":"7c353df836befb40aeeb1ce0b9193445f2a340e57e6f5ab5213d5d48fa867729","size":1987718,"filename":"pool/main/d/dotnet-targeting-pack-3.1/dotnet-targeting-pack-3.1.0-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.18 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.18)","libc6"],"sha256":"091fbf1a4809dba00e407ec2de57c5ed5142c64f89dac9dc6edda75286d6c2cc","size":143800,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.18-x64.deb"},{"package":"deviceupdate-agent","version":"1.0.0","architecture":"amd64","section":"admin","priority":"extra","installed_size":5348,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.63.0)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"534423643d3222ba25888ee6d5ec27428f4b8598ec8d412412e8d8b5e9f623a2","size":1945752,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.0_ubuntu2004_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"18c02cb01e0d95ee444ad6f83ae87f99db0240bad798dba74cb7c9308894d5fa","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.018440002_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.24)"],"sha256":"22807c1504a6147d029957b8bb7efb2430ed64dff6f9a09baeb6b8292c4a5e6c","size":6621650,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"powershell","version":"7.1.3-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174299,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ed800c0e58560d6a4f743e68083f8b46bef29670917c250157aa2c1170a6e502","size":68316948,"filename":"pool/main/p/powershell/powershell_7.1.3-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19846,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.4)"],"sha256":"87c010ec02884e7dbc8592468b23f521b3002a2a94615b4e3a1bdeac84f0f82d","size":6603012,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.4-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.11)"],"sha256":"69ad7c8416e46b4928fa0dd6287ca9ed1a0aea9841bb3789407f84dc2c35b114","size":6086112,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.11-x64.deb"},{"package":"blobfuse2","version":"2.0.1","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"a2b80fb5f373aaabbfe6be13185f01f2476ae8fc9fad6f63a1bf39e8d1995fbb","size":13151180,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.1-Ubuntu-20.04-x86-64.deb"},{"package":"libmsquic","version":"2.1.8","architecture":"amd64","section":"default","priority":"optional","installed_size":16108,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"9622432bdcedddff93aa4db72970e711b4539913430ff29659ba511e51ddeae0","size":4127324,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.8_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.12","homepage":"https://github.com/dotnet/core","sha256":"8e503b4527ce44bdbc7faa74049e45505cc2b6fe397661dad18fcbfb03df52ff","size":3401078,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.12-x64.deb"},{"package":"servicefabric","version":"9.0.1103.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"98a528527d6a0a12297a7afc8a41f8a13bedc2483d1735e421087c2a5f893b40","size":219663890,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1103.1.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"8d6633d7d637add6a27594687c3bd216f20e83c9562dd580dae66f01d311e254","size":3531962,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68322,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.2 Microsoft.NETCore.App 5.0.2","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.2)","dotnet-hostfxr-5.0 (>= 5.0.2)"],"sha256":"db38c3122097400e46b34f26079e29cf5c8428d28d64b62b05970a10db844596","size":22091490,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.2-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b4ee3e096d381244271ad46a50d577c8d846190eb89a0b71a695ab6529b24932","size":228285568,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4899-1.deb"},{"package":"moby-containerd","version":"1.3.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"92f29353da40defd3a7c370379c6f7e0a9ced4da0c600a271de9eecc7455247f","size":27658880,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.6+azure-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.11-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"be07f8c4f44811d550e068822d7089b9728dd48396137d6ff2ad0ccfe934453c","size":13346,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.11-1_amd64.deb"},{"package":"moby-runc","version":"1.1.8+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13394,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"6efe544dc8808d41f55eb25b1ff308dae9579ff90946f2d7dbd7af21a60f452f","size":5766794,"filename":"pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.16.01900.74","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"afa6965d84a6d1a16a0ee872f1d6dfea851b3a4380940b8967144f37c5283033","size":51768832,"filename":"pool/main/a/azcmagent/azcmagent_1.16.01900.74_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86937,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e2c2fe4a09cf5f7ffa9d8b7907154fbd9b064d4a8dab439ed8844f2535325f8","size":20687466,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"az-dcap-client","version":"1.10","architecture":"amd64","section":"unknown","priority":"optional","installed_size":305,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"9a271799ce89fd47984139049ec3fd10ed9b77f14b0fe3211ebeaa47793c8af5","size":63908,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.10_amd64.deb"},{"package":"intune-portal","version":"1.2305.20","architecture":"amd64","section":"utils","priority":"optional","installed_size":22982,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libgtk-3-0 (>= 3.9.10)","libsystemd0","libgtk-3-0 (>= 3.21.4)","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libwebkit2gtk-4.0-37 (>= 2.5.3)","msalsdk-dbusclient (>= 1.0)","libpango-1.0-0 (>= 1.14.0)","libsoup2.4-1 (>= 2.4.0)","libsecret-1-0 (>= 0.7)","libx11-6","zlib1g (>= 1:1.2.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libsqlite3-0 (>= 3.7.14)","libpam-pwquality (>= 1.4.0-2)","libc6 (>= 2.29)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a3f9d7865374e7dd6a85ec4e73e0fae95fe28debd20ce333c08a9b68e2c05b43","size":5479172,"filename":"pool/main/i/intune-portal/intune-portal_1.2305.20_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2881-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"482a8e5c6fcd606b143216a601aa73f591d4b25cb99fb83b779f547effaeb5ef","size":190000560,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2881-1.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":10691,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"d60972a661d73058eb6d73319b7dcda94eb00da583a7497875028b129c7e2456","size":1062648,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.10.deb"},{"package":"dotnet-host","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1be8d37b8f7faa65fca577ffd1e11a3ce46a6696f3a43b6797df16804cdb5ab1","size":52498,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.6-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.30 Microsoft.NETCore.App 2.1.30","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.30)","dotnet-hostfxr-2.1 (>= 2.1.30)"],"sha256":"63e8907cd90cddae09f0ac69046cd2d19f0697497bec6f3ce83b6b5391b0374c","size":20502672,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.30-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.30","homepage":"https://github.com/dotnet/core","sha256":"069e6a26225a5e74628c552ab81cfd2e1a3851cb02a9a421dcf77212f7a2ef3b","size":42436,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.30-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0bba8b9e9cb23965807d7dc23dc6244db2f7e87634bff1c63f002f35cc1f43fa","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.20-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11743,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"316dbcaeec56d030ba6a4231df05eacaa515ceb27c5ab9ce3a66a9975494811e","size":1313840,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.10-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.313-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.313","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"4d74db683c8cb69367f466c95fd83b71ffbfc1e7b6b3b92ee3fddd6297d170dd","size":85182878,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.313-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32c458736e9aea5fdf27cd90b588d12822af06509cd1d810c38c491c338842e4","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.27-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336089,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.400","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"0c2897efed36675878f930783e75164ef8b537c90919f6308465045902a71c79","size":86384340,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.400-x64.deb"},{"package":"moby-buildx","version":"0.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68407,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"007d659dabff0cd6802afff642839960827c3f1eee107432c2f97f4b79fa4b79","size":25545586,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter-src","version":"100.69.62-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"499d5c0c2caf30b4be33753611c94edd449b87a2b40d4e200b53174c76aabb0d","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.62-2.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336570,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.405","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"04685c120f0b0db34950bbec26377fa60cdfde91537311cb6079eafa00eb6191","size":86616330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.405-x64.deb"},{"package":"dotnet-host","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbacafb7536e169aae3c7f15ef9785cfd81fef05408bd1fd38fe91d376329367","size":57478,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.2-x64.deb"},{"package":"aadsshlogin","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"28e496db72e754289da28be9e60c5e3f6ec9a424add33e82f306027baeaf3e2d","size":287178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022600002_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.26 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.26)","libc6"],"sha256":"c33fbd6e073ad51f46f68df8283a793746dffb7949224b7f83b3fed3abea8496","size":143872,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.26-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16360,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core"],"sha256":"b9365e91642d8582a2fcba79a13a51607634133644da0c97a0c425e662cd8168","size":5028016,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bf710391664124748dacdcc24f360a55e63131e132b7f4d4e080c157b797ecad","size":52564,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.14-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b65bcfd2a273e8e3b55bbf6f0752097b8dece00d9706ee9711d6a1d4af82c404","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.31 Microsoft.NETCore.App 3.1.31","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.31)","dotnet-runtime-deps-3.1 (>= 3.1.31)"],"sha256":"655e60ffab7d47476c26feb82a4ec22da080f72796d504ce5bb325383a1b842c","size":21793662,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.31-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"2723e90f7b3dd4840f4a5ecc62549f04ef3ff82f93fd177e5b8afa30d995748f","size":2568010,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-host","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"dcda2fc1cc44a0bfc87ec4a12649724a984d4c61b4d37ed5d76d87baf6f82a7f","size":32932,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.7-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.115","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"e39a2e0f210472491b067fcd120cbf2d4a7fdb238f3752733524306013da7354","size":44109078,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.115-x64.deb"},{"package":"powershell","version":"7.3.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172707,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"67dc90155fea76997645ca7490db1d33d2afd7328df609a2d1c985be0229c13b","size":69306108,"filename":"pool/main/p/powershell/powershell_7.3.5-1.deb_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186673,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.2)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"72460d8a199f2196ba5ff54cc1bd1ee8125088eadfd21ce35612dd84a2d8c9f2","size":46549742,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.300-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169450,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5565b2b4e1a9d140225923852ee535f324b5d52600414b1c7a3617999b1a0593","size":67105078,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-host","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3114be3bdae538f5bbe7ac72767371bfa084da21e35940b31416f2adce9145c4","size":52900,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"be3f9431764a17ed1f43cdeadd84ca2b5b1b800b2752c8ee35a66977ead3170d","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.7-x64.deb"},{"package":"azcmagent","version":"0.9.20168.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"d04f34fc297a26bb0df31f4f2d9f6ff4e3a00f5667ee69bfaeb368bb7324b160","size":34124838,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20168.001_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.809-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241164,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.809","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"6c3eb3b198e557174c7d5fc5777e2334ab3823c0579c4510650428c5ec02aa95","size":91744846,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.809-x64.deb"},{"package":"moby-compose","version":"2.19.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"78438210da0503e16dd86dd250a7368d8da1ab0e9b9e123cd1ede23a9c104f87","size":11868470,"filename":"pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f04d30e58186de5c16d2014702163a1bbaf1d45c81a8c13c96529f1e757ba485","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":343757,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.100","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.0)","dotnet-runtime-7.0 (>= 7.0.0)","dotnet-targeting-pack-7.0 (>= 7.0.0)","aspnetcore-runtime-7.0 (>= 7.0.0)"],"sha256":"766366dadb45bd2c882f141f0f2a9b5ceaee12b86073dc8fb4e771667ee672a0","size":88442416,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.100-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312519,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.103","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"50af338321766b2340778c3ade3277056b990a585433087d2689f1e7f19e071b","size":77837574,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.103-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.18 Microsoft.NETCore.App 2.1.18","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.18)","dotnet-hostfxr-2.1 (>= 2.1.18)"],"sha256":"3a6b3782770d7d3fabe90fef9c8151001aa568b1bfb793c2303a25ba1829ac7e","size":20639348,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.18-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1eea1eb871da3df8131c404dcba26ccddccfc4d4234384a7fdb38ce336002881","size":157251308,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5390-1.deb"},{"package":"microsoft-r-open-mro-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":149532,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["libxt6","libsm6","libpango1.0-0","libgomp1","curl","less","bash"],"sha256":"f28affd66e2c85d414464d381f3da6bd6356bd1f79f216ef519e5da0a4062d6b","size":73944196,"filename":"pool/main/m/microsoft-r-open-mro-3.5.2/microsoft-r-open-mro-3.5.2.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11-1)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"2bd241b5521b86d0c93df426f0af0f5c7bddec66b85df34871a1963897e845c6","size":99750,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11-1_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"7a7c760329044684e0614f9129037509e391f1457ca80c3b5a9df87d25d52400","size":2568218,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.1-x64.deb"},{"package":"powershell","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e764b26ba87196e78dec20665e166eee536d117deb91562a6e4ccf75cc1b6e8","size":69434548,"filename":"pool/main/p/powershell/powershell_7.2.4-1.deb_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0)","selinux-utils","selinux-policy-default"],"sha256":"8f8cae83fe053cdebc4737e3ae887e4a8334d35764612885b4dd07f0f7041add","size":10086,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014460002_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126471,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c7ddefac0e44b0b275bac572727e239c96f9a84b894890e825fb29b858cbf2f","size":47428934,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.7-1.deb_amd64.deb"},{"package":"moby-compose","version":"2.3.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":26804,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f4da1b4c0d9082ecc1471e6d9243723483a066569edf36dfd28af303d7b07031","size":6625288,"filename":"pool/main/m/moby-compose/moby-compose_2.3.3+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"35a10bdc0d07802cffd112d95efef37dc653defda6a62d85b490c72fc867b5e1","size":417742,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019900001_amd64.deb"},{"package":"dotnet-host","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f8fb5cd37c41b554e27f284d14904e2850017d5c8138335a961a3318e50cb1ab","size":32518,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.30-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"660b10f8ed6a4fdac26ce2d6a48f523b4f5a9c6f455250a8b4611593b822dc9e","size":1306240,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.1)","libc6"],"sha256":"982c3fca33c304b24d9cb78313aecb076a8a9182a17b8fbd506a3ce2cc1a2cce","size":142044,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.1-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"bee459e34ba71863e88d8ea956848c9359d66b911cf091de58024cba0257e043","size":2568242,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.1","architecture":"amd64","section":"default","priority":"extra","installed_size":16545,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"7712196b2dae76094096548322b5c4fab3d6925e19953cb76fc231aa5147e058","size":7776822,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.1-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71237,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.32 Microsoft.NETCore.App 3.1.32","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.32)","dotnet-runtime-deps-3.1 (>= 3.1.32)"],"sha256":"8f8b6409628fc252fa9ced4e4cc0e1d64cbdb4e383f689a146e1e215e5bb6aa6","size":21871538,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.32-x64.deb"},{"package":"dotnet-host","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7ce61ee5404f2ac55d834c1412267cc1eb7b6abab41572100c26b873e6a993ac","size":57210,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.4-x64.deb"},{"package":"mssql-zulu-jre-8","version":"8.48.0.50-1","architecture":"amd64","section":"java","priority":"optional","installed_size":109129,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"d4df30998acbc51019ee092032bb30d29a1ebc70398910e2a65c1b55e2e64fde","size":43720834,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.48.0.50-1_amd64.deb"},{"package":"mdatp","version":"101.39.98","architecture":"amd64","section":"devel","priority":"optional","installed_size":156517,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"66a205cdcfd0101d2ffb87dd2ab98a2c4d910e060d90f05739219ac8f2824dd8","size":45789778,"filename":"pool/main/m/mdatp/mdatp_101.39.98.amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.4","homepage":"https://github.com/dotnet/core","sha256":"451a6f449278670d33b5a24b68fb512968349936ec04b45109d2b35a172bcf05","size":2568714,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.4-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a20d656894bb7709356e3914b6aa1410b869fc97b1adc5a7a1af5b82cfd4eba1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.13-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.6-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324300,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"367323e32388113e6f9603cb65de9c117f07aa929df044670524b0df9db2e2fd","size":192107296,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.6-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337383,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.414","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e7a6f337270074619018295570ecc0d719a77b2882927da9f5d2b5052f82f198","size":86810418,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.414-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6b0da9bb00c6da874913294ba6880d7fb8b6e2d4a80be638923e0c5adb3bcfc","size":154935580,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5174-1.deb"},{"package":"aziot-edge","version":"1.2.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"df6f7dc27e8ad8aa58995e30418f474147070d05642b6830738a3c66152d2427","size":5774464,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.10-1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"7a3a9f68428fcb6c8180e3699c0fad11282903678efdfa8f878a0d9ec5465436","size":263392,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.11.1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"a986a11ed09e7b057600954e9c0daa588ef399cab2e27b8293f291129926989d","size":2123090,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.15 Microsoft.NETCore.App 5.0.15","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.15)","dotnet-hostfxr-5.0 (>= 5.0.15)"],"sha256":"0a5bebe1c956be75253c57d1b4061c4be04ed1200e8f98e5a502069fc2dfb2a6","size":21955700,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.15-x64.deb"},{"package":"sysmonforlinux","version":"1.0.2","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"7dbc4dafaa9534539f584f321c360b827cdfca79130804e64d7b86e421881577","size":231844,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.2-1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.1~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"0b6f2e929b98ba75d4ab081ff55dee289c2e861be049a8fea5e1c3a8a9a29388","size":1648696,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.1_public_preview_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d317dd44e2ed1fcd365fef02a48beae0284729e16951504a2be9ab0212e747b5","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.10-x64.deb"},{"package":"blobfuse","version":"1.4.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":34746,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"70e465013b53f7363f3a95a4f4b6ce2918d453aedd71c0f9cea6691b8e2f2642","size":10093684,"filename":"pool/main/b/blobfuse/blobfuse-1.4.5-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.318-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.318","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"f02764143bd8a171bc1120364900df226c903e53dfd351c8e45a5d7b1bec2653","size":85272970,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.318-1_amd64.deb"},{"package":"moby-compose","version":"2.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25772,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"80d0a6b4ffbd8ded5acbdcdb6d833c3b5275bf0b2718fdf2740908c3078cdb30","size":6512336,"filename":"pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.6.23+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125899,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"347e5bd7c6c052a22c54b7a2a8cd22301194075b2b7dfc374fd4188ed5feed78","size":31588386,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.11","homepage":"https://github.com/dotnet/core","sha256":"2acae1a747ca63f8b74f51b8b573e614e9bb7b4ef1697b26636f270a8b427a6f","size":3399076,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.11-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186658,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"d285189dbce539d9a85a771ed36966bf65f2447b8618d57d2932d0ee9297726a","size":46877526,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.302-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo"],"sha256":"3ca69b2c419c00ca6df523e2ef38b856c74bc6f9613ee013d9d752b10fe0ba88","size":249808,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.0.1.deb"},{"package":"azcmagent","version":"0.8.20139.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"51b3a82dd0b1f004ab3cc1dc5ceeef7b2fdde327df30966cee3e4db9779a45fa","size":34176982,"filename":"pool/main/a/azcmagent/azcmagent_0.8.20139.001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.200","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"dc711bf42291ea51b2305419bc53758125cff21078cd8191df121bf862d40b9f","size":91798318,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.200-x64.deb"},{"package":"mystikos","version":"0.10.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"31dafd89871ba16015ff8e55d16bcb6a8fc636d0fefb6699339f6facb36e52c1","size":5305344,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.10.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.4)"],"sha256":"92aa3d15a9f802c45b2845a99397eee7e8a3311e6464e6f45753a002e9b06e16","size":1515026,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.4-x64.deb"},{"package":"msodbcsql18","version":"18.3.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ae8eea58236e46c3f4eae05823cf7f0531ac58f12d90bc24245830b847c052ee","size":755938,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.2.1-1_amd64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":107145,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"51815cf4be4171c2c244f9516db0ceb8cf9f1788f4e8b22bf4c20f8bce36008f","size":26317044,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u2_amd64.deb"},{"package":"aziot-edge","version":"1.4.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17752,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.2-1)","sed"],"sha256":"d793ab78971a15050db8b6e5959bfd995867c4ded3095e5460ac054bf0d2be55","size":4230816,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.8-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350085,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.110","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"37f9bf12b98e288c114bc919c706a0ff8c72cbb4b8ced055322b53759d662f5b","size":90674390,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.110-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314323,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.118","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"c069d7068aa2c3352bedd73ee48d47deae79557bb67cd7a98f079534c067d736","size":78868818,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.118-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.24 Microsoft.NETCore.App 3.1.24","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.24)","dotnet-runtime-deps-3.1 (>= 3.1.24)"],"sha256":"f6c86e04d09923cc76aef4dddd416ae21e18783e6b9ad31ec366fe00841a05e6","size":21856944,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.24-x64.deb"},{"package":"moby-compose","version":"2.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43496,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"e5481dca839f63b8d79979974b28b106479d18a0a39aa7e492b29a5e020e67e1","size":9568480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.3971-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0dd2bc7155228abe77c3f1b9ef7f991b7198843ccaa63e2f6ce3051a09be7d0","size":134500288,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.3971-1.deb"},{"package":"azure-functions-core-tools","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"58cdf7f1c923f551bd8304f09314a0a196343f61a771eef04e3f09b62a203fe5","size":165959932,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2855-1.deb"},{"package":"msodbcsql17","version":"17.7.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"dfcb958f3625dca439bee14c2f5f91aba53bf137ab1f53c3945fd0952bf8dfd0","size":744700,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.2.1-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.23 Microsoft.NETCore.App 2.1.23","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.23)","dotnet-hostfxr-2.1 (>= 2.1.23)"],"sha256":"7252fd61a461bf62f31e57ec62b37f76ac51086b1d543fb489d1c1d994a0bcfd","size":20607706,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.314-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.314","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"7b307e2bbcedb6145bc516bdc914a2523bbd776f85729396b81094c083b32dd7","size":85192950,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.314-x64.deb"},{"package":"azureauth","version":"0.8.1-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74124,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"61784632cbfe34e1c2d28320bf0aa3111f989e9a67a5dffdaf26182d578e4c33","size":24071902,"filename":"pool/main/a/azureauth/azureauth_0.8.1-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.1.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"9dc54caf038da57759b80a8ad46f1d783dc98f9039bfa307613d962d29c1c19f","size":594218,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.0-0_amd64.deb"},{"package":"azcmagent","version":"1.19.01980.190","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"19af5c09ca4704150f53a3d07db6afaeb8bb2aff34e64cafbe128406d502c20b","size":52454744,"filename":"pool/main/a/azcmagent/azcmagent_1.19.01980.190_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227348,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"d04ec77548f0bf426187edce1505275125a002ba3bf1224096c34fe7aa0ac372","size":58709818,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.301-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":168859,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a54899f099a74cb76cab9695d4a21a604007ff3f7486c05076cbec64b8b7f777","size":66703322,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.19 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.19)","libc6"],"sha256":"0319d7c4e2bb840f95473dcad32d7a237f644a825eac7f342c83e3755b6ea398","size":143604,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.19-x64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120364,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ad64c596e281147c50337ea5b7442f9bfba41d8d002d7309d6a0b1aa2ea91cc1","size":25980172,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu20.04u2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5191940c8b6f64839b27f278880f403af9d5ec7c3d75b82cb7a5ca7047f26d99","size":124467492,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4704-1.deb"},{"package":"moby-engine","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117358,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a635857737c5e0393cbc06c4ee7051115bc828c37d7b22e3cf58f89722adbc1b","size":24773176,"filename":"pool/main/m/moby-engine/moby-engine_20.10.5+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"9a30ce389879cf3a8430103b8924c296e1d843705ed0378598da2dd5ee22928a","size":415372,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.015950001_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ee828c1bdfa48ecab95cb9625f11dbe6e3333d89c47edced6c6d85faff6fb2e6","size":157321128,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5441-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.810-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.810","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"85fa7f894ed08f386b9c18b04cb8de202cf22f68307435c784f004131c989aae","size":91737224,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.810-x64.deb"},{"package":"open-enclave","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":115291,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"85c66ff7801de3a21fae1788a1eebe1c3fcdb617127d5336c91b7ed1b08f4eaf","size":31560056,"filename":"pool/main/o/open-enclave/open-enclave_0.17.6_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-2","architecture":"amd64","section":"java","priority":"optional","installed_size":317895,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f7dd1d44a24e2a88a71847a864c6f39e32154f2a7703c30a1f2d1002566dd411","size":166897458,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.416","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"0c02d6340293058c7af92f3821702e58e7fd340276441b793d9ae44ffeb22f1c","size":86825034,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.416-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.13)"],"sha256":"3085c74701bfe21be9f9d57490721292c0ee466d142f3827e41d8759f386f217","size":6085472,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.13-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2d08ac3f8822a62d2ec5384bed68abfe55a52199c0960a43793a8f92c712ab84","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.5)","libc6"],"sha256":"946b46de39d9157ed341f4df85709543211f8baacfc94604a8a24e960250f87a","size":142074,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c203b2a5770aea2879e64d542de87dc6a705988f8aad5bae6a759f03eab6fe96","size":69689350,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql18","version":"18.1.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ecdc984603e67d6563dcf800dd6bc4705e058a4306354998f1e0caff9753ab95","size":751978,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2553b0547714f3a938ad7ff192a7948d24d509bb53c65aa582ea7adcb57fb401","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.25-ubuntu.14.04-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.10.0~beta.1)"],"sha256":"c4271a9f38e1851357258aa8c8c892be7d2b3bd4c7fe2ceae3b134ac16c1257f","size":149320,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"apt-transport-https-sas","version":"0.9-6","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"bdbf549b23f8446ae0e288db668d93670c9143765f03a7f8f4b8f087a576dc6d","size":12522,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-6_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc95+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19709,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"faf73d18c091fd1f2fc393439dafbe984f511e832331446150739c5e0da2e2b3","size":6550948,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc95+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"a28e554c180550b4d6daa763f55ef2121ea8fdd70d2da02dcc86ff7e20a70572","size":3517574,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.13-x64.deb"},{"package":"mdatp","version":"101.12.99","architecture":"amd64","section":"devel","priority":"optional","installed_size":152179,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"8751b14a8a2db98b28dcdc31cd01194ddd0910219d8204ec3471ebb7e02397fc","size":43935326,"filename":"pool/main/m/mdatp/mdatp_101.12.99.amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a8f75b0c7ee0cc1d5701ef4f2ab3c561a8d0cdc0998769794b122e6f9825fa49","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.10-1_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc94+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19694,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"2abba68b1f39a4cc5af9d7afcd8fcf48b2ef5d7cbb0b13f8c599b5eec018ec2b","size":6548584,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc94+azure-1_amd64.deb"},{"package":"azcmagent","version":"1.8.21189.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"f034191ed4aaf3ba0a8fccecf36b5813f5bf9406689e15ba9abd177e79d5dbf4","size":49532928,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21189.003_amd64.deb"},{"package":"dotnet-host","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2afa31bcf3bac0b866d3f215b71c6d56e885a9996b2c2729621222466986384d","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.5-x64.deb"},{"package":"moby-compose","version":"2.14.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ad091134300a157bfbc10ab1471e9e5a13b8670c925294a6d2077c4bb2ed9b08","size":9652610,"filename":"pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5030-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6486ba6279fa7e1402a9a57eb2fb5623513807378a83418e83c68d89ef14e291","size":156016092,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5030-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":748,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"b0e49d1b6dee1d25d2d897d8ca9dc15e3d5c1b8826f6a7e2703acd8585119397","size":113312,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.15.1~beta.1-Linux.deb"},{"package":"powershell","version":"7.1.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174285,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7435b5cdd8cbedeee396072b495b44067166674e7c40a9ee844a519c6223e482","size":68282782,"filename":"pool/main/p/powershell/powershell_7.1.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70841,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.12)","dotnet-hostfxr-7.0 (>= 7.0.12)"],"sha256":"73ed33d0f0b7f6bbbc0aa1ce299eb90eb8785186be7a8e480fc06ebd18127b3b","size":23211158,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.8)"],"sha256":"f14238d2ea7dc37d5d7c947e950fffa64e4183dcd1a88fcafdf1543cc0e21b43","size":1522110,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.611-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237134,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.611","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"3ff94801b2a6448875511986c1a7613f41387880b22a26b6433607debb4e8f0f","size":91354158,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.611-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.16)"],"sha256":"38af5c963fef967c1ff4e88a45df47e6617d05fa2814f668ce1a11350696968b","size":6085708,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.9","homepage":"https://github.com/dotnet/core","sha256":"356b86603caa1e26f2cb02e54eddd8af3a19a6cf92fc08a5f0641a3cc0332297","size":42680,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.9-x64.deb"},{"package":"azapi2azurerm","version":"0.6.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20424,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"107a2e822c62d94cd14b9b4402a135c634c1dbaac0e6e70b92803775ea27a671","size":6691356,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.6.0-1-amd64.deb"},{"package":"mdatp","version":"101.47.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":186587,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8014568ab9c8c946d280d1014b86df1165b69191239a7b79e0e0c7dace237d6d","size":54826224,"filename":"pool/main/m/mdatp/mdatp_101.47.76.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f8908ba61bfe2c80198f5e68282f02d7150a5ae4aa411444eb21ae4e8e1af71e","size":157337028,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5441-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.22 Microsoft.NETCore.App 2.1.22","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.22)","dotnet-hostfxr-2.1 (>= 2.1.22)"],"sha256":"a5d6c5497fa95d2b8d12eec33d3ed0fd43ce3ddb325ee59b273c090d8bbdfc3c","size":20601560,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.22-x64.deb"},{"package":"osconfig","version":"1.0.4.2022100104","architecture":"amd64","section":"devel","priority":"optional","installed_size":5432,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"8818ebf37cc67a05af3e1c569cbd145c26b0a44719d0c115dd62d2a4cc835023","size":1911656,"filename":"pool/main/o/osconfig/osconfig_1.0.4.2022100104_focal_x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.10)","libc6"],"sha256":"2f96001b5b7063d29a430d368cb7dba492ebd67dab5406a11c9408db4581c1a6","size":142342,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.10-x64.deb"},{"package":"aztfy","version":"0.10.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"45ea0fb07e1c2d5fc8cab233e2b530ffc05fc0865f1fd810fc49597b3ee0c12a","size":9404196,"filename":"pool/main/a/aztfy/aztfy-0.10.0-1-amd64.deb"},{"package":"azureauth","version":"0.8.2-2","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"ab456b47856de52483a9d035c7f96d0afb724d43edd6fcbf5fa53c7e3ff1587f","size":24111110,"filename":"pool/main/a/azureauth/azureauth_0.8.2-2_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.14)"],"sha256":"a183e3dd976b5283ee52acc4548cebfb852f0960f34f39a5a31ec2d6a0a0e0f0","size":6085076,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.14-x64.deb"},{"package":"edge-config-tool","version":"2.0.0","architecture":"amd64","maintainer":"Azure Percept ","description":"Microsoft Azure IoT Edge Configuration Tool","sha256":"b9e1aea2e07727fac26d45d8d5c92aafe4bd3ff63e13e875ebfaa9b14efaffc2","size":88470,"filename":"pool/main/e/edge-config-tool/edge-config-tool_2.0.0_amd64.deb"},{"package":"azcmagent","version":"1.7.21162.005","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"2a0e3cc4b517beabc2c1a8f7eb5b5bce2ed7961acc7aea7b148a12913daf4a33","size":18406364,"filename":"pool/main/a/azcmagent/azcmagent_1.7.21162.005_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"68702812eed9cbd0bdb45d04e36f33b633a09452aa39b105d974093c9177f820","size":417398,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019630001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.4-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18782,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"8db6803b985bfeeb997dbb716a9e1c6230425b0b71b59871d0ee103998e6ff01","size":4031196,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.4-1_amd64.deb"},{"package":"libmsquic","version":"2.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":16751,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"f436ce58f5d47869aefb256635b97e1b95872dba8ace6c8991928f4d8a88e782","size":4348660,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.0_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"184a9fc7cd8c4247fc5f7ea44156d79d9b6441709d2aec4a83e4f7b17b8ef48b","size":1000134,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.21)"],"sha256":"40b63967efb23ab19fb1a863c2cfb47dded87ad0eef2b9afc5c37c6876672fad","size":5772728,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.21-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"5a76b63c5cd8979e182dd7f9faea1ac1e2ce15845fabb1068e65ddb974f4918b","size":2122060,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.19-x64.deb"},{"package":"mdatp","version":"101.45.00","architecture":"amd64","section":"devel","priority":"optional","installed_size":161663,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"e6bf6ec6dee9242a8608578de115b0480159a317dc8c58950a476262014b51d2","size":46688308,"filename":"pool/main/m/mdatp/mdatp_101.45.00.amd64.deb"},{"package":"powershell","version":"7.1.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171528,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6f70084d2a2cdc2dde760b18dd716a5941452248d2869fe9de6a65fedbfe8ca8","size":67057604,"filename":"pool/main/p/powershell/powershell_7.1.6-1.ubuntu.20.04_amd64.deb"},{"package":"microsoft-mlserver-config-rserve-9.3.0","version":"9.3.0.2606","architecture":"amd64","section":"devel","priority":"optional","installed_size":46,"maintainer":"revobuil@microsoft.com","description":"Microsoft Machine Learning Server","depends":["microsoft-mlserver-packages-r-9.3.0"],"sha256":"d05c783069979e3d057e4faf981f741aaa4ab430a11fe844aaa493ce29f4240e","size":5756,"filename":"pool/main/m/microsoft-mlserver-config-rserve-9.3.0/microsoft-mlserver-config-rserve-9.3.0.deb"},{"package":"msopenjdk-17","version":"17.0.5-1","architecture":"amd64","section":"java","priority":"extra","installed_size":324215,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"c58dbc06612034c0478881304b9b96ebee23fe0212dbf38e9023c5d7087d4a85","size":192096976,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.5-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"87ccdb4c2304e2c1f8e4cd0cf00d8df90be527c08a2c9e518a9ecda2eed8ae31","size":221294856,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4502-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7ab2543933ac5e546e391128a8629af650e0d9b380a646678a8032766871bd8e","size":125645188,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4785-1.deb"},{"package":"dotnet-host","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"5c50ea7d4464f1079333901e28fd06dfbfe87db511b0b912dab724571b3b7e52","size":55720,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.0-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":755,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"8b86e75809470fa5fd5c89327ed82d0fe2e0cae0b2e71c7bd2ff8e8b5f12d1a3","size":114218,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186656,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"4b3652426ead7c0b6c873818b1d7c83dc88095ea104324f787725eaa338b2b0f","size":46591862,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.301-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.214-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.214","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"563de21936ea0c86c5602a84c88840ea8eab358e7b9aa66248fe4525199fccbc","size":57622258,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.214-x64.deb"},{"package":"dotnet-host","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6548914c6872fa051b95a87c8f624313a8e51c72729eb3f27348b20140c3f02a","size":57370,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.11-1_amd64.deb"},{"package":"moby-engine","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a93df7ad782a3041734431c3fc5028523b086d179fb13f5fd70e898bd01ab6c0","size":21178752,"filename":"pool/main/m/moby-engine/moby-engine_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8808b8db255e6d57ca8335fb14328ff99f5da45443901f2801e15661afdb33be","size":32430,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.29-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.410","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"c3ef47c6707d7087e0208368b669d38069bbfde3d3b3cee484d4482c659cabb5","size":48098966,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.410-x64.deb"},{"package":"dotnet-host","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.32","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3547d638fbd423815cdfc08f98ef9d4a1c9e51ad854e379b68af8777218c4524","size":32436,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7e57c8b75f6832402709e33190c0ed61680a1c253bcfb826726959f7763efa7c","size":9660698,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0c873e3bed6344099b81003745cae7a1707fbf7249b38922277499966e0f0496","size":362460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.1.2.deb"},{"package":"powershell","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"58e86f8f379bfacb417e617350b16696b134f50c4572ce7a56ab308cb9d243fe","size":68377064,"filename":"pool/main/p/powershell/powershell_7.2.16-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124622,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0b7eb4ebeb1d19f8d448597fe54b55f3e7496da06ecf2470fe18dd3c616d250e","size":46623124,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.6-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19874,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.12)"],"sha256":"80cfc243c528fabf035eb00208103895dc9550f8659bc62aec4538a48cec20e4","size":6611238,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.12-x64.deb"},{"package":"libmsquic","version":"2.1.7","architecture":"amd64","section":"default","priority":"optional","installed_size":16102,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"150478df2bfe05e26dc154d0144eb4c65c911c285a1bf76e01dea612bdef6586","size":4126202,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.7_amd64.deb"},{"package":"powershell-lts","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"240c3e9e1e8b7d6eb3b54297236c5aea5ede0a28b4cb37701e26526ac1f3a037","size":69430114,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.4-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.14 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.14)","libc6"],"sha256":"cf2bad79c72e6b40346ed586ed6cc248f4af1308e57b54e14cc115dfb387b8b2","size":140364,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.14-x64.deb"},{"package":"msopenjdk-17","version":"17.0.2+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323435,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"2133d1b51f9fae2d178cbb97c94b9eb567655a36d8b8ef433afaa3dd5064c018","size":191825508,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.2+8-LTS-1_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21358,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.11)"],"sha256":"e6514c9bdc094e35047f7f3c8260ffc0b12261119937fa4831e0b344ddf5260e","size":7061290,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.101","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.1)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.1)"],"sha256":"76e7d2644d91fed7dcbdc4cf048d6778f5b95646e91b711af9ddd92fd0f8e36c","size":55355152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.101-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.23)"],"sha256":"d94536b5d048ce4956e9003bb999abaa5269b572cebb85b926da3a2f9732aed0","size":6620078,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.11-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"74f632b82584c30ff621280c7fc90143cc5afad265bfd6dc85f82ad6d204cbf9","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.11-1_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.9.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"462eb22fe531e7c4aa4863c604bd3b8c521700aec4ccaaed4e462d40724cfa53","size":2588272,"filename":"pool/main/s/scx/scx-1.6.9-2.universal.x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"5c811033834fdff942210dfbf65d16eea2fe2f97d334d572cc02f3f2e43685b8","size":3520848,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.16-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31132,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"4b3447d53557aa91e5522b47cc1e65f53fc34ca7e89ac6e6e2d3de8c9a26a248","size":2567740,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.0-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3e35f04acb96f6139ef831228aa7572b9ecd7504c5a01c0645b7ed6a415e3d9a","size":227724024,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4753-1.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"9a8231a5d1334d93857adcc7ac28d9313ee10a065f8ba4f03e2f8f6f90ff392d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.13-x64.deb"},{"package":"moby-engine","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117354,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6bc4d9ea1c16030c4525c43a6fc640ea8f0e1ad511e203430ec8eb7be0cb6985","size":24759692,"filename":"pool/main/m/moby-engine/moby-engine_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68367,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.0)","dotnet-runtime-deps-6.0 (>= 6.0.0)"],"sha256":"8338aa43b86960efc2fa5018f6ee818ba75bdf0122578ac54511a626cc9c5a28","size":22849194,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.0-x64.deb"},{"package":"open-enclave","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":122136,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"b567f4e195da6b9ca229d0bfe29bd73cacb44707d4e082cefa1cedef06785fa5","size":33277940,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.0_amd64.deb"},{"package":"moby-containerd","version":"1.4.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138460,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"86fbf26537a44a35a2b14b035d115a68d633a7091edb598cc520c0126b208bae","size":30825808,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.3+azure-1_amd64.deb"},{"package":"mdatp","version":"101.23072.0021","architecture":"amd64","section":"devel","priority":"optional","installed_size":386508,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"45c0dd0dc355044c38629a7f903c994669a523a1ce93cddc66e603937c1dae70","size":133254902,"filename":"pool/main/m/mdatp/mdatp_101.23072.0021.amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.1","homepage":"https://github.com/dotnet/core","sha256":"641e499e02e79fda23cbc679116bb24abfd355dcf306e1ebcbe92ac401c2664d","size":3409646,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.6","homepage":"https://github.com/dotnet/core","sha256":"808c3c3b72039f378c84fdc9b2bd0f571517478368bd2b521ed2a236f99fe7d5","size":42496,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.6-x64.deb"},{"package":"blobfuse","version":"1.3.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":32123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"5593cf9114efe4a7032610e191523c8db16f446adbe523d483656e09cf791de5","size":9249408,"filename":"pool/main/b/blobfuse/blobfuse-1.3.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68381,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.2)","dotnet-runtime-deps-6.0 (>= 6.0.2)"],"sha256":"422ffd79ba0324eed88fe3634f69c1025d978f54738d98aeae7d84e364ce83c1","size":22859474,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c50a6d720eb317297a5915f1246f50239f4aaa98208436cbde53f5c7a9d29110","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.15-x64.deb"},{"package":"iotedge","version":"1.1.15-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22418,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.15-1)","sed"],"sha256":"6caaacc8ed1cbf0bdd734527b9bf949efb242468a97d0827bbcf6ed2baf29114","size":5367528,"filename":"pool/main/i/iotedge/iotedge_1.1.15-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.9.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4812,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a5ba699e516821411f4ef12703b393e7242fca10df69109709dac5e8f7661a9f","size":1881492,"filename":"pool/main/o/omi/omi-1.6.9-1.ssl_110.ulinux.x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08fefd2a57d32afe7284f2d7f0b8696d2fa97ab5196a8261a9c51653be5830a0","size":156082204,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5095-1.deb"},{"package":"powershell","version":"7.2.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188363,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9fcde25bbd7f537213e8ae34a9803c1ded59cfe1d41701816c424f9b33fd2bb3","size":69679588,"filename":"pool/main/p/powershell/powershell_7.2.0-1.deb_amd64.deb"},{"package":"sysinternalsebpf","version":"1.0.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"be45d24415c437a7ad4f629cd228981daa3cfd1cf71f92849c38291cb1b191f6","size":402112,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.0-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138440,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c28c4584af15cb55dcaeb2d0977a6da4375ef4e9c652a7fa8d21fac52b08e462","size":30819268,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.816-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241023,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.816","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"3ee8c7520affdb83e690e8e1d1a6fca6651da7655f6edd3144c2b81c9c846ecc","size":91732988,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.816-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1af932e9851bd3bc2ea9e6e750816ede6d2f1062afb6fbb8c194a35a7738b3b1","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.28-x64.deb"},{"package":"moby-engine","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":98026,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e2e90f83c1e733d3948630127dc9e4d8a7dc9824f8cf62cd9a9dd45f12a9e5cd","size":21176712,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-3_amd64.deb"},{"package":"blobfuse","version":"1.3.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":31955,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"d309e4663e49150bd8af852c864b05492d15a9e3d6fbbba21a8bd296ce9d1d87","size":9222958,"filename":"pool/main/b/blobfuse/blobfuse-1.3.2-Linux.deb"},{"package":"azcmagent","version":"1.0.20259.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"22e4e22aa2fe9324d65634f103ec360509aee682aa283246416959147c2ba3bf","size":18201370,"filename":"pool/main/a/azcmagent/azcmagent_1.0.20259.009_amd64.deb"},{"package":"libmsquic","version":"2.1.1","architecture":"amd64","section":"default","priority":"extra","installed_size":22575,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"66b934f9eb658a8f430e675ada16d16edd6789f57347a56f7ac9ea72564ca8ce","size":6406602,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.1_amd64.deb"},{"package":"aziot-edge","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"1314559971d904a3b642bd0541b489783e939c13f27f1f05b078a1c3b3dd8d83","size":4203924,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.3-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.3","homepage":"https://github.com/dotnet/core","sha256":"5247aa739c901dd9f78bf45b8f0d8c763aebcea109c9e83ce4b172c6d6c66a13","size":3398704,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.3-x64.deb"},{"package":"moby-compose","version":"2.2.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25452,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5bb4f1ff748a6aa0b4478ed7c0391a035d1565b404a913645d9cb5dcdc8de5c3","size":6319144,"filename":"pool/main/m/moby-compose/moby-compose_2.2.2+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"dff4c1804439d9c08d8dd31627040ea654765903eeb4295393585fd9e0e30b56","size":150108,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.19)","libc6"],"sha256":"cee694dccc54a8260d4971e39ff1da2b32ab2e15f77c21792625f0b287ba9f27","size":142356,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.19-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"86580698443180f77b1f3e550c84af5ce5add1f836bbab794785b1c2102e0be5","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.25-x64.deb"},{"package":"az-dcap-client","version":"1.11","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8ececbf101e9312cf3c57b619f0a7045138972ee2da54cdc48258dcbbd9b7b23","size":152336,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11_amd64.deb"},{"package":"moby-buildx","version":"0.10.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"4f18c8ea6d49049ba56dbb3ba02c57e78949c717d9fd8ef334fc1632ec96f114","size":25558318,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.24 Microsoft.NETCore.App 2.1.24","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.24)","dotnet-hostfxr-2.1 (>= 2.1.24)"],"sha256":"ff9b77a9ca019abd68854a564d5529b633c2e7254efa58b7754db1418985a695","size":20327858,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.24-x64.deb"},{"package":"moby-engine","version":"19.03.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1a0463b96c01047c079912a3fd23fc11294a3751549cc3318c198e187722599b","size":22479484,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-2_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19830,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.1)"],"sha256":"30df06bcb1ac581ecfd07a2b64fe45d2252c7eae876549e166aa1530864fd438","size":6596852,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.1-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.13)"],"sha256":"7a8bac3d07539a56ad0cb775e996da6fdd0f6ba1bb21924d7853a1f28e433ec7","size":1514874,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"mssql-tools","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"7ec6c85e184cc37ab241d01b560d99761ef641df436b065a5e195b65e017438f","size":212146,"filename":"pool/main/m/mssql-tools/mssql-tools_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.0","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"acbe521b53360a4f803e8bfc50ef0644415da7f2f7c81feb83ff5f2eb679f457","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.0-x64.deb"},{"package":"aziot-identity-service","version":"1.4.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18919,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"f8ac43250490dd18b4f9ccdd72a7f1c10a295e9336d9ef98d39f0dd4d9542098","size":4128286,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.6-1_amd64.deb"},{"package":"mystikos","version":"0.9.1","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"53a143496602981ccd0202be14766901ea0fef422e6ad6ba6f3765ff08b1ab89","size":4443962,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.1-x86_64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d6a34968d174165c3ac0bb68607b2ab0bf248e574585443971811e15ad1229c7","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.6-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"8c79c372fc677a9acf2acdb8b216daeadc2ac10b118d5643ec2ce22eb8d28089","size":79758318,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.0_amd64.deb"},{"package":"open-enclave","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":113932,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"940bcf829445bea407b05b7dece0991f89f26b0045696798b9c509b2bb2054a9","size":31147748,"filename":"pool/main/o/open-enclave/open-enclave_0.17.5_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175201,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.108","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"7fadaca90a5586bcf86c5717c6476be0194d9926343f6373ebfd58f91ee52be2","size":43451478,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.108-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17502,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.16)"],"sha256":"1f956f7f3109b34b6fea001237ae0496400aaadcc2db9128f036d0d32ed3ae7c","size":5773784,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.16-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.205-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.205","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"ac5d3a001fa718abb9d1095c6b5d54740d9ed873f73f30d17476e6e11ce405db","size":57015322,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.205-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.12","homepage":"https://github.com/dotnet/core","sha256":"42ecb191e3214e712f0c326642bab72ea72128a447d22f038a55286df7d1dda3","size":42736,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.12-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"37bc0cdb694b55c1ea99e4c6b92f136e7cf603fcaddebec76d11e44add41146c","size":124508616,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4736-1.deb"},{"package":"moby-containerd","version":"1.3.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126911,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"490fcb1ec50690bbb88799133fd2cae5dba6d5cb60e2edbfb6a47153b6d7da56","size":27671252,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.7+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117258,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8568f934682972051715d41d9229b8472ad4e80fa15f2ccdc22fcf22010a44c8","size":24749920,"filename":"pool/main/m/moby-engine/moby-engine_20.10.3+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"cac57f3b16afc8e2659455245b67ded3cfee570654f4dcf56f406ac93d10998d","size":155251712,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2796-1.deb"},{"package":"dotnet-host","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c3dd5069cafe3151cfe1cf170a646d3fe812a492224d423f2891d8e86913981e","size":55698,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.1-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":749,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"31a07d73e85448f222de5b7440ece1c5b4ef5b7f5d3ce7eada6a9aae0fafcbe1","size":113348,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.8 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.8)","libc6"],"sha256":"d11445de01b19806a245daf2e6708e413de8fc3a042b2432bfebf0ff04491684","size":140268,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.8-x64.deb"},{"package":"mde-netfilter-src","version":"1.0.0-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"7858cb2a6c43f44417e8d95bb9194bc98810460e516ebccdea5825ec71bab287","size":13560,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_1.0.0-2.amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.818-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240998,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.818","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"3b29d87b6ee0491de22235bccfa4ab5b9ee14cdf758b8d96c3a2185783faf65b","size":91722984,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.818-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350115,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.113","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"223e3af61704a49c26518832cfe04260c23017fd06177dcda24d83495c39012e","size":90709030,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.113-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.18","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8ffa1b39d77d6a94bd176906fb800283f6234546933df852f72179bebb7701d4","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.18-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.26 Microsoft.NETCore.App 2.1.26","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.26)","dotnet-hostfxr-2.1 (>= 2.1.26)"],"sha256":"4e494c2f20e4199b60fc405faac8ea456c2a034fdd53974e1dae30e2038adcf6","size":20322466,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.26-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.310","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"1c58a5fed9617e4c08ca224ebdc1b54a04797be23b10055ebf17ca7221f666e0","size":85091654,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.310-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.8)","libc6"],"sha256":"45c3624776c280739550c606c83185497c31b21acc8f5150e71dfd5996f504a9","size":144354,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.8-x64.deb"},{"package":"dotnet-host","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"09858829de4b32532c7002124ffa9dc5ee892adf755863bba9738d444c5ddea1","size":32884,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19855,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.5)"],"sha256":"7c264f8735dbe110e039125f5bad99ecb950a199abe16d6cd2cb97b07b4975d2","size":6604008,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.5-x64.deb"},{"package":"moby-cli","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59401,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"be80e5722544fab52ca05e7c4152e240aa3f5d7f0673e56d63ea47facc0ec0cd","size":10215796,"filename":"pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.208-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":221997,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.208","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"992200db75615210f8de592bd681f381a30f47bd73a035efd9837aef6c8d615a","size":57283674,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.208-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174793,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6196ba4ebcc16e66d20a6cf31d103898168edd2a32e11b8f79d149a95021bd23","size":68350160,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.2-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.11 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.11)","libc6"],"sha256":"e27faf05b11f71781749b07b0029c760fd61062adeca99112765d853e29e8395","size":121006,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.11-x64.deb"},{"package":"moby-engine","version":"20.10.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117234,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5782d03398d3820b1badffcbd3381c569ad99de24ce6fad57d04ce55cf1b3cd9","size":24737244,"filename":"pool/main/m/moby-engine/moby-engine_20.10.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.612-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237146,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.612","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3116f9bdfc32bf0100c4513962b32b0ab7c1798c678c82e2d41621c75f5f1109","size":90827932,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.612-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d9c1f432f1f4ce8f89a2a2694335dcf219702dd83a81bf05b2ec42731c01950a","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.29-ubuntu.14.04-x64.deb"},{"package":"aztfy","version":"0.8.0","architecture":"amd64","section":"default","priority":"extra","installed_size":42176,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"9de434526c8483d947b511fe42b3df26b38554b0a5f0e46a4988e5699924841a","size":8622710,"filename":"pool/main/a/aztfy/aztfy-0.8.0-1-amd64.deb"},{"package":"azcmagent","version":"1.12.21285.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"b8c0a57450638c73e1182d19744f643c241976aa57da8e35841635deedb7ac65","size":50058362,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21285.002_amd64.deb"},{"package":"blobfuse","version":"1.4.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":34634,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"8dd6af68d3ff2402df0fa9f1b8f489597999b792d9c38b6501676e497a422dc9","size":9918238,"filename":"pool/main/b/blobfuse/blobfuse-1.4.1-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"9eef66bbade60a95b3d7b2c869144893eea2c53e85429060901a8201ab8c9c9e","size":48443896,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.408-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330666,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.300","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"5dcee2d1cea6d4d90cdda4cf70da1b5947f3d798d47b0b477dc4885513afe860","size":84870018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.300-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.32 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.32)","libc6"],"sha256":"fd90563cc5240ec457877dde687e8fa8a9ad27a00c196955578a155d64f06796","size":120802,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.32-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.3)","libc6"],"sha256":"b1538cee2b98d3910e330790382beb315724c3bbd8dd8d59ac272a952128bb94","size":142012,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.3-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"714fa1cedf1983686dcbc9a2701799cf19b039629da67318ecb2275a5a651084","size":3508800,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.5-x64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66620,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ef924dcac53519e9efeba109316bb1914f0d143616e8cbf72f596805b69de47c","size":23649004,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u5","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3aa0bb5a6f547f57449367e4231821f2c5d74d715b970ce3fcd539f7783d5467","size":5742626,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u5_amd64.deb"},{"package":"powershell","version":"7.3.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172238,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"8ec60ee3bd4721f5097f7faf55c1aabf984118821ed78baca70be3612516cc9b","size":69171666,"filename":"pool/main/p/powershell/powershell_7.3.9-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71104,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.9 Microsoft.NETCore.App 3.1.9","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.9)","dotnet-runtime-deps-3.1 (>= 3.1.9)"],"sha256":"ed8a7d2622700881aec4df5bcb8dfbcc03c1871ccb3038bef5e3b30ec9d2a9e2","size":21668374,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.9-x64.deb"},{"package":"unixodbc","version":"2.3.7","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.7)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.7)","libodbc1 (>= 2.3.7)"],"sha256":"3a1ee6341d9319731bbffbae775fd7f455bcd34d97237a82b58a3280a3366f24","size":19572,"filename":"pool/main/u/unixodbc/unixodbc_2.3.7_amd64.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.7)"],"replaces":["unixodbc (<< 2.3.7)"],"sha256":"a5ba3b5fad82f0330a8bf4b5b89fe34420ae9b884e75889d4a0803a455180be6","size":134622,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.7_amd64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"845d2c21326f23d4b1fc2eb3e3731dc0dfe0b93b51af66c99e1013b7b50681b4","size":114288,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11067,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"3c8fc6205fe4da858312a53ed26f0135213d0c59125831e51309e484536801eb","size":3519186,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":113729,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34800a59772281468a27c26289a56095c160a43f56e4e9cf37fb9b1acf04f7b4","size":31089900,"filename":"pool/main/o/open-enclave/open-enclave_0.17.0_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175186,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.111","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"1d89de60a7aecb43b5cbeaf07199809995dba4509ad1b6cbca893bb605a6fbca","size":42912182,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.111-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.15)"],"sha256":"bb6a784b886153a7655c94f81466776b7f2c121d67566bbb6d957a92a8f995cd","size":6611850,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.15-x64.deb"},{"package":"moby-cli","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50209,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5d46cb0b3e8e531fe6b1556d32a9e9dbffdb67b22bc3fe0c2daf446a3d85b3bd","size":9774914,"filename":"pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.8)","libc6"],"sha256":"fd31f75d787c6793c265f8521b647e06ce8b00327798d55607422ad78ad92c6c","size":142306,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.8-x64.deb"},{"package":"dotnet-host","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.19","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"278bed877fa7bc39a69554a244ee6caa905f499e7ad316ecd03c04138e8e65cc","size":55870,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.19-x64.deb"},{"package":"azcmagent","version":"1.29.02286.794","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"a2de8f368efc70d6c0d6de01331560fa3308f579559aa1706a2e2acc678981e0","size":54135290,"filename":"pool/main/a/azcmagent/azcmagent_1.29.02286.794_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"9919b50d49031d858c81a4cfbff7b84c66ed947f702ad7d2f9aace7db8ff9827","size":9764162,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.20","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.20)","dotnet-runtime-deps-6.0 (>= 6.0.20)"],"sha256":"356aef8ceafe55124bae9ad0deb58f3d020884e0edf1e7d6bf5f79f3f565bf7e","size":22931670,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.20-x64.deb"},{"package":"msopenjdk-11","version":"11.0.21-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317689,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"7c153e16c53b1b45b9ad3c94c4dc30e3574cca0eebdb1b69df5ce515db2d4f8a","size":166637290,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b343a98f70e1b5873dfdc5e3e430cb297332d7b151908d8b9a96169f471ec229","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.30-ubuntu.14.04-x64.deb"},{"package":"moby-compose","version":"2.14.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"32663f95c2fb8408df560b915d4b54f2bb654b566064437f685b8ed19a84edee","size":9648794,"filename":"pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3ab05a7d67163edc77a0d03071534fb3245cab1a754f77c7257726b12a3b94d9","size":20990140,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u3_amd64.deb"},{"package":"powershell-lts","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bf822a5033403c396126818985fee79af163b62bb015603d81400e90ac9e32c7","size":69396358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.2-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.9)"],"sha256":"d7b54dab1e26e0c64c4c5d96e5e49f1448dac7af404e7b2a17a481ffceb4cc08","size":6084140,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17476,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.12)"],"sha256":"e07ab6c36de877eb61fb9cd182d657b7e6a53b762da719ace97181cd481efcd7","size":5773228,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.12-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.26 Microsoft.NETCore.App 3.1.26","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.26)","dotnet-runtime-deps-3.1 (>= 3.1.26)"],"sha256":"af152782c61c6692099936e87411728f533c9c5c435c761f7c94e4af1a5e5b61","size":21806626,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.26-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":61003,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1c97c4538464a3f58e13e6c3f3c3419471b6815bcfc215f3e32c82b8024bb6ff","size":10618136,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-3_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174370,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.112","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"37474633fbd4a915592a311245a2e64679b4d5c8b130c1edd488aabab49576a3","size":44274732,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.112-x64.deb"},{"package":"aziot-edge","version":"1.4.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18312,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.4-1)","sed"],"sha256":"f16c37a6f8550f6f100fcfbec01e3a829f8382472d123fa5279a192511f9ebe1","size":4360864,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.10-1_amd64.deb"},{"package":"aztfexport","version":"0.12.0","architecture":"amd64","section":"default","priority":"optional","installed_size":72408,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"436aa6a7e279bebeafa09d520485ec92bf9336b24dad38f8f226a98a5b1bd0df","size":11732782,"filename":"pool/main/a/aztfexport/aztfexport_0.12.0_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0c7f2d75631bb15d657bad2a6fe7160557fed3f31aa4e8858052bd644b0699e","size":166092780,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3023-1.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"4da5438cdb779ace13629af714b8c1c918939810a4be3cd50f4b7e88ae2f66ea","size":34231376,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u3_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"ec9f9d3a58b953b4c0ae51d23a66ee1f3848089a23b32fc60f4279df5eda1fe7","size":10222,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016890001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350058,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.108","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"df8a89bade0d908f4d57ef6fffb9510e0efeda2350a8a4dc7ce5f57211ac79ce","size":90674394,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.108-x64.deb"},{"package":"azapi2azurerm","version":"1.6.0","architecture":"amd64","section":"default","priority":"optional","installed_size":36328,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"e5ce4199c1bb93083fe7d3d718e2fc94ff5d4f588256729e1201c60a104e4c1d","size":9880990,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.6.0-1-amd64.deb"},{"package":"dotnet-host","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.3","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3f16a25e552118bdefff7b064466df569c214acfb75b7466b89af1b40879db9","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.3-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c38406fde5a67fe3a2bed2735865b1b3e51d6f23ad0ee23bb27461433011383f","size":221301300,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4502-1.deb"},{"package":"powershell","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1b140bf45d3eefdf41ea4dc0793bff981fd16f120845546eb561c998c7b8ee2d","size":68191810,"filename":"pool/main/p/powershell/powershell_7.2.12-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21337,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.2)"],"sha256":"2c6630799fbc17eebedc7a256c11e3340201d455e5c2aa5ce64e552aa07ab848","size":7050582,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.2-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16147,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"4927ad8980bacaa284aae6a65dfae195ebd74c3546a9dc3b5f283adbff09339e","size":4976590,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.22","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.22)","dotnet-runtime-deps-6.0 (>= 6.0.22)"],"sha256":"86c8edb1b543a25dfef7dae191243d36ff939800a0a04f6f6d2a597d208711e0","size":22756012,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"2263268dd3724b84e315045019c19ea3b12dc90cb12a983f49fdfa0c45aef2f6","size":3520144,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.18-x64.deb"},{"package":"powershell","version":"7.1.5-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174301,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"4d0ee19617ebd696527e966a35a00f94ca3e83c850efdde10cd4b27369a17288","size":68234364,"filename":"pool/main/p/powershell/powershell_7.1.5-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-host","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e41a81816f2530fd3a54b2c06027fc3b63c07779ee6e841cd69a6ad46c754af7","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.29-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.24 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.24)","libc6"],"sha256":"7e93324e11a85e2e278d2c457782730536863ada2be36536fa906daaa8430408","size":120808,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e1e1b6c0ce33a0b2dca2400809844b154a4e79e28803ae5c08c1d8ad9897eb39","size":124372068,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4590-1.deb"},{"package":"powershell","version":"7.3.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196866,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"40bee3deb9ac71dfd86a7dbf2f2bdcb8d039fa454dc9d705d579e4957194fcd4","size":71643662,"filename":"pool/main/p/powershell/powershell_7.3.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4438107a1e87d88552be66d4f97174d2858749562bc585e111a556c6163c62d8","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.4-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"89fb369b900c258e1b562eb19a94d7f0d39ed85490fc679686802d0633d67b20","size":224535344,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4585-1.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.2","homepage":"https://github.com/dotnet/core","sha256":"082940af64707c787fbaf9ad384c1bffcbab69a163bafcb20c5fc81a15602943","size":3398280,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.2-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.30 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.30)","libc6"],"sha256":"836cfc014fed64658c164f0cfa5c1a72239cf1cddd6ec540cdb55dfa12e7be4c","size":143462,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.30-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"3f6ac011906fa751b3825746b28515160a1b7b1571a8721ab481da9c5d8ddd69","size":2568066,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188276,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c582b062d21a97cb7efc4a3e386364d5b1c34e1e84b349fc716bf0907a399572","size":69625606,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cbac333cbfd66f544a0f17c1b8d28d9ba4fa16ffc4800e5b7b49d04409961ac6","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.4-x64.deb"},{"package":"moby-compose","version":"2.2.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"2efc3db162bc600ead2d9d9d61f1d2c11b44e175f7dc886a903a9bae2db8af56","size":6318328,"filename":"pool/main/m/moby-compose/moby-compose_2.2.3+azure-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"346995543fd62c9bcb5f29d79defceaa1dc045740a7744e9e059650c4a51c779","size":2370,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.9)","libc6"],"sha256":"d11e1cfee96cc2b1bae9292643cd3ba66bc93256eb6a4b575516539ce70dbcd9","size":143918,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.117-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.117","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"5e35a944d7c356e99ad426f7926222e25137a168f25180a84e250f1452a5a4df","size":44408280,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.117-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.15 Microsoft.NETCore.App 3.1.15","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.15)","dotnet-runtime-deps-3.1 (>= 3.1.15)"],"sha256":"ba356f88ddb6140d0268fd0be5a5dcc31c75644078c0775ff6143a0a20c9d930","size":21779462,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.15-x64.deb"},{"package":"moby-cli","version":"20.10.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0896d5309e54afa99f815f14c8e3ff04e3358dc43b55d8d6c0686c1132a2c106","size":9662014,"filename":"pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.12)","libc6"],"sha256":"cf766a63271559df4756a494ea2f4e44eed0439aa06e9abaebd9ef4605864e93","size":142378,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.12-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.12 Microsoft.NETCore.App 5.0.12","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.12)","dotnet-hostfxr-5.0 (>= 5.0.12)"],"sha256":"e4cdeb68aea4302db017410c3f67ed4de22daa1d2aeaecf63fc31ca6eb2a6d47","size":21494580,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.12-x64.deb"},{"package":"msodbcsql18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"89901f55eb486aa4da822dc76cf0fd6e118315d4ffecce59a2d06ef704cdd01c","size":748328,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.0.1.1-1_amd64.deb"},{"package":"mssql-zulu-jre-8","version":"8.50.0.52-1","architecture":"amd64","section":"java","priority":"optional","installed_size":108803,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"179bed451b4dc9a714fd420d68a1c5dc6181e844a3242f1d7389b796f8b8f2f6","size":43383650,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.50.0.52-1_amd64.deb"},{"package":"moby-compose","version":"2.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"dc5d0e7d902c4109aeabea6b318eeed91edab1a7ec5cefa93d0271b5e2a386a5","size":6498584,"filename":"pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.58.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":207291,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"2756a8f62089c0658da3ae4ed07a1ee3ecbf66f7402a949755638fd545bb3636","size":60775648,"filename":"pool/main/m/mdatp/mdatp_101.58.80.amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.15)"],"sha256":"4d0dbe848462066fa801d87436c285f85a23bf9f191c10f661de48b5cf270eb2","size":6085368,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.15-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350106,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.112","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"afba66259ca95dc675eb24bbecf5b0bc0aacf07f7d48517c35ba62f3e2456cb2","size":90698250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.112-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.12)","dotnet-runtime-deps-6.0 (>= 6.0.12)"],"sha256":"1d806a6e46ff240495369dd475725db165a9affec62a406849716b0f1639ac0e","size":22701764,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.12-x64.deb"},{"package":"moby-compose","version":"2.22.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58356,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"8b02f3867e62b644ccc79eca07d9df6afe37c10b76ceca0bc2150a8eda8e0aed","size":17591254,"filename":"pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu20.04u1_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.1+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348947,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"24b1b22b78ab1df983dc071387e986f867f6df1776d456009ed3dc3fbb03332b","size":205299892,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.1+9-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18085,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"e5889ba4810a386b9936e79b88d8227d234b75fa23195cd551e0a83167c92421","size":3862392,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.2-1_amd64.deb"},{"package":"moby-cli","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":35186,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0caa95c30f185e78bba8715e97da7136f060d781e76bf39bf6d37c18f0e8dd72","size":13042042,"filename":"pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2750-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5f4fa83a6479b527ba9275ee5d855f7286effe0af04cb156ec6e2820179a0336","size":199612768,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2750-1.deb"},{"package":"dotnet-host","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"392275546433e1fa28f1ae534c201dac53bf96e6cd0d3ec8ff70a26fc249b3f0","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.8-x64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4a3d543caa33f4be29d7aea0a33efa581443e6dda42bfdbd1dacd7be2166fee2","size":44742158,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68423,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.14","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.14)","dotnet-runtime-deps-6.0 (>= 6.0.14)"],"sha256":"78bcf00bc7cee6a25df87ca96973a708579a9da6946131698a1fd10444e67dbb","size":22694152,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.14-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"7ea14d800e7ce879d94968dd78e31ad271354d0c84a6a7b1466b1587be999005","size":499706,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.7.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366874,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.305","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"4d75c12e2936c62b5be154a61969239f44680cc12bd9b157f32ea40b93ebeefd","size":96542698,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.305-x64.deb"},{"package":"mssql-mlservices-mlm-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549271,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Full install). Provides python packages revoscalepy, microsoftml, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-py"],"sha256":"f40b5c6c70354d67c278283a872c052ac559bf60315d911cb4ec5e8f0026c894","size":521701284,"filename":"pool/main/m/mssql-mlservices-mlm-py/mssql-mlservices-mlm-py_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.11)"],"sha256":"5b0d4eb3d443b454fde34563054c0edf602f60fc3ddde753a2d21db4259df218","size":6608208,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.11-x64.deb"},{"package":"dotnet-host","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1a95de2961d82020f738965e57218af627370d8b2cbe8008b6fca6047c9db651","size":52666,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.13-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70839,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.9)","dotnet-hostfxr-7.0 (>= 7.0.9)"],"sha256":"cf64af93034be5eb0e8b4152100ee1f62ce1c41db6c3e8efc870c60ece52b222","size":23199430,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0a904362091791c5465b9ee18a2ff9667f052d59e5d4bd24d343f8d11de4839b","size":155422440,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5198-1.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3827a6839c3a55bbb8f0cc26906f21bf7620369e5ddf8de7964baeda6c8786e0","size":5765922,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.22 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.22)","libc6"],"sha256":"5d4aacd0bbb204df019c83122607cfa3b4788bc6165843ba5bf13942b78ab04f","size":120766,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.22-x64.deb"},{"package":"libmsquic","version":"1.9.0","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@d9433bfe88a5>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"bd5ba068566c5cd6f84b8c1e7ce88332f7c5fe8cea9e6f5e52a700a1a57e4b48","size":773398,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.0_amd64.deb"},{"package":"msodbcsql17","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"73bfd1fb1b70dac76e68e59f5635d9383e3bce223ccbd73b43246cdef4a5b626","size":743884,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.8.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.6","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"293ddde2a6efd98dcfd5cef91444d5a5226bfa3b52592b81c303fe610117314c","size":55838,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.6-x64.deb"},{"package":"powershell","version":"7.3.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196826,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7190f391fdbacfababd8a2801b9ac1ff2b98663fefa2bd70b2bdc4a366ed02e0","size":71622188,"filename":"pool/main/p/powershell/powershell_7.3.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222412,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.201","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"970a6612345d7b157b485fdb3ca12e3792768a383d95eaa6d0e49a8b0096f8b7","size":57570422,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":512,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.10.0~beta.1)"],"sha256":"e1ea2d650eddc24d02243d7b2a656e99f14dc67730242cbc05de820419d29ad4","size":79326,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"msodbcsql18","version":"18.2.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"2a2e0b7fe70fd41ff87823d67e7544b555657c333f22541f5a1b96fa82b1741f","size":752616,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.2.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.11","homepage":"https://github.com/dotnet/core","sha256":"f5f590c6be535a897976074d656ba9fe04be87c63a860a0217db724c6518178f","size":42744,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.11-x64.deb"},{"package":"msopenjdk-17","version":"17.0.3+7-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323643,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9ceeed9a945f9b772de6157a86eb1ec2a7e995fb2bd06b796c8687a9e8e1b43b","size":191708950,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.3_amd64.deb"},{"package":"azapi2azurerm","version":"1.7.0","architecture":"amd64","section":"default","priority":"optional","installed_size":38084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6389f078d27cd88e4d98a835f40d2c4a59ccab93f65bd4811ba21ba6219f7711","size":10216844,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.7.0-1-amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.4)"],"sha256":"85b026987b04ff8258d6e42677e2292d1b775f562e86ae7a1de9305646c27147","size":7051730,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.4-x64.deb"},{"package":"microsoft-identity-diagnostics","source":"microsoft-identity-diagnostics","version":"1.1.0","architecture":"amd64","section":"java","priority":"optional","installed_size":3944,"maintainer":"Microsoft Identity","description":"microsoft-identity-diagnostics","depends":["default-jre","jq"],"owner":"Microsoft Identity","packager":"Microsoft Identity","sha256":"c3fea4c7143de315a6fc5a565939a7be654aaecc113e5e8a250ac83fbb645e86","size":3710392,"filename":"pool/main/m/microsoft-identity-diagnostics/microsoft-identity-diagnostics_1.1.0_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.17)"],"sha256":"ea006190e965a407726db2ec6f533f39e83eea4785cba16b89fdc55c561800e8","size":5771072,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.17-x64.deb"},{"package":"moby-cli","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61009,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"084cd12e9d8a5b238eb2e10dafd4adc2f10e8fe586021682d8f4f891bd3e517e","size":10611276,"filename":"pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.4.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18300,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.3-1)","sed"],"sha256":"0ae876963ac701d7686dcae51c07ed0edf0ab3a529fb1f87ae76b9d191a21775","size":4361250,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.9-1_amd64.deb"},{"package":"moby-cli","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5b8bfba41a2afa6de91fbf35a0fc005c549ba4428acefab6216fc070a230b137","size":10594424,"filename":"pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"22db54b2b0a7d85c4fd6ddcbd1071cf6690f37fe1f86b2ab1d76605301c297d3","size":2126478,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2748-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e4757e43421856dd01a297de2518a0979455f303affc4df7775a9dacb9ac464d","size":155251980,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2748-1.deb"},{"package":"moby-compose","version":"2.0.0~rc.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25268,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"9571f78093694921902fe407649388fd4b48b8f89432893458891e2ccaea8660","size":6247244,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~rc.2+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"00194f5ea94974620a3255fc29990b323b621317fed2e9f209dcadf14528aaab","size":408388,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014760002_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e4e957b810ff363c724afd9398a9d02fe4cb3f78fd611694d5b9ab9abada1bfa","size":2662,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.18-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"ed6c17e9b097f870215ae32caba285a0a5e80f0281d42f9e0e53250eba6095c8","size":1308164,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.6-x64.deb"},{"package":"mdatp","version":"101.56.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":209752,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"f3da7d4ec2f218f3c89d55f054f8981d85c444935882dfd3944edc076a0f91e8","size":60952270,"filename":"pool/main/m/mdatp/mdatp_101.56.62.amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.15","homepage":"https://github.com/dotnet/core","sha256":"44c3a29730492668bbd5821e70081e0ddb20b38fc2eaa5c4c2ebf99fe9784e44","size":42262,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.15-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.308","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"79fc932e3258553858c6382c16802fcfa94d62f28517117af2afb39d56a11948","size":85094014,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.308-x64.deb"},{"package":"libmsquic","version":"1.9.1","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@9d58bd1cab7b>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"005fa43baa219c99f3dbd5390570f7784ad57a665ee75e526dd23a3c1ef2cfd7","size":773500,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.30)"],"sha256":"402f832862ef2322cff59931844b5adbcbdab63725a9925667883ff45dfe9ed0","size":5775564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.18 3.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.18)","libc6"],"sha256":"ee67dd1b1a5740ae263785574907efd2869998fc9af0d6735b196a5410e10eeb","size":120800,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.18-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"5157e4e1f5161048ca76e1fe1cff487d566ab21e491dc55346b9ca02dea26707","size":10202,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017190001_amd64.deb"},{"package":"aadsshlogin","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"3f5c88739aae903fdcc035eadb492764c0d0c2d8faa2db9432f1b7eeabf1bcd8","size":415792,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020320001_amd64.deb"},{"package":"moby-engine","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"530b25a33deb1641dd9ff15065ec7ba248a9ded75b96d2409cffe9d8970f1533","size":20691414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.11 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.11)","libc6"],"sha256":"346c1c49b7f41d464719a2389b1340515b64899cbef07d560eafd65437064630","size":140414,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.11-x64.deb"},{"package":"mdatp","version":"101.98.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":311625,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"147bab5f68ee0bad8b2eec5dd67bf10db5ee75bcc867902d63ad39b706e351ab","size":120076756,"filename":"pool/main/m/mdatp/mdatp_101.98.64.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"19454afb0d67ecf652c90ecbf65443b5524652960848ad267989b2122edcd5e8","size":421574,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.419-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189759,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.419","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.25)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.25)","aspnetcore-runtime-3.1 (>= 3.1.25)"],"sha256":"9b5337bd95cc181c5bb932c143f3113176dab3e06285edb8855cb25dc6aba921","size":48632002,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.419-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.18)"],"sha256":"96d5e5d5856a7748dca4536b045a993327362e7fc8b70403f71a7b1d511e40e0","size":5770944,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.18-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366165,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.302","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"0eb71faed541f514db82c099ca2673a31f61a1610d609015125e5bf8b0825127","size":96471690,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.302-x64.deb"},{"package":"mssql-tools","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"738e74704c935e0e6710a486b5607629201e4d1ccd8267a007286bad06314979","size":210546,"filename":"pool/main/m/mssql-tools/mssql-tools_17.9.1.1-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.24","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.24)","dotnet-runtime-deps-6.0 (>= 6.0.24)"],"sha256":"da2ab36b08a57243f18bb74639b7c3d04b208b53cc97fa52a6e7fadbfeb3a76f","size":23042886,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.14","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3cbd0265d728a2e0f045f86b1426f91511042c41d64dd5c842f98a9e31a3cb3","size":55756,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17477,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.28)"],"sha256":"d3462772eb5accb36372a0b01f079b44da114b8f9c8a404ae4512c4ad8df2fa6","size":5770252,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.28-x64.deb"},{"package":"mdatp","version":"101.23.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"a7579005e783af0a46215df77bba992acd3d641fb72e331d9b7b83d958db4f33","size":44873452,"filename":"pool/main/m/mdatp/mdatp_101.23.64.amd64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":65424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"da7bb023af3964e47ea808fc590db7ea4b9178253ef0ef5b7959f33e026825cf","size":24476584,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"azcmagent","version":"1.8.21196.008","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"48220f8a0d8da89a839770f528dc24c937d37d07c4a1b250f82c40589ce987fd","size":49539918,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21196.008_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.24 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.24)","libc6"],"sha256":"1c963d730df35afbdd08774445048e21b215fe4a1ca4aa7a315038f262206fff","size":143978,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.24-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.613-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237379,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.613","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"af89a736bbe1bdd955cf185d762f48c2538da908fff74b8c5625a68a928280cf","size":91109030,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.613-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"98e226c6ba99ef984fc0672c64c50b5ad3b1b03ba574ddbcdcb87cb6920100a1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.4-x64.deb"},{"package":"moby-runc","version":"1.0.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15164,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"966319b07864ddb965f0fae70aa331b228f9ba5ef8eee8fc5bccec0be9097d61","size":5342240,"filename":"pool/main/m/moby-runc/moby-runc_1.0.2+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"47224012dd00dc4ca3922f53ec6f28b59183c31e8b96d6fb5378f16bdc48ea58","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.3-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"b53ebcfacdf29eac63b0cbfbac377be5a0d43604f42f9a81332a3bd7ef3ca668","size":8618,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.0.0_amd64.deb"},{"package":"blobfuse","version":"1.3.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":32116,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"e7e371cd87cdccddccd16a489a8ce328fc91966000cf15b231b8071aa484bbd8","size":9247938,"filename":"pool/main/b/blobfuse/blobfuse-1.3.3-Linux.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9a9bf7427c72d85516659c34b1d3155144bc9f45e8268b5afb5fd6f6cd3b80e2","size":165951860,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2855-1.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"298ca20f667539f0447ce70b602175c5a43667e4df2a5918850e38be70d93e74","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.11-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"df9e26395b518354f6b59724ca4a99385a81d0dcd93116629e650791ccc54373","size":854522,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71070,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.4 Microsoft.NETCore.App 3.1.4","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.4)","dotnet-runtime-deps-3.1 (>= 3.1.4)"],"sha256":"28a521d6ea2af92c6c3f028cfe5de65f49830fedb26cd0ab8c50716a9093414e","size":21758502,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.4-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330659,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.303","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"e03edf1562de2d46ed9ede9b2090c8c67c694c22dda9caab48a7b3de7bbc994c","size":84893404,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.303-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.29 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.29)","libc6"],"sha256":"037ac33738434a2134563d40a0b20811bb4e01543bf25a16d700f769e1117470","size":143502,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.29-x64.deb"},{"package":"msodbcsql18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"b03047121eb77666ab31d842f1b5e7abf0d488d4964de97cd7864296312c5058","size":751576,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.1.1-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"7e1318fbdb8cb45bcda27e89eb70503024856fc6dd746c6ec4afaec7583e357d","size":13151206,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-Ubuntu-20.04-x86-64.deb"},{"package":"moby-compose","version":"2.4.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25900,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"a44fe5896d17c913708b1ec073a27b3005e06e2da4ce1bcc4e9d66105deaf0c7","size":6553632,"filename":"pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"89ac9a18542ccbf905a024567e4b112ac7ad87fe01341b88f36076dc3aa42cac","size":36608,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.30-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.414","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"a74f1f420d43895ed7672cdaa10c34e6061f3794203c21bda1163a805da6003d","size":47689264,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.414-x64.deb"},{"package":"aziot-edge","version":"1.2.7-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":24498,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.5-1)","sed"],"sha256":"be275ac3efb940ce9813ec539b4d71deb49f1308890975b3396441ec15bb0bf1","size":5801232,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.7-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.420-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192811,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.420","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.26)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.26)","aspnetcore-runtime-3.1 (>= 3.1.26)"],"sha256":"2559bd4f2f5f56aa43038f36b6c6ecd62e80f2f7e7b2c42dcea35f2ff57c4393","size":49628712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.420-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0edb21dea4dc5410ef2d5eb293973ad3674cf78a0c2feca897d8b78de2bf1be0","size":3521342,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.201","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"f76fd2500bc24f7d149bc04898c38b7739855f89083f9ba6bdeb608be077e336","size":91822146,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.201-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"38f353af5ed7d7fc336527e53b4a000a63e832d9aa2431ab9c6cf0343ee7cdc2","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.3-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2453,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"01ff7a8f22ae168b292f2ae2195d5ca245ccfcce3731a668d2297d688b48ec55","size":600674,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"caa042a6bbd325c7bbb6d43906cc82643139192e294081d965ab9f01fbdfa099","size":2134180,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.16-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"2b0162e4c5436de0e1d77bd3983f4c30980d6e0f9082b4605bde0b1dcedf0edd","size":276220,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.13.1.deb"},{"package":"mdatp","version":"101.18.53","architecture":"amd64","section":"devel","priority":"optional","installed_size":161906,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"81461dc1ff36d153bd25ffe1df4bac5b86d0c1f04dfaf51bc88983cd5bd71c1e","size":46555298,"filename":"pool/main/m/mdatp/mdatp_101.18.53.amd64.deb"},{"package":"mssql-mlservices-packages-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":930206,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Minimal install). Provides RevoScaleR, sqlRUtils, MicrosoftML, olapR. Excludes pre-trained models","depends":["microsoft-r-open-mro-3.5.2","microsoft-r-open-mkl-3.5.2","mssql-server-extensibility (>=15.0.2000)","microsoft-openmpi (>=3.0.0)","zip","unzip"],"sha256":"e14ac0e6d687739a1e3909989000a25fee5d8a9929b48e39dd78f00943c6f469","size":315570216,"filename":"pool/main/m/mssql-mlservices-packages-r/mssql-mlservices-packages-r_9.4.7.958_amd64.deb"},{"package":"moby-compose","version":"2.0.0~beta.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":24812,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f56dcf1e37a8142f372a00065d6777249c2824527082902abe2edf9c6a99ce57","size":6150688,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~beta.6+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3568-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7740d9dabdc573fd79a667270286de40d4e7e228ac625b13430c6817329591ba","size":210162064,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3568-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68340,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.14 Microsoft.NETCore.App 5.0.14","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.14)","dotnet-hostfxr-5.0 (>= 5.0.14)"],"sha256":"e4586a6c19e25f8de85705e8eba701d831528a41af4802f56be25a099b6a69ac","size":21997426,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.20)"],"sha256":"eb3e6be4924a022cd556e69e57c659224958f95923f07291797ae2dc163b1a85","size":5771624,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.20-x64.deb"},{"package":"omi","source":"omi","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4932,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"50b375bd6daebc0d958bf2e40b4d1344d0d0e60f33a96fe9047fed28177a7978","size":1916714,"filename":"pool/main/o/omi/omi-1.7.1-0.ssl_110.ulinux.s.x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.19","homepage":"https://github.com/dotnet/core","sha256":"bf3f3c369ee7c8d2ec6a8b943cb33d6ebdefa6c7a9c10da16bc10c6301984c24","size":41926,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.19-x64.deb"},{"package":"mdatp","version":"101.23082.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":411025,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"6eb534b0e23b061644bf6b11a6eaeacc59e7f44ca5afba33a505f3950ebf456f","size":150354446,"filename":"pool/main/m/mdatp/mdatp_101.23082.0009_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2630-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3b3068a6c3dc8569dfe470d4d49907b94ccc0b26daaf5ea75c1b14866374b5b0","size":196791632,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2630-1.deb"},{"package":"dotnet-host","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8d6bc7c7136b190c4be6ad8166c1fc434b7b5e01b1cdb92de4ff74011784112e","size":52610,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.16-x64.deb"},{"package":"powershell","version":"7.3.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172244,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c4ddfbad0231ba18ad70571c4c5d69f5a2dd5f7834054737ac6bb4089d83317e","size":69188746,"filename":"pool/main/p/powershell/powershell_7.3.8-1.deb_amd64.deb"},{"package":"servicefabric","version":"9.0.1260.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"06efd5242831d6cbe0ad52c5f48c8c7b8f351111866a2157213bea352bf751d6","size":219809800,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1260.1.deb"},{"package":"open-enclave-hostverify","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"eac91b2aeb9a9d5d65bfc3bee92bc182b45a1dc36206565b9e1a29991510cde8","size":838576,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.2_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.418-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189686,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.418","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.24)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.24)","aspnetcore-runtime-3.1 (>= 3.1.24)"],"sha256":"110ed42ce693e9e87a8d262ccfb4890258c1b9c67aa74289a75ef05270284c70","size":48701804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.418-x64.deb"},{"package":"dotnet-host","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ced1920acd3fa15e7b196570f2a8ccb7f7b5f190d6f54bef6542f5812652647a","size":52544,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.10-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.524-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228636,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.524","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"4337dc8d667486f84b352f6ed5191439e4eae6ce9e7053c113ba86f6ea20dbc6","size":89347104,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.524-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.9)","dotnet-runtime-deps-6.0 (>= 6.0.9)"],"sha256":"43fd3fccf39777add0f20b110264ad674c51db7e71cba095e694e45fd286b195","size":22757840,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.9-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124351,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c6294b5e3f4ccd0be66fbbaa85c712a6e8ea40b6b1ef21b2c0fa75665b2a2bbd","size":46492464,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.5-1.deb_amd64.deb"},{"package":"az-dcap-client","version":"1.12.0","architecture":"amd64","section":"unknown","priority":"optional","installed_size":928,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8f8b8a97e62e5e6c96737e6ad5beebb6cf72ec287ff91f22dbd012de8b3b0c3e","size":157348,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.0_amd64.deb"},{"package":"moby-compose","version":"2.0.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25308,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"77efca81480ca14296bb9ee2431243f2f7a1f4a99e0416de54cd6a09affaba5c","size":6258904,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.417-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189683,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.417","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.23)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.23)","aspnetcore-runtime-3.1 (>= 3.1.23)"],"sha256":"c2eb73259d21d048a36a6dd1a94b491b22d803066efc0ca0416daf3a4aea8b27","size":48794952,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.417-x64.deb"},{"package":"aadlogin","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"a0fc2406eaa9ec62c488c6663cefe2d8c4ed0422d7c0a5776dd8fda173ebb2c8","size":409538,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015090003_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3904-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fce4415081b2014454c7e0e09b55cb0c4518ecdfdfa96e6b7e7e5054b0548a9b","size":210976936,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3904-1.deb"},{"package":"azure-functions-core-tools","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fbd61709f8d36b229cc8fefd7fb657958c6e05a60cc63cce0e8e1c61bfe2e267","size":156055452,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5095-1.deb"},{"package":"azcmagent","version":"1.30.02313.864","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"217334ca96338070b7e7592e98eebff6de450b154e79b095fb77956269d08bb7","size":54191138,"filename":"pool/main/a/azcmagent/azcmagent_1.30.02313.864_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4865-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e5a1b29838b4bd994f116abd7703c5705e0e88177b0899d91f157b8592ed1864","size":126081380,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4865-1.deb"},{"package":"iotedge","version":"1.1.13-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22410,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.13-1)","sed"],"sha256":"5226e164dd8e0b6318a9c83ebc12ae4b7f10dfbf1da6b489616c328326d2a17b","size":5365236,"filename":"pool/main/i/iotedge/iotedge_1.1.13-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"dfb9214017c725b2f2857bd83da980623a9136e48905375df61319b1ccb12ec1","size":3531316,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.12-x64.deb"},{"package":"blobfuse","version":"1.3.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":32438,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.6 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6aede32ccf34dbfd76bffbb270a4fe2b15a2f2bf1f5bf8ea4fec63f80f9081eb","size":9324526,"filename":"pool/main/b/blobfuse/blobfuse-1.3.6-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"0e7f8c54b3dfea3b702f365b5a3e6ea6d8cf4a7c4662060468bdc85b7ba5bc0a","size":3510880,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.6 Microsoft.NETCore.App 5.0.6","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.6)","dotnet-hostfxr-5.0 (>= 5.0.6)"],"sha256":"4df8bd5483874ceecce6b637025073d3b22786fee9ef4af2dedb232eed5873e2","size":22057276,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.6-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.517-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228837,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.517","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"e6e6d81c8eaa8b4fb732e5f7fdac15e177c239dbd031a175b97145ffa6f0b786","size":89500922,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.517-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"b80fa237cab00252cc80941d7c912bed0c6565891b9ad4a41ebb2641e1c138a8","size":2133678,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"aea9bbfadb50a1d585f155e1288b96a271e5323745a8237804d4d1ebab50e5fd","size":1885624,"filename":"pool/main/o/omi/omi-1.7.0-0.ssl_110.ulinux.x64.deb"},{"package":"mdatp","version":"101.23052.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":338816,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"9ab4f42422cc0a05edb15b77e86a6ce02a81723fa78cccb88cd050252d63bb91","size":127189952,"filename":"pool/main/m/mdatp/mdatp_101.23052.0009.amd64.deb"},{"package":"osconfig","version":"1.0.5.2023013001","architecture":"amd64","section":"devel","priority":"optional","installed_size":5153,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"52ba97e9735618903e85a50294eef44fa930ee476077d7416a4e7bc2ef40f1fa","size":1851528,"filename":"pool/main/o/osconfig/osconfig_1.0.5.2023013001_focal_x86_64.deb"},{"package":"sysmonforlinux","version":"1.2.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.2.0)"],"sha256":"39e135f6689b247a432965a4637d4ef33b8e247185a84b6e22bb88cf85f941f3","size":1763970,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.2.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4484-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"607fe4f1b916dc219c50db78982467537da3ff06c52419690be4be120dec1800","size":211180224,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4484-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":759,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"d20d401ffd04570d660e9519f01856af426e76e43bb0dc881e02089375f77b1e","size":114856,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337378,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.412","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"dd362800c334d523de07ad66ee417fc7bfb3719fae9e47a6db056bc550a0f071","size":86785310,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.412-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.20 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.20)","libc6"],"sha256":"f39bd912468456be7292f870fdff2c06fa5f89117d240e2b4ef8362a5b3d1005","size":143576,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.20-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.25 Microsoft.NETCore.App 3.1.25","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.25)","dotnet-runtime-deps-3.1 (>= 3.1.25)"],"sha256":"a0d0d0fbbab9b9daf11923e9cbaa91f9501881a2a71235ae79038d8f46cc928c","size":21306090,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.25-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86958,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1f0df1f218007cb1f051cc4fd80e79ae38a1a9641be0fa71ae2f754023bea6b5","size":20689626,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126664,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0bdc48a71d6515f866fedbd9aef11869979c3fbb1aac470b1ca8a4a366025d20","size":47817962,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a76ec8cf376965a2fd15d5e058801940fea64b84d1d1806bb27d647b8d26b25c","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.22-x64.deb"},{"package":"msopenjdk-17","version":"17.0.4-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323723,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9a19875d9ceb75e0a53b8d891e251d2f3e3b5e8fe2d8212958dbfae9d9a6fcb5","size":191767862,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ebffdfbece2e6a15cb8ca36681eb25fe4af0cc3a0914b468c97f5dde27b1cf1a","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.2-x64.deb"},{"package":"codespaces","version":"1.0.2705","architecture":"amd64","section":"devel","priority":"extra","installed_size":94759,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"f7d3d255d28501e3b044c629a5f5c124481d1752e2d57dc3f3e8a09f08cc6a01","size":27038796,"filename":"pool/main/c/codespaces/codespaces_1.0.2705_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fdab3fb00d13808ecfbfc38615abdbfd719852aac2af5244d4d96f650fd7a6d8","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70794,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.3)","dotnet-hostfxr-7.0 (>= 7.0.3)"],"sha256":"872025cfc583a1011dfcab995b870b320c02ac0bb639fef2473da68193d04de1","size":23196546,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.3-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.413","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"6f9a124784e3653bd9e94ca6e5a6bb334876bc0c8c311c6ba9b8f56378175576","size":86794698,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.413-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":9002,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"44ad702805647f92be8eb885950c28ab5bfc886b5c27a7106adf069acc3436ba","size":950516,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.8.deb"},{"package":"dotnet-host","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"caa3845eeafc6c216ba279ff4646785cf2fa433e7927a3183cf89083dfdbfd35","size":32472,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.28-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2602,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"115f317b11d6b989cb7e2ca91a93378e72e1c0dd5c66b0b6e3302ba185756356","size":647158,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.10.0~beta.1-Linux.deb"},{"package":"azcmagent","version":"1.1.20287.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"046ccbd2a8fc63e22f6c1e35ea12d4cf7989680f43ebb1f884ec485797248266","size":18254798,"filename":"pool/main/a/azcmagent/azcmagent_1.1.20287.003_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.1)"],"sha256":"c085c0275e7e0a416d98c5514c08e43e1842f20f97f5d7bc2f1b647f442375fe","size":1496790,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.1-x64.deb"},{"package":"procdump","version":"2.2-17219","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3c7d9ee6832a137f4f0a331bc0c9e002f544df6f90c38f878203432e70f78320","size":1649314,"filename":"pool/main/p/procdump/procdump_2.2-17219_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"767a00e324ffcc296021afd1aecdb3263cbab0d79bdc33dbeadc4925f1967215","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.21-ubuntu.14.04-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"e5638610bf3a4a5a45029e91edba0ecc1a6d45d25e733014a4a1ffe927a34aaa","size":2569446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.8-x64.deb"},{"package":"moby-buildx","version":"0.8.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"75b1a3ddf85ec693e210a5c1c95520e0bd0daad97855b83e71d1189036e7e8a6","size":23115808,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.1+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["uuid-runtime","libcurl4","openssh-server"],"sha256":"f0ce33c696ef3e43db1863ece443bd9cf05a147e9ee1895de7a8bf02c10f89e2","size":408454,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014460002_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.4 Microsoft.NETCore.App 5.0.4","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.4)","dotnet-hostfxr-5.0 (>= 5.0.4)"],"sha256":"23b35e8f0806da0400692a6fccced60b646c963f670b4d4f0afc611741b61e53","size":21666482,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b5292e77dea925f8f42cebefed36456b7d445550667e4e2f10c421800243eaf3","size":2802,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.11-x64.deb"},{"package":"moby-runc","version":"1.1.6+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"13a329ff5144bea7a53279c7817d93ecaa809b54fe6fb3446271a801ecbf2f75","size":5765270,"filename":"pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2931-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"24469122e8d18f39a1cd81536e686e64a4db72023381f7e6100aa28dbf46843c","size":189901280,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2931-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"77c33e5cc79a5e787f2ea52d4ed1d5b488fa1b8a75bac71f89aa7dbb66884172","size":224546532,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4585-1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.204-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.204","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"f201477cbd121fc19972135c96df8cad66f1d032cd6674b3cfe7bfb3dbfd7a30","size":57052168,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.204-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2798-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1180664cb2b0443c917020035cbc9afbe6c2f0eb02b44b368fdaa06b6e9c9ca1","size":199570824,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2798-1.deb"},{"package":"azcmagent","version":"1.5.21103.012","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"ae286b111045800a34714dd0c235ad2c1332f0427cd9d4efb20bbf8b966b77c6","size":18200878,"filename":"pool/main/a/azcmagent/azcmagent_1.5.21103.012_amd64.deb"},{"package":"blobfuse","version":"1.3.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":32299,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"4f2cdf1424188cef2f2c9d84056518a1aa605f70418cfa49db413378f3828dff","size":9275670,"filename":"pool/main/b/blobfuse/blobfuse-1.3.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.14","homepage":"https://github.com/dotnet/core","sha256":"90ef0d4bdf9275dbf138490bd2fc308d7291ea1c4cca4428b518c9d34f9235be","size":3412096,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.14-x64.deb"},{"package":"dotnet-host","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f6f7c2d47dfb5611daa5362c784b4a3132643affa2af8eea2d73d2c616ebe3a","size":32848,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.10-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.15)"],"sha256":"1ba5241e0921b49c5b79ca6352cb9471c9f52404fc781d619d0c500af9309853","size":5771540,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.207-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222088,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.207","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"d1bc258e7ce50cf0032c1599dc4953b2d3053a25b70c55999294148142cf144b","size":57439210,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.207-x64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11)","odbcinst1debian2 (= 2.3.11)","libltdl3-dev"],"sha256":"af92e472b5811d93ee143d74f84e36035d54e879c3e983c20c1ce831ed3c2661","size":42092,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":192266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a3aee968950be1b9dc7e8900ce2ac8537cc349dbb5f8c9ec4147ae5d6c704a1","size":69296044,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.8-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.23 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.23)","libc6"],"sha256":"19334631da0ccb215cf05921be73263251b86a3928a49b22dfd2eb3a316c4233","size":143478,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.23-x64.deb"},{"package":"osconfig","version":"1.0.3.2022061604","architecture":"amd64","section":"devel","priority":"optional","installed_size":5338,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"b90f458ed9a31c68751e7c911339b88f26934637f15f0c4668a74b83d1f5a8c8","size":1873930,"filename":"pool/main/o/osconfig/osconfig_1.0.3.2022061604_focal_x86_64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":46224,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"d17612518e9da1676b1d7ca4e4a5c34cdf0112034e2147c84c6c968f47d5ef8e","size":10168922,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.17 Microsoft.NETCore.App 3.1.17","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.17)","dotnet-runtime-deps-3.1 (>= 3.1.17)"],"sha256":"a77fe36f2576b841a6c97d8ff34fe371b3a5e99d5dcca6e7857ddd8e8f644b12","size":22014644,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.17-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.10 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.10)","libc6"],"sha256":"d3b59efb3cacce21964eaed142cfddcf9ee089bc03be959f6668cf782f85ab42","size":140290,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.10-x64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"0cf41bd4984948cf0efeef593c8455ef9085dfc7797ceac09c93a32d5d633588","size":26991484,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-3_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.0)"],"sha256":"7afb956081476567eaf4cfc501d80e36f45e7f5cfa632b9bd3f5ae11164498ef","size":6597988,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.0-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"03b6bf32043878a8795761446606057d6ebc4b983189e373e11f98d4ecdcdd7a","size":163448,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.0.0_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70844,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.13)","dotnet-hostfxr-7.0 (>= 7.0.13)"],"sha256":"8e1eddfe95f1ff945a99e4a7320e89168791bef823d2c208a94fa337198ab7af","size":23207954,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.412","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"9552616ce32bdb1cb508912f5a1658fb837908f5a8683a4dfe218c96afeb7e72","size":48448546,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.412-x64.deb"},{"package":"dotnet-host","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.23","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b09d6cde7441c2eaff5b52f2946dbd20f13c27277b7882b083db362c5c982ab4","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.23-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.119-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.119","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"b86c178e4a12c74704dcf88ce50509c5464abb2f0cb5647d42285851814ead77","size":44221936,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.119-x64.deb"},{"package":"moby-containerd","version":"1.5.14+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":107149,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ae122dadaf5ec4af7b7eb176cd30cd25f304b7bc3ab375fe98a0c4a4d195a652","size":26328750,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.6.21132.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7848a2e2af66bf781f9ed6e97383d75c91572e8ae78507411d46a15a9b2dfaf2","size":18393252,"filename":"pool/main/a/azcmagent/azcmagent_1.6.21132.003_amd64.deb"},{"package":"moby-engine","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97192,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3b00225c2da675b9aec9bb564c96f28f1324e1e0b811d85a9f92258982cc68f4","size":22796342,"filename":"pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"sha256":"1cbb09e808628fc0f6b3c8d4190bdf72aa4abeae6bee553fb279eaf530f3d5ca","size":247000,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge-3.6.1.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"40054404658f583020b4fbbe0457de6cfd4b0fbe4bf0ee29f1f7ea0489023d5b","size":99742,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11_amd64.deb"},{"package":"moby-containerd","version":"1.6.16+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":123874,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2d48ceb4e5a1342de32c5ff1b522eead21f1738d782785a3469b18087d69e815","size":30983354,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":320277,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.202","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"9c772c540a3c0f2d381f43e8c957d125bc60eaaac26bc03df64af37c16b295a9","size":80345074,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.202-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2c6cfbcac249976eb38350d6ab9bc5ca5b7e24f9912fb16b0ac5183439d03a06","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.3-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.13)"],"sha256":"715b47ec285b237f848de3812c6ade82e8e145506742445e4e15679a94a3d3e8","size":5770616,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.13-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189425,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"0e13c8b61406fd33189984cdf15825163d9ad9efdd6ff0eee3a59f1a9f87602a","size":47662712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.403-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.13 Microsoft.NETCore.App 3.1.13","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.13)","dotnet-runtime-deps-3.1 (>= 3.1.13)"],"sha256":"e68e3308a9fb85ab39ed98538604c0f55f7906176aee67cd2ea965b744ca97c4","size":21727966,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.13-x64.deb"},{"package":"aadsshlogin","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"27ebc6dbdfbacb230152da41b1fc87b66a5b37a8f3b72d3def70de0c249906af","size":283634,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022090001_amd64.deb"},{"package":"dotnet-host","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"aff93d6991b1b40fe3cf237917bbcfe051796b8499d0109d601449fb05cc2f92","size":32874,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.12-x64.deb"},{"package":"azcmagent","version":"1.18.01965.166","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"6222db0bc7e2b874193d109b88d420ad3f39198caa0d013a314e1ee43763c739","size":52442524,"filename":"pool/main/a/azcmagent/azcmagent_1.18.01965.166_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.403","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"02fc8659df6b8072d12a3fe4757d0e75c91ef0f4829edd926f0766737c5d315d","size":108194782,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.403-1_amd64.deb"},{"package":"moby-engine","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106338,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"05a18fb71276a063f8a6f2ca216bbe3cd6cb2bf1731ebb1ac34292d4b8e6d23c","size":22708988,"filename":"pool/main/m/moby-engine/moby-engine_19.03.14+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312591,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.104","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"966102b1975f5a371ec6e70fc87181846d1ee81bd4eb4747a439cfde6b840022","size":77930174,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.104-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6a06548c60acd80cbeae521682d0257bf2d19e04c8b830246ad966b9e7a19c9","size":156768584,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5274-1.deb"},{"package":"sysinternalsebpf","version":"1.1.1","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"1dd9e60dfefcc67a0617b864467b91237043d0ec1bff053d6d09a147aa33bcdd","size":675114,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.1-0_amd64.deb"},{"package":"iotedge","version":"1.1.11-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22406,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.11-1)","sed"],"sha256":"b307e4f510a3425f3d3282ad0763db7cc7bd1360e41f3dc3548ee8f033c0b1c5","size":5366952,"filename":"pool/main/i/iotedge/iotedge_1.1.11-1_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":501,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core","azure-ai-vision-runtime-image-analysis"],"sha256":"2c5191dbe6fd403b2602052e8c8eec335fe79b4a12587ea32cb22d39a9cd8331","size":77352,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":125669,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"166445aebcd9332fa928bafcd666cee7e4e8d59b126b602d055dc76253d2381c","size":31518918,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0abf0aea546c03a27a2948b0ef5f51f2eb6120b39dce94983a2f214249c7b7b1","size":2568446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e9cf6178ae45f187173f1f806e1889cbcf87fa9e55fb4658ff1ef0617d2de25","size":68352544,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-host","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.15","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2d084d26ada01ddc7eb08809dd498002f112670c8aee58b122200cce86a8ac00","size":55902,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libpam0g (>= 0.99.7.1)","libselinux1 (>= 2.0.65)","libsemanage1 (>= 2.0.32)","libssl1.1 (>= 1.1.0)","libuuid1 (>= 2.16)","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"c9c89c8d6d55e1887e3fc8b15252850095c7ad10c19bcc78d1fc21c729c4a163","size":287578,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_amd64.deb"},{"package":"mdatp","version":"101.60.93","architecture":"amd64","section":"devel","priority":"optional","installed_size":207852,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9faf6bf463dcd6cb467eb3b887b9f5af1d7c5a0e05126b989f5c7c640db84567","size":60945336,"filename":"pool/main/m/mdatp/mdatp_101.60.93.amd64.deb"},{"package":"azcmagent","version":"1.24.02147.540","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"572a26cd0e32a9d21ad0c6df406349110bde36150426e0f78a2bc84f532f51dc","size":53624042,"filename":"pool/main/a/azcmagent/azcmagent_1.24.02147.540_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.8","homepage":"https://github.com/dotnet/core","sha256":"5a6723aa7323f676d0ec8465fe3b602fd6cf8adeb4eb3116811624a140b876ac","size":42452,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.8-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)"],"sha256":"8e7550023fbc57e74b2c137731f2dedf9dc8c0fc1b106b9d051e0dba8e97e862","size":5099542,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.31 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.31)","libc6"],"sha256":"56ef9743de9e2daf7a37873c7d8df3b022354219ec5f8f53a7a5c02138ac405f","size":120744,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.31-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337159,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.406","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"6f0964aa293e16b62a09a7c9729f03739dd5f5580702abafa2836d02bec26014","size":86710362,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.406-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.18","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.18)","dotnet-runtime-deps-6.0 (>= 6.0.18)"],"sha256":"bebae5e400edcf0dde125ac0be4a050443701904abc62d951097ea836865b347","size":23003214,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.18-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"becf3010aa8513fac0cbdaaf3173b2fc4363c1d6e8edf0b0db6762c3f8fbc640","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.16-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.17 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.17)","libc6"],"sha256":"5a5023c3892045065a46cb3487fb406bfb297e57aa4f7187cdeaa64181e4d82c","size":140426,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.17-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.7)"],"sha256":"5c60c0e32b4411b290d7a0169ef42fde0207876aead9fbbf9b42741bc27e12de","size":6606224,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"9608dfd66efa12ac140fd22d6b0ae1b83d324bcd0b6a5f17aa744177ea3d5140","size":3517494,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87618b484f3f331246a154bd7f60d37cfd9886a5a387b60040c554ebd698ae38","size":2644,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.12-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.23)","libc6"],"sha256":"b0fd147129b2e43d6f372e0ec8672e9b240b80972102582921b829282cc7bdf2","size":142344,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.23-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.6)"],"sha256":"fec1c17c7c876314684490ca6a0b6dee6a6c4113d5116e7a8cdce9bec436f8f0","size":5766564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.6-x64.deb"},{"package":"aziot-edge","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17499,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.3.0-1)","sed"],"sha256":"26d6e671ead2589047577db8abb90fa908d34c8431346bb6ceef761b546f7d08","size":4123540,"filename":"pool/main/a/aziot-edge/aziot-edge_1.3.0-1_amd64.deb"},{"package":"codespaces","version":"1.0.2579","architecture":"amd64","section":"devel","priority":"extra","installed_size":94383,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"de7608b5adef8a63f576ea96802f680897932e37f8d63435f586c2442e5a2ebe","size":27042980,"filename":"pool/main/c/codespaces/codespaces_1.0.2579_amd64.deb"},{"package":"moby-buildx","version":"0.5.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59965,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"6010b29f27c571b60622ed6a8e11df33fd1630238ba3158454d60426db674df9","size":20595128,"filename":"pool/main/m/moby-buildx/moby-buildx_0.5.1+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.10)"],"sha256":"ac987094f8faae67945a87a069a49e989972c16ca7cc9612fd2d5bfc739b9832","size":6609196,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":122140,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"6f526e67a6e04bd738ed8460f43ff18ad6f98742cc30782c66aa5e77b47237c6","size":33277610,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.19-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317712,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5dd9d213017e1885ba6031e313ee2a7fc4779f757e08de981cee0afbbc318a31","size":194122530,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.19-1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.32","architecture":"amd64","section":"devel","priority":"optional","installed_size":97,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"81fddeaeddf948e1b22963d5c9fb48d50368a5f8d7c208814726b546f31d2105","size":25252,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.32.amd64.deb"},{"package":"procdump","version":"2.0-16795","architecture":"amd64","section":"devel","priority":"optional","installed_size":10696,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f69c54d78708b84c27e90600fbc50a11392b384a92acb18e522d236d38113a61","size":1645762,"filename":"pool/main/p/procdump/procdump_2.0-16795_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.7","homepage":"https://github.com/dotnet/core","sha256":"d26aa9f96af6dd3fee9bd9e45e6520e31920bf3850eb872956da82a508c9dcbf","size":42692,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.7-x64.deb"},{"package":"aztfexport","version":"0.13.1","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"06e37c42e9ad8c3c14e99616d7a2f4ec05110017d81828bd93d5cab8663d5619","size":11882146,"filename":"pool/main/a/aztfexport/aztfexport_0.13.1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.2)","libc6"],"sha256":"835aa82ef1cd149f912a69a997286c5e44fbb2dec8c7ae5343cdf76d3afee16f","size":143898,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.2-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a2133041f7d9a6ee5ba65f79a4e146dab634865237b86cb9c4f15811e5571f9","size":2652,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.22-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.16","homepage":"https://github.com/dotnet/core","sha256":"ae49980e30d863cba720f34bfab96db9cb6966c22cb773685617c6f47b5175cb","size":3418406,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.16-x64.deb"},{"package":"msodbcsql17","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"e8b30d2949b6c5411825eab7996630498b5b9aa8a4f4affdeaa204fc07c0c15a","size":743228,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.6.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17468,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.9)"],"sha256":"5f4d6ca15089702f0247a710cddd9a99ff15a7129b1b3a98e692b6af500818dd","size":5768454,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.9-x64.deb"},{"package":"mdatp","version":"101.94.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":301191,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"03edc9a54c09ababa41a5f3886a3af2e1114b96c10cdf22eb2bd6c344758ed68","size":117484794,"filename":"pool/main/m/mdatp/mdatp_101.94.13.amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"6cc25729cc609a73d6aaf7940d0a2b66a6ed1d6414260343739fe5c10d863bce","size":1836,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017820002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213643,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"282746eaaf7422e389c9f2ab44aa148223c2d96e1febbaffebe86d822c77527f","size":54843396,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.104-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.11 Microsoft.NETCore.App 5.0.11","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.11)","dotnet-hostfxr-5.0 (>= 5.0.11)"],"sha256":"7bfb09b4a2578ead902561fe49319372f503ed5957daddb04ba30588f21a266f","size":21471080,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.11-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.29","homepage":"https://github.com/dotnet/core","sha256":"88479611946f8cd8c44c834899a935d356d2b6baca8d6ea9d7a2ee0e00c23f7f","size":42066,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.29-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.15","homepage":"https://github.com/dotnet/core","sha256":"99b72ef9f7882df88cebf3fb864c74a7ab6b42545cdfa2eaf92bbbfdd541544c","size":3415008,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"0379d716bb7bfe19bca7742d179ad1d15037c9ac15425b6978bd20d28c2d0ee2","size":420006,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.018440002_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.4","homepage":"https://github.com/dotnet/core","sha256":"3ca5ea3cd2a93dadf7e96b86ffbe70c8bf568f03337c8b0150503435da5722b3","size":3413198,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.4-x64.deb"},{"package":"azcmagent","version":"1.28.02260.736","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3c15e96bd33a66432e397062305c47f62d7e29cb1daca0984e5c8e7d01e51a43","size":53738666,"filename":"pool/main/a/azcmagent/azcmagent_1.28.02260.736_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.2)"],"sha256":"ec0cdcc4cf6ff7aa4f9709cd7b7f1c8177ae4a01acd69b9ca53d1cc924c0826f","size":1516930,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.2-x64.deb"},{"package":"acms-client","version":"5.25","architecture":"amd64","priority":"extra","maintainer":"dsmsdev","description":"ACMS client for dSMS","depends":["curl","libcurl4","libacl1","libuuid1","libxml2","gnupg"],"sha256":"51f54b378f67bd2fae11cadebb6da932d3af9c857f5802b69eede907d5d15b2d","size":984602,"filename":"pool/main/a/acms-client/acms-client-5.25_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"bff2289dfed0fb7f90d969d5bef78ce3dae4ec3c845d4547e315b3e74e018b8f","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.11-x64.deb"},{"package":"mdatp","version":"101.45.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":162513,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"135aaef60f21e0bc01e5705e4d42ad8a6f2551718b6d51f4bb5aef41e2650f4f","size":47102476,"filename":"pool/main/m/mdatp/mdatp_101.45.13.amd64.deb"},{"package":"dotnet-host","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9fae6c1552491f0df64c060a52d6a631582aeee38bfc5597edca6643c1b2d915","size":36630,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.25-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.10)","dotnet-runtime-deps-6.0 (>= 6.0.10)"],"sha256":"25d420ba348172b128109c37e20790dda6d089a335c200635667f52362d8ccb9","size":23009270,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.10-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.8)"],"sha256":"fe093d8c965519050ec012a273b54e80590c38b214e9f98ddeadd10d89a615e6","size":6605452,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.8-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"65b5db317c082fc2faa9894915697e991014e253c9eda7505f06fa19bff49094","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.26-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e8a462ade9d000c63ea23567d2c0f3ff1d44755e9827adb7e249dca5efc787f3","size":167356368,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3188-1.deb"},{"package":"dotnet-host","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e47b8abe42da934b27969dd4385546e97f8c2c09d83ff3bceb0e28e7ef15d5dd","size":57218,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"05b8dbac0076ac80c1abae45fe66cd04a9ff9e621b22efdfe45fd5301826708a","size":1306680,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.7-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"c404c8d4a732f60814a1cd15730e7f38cbeac70aa46e936dbe8ee7a6c20b1755","size":2567646,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.5-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"900d02b0c6113ac51a2410488ef4f46f6fd1b438f18e5c83a0919ab645622d2c","size":1315550,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.5)"],"sha256":"d04d176d380a33e36e3588f7855317213ecd0020decd6326d5bd6076401ddfa0","size":1513034,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c0cb7aab087fa409889a0da328d16c3f2cf97d848d329142bdd3deb1b1e8e05","size":70340358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"1.11.21253.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"04a8677f6b2b2a7369f174dab1fc369e2e060bdef902ad00973de3fd6402a068","size":49555540,"filename":"pool/main/a/azcmagent/azcmagent_1.11.21253.002_amd64.deb"},{"package":"moby-engine","version":"19.03.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7a951c2a0612ea1c189cab2f2279fa0628b0fc37077de48b6ccba00ddebc4a89","size":22526996,"filename":"pool/main/m/moby-engine/moby-engine_19.03.11+azure-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331351,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.307","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"cbd5a89006370129d484ecb59bcff70b18644c2bfef2da621834a0d02d15721d","size":85122482,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.307-x64.deb"},{"package":"dotnet-host","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a8914e4e15052ff97b39824900a87f0538d3d5d56afeac61c380149294493c5e","size":52532,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.17-x64.deb"},{"package":"msalsdk-dbusclient","version":"1.0.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["microsoft-identity-broker (>= 1.2)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"d1d1eee986c6181db1937e2a44eeb32f0c53aa5f1397c978f06f0ad15d147c50","size":9930,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"30084161440d7cc15252df8e8cb53c6e653147e16de3df7b1ee25102a2bd251c","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.5-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.7)"],"sha256":"6ed9010d53b22a0086294c5384801605284bef8d1e2a3429d5877dd6a4e9449b","size":5767600,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.7-x64.deb"},{"package":"dotnet-host","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7b4745302630fe0cf936c6e1b1eef87cf29db06de5a03d62b4196e472d5e305","size":36580,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.26-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc93+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19335,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ad97bc60927a1ee6045cb2db4bb36b983bc8f18092f82eebdb0b7f8085a65794","size":6436176,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc93+azure-1_amd64.deb"},{"package":"kevlar-repokey-test","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-prod"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-prod"],"sha256":"c7ff8b5f9532cb585cb50aea395535024cb9934c7e1219e3261f91f639543673","size":2500,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-test_1.1-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1056.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"72bdf3c72584eead823b7588b371262ea28b09d7d884ceb895abe84fff3f32c9","size":226518346,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1056.1.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.22)","libc6"],"sha256":"c5a1b053ad7cbd575809bbfab15fce0bd2ada12876d7a65583c441f0d95e311c","size":142392,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.22-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"e0a9923e22f6202245812d62a3cca02b524127bc7ed77840ad5d58ee33b8afb7","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022600002_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.17-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317445,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"ca210b6bd54ec06e3f7bea285b80df66e2054aa438b97b3a63223c8cf65701aa","size":193991608,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.17-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.200","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"54ad60c1a3413fcbfb5c9490adeb39a8884935b7dbc30324f279ba4091fee6d7","size":57258152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.200-x64.deb"},{"package":"aziot-identity-service","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"51f980280e4b34d1398bb78f0227cc020aa41cd19356346afafb21f24d6ad124","size":3862532,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.0-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"012eb465df8a50284c49d0e37940e4bb84a88600094c7b706e5b15ef724c1333","size":69447560,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.8-1.deb_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.4","architecture":"amd64","section":"default","priority":"extra","installed_size":27858,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"bf244b9c2ef285d31785405e1d6a9ef97b177952dace823330f8048e65012736","size":13148292,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.4-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.11)","libc6"],"sha256":"11d2256fef69f75655ff54b6efaa710980f7497d1ee213953881753cc4ec6be1","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.11-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.25)"],"sha256":"b3de39c43b81423eaeb7b2b4821152495d7e2c35461e3c1d089c4f2579930be3","size":5772068,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.25-x64.deb"},{"package":"powershell-lts","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0ee622ed63628b45ecd297847d068fd0f9ce6675cf82bc19c83f6bf89afe1791","size":69415978,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.3-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160411,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cb98c746e36a959a3fc1be9fd03ee2eba47d0f1ceebd3a6bb4a9b2afd91aedea","size":64879422,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.8-1.deb_amd64.deb"},{"package":"mdatp","version":"101.29.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":148771,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d584e20c8fefa3ba05135655f2416365e99fa078568a3144226eb592a935bd4e","size":43943754,"filename":"pool/main/m/mdatp/mdatp_101.29.64.amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.8 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.8)","libc6"],"sha256":"ac92bef47efbbde3ea36ca981cad17f3abde3b8145fb79dad3ec86d2f7a3365d","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a582fa1a887fd86b3f89437139fed370f37f8e1308581ca7ae2b9f609d4d9add","size":25986352,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec63ccc3628fd4e5e8013bddae353225110503aa7786fd6d9c1509aad2af3f2c","size":55874,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.10-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.5","homepage":"https://github.com/dotnet/core","sha256":"cd48ff631f943efeb568d7434e11095a4523a5ed11c26ad893c1640385ee15d4","size":42722,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.5-x64.deb"},{"package":"msopenjdk-11","version":"11.0.16-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f5b62099a636f842c0e90a9103c58fabb5c7784c94fd98d44161755b36e260ff","size":193647354,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":680,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.9.0~beta.1)"],"sha256":"ede9b0fd7cc154335a4a8c0e38326e8584d2f571a20e826f5eab08d2764e27e6","size":148154,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.9.0~beta.1-Linux.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"d5a34d329b246897fad6bb370f397682cc40e40ee6a331530beaa6dbfbdadc0b","size":361020,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.1.2.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.21 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.21)","libc6"],"sha256":"b64dbaf4efff1814b6653808020f98b1b0008f323af9a84fcf771e972d624b78","size":120854,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.21-x64.deb"},{"package":"moby-cli","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"56c45f3c9cf67943f5e2ea6a1d3b51eb7fb64437b6404c6b53e21e99a369f6f7","size":12155328,"filename":"pool/main/m/moby-cli/moby-cli_19.03.15+azure-1_amd64.deb"},{"package":"powershell","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"27ac4fa4f3e7f0934afb4883df21e572b3d9650e17221d0f3f288f250a92dbc9","size":68350538,"filename":"pool/main/p/powershell/powershell_7.2.15-1.deb_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"c278d3834aa12a985f0fc920610f3f8f59a1f223bd27115395f4c3d973d3885d","size":2588278,"filename":"pool/main/s/scx/scx-1.6.10-2.universal.x64.deb"},{"package":"aztfexport","version":"0.13.0","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"5b991791b757e7205e56bf05ed9942d8c4bd949d3cd8e862b18414924a4c78ab","size":11881750,"filename":"pool/main/a/aztfexport/aztfexport_0.13.0_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"260bdf499e815b7f8e4f85f5feeb15df78a07c39ce04899c12b856446f1b1a65","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1625.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"93590808e1510dcca63c0356c7ce287f5f4fd58de266252d78f498677a1ddfb2","size":219877974,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1625.1.deb"},{"package":"azureauth","version":"0.7.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":59271,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"660f183ab8d44e13e9c1755b4cb16fc38112f348ca67da470e585876b4c76770","size":19023014,"filename":"pool/main/a/azureauth/azureauth_0.7.3-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324342,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"56009bcf7b9c08524d134fc97b99611b05d96884feee1a6de79e1e0269dc13bd","size":164702238,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8.1-1_amd64.deb"},{"package":"moby-cli","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e59b8af8190363dfa05acfcb7d68ac2be9d2fc27b6d327cbba81c8f5de5dc7f","size":16397016,"filename":"pool/main/m/moby-cli/moby-cli_19.03.14+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19893,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.21)"],"sha256":"9a74c3e3e9c66283bbf52f3cc6706555ed222a77f5adb68be201ecc4577cd04e","size":6618446,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312663,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.106","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"5d0cb323acfadabde60420dafc2beae59b9c7e50949be88df6c5c4fbfcc8a44e","size":77747042,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.106-x64.deb"},{"package":"azcmagent","version":"1.35.02478.1194","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"34ea6c2cfcbf593546d19bf6de0245008ba19c5f57d6562e7b9371792ae03279","size":55205234,"filename":"pool/main/a/azcmagent/azcmagent_1.35.02478.1194_amd64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"359c86bb4ef6fcb9d7aba0b4e52a26be110bb61ebd32ee8a3f30dc78604ecd63","size":21264,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.13+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317057,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f186bcb7e5329090a4df46ead70dda124429a977e408c6f1964d6c92f215104c","size":193475910,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.13+8-LTS-1_amd64.deb"},{"package":"mssql-mlservices-python","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":6168858,"maintainer":"Microsoft Data Platform Group ","description":"Anaconda Python for Microsoft SQL Server Machine Learning Services. Provides Open-source distribution of Anaconda and Python","sha256":"ff410d1eaee1c05e846b57a7125e7b1135eeceb44f8e46d21b4380abaaba0efc","size":1405022092,"filename":"pool/main/m/mssql-mlservices-python/mssql-mlservices-python_9.4.7.958_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"45b99186d653c5da137cb970f760ec552cc19e34867f0ea9538231de09167369","size":499988,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.4.deb"},{"package":"aziot-identity-service","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18807,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"c99435b96a6515f009b7fb5c80b871c92f5af551af132b4921b7097cc1d3b395","size":4024220,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.3-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.12)"],"sha256":"b942920b01885f1ba0980cbe3bee729b059b8f24a90069e95cb4dc2b74a30afc","size":1530422,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.409-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.409","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"abd49223df11a97d89158a4a6ea5de3a67d247d612913352086f8c7178405fb1","size":48416056,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.409-x64.deb"},{"package":"mdatp","version":"101.68.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":211880,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"f30d0cddb2341e50f82bd4a46e1b70a3608e134ab4ce03e894757c4b6e207a05","size":62043662,"filename":"pool/main/m/mdatp/mdatp_101.68.80.amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86241,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"280d0c96ffd04c2243f8dc97867a5f4244a862e38776c202d55daf9a4bfc47e5","size":20499414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17435,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.4)"],"sha256":"55f9fbaf87977ead5245675615f9587d512a55010d5916b9f8f728cf56214cec","size":5761980,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.4-x64.deb"},{"package":"mssql-tools18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"084728b16bcd4861296281290d731d22905fd298b6c2fd76036bf07314b6e952","size":211806,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.1.1.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350038,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.105","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"ee86e6651c1e00b627ef3f7688ca41c0090058df0c2508c638404e7bd64753c8","size":90637070,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.105-x64.deb"},{"package":"moby-containerd","version":"1.6.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125895,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"649ee53d05248a2f3807119389b0208ea7abd7a75f05219f6e6431767a140727","size":31599602,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.815-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241065,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.815","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"612d37eeb142fadbeaff254038fe55f184a1d68f8e1b92468f07f61e2da95d79","size":91759364,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.815-x64.deb"},{"package":"dotnet-host","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6a4b0bcc39800ee3b0afc3abc71e91551e1b91ee64ccd7af3cf27b6d5c9d58bb","size":32466,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.17-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3331-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"2853c3da2add0aecc4c72bd79a045acb8b235fe29c73e55b917fbcfd4e5612d6","size":208736172,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3331-1.deb"},{"package":"open-enclave-hostverify","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"5e644c718af535a268e77c82d77879dce7dd9541d158b1a199fa92b9a6fc608e","size":838568,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.5_amd64.deb"},{"package":"deviceupdate-agent","version":"1.0.2","architecture":"amd64","section":"admin","priority":"extra","installed_size":5423,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"42b39f5be5b2e5224b3b7f4b5a789a7791c941afdf264bb5dba99d06a317086e","size":1977950,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.2_ubuntu2004_amd64.deb"},{"package":"dotnet-host","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.1","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"99fc197b20902186c6aebc85aea822570d0e203080d1190275b378c3a360ed4b","size":52842,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.1-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"d0cb227c89dd60b7bddb22b19457285b3865273a265bf54e5243fe4a0d662f15","size":8784,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_0.6.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"20522a063dd32fd8072a9af2b3beec664bb5e44131841f011ac4287ba4278afa","size":227751104,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4806-1.deb"},{"package":"moby-engine","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117374,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a09a4f83339d5aea4d0f206f7e2b4ebc0b0ed1e375a01a9a9c0398f7f8b6f983","size":24736660,"filename":"pool/main/m/moby-engine/moby-engine_20.10.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.808-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241389,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.808","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"a05f869fc620f9c8e5be98508928d01911590bfb109eb88f924b5fcfe4f4ae57","size":91790784,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.808-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"c267904d0bfcdd06c48b26ca377b1d4cbe1dad8ab24b663809b19c33369c2995","size":3521558,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66340,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"0fadad0de7d30f3064e9218da272bf5501234f9d6385faece7b444acde72d344","size":22795548,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.124-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314393,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.124","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"b12b9b63f859b0eb365fc0aaa9d7995add2a24ddc02e0df5602372b51e0a25d3","size":78926170,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.124-1_amd64.deb"},{"package":"mssql-tools18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"29cf926ce277c710766a2aea8f755474c67002f0cccbd1293993d83c4f636ee2","size":211366,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.2.1.1-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"8b1e8e8539e5a5186bd52c168d7fad2a912d0765a999c0e7010444941b7ef402","size":2131114,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.15-x64.deb"},{"package":"azureauth","version":"0.8.2-3","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"48c9c5389d2a1728fc93ba81812d5de5d80f06de5620f2b39c1812408079e1f5","size":24113598,"filename":"pool/main/a/azureauth/azureauth_0.8.2-3_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21357,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.9)"],"sha256":"9966a7144980e0c2bb7e0a7d9dcede9248b401f6f25029a42072500831a77fb1","size":7059802,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.9-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.206-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.206","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"4ff2bc9e1710927d8c8f3eca32a654e799e580e876b5e692f3fbf4a22f4ea9f3","size":57699996,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.206-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71113,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.27 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.27)"],"sha256":"01277316792615af37048c0745d1281bf8677c1303935882af1f91904fe4d422","size":21987372,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.27-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227565,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.404","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"5c9eb60dc14c3de77141c0ce7146896f91f0e45fa19063fff45f29c3b4b44b57","size":58920910,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.404-x64.deb"},{"package":"mdatp","version":"101.71.18","architecture":"amd64","section":"devel","priority":"optional","installed_size":212129,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"a01be3805ced294071b50ec817aa52dd7e3ed03907ca1a14690f0bcad2e1ce46","size":62151012,"filename":"pool/main/m/mdatp/mdatp_101.71.18.amd64.deb"},{"package":"moby-compose","version":"2.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"13f2b881b89fb6888d9c760056f474e8a957a0302556227543fcbaddfe0390ef","size":9569480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"69f10e4842ea147f09de31260716f8ec225c4b37db721d03392a6719cd0ff0ea","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.0-x64.deb"},{"package":"blobfuse2","version":"2.0.5","architecture":"amd64","section":"default","priority":"optional","installed_size":31350,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1f399da94f337942d78995cbab448f88552e7107e2ebbd885d463b22a2bd43f8","size":15490920,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.5.x86_64.deb"},{"package":"scx","source":"scx","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7920,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"120ad5bfed144be98b596a7130ab6ef75590d602f470edafe496b92cf95bb84b","size":2748240,"filename":"pool/main/s/scx/scx-1.7.1-0.ssl_110_universal.s.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337182,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.407","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"6749bdafa013e4681150e83b49102e7dabe276d5cf2effafc74505b597dc63ba","size":86699018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.407-x64.deb"},{"package":"dotnet-host","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f80582e30c742f2e0615eb456535b98524fb0036af163b40c5ea8b52d85fc35a","size":32404,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.19-x64.deb"},{"package":"powershell-lts","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"e8a94fca555dd774d7c942d6892082637b811b8eb3eddf1a6820033d833d156c","size":70503936,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.11-1.deb_amd64.deb"},{"package":"moby-containerd","version":"1.5.16+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109065,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"70fff5c28bf9a65ff9119757a923d7637402b84b3715be6c57fca005f3792e82","size":26803798,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.2 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.2)","libc6"],"sha256":"eede5e3518991b6b207259660751fbb2803afd10578863c00cb113fbc03aa6c6","size":140760,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.2-x64.deb"},{"package":"mde-netfilter-src","version":"100.69.59-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"a804fafeb8c74bca1b8344740b45d39b1dea55e65be9f73d3d88fb2eeb1f3643","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.59-2.amd64.deb"},{"package":"azapi2azurerm","version":"1.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20460,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"40aeaab74ceb13e7c63047f68992d326dc4b23bc3e2e3fa32200ad3cf4fe5481","size":6693854,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.0.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"31c882bf5eed107484514717267ebef2535552d8a5b6477a53d70923dfd2e1a2","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.19-x64.deb"},{"package":"blobfuse2","version":"2.0.3","architecture":"amd64","section":"default","priority":"optional","installed_size":27909,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"ff605bf4122ef16eb33411f58240594c45b411b2807431f7a7c8874b6f0ce9fd","size":13181856,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.3.x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.5)","dotnet-runtime-deps-6.0 (>= 6.0.5)"],"sha256":"d62ec2da2962a43a5f0dba56da7473a91a592f5bd93c660a73f4485ce92e9f70","size":22586332,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.5-x64.deb"},{"package":"libmsquic","version":"2.2.4","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"994d24a840e636f75a59cac0674627ac661e864268b6298f004d9e2044c87aa5","size":4575380,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.4_amd64.deb"},{"package":"mdatp","version":"101.98.58","architecture":"amd64","section":"devel","priority":"optional","installed_size":306955,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7bc64225075faaef53ec1053f82c96afe64ed8bc676f2c1306237d7c6186a253","size":120343942,"filename":"pool/main/m/mdatp/mdatp_101.98.58.amd64.deb"},{"package":"aztfy","version":"0.9.0","architecture":"amd64","section":"default","priority":"optional","installed_size":46316,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"4724f2facdb5c23b9913f23d89b10316d6cd5cc320fdf436bcf68d6a0b16f8ab","size":8770940,"filename":"pool/main/a/aztfy/aztfy-0.9.0-1-amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13096,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.10)"],"sha256":"8bab05ba98fd4ad4daf82e5386008bbce86e9961c6e4435d2e9822da843bccea","size":1510954,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f84e4d0753808e6bf67444aa83bc1d8da29e5fd367fb7cbfd90bb6b531568201","size":1305948,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.0.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367125,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.308","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"14819de0322cdb8b9c824ad59523ff57988c1d0bbb84c34e8d76e39797c1dbc8","size":96633586,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.308-1_amd64.deb"},{"package":"blobfuse","version":"1.3.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":33123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.7 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b84b62cb202e0c45feb5d4dfb0b183e4442f48c36d7c8949578aba10a9cfb843","size":9462010,"filename":"pool/main/b/blobfuse/blobfuse-1.3.7-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70793,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.2)","dotnet-hostfxr-7.0 (>= 7.0.2)"],"sha256":"6df99d1c834135ebb4586f8a416716cc691285d5528fc2d08075ec060227016b","size":23188610,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.2-x64.deb"},{"package":"azcmagent","version":"1.32.02371.983","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"e89390a265f126952d225d40a5c4e58014a32c20efc573868674738097b08b5f","size":54306730,"filename":"pool/main/a/azcmagent/azcmagent_1.32.02371.983_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"c663e63f79bfee8b76205b03bc7bfefe282becacf8a7dd98b380354d42988521","size":1315494,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.18.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":122248,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"f5ea248d511c8221f0363d2040271758a3ca7f2d642edcd66c36f5006311b5ec","size":33299982,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.2_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.17 Microsoft.NETCore.App 5.0.17","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.17)","dotnet-hostfxr-5.0 (>= 5.0.17)"],"sha256":"a66dde139e264fb73a05421293609413126d5b7928141138e78f51ed2b2be568","size":22011822,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.17-x64.deb"},{"package":"servicefabric","version":"9.1.1592.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"dbe9072890631add3bfa35454db4ad5d00d62d5bb54935780c4826e89eee081d","size":219815274,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1592.1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227617,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"698e5de0f8650f096a70bec60f0ae3bcc8a661729e438a4c807ecd3b579dd4c6","size":58837002,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.405-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"3a1c44092c90f674e400896b1bdb629091bc899774ef03d80a6f82568743069c","size":3522342,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.24-1_amd64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"60a2432bb916841fe75f77b9a6bb26417c68c7ee34f783966f6ddc20a39eb167","size":44742130,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u2_amd64.deb"},{"package":"intune-portal","version":"1.2211.21","architecture":"amd64","section":"utils","priority":"optional","installed_size":18507,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libatk1.0-0 (>= 1.12.4)","libuuid1 (>= 2.16)","libcurl4 (>= 7.16.2)","libsoup2.4-1 (>= 2.4.0)","libsystemd0","libx11-6","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.16.2)","libc6 (>= 2.29)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)","msalsdk-dbusclient (>= 1.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libglib2.0-0 (>= 2.12.0)","libc6 (>= 2.28)","libgtk-3-0 (>= 3.9.10)","libssl1.1 (>= 1.1.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"696481ab2d249391918d008691058791c138b82f0300283654841dd181036dd4","size":3310888,"filename":"pool/main/i/intune-portal/intune-portal_1.2211.21_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.29 Microsoft.NETCore.App 3.1.29","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.29)","dotnet-runtime-deps-3.1 (>= 3.1.29)"],"sha256":"82a0de75f01251437d155681b4706eb56438e2fca21135d1dfb4d3b3a44ec74e","size":21619890,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.29-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"0659506cd6862cdcce62768918ea580c070c1249a0e2e5b0aba323891e75bac7","size":1314238,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.19-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.26 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.26)","libc6"],"sha256":"8fe6a2130ed312ada320642f2307bf2d5f668e5ddb17403914a76df0486cceaf","size":120752,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.26-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"8390b688082ac2020be3ec1b6e2e900c224ce58bf8a9aea9ec5de177c03afe2c","size":499500,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.6.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"e3c05b2bb27d1b332e34d4363b72cc8ed6d47a18f278c5fd9d4ad65502695184","size":3521786,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312667,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.108","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"06d2325a3a1310f231bbbf0d1f4428fd71934e0b448fb30a458f5a76235b3fa0","size":78002896,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.108-x64.deb"},{"package":"powershell-lts","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"12f24124a2908286b81081866fc63562dbff0aff63ed85bf4c2140772da3bc78","size":68354770,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.15-1.deb_amd64.deb"},{"package":"mde-netfilter","version":"100.69.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"212e84e652d7b1591429bcf4e6acefee0fb3ba3295b8a2e64652cd8235058974","size":24424,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.62.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189498,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"bf51063ba56fb5033d15f759affb4361ce8a467d1c6f4a8a93f3c68c47f7ae7a","size":48250240,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.9","homepage":"https://github.com/dotnet/core","sha256":"6b16c95467e30e877a45ce38aa28accd9e8bba195289248e8fd212240226cff0","size":3406414,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.9-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86953,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c87c63362406bb6146c525d1f89d08283be4df96fbb3fe748a96c83667c02c09","size":20692210,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"eca7883022d9968c8ce2e357230abe4fbae1df472f490c13428a988275d34527","size":24420,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.48.amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.19 Microsoft.NETCore.App 2.1.19","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.19)","dotnet-hostfxr-2.1 (>= 2.1.19)"],"sha256":"51d29f4bb8769d6a799558f31cdcac99ece2213ba632c201c7c3b908cdb05a62","size":20646700,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71092,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.25 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.25)"],"sha256":"853db00bda315f9542a5e538a7e4c6c56203de0e47b58c51cae0b965936f33a4","size":21961714,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.25-x64.deb"},{"package":"mssql-tools","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"750c5e413db5a154dd708e85bbe3ca11bdfa1bc9093a898934e2a858c8336ffa","size":210704,"filename":"pool/main/m/mssql-tools/mssql-tools_17.10.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bfb537fe76a7537389d7bbb2184fbb3d47c2507d5618fc6dc6cee489de2cae96","size":124528228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4736-1.deb"},{"package":"msopenjdk-11","version":"11.0.18-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317542,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"aa8b4fef36b3105c2da2fa5115c1e6ad1db05059a113a3848e821a26190bbf5d","size":194035104,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.18-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.4","architecture":"amd64","section":"default","priority":"optional","installed_size":31358,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"79198abd87f82ee46b1b894d0ef873e93cecc508316e93893b5db322fe0a114f","size":15490958,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.4.x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"8eb9366b0a0a45e0231704b408fae41733d283c8d663e90189aa3b70a333ae54","size":3519112,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.23-1_amd64.deb"},{"package":"aadlogin","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"4e0471d3b89a07c159e5e7f1ffee0ad6a2a6b98941a5d2dc3310e5f65f9dc483","size":407452,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015280001_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":513,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.11.1~beta.1)"],"sha256":"6e6b028987de0f3a3d03868ebdc4bdb403b10a4f83f5f0ccfd4d6b666cfa19e3","size":79986,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"mde-netfilter","version":"100.69.59","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"9bb51091801bbfa8979e90de219b80ae4ec77bffbb71d63ee87a68242af631a4","size":24414,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.59.amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.8)"],"sha256":"3064914f58f7f230a74bbe0c9c22e9522898f8f8005999ca536f4a429e0a8af9","size":7057918,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.8-x64.deb"},{"package":"aadsshlogin","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"5b9542c5ba271ee38580d8152f8ddc13869037e74124e4a9b567458017d36a59","size":418790,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017190001_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68462,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.21","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.21)","dotnet-runtime-deps-6.0 (>= 6.0.21)"],"sha256":"94954b3e7667d6fcc8c6f2de4f07602653cba4b8419edaa41eacbc205c931466","size":22867970,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.10)","libc6"],"sha256":"fc05aaf053f3306f2dd18eaabb047097e5fa1609afafd5c0f529072e39b8de6d","size":143938,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.10-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"645c4cee097414d061a02cfb148b0d54274dd6d9ca06367c61d12ceb0fab4dd9","size":26982140,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.11+azure-1_amd64.deb"},{"package":"defender-iot-premium","version":"0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender Premium","conflicts":["defender-iot-micro-agent"],"depends":["defender-iot-micro-agent-edge","sim-agent-edge"],"sha256":"a4a5179f8c2fa455fdcabfa4bb288fc31f2f75b6af0dbaf0676623e747cc9a3c","size":1272,"filename":"pool/main/d/defender-iot-premium/defenderiot-premium-ubuntu2004-amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.20","homepage":"https://github.com/dotnet/core","sha256":"8ec70663d512ed443c4527fbf447b29676fe3ce69bbbbbe58912fa3324d3877b","size":42028,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.122-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.122","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"2a8ce53fc735ccd1336abc88949ec01164b53ae92e73113ccae284426808466d","size":78881346,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.122-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"18ff586f6e58d8b0b92e371f3dd23c2cc107c1c943be1479a122a1402ac4ba81","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.110","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.10)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.10)","aspnetcore-runtime-3.1 (>= 3.1.10)"],"sha256":"0c4febbe0a5031c9497be65082e34fc8f869d707895f1c4368db61edd6a2afce","size":43155386,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.110-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.3)"],"sha256":"d0ef9c1f3798088ed85efd5528038d2f49bd1abfbf925ab1650ee00c259c2bee","size":7051750,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169170,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"576b137e96a3853e87d2595efd06c8acdda6746bc9e207ace3ef7ba7b18a1747","size":67026634,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.7-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f43df5cc056e4efed7fb1834c85c21c1f63af3af9cdbd4a2567b4c62a550d3e8","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.31-x64.deb"},{"package":"powershell","version":"7.1.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174320,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"23639edff0487fe084d011767c67d35d55f37a22bd00cd0bb48acddff9f217b8","size":68283752,"filename":"pool/main/p/powershell/powershell_7.1.2-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.12)"],"sha256":"49778ed3574083e50016311ef9880a9e056a3b1a22e927de7c2d85c788b034a0","size":7064358,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"moby-compose","version":"2.6.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25720,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"96719d676128a6620f9a4c2d91f69f65455d8167b6e4206e827f22b3d65fc8b7","size":6499556,"filename":"pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"953f95560f7fe014ac2e89b4ad6d1113f9d88deddca6a571f7d1d1346e59fda4","size":10262,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016820001_amd64.deb"},{"package":"moby-engine","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2b0072cb4de51dff8327d7222c6054095c880d97195c59901a8003fa59ac2637","size":21175036,"filename":"pool/main/m/moby-engine/moby-engine_20.10.8+azure-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.3.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"3e270e63a81f5cd729afb1f69b43e9fc648f010be900068fab4f30bb4a4adb7f","size":714818,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.3.0_amd64.deb"},{"package":"aziot-edge","version":"1.4.16-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18513,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.5-1)","sed"],"sha256":"ff467929857a81cc3ed6261aef74323ddb423eac938de832e6cfdb3ed342b7a5","size":4430372,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.16-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"f74114d6282233fc1ba4f5a15b0edf94e7fdc5e5bae13a90917abdfdc228b4ad","size":3518666,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.120","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"e52be3bd6881374458c71b2415dd9b161c2afef6aa9ccc1a39efea053dc86ddc","size":43996192,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.120-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.4","homepage":"https://github.com/dotnet/core","sha256":"36ed81ddbcfe3d88f50af12c69fb776ead270473b859e19241602a53b8e20855","size":42468,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.4-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"860018d9b9d9d59cdaea249e76b894d970cf2084d4cf1f6786f623bcb7c7d378","size":3520576,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32a124e361da79d71007cf8a9f1c916ba7fb543d06eae504eeb58e23cd9bfe5d","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.23-1_amd64.deb"},{"package":"moby-cli","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b884d901dc121f68973e86cabe6897dc4d75ef36073e482d300534af94c65518","size":10578864,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8b9d47e868ff588ae5bf664488ca477a135250c95710fb182347710096129c43","size":135288228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4483-1.deb"},{"package":"aziot-edge","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"52e552d29d0e63e170389d07dfb35d8fa7d0e7ac394ca2a96521cb3aec48112b","size":4204528,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.5","homepage":"https://github.com/dotnet/core","sha256":"4c87ab48a41bad9380eb738078c16a08cd6e1c2de4b31c231f5418f7102208ad","size":3399662,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.5-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":44,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"3f47623349ef8ebde89e3d52415ef854a84553046421036404ffe9d74bf3b4f0","size":9164,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.1.0_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"28dd20f6330a3450e23fb0e4c179a25e3ed71db7d3722c1e55089040432c22af","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.8-x64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":118172,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbd03457376c4da1098fd64f88ba7e1c9364d3f54a8ef3cc300102bdcbbeab58","size":24574184,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-ubuntu20.04u3_amd64.deb"},{"package":"azureauth","version":"0.8.2-8","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"75cbd72c69154486be29fae15d943f345260e9433353f1199389e1cb80a99bc2","size":24118802,"filename":"pool/main/a/azureauth/azureauth_0.8.2-8_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367152,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.310","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"a3cb0afabef1917d15235dced239ab22071c829da8f8c0122e66e9fa5a9eccc3","size":96615326,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.310-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.29 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.29)"],"sha256":"e543e97c14378c663703f2ffe643bfbf449b8093d73be0d4f64779602f64a070","size":21914140,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.29-x64.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":69097,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"3205845143e75adbaf2df5d4acb2925d86917e3e17c4f3945938c363bbd2d387","size":25966666,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.18 Microsoft.NETCore.App 3.1.18","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.18)","dotnet-runtime-deps-3.1 (>= 3.1.18)"],"sha256":"48350737cda6361ab38e083a455e27ed00a126413ff867c79763b75eeee7a381","size":21887942,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.18-x64.deb"},{"package":"moby-compose","version":"2.23.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58369,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"1c094bde70a1ccf9886c162cb47c89f75ecdf2ba9cb18ddc604b231adc458f77","size":17592370,"filename":"pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.14)","libc6"],"sha256":"06558a79a1f4004ee029c0ca5e06635ee771f3379b28e409cdb9126c8fa4de71","size":142366,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.14-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.28 Microsoft.NETCore.App 3.1.28","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.28)","dotnet-runtime-deps-3.1 (>= 3.1.28)"],"sha256":"e5245eb6ee751de6929b08e564b1bcc76b8b6190fe761e5b56963dc941a25948","size":21822608,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.28-x64.deb"},{"package":"mssql-mlservices-mlm-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549275,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Full install). Provides RevoScaleR, MicrosoftML, sqlRUtils, olapR, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-r"],"sha256":"59c5558dc8065f87447538df2e2a2bd5118a773a8750718a56b1df090443b277","size":521701410,"filename":"pool/main/m/mssql-mlservices-mlm-r/mssql-mlservices-mlm-r_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.28 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.28)"],"sha256":"138e2838b892d92a0bb3b8236d72987af65ed9451f1dd1ae03f920ba6cec17de","size":21905448,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.28-x64.deb"},{"package":"aadlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"8221a88f2d61c55eb5d477e261c47b51a03f4afe49954c93477d62480c32b7f8","size":413684,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015950001_amd64.deb"},{"package":"azapi2azurerm","version":"1.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20660,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6099cbc085feae459ba885b688a11111c95bfecb321da7a17f593e4b8da3a339","size":6709814,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.2.0-1-amd64.deb"},{"package":"libmsquic","version":"1.5.0","architecture":"amd64","section":"default","priority":"extra","installed_size":5560,"maintainer":"<@28646e3e24d7>","description":"no description given","homepage":"https://github.com/microsoft/msquic","vendor":"none","license":"MIT","sha256":"f7307dc9be7a8a671898029392352c23a30099c8ef201826c2ab6ba2ed935e10","size":1813382,"filename":"pool/main/libm/libmsquic/libmsquic-1.5.0-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"71a3aa22666f1348e84d2d308db567fc5acc7dc3877c7b4d329f4bc1c0b587f3","size":2118644,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.18-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-3","architecture":"amd64","section":"java","priority":"optional","installed_size":325465,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"3ea7875f7ee282162012226e206a40de9f8d2d2de720f41f573a45ebeed08bb1","size":165338790,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-3_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.19 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.19)","libc6"],"sha256":"fa4e79024e7b1101e088c9d2ccdb16025af516c3aa33706257d2e1395b99ccb9","size":120914,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.19-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"3ba76caa0397c4cc1c8dd81fc6fe321c59870850faafe53d6c53993410462ae9","size":837980,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.6_amd64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbc4785935323208e52a67294c91e4a2942fc778688a04c1d5c2bfd10d40fc2c","size":26990272,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-2_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"9f9fa8ff87294acd3d2446188eb19a2450dcb4735b8af9ea00d44d23bf664405","size":500628,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.20)","libc6"],"sha256":"38f6d045ebf8dc7b6b1c554a4d81a8e59e50e90438ee9b1fd76f594047583d3d","size":142360,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331325,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.305","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"0d00a3ebb16ac569861b16c79c64a094ae0460767206c4a0663d85010a758286","size":85062916,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.305-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3160-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"aa2bf4e9c55be59f76b3adfa80c2e189a1ffdcca908b6fb786317a9b891d1727","size":204037628,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3160-1.deb"},{"package":"powershell-preview","version":"7.2.0-preview.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160448,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a28a1d06c3790f9cb1b5fe7bf5df1a72bf01f8dcaa9bed1c53656739d53c64c","size":64902476,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.9-1.deb_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.10-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"3324fc1a3204b8781d018da00b427a4600e3af44b8fc28a04326913de802ac2e","size":13190,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.10-1_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.27 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.27)","libc6"],"sha256":"2c9e779ee95dce861cd6d2c8d14d37dcf560f4ad982235af86664ad4c0c68eb6","size":143614,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.27-x64.deb"},{"package":"open-enclave","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":113754,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"c4957ceca38fe897f2237c396a638f6ca03deab9b1e2087809eae77f13d2c2ec","size":31095302,"filename":"pool/main/o/open-enclave/open-enclave_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.18)","libc6"],"sha256":"9930731bace0066046b2ab6be0886548e62a4f0b12aa72e8c59b58f93c88e117","size":142484,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.18-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.23","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.23)","dotnet-runtime-deps-6.0 (>= 6.0.23)"],"sha256":"aed16cfefc6903202f11af5aad5728f6eabe5905221309097e9d5dd60bfd2e29","size":22882640,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5c6f1d1609d7f1566ddef53416ae4d63c1fef4c001eede265f66c1b930ef0a33","size":228285872,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4868-1.deb"},{"package":"codespaces","version":"1.0.2804","architecture":"amd64","section":"devel","priority":"extra","installed_size":95227,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"7ad79a3bcd30c42347e465cab0ae379591a52ae01aeda160b2e00e9a46bdeaa2","size":27017990,"filename":"pool/main/c/codespaces/codespaces_1.0.2804_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":206162,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"573b9336334b5e4df31df0fc62ce82f186770a569d501fc643e15ee68262740b","size":74245238,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.2-1.deb_amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"55a2cad0d17fd8068f2bda66b83a4bdf0c55ce9a3e5ea859d7effe06ecab1cc1","size":485628,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11-1_amd64.deb"},{"package":"moby-compose","version":"2.17.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52638,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"314a1812d59c17901c1a0506d25f44883c3c9f972abb21e0afdd22510aee19ac","size":10850714,"filename":"pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c707b0a5897a613d1e36df579699cf01283ecd255b85af60127d204b21f1ea04","size":20971950,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.25.72","architecture":"amd64","section":"devel","priority":"optional","installed_size":146402,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d7a8f56970f48dbc7ea30a611e68cb9afcd91d5603c5ced0df51329920211bd5","size":43263098,"filename":"pool/main/m/mdatp/mdatp_101.25.72.amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"fa26dcf2fa4f3895f94b0b7d772794f3ce225ca3a48fde0bd0b2c62b73b2dba8","size":10166,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014760002_amd64.deb"},{"package":"azcmagent","version":"1.21.02043.328","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3e6cd4ad741a2f5ce1aa8320733a88dcaecf13ad35f48833da8fff7ede193603","size":53305240,"filename":"pool/main/a/azcmagent/azcmagent_1.21.02043.328_amd64.deb"},{"package":"moby-containerd","version":"1.6.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"61b4d8602bda831abd9f42ac170b83403ac9f5836d6d31ea1ee5458abc4def22","size":31459254,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3584,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"43b79ffff2d3e985569eb5cbde9d3c3c697c32c9e014e510d52ee4e9a10c3c85","size":980418,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f92b5019226d9bbeddc5395dea76685ef7d7c4a08e39f213d8c4aa67693bab7","size":36586,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.19-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.811-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.811","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"6b78f2524be868f547fce3d608d313c05b9afceedf22ad824561df267b0cc962","size":91745460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.811-x64.deb"},{"package":"mdatp","version":"101.75.43","architecture":"amd64","section":"devel","priority":"optional","installed_size":276698,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"4ae9bb8102a336f865aaf0ceab70b142622053192ef67c4d1bc4f5affd1c8669","size":111919766,"filename":"pool/main/m/mdatp/mdatp_101.75.43.amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8-2","architecture":"amd64","section":"java","priority":"optional","installed_size":324732,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"42cf4a8de93da7d44cbf043b207f077797c88b9c4f6fc3ec10612901aa61f0b2","size":165069322,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-2_amd64.deb"},{"package":"powershell","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a0d810fe381b77e4bfb99cc67f713f6d483545e94bdeb4150524c085cf20e2da","size":69463938,"filename":"pool/main/p/powershell/powershell_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.101","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.1)","dotnet-runtime-7.0 (>= 7.0.1)","dotnet-targeting-pack-7.0 (>= 7.0.1)","aspnetcore-runtime-7.0 (>= 7.0.1)"],"sha256":"eb3bf2a85ba09a791fc25a9dfe04d5131a24350f86af34cf15550defb7d26365","size":90604170,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.101-x64.deb"},{"package":"omi","source":"omi","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"348d6f0a0eb31522b476ed2127e4f86ee838c151d8ac832507f5d855f727ab60","size":1884682,"filename":"pool/main/o/omi/omi-1.6.11-0.ssl_110.ulinux.x64.deb"},{"package":"msopenjdk-21","version":"21.0.0-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352607,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6fd0f193b52b70d9585f9fc17a936f43ff9a079ed481670cd073976cd205dcc7","size":176295410,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.0-1_amd64.deb"},{"package":"moby-engine","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106344,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"02b7a3fe3c6792adf0f5d9c5c839f1f4f64f0c5e94e01093a6a6fe2fd32c2233","size":22701568,"filename":"pool/main/m/moby-engine/moby-engine_19.03.15+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.520-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228838,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.520","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"320d09a1c12ad84961cd151fdbf32e885f678eb42bc24e1f6cfa902025fd68b5","size":88849892,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.520-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.20 Microsoft.NETCore.App 3.1.20","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.20)","dotnet-runtime-deps-3.1 (>= 3.1.20)"],"sha256":"b73687da9c7bc457089d120c4f3cb687e4bbba06bc060ce8ff194bd3d3bfb545","size":21925522,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.20-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"24079bf09fc03151279b13f00ec7fd91cf7ec732d78727ae741cf0d708665c2c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.18-x64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":46220,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"012ae97f71917974a18379d04dd18150431f7cb9a5db5e04584e8ee4c4faf3ec","size":10169662,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.29 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.29)","libc6"],"sha256":"b9c9d07b5cf5d7783b387c67332fcb3356f445a2c21ca54bd15c0f598e5db436","size":120826,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.29-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68431,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.15","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.15)","dotnet-runtime-deps-6.0 (>= 6.0.15)"],"sha256":"06c1d3b8bd5657d0874fd729658659ad614176f7fa04e164f9dc785fcc9596e5","size":23080224,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.15-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"0.0.20211217~dev.1","architecture":"amd64","section":"java","priority":"optional","installed_size":83678,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"bab8e21f461a64ec24fffa77d1c174278b27d37c143f7b488d8bf25d4b9424cb","size":77279776,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_0.0.20211217~dev.1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.15-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"0ecba2f0103f3b53f639db55cb310b65667452b5d646926354d53bcf16b3ca4a","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.15-1_amd64.deb"},{"package":"azcmagent","version":"1.26.02210.615","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"c7ef2f69d6b0486a0088d524576f8ee91cbb90a54c4560cb49215fe0db19756d","size":53683134,"filename":"pool/main/a/azcmagent/azcmagent_1.26.02210.615_amd64.deb"},{"package":"moby-buildx","version":"0.8.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"9fd0481a56296898268892396ad63fd88cf6d0d9e650b05092a7ddc8500b61f0","size":23112352,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.0+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5845b74b3f0ac65102718e6a072cba6cd3eddbeb3ed3d6d0e0e4f6265287f1dd","size":167345404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3188-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27377,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"013256f409694381c6fb4dc00177e901e26078cd3ad0c478ccb681b4912f9817","size":2124346,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.9-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"9b6ab8b9c98bb3845819842de5158fd910b1d061b890749b49efe0d26cedb467","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020950001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18866,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"eb6a43a875b392d2a3013c9cafdb913aa7121322769233072aab0cf26371c438","size":4109284,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.5-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.8)"],"sha256":"c166ae2b979361d5bd6ae28735c19e071790fd14a88e2dc2ada370fbfceccc13","size":6085572,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.8-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.16 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.16)","libc6"],"sha256":"435049901ac1e2010f576db4b376f2f0b8541f34da202c2e2741e4a8f03a9617","size":140480,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.16-x64.deb"},{"package":"moby-engine","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86226,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"25ab605af59493188d1ec43afe3079dc1f00c80a086531a849d5e7cbfab2f3bb","size":20497760,"filename":"pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.31.02356.952","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"7c93aff6e5b62413727e391e666fd857be0d76b8e6b3119dd5e9c94329c5bd28","size":54290410,"filename":"pool/main/a/azcmagent/azcmagent_1.31.02356.952_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e6ca931e3c33ef55ada53058ec62416516965fcb3f0bfd8377303a8a97cfcbbc","size":156812136,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5312-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"8538163055e1112654548c1ffb2acf2bd54bf73ce25e5aa4594345ef306410c7","size":2117782,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"845a4dcdf7cfef468f114df064ddf0d91df3339e8fa81a4d642bdcb9b69918b0","size":3516354,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.21-1_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6517c2b485ebd5f9431a263692da4d415222a845d7553cf4645d475d953f2def","size":9652860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c6487b48e2118900cffeed91d67d9012f4e1e114c8c48fb2f01ad6526b6ebb01","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.8-x64.deb"},{"package":"azapi2azurerm","version":"1.3.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20744,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3be8889ef4a2bc388927a8179644551dd2ee00ef0c1c17975c839f6e1882118b","size":6716362,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.3.0-1-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27356,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"e6ee3b8d371697a07a3a88480ef620b173c61ef5e03c6fb159d91cd906e9cd86","size":2123508,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.0-x64.deb"},{"package":"mystikos","version":"0.9.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"c5bb8a03a650a3719fc19fa3d3a879fbbebe5ecfedef6db091215fd517244df1","size":4436802,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"148be51af16984cf17386ec477d9a3903670cca73a7f25443ec7b1d66ca22c36","size":1315226,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.98.89","architecture":"amd64","section":"devel","priority":"optional","installed_size":332405,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"582d1b94508d2d84432e1e4e049d6dbc712cca437ac82a2f25650703843a2f24","size":125131640,"filename":"pool/main/m/mdatp/mdatp_101.98.89.amd64.deb"},{"package":"moby-runc","version":"1.0.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20329,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ea515a80936dfec4ab07d9f37709d3074922feff5d10881f8dfecafc3e544ff2","size":6679756,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0+azure-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317734,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f5dd608c47a122ba604277b10d19d76dee2562d86b670402afe568f219d946a8","size":166768998,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-1_amd64.deb"},{"package":"mystikos","version":"0.8.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"637c845250a0a9c608a948672bfc60e1f810f36d0df33236fa711fcded549b9e","size":4373656,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.8.0-x86_64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d337b71bebb235a7e8a19cd961fdb2bd8c82d512755bb965dfb868880d5ff589","size":125664952,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4785-1.deb"},{"package":"moby-compose","version":"2.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6c802b98ea7ec047243ee7cfa1911ceb225c7aef8bdba133ee292d17724a2e41","size":9564136,"filename":"pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350083,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.109","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"bc23f4fa578ffe9206fc1cb4c299e04f890994ed3672571840e5e1d49abfcd57","size":90667862,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.109-x64.deb"},{"package":"msodbcsql18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"38bfecba0dfde7fd37c32e958bcf91321e5b7868ef0bd4d123b2f2e8c1252afc","size":752844,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6d9ef3a2caa939749d9fa94af1f515878843591103b9e1ffaac6b6392d70641f","size":155432416,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5198-1.deb"},{"package":"moby-engine","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97207,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3e79c2699a41d60544f79848fd8dcc97329f24114cff4619bcb646bb65f1925a","size":22804998,"filename":"pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"mdatp","version":"101.00.75","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"b07fecc2ba406124fb70454b202acda539971b81ed2f0bcb45360c8d743a951e","size":16305902,"filename":"pool/main/m/mdatp/mdatp_101.00.75.amd64.deb"},{"package":"moby-engine","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"07b58269da94bce5fbbc406a910f365292f2149ce48eda815aeb758f48609907","size":20926788,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"fb7dced8af436496de783c2194bfef410c56e156bdff60240203e9361c003a1f","size":5341004,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"641bed77ff67c69c7789b7502d5287ddf4d7ee9856f7f4bddf391a9c444d8d11","size":2656,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.14-x64.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76294,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"28b5bb9ce627cf98273b8dbfa8cb931d06a7b65a6eef7093400d301b4623b935","size":28218446,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.9","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"76cf3687d7402eef8425db6f75c13395664c418c3c8c0f66f32c9cce724edbaf","size":55690,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.9-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.7 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.7)","libc6"],"sha256":"ba43de611f4179cb3ccf68194890920aa2b97dcf4f24d4861f9500afc8d87aca","size":121042,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.7-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.2.0","architecture":"amd64","section":"java","priority":"optional","installed_size":83741,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2fc3bc221bb28c45ada5ac1d5ca3a24f002432860069bd0a79f1363dd5b3dddd","size":77328246,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.2.0_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.210-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222047,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.210","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"e9c3e1c1e73a19d0a792bbf7f76c5a161dd69c0912cfa587464a8c8f12f7c153","size":57223366,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.210-x64.deb"},{"package":"msopenjdk-11","version":"11.0.10+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316427,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"34a27d9fce24ecec7787b67d22bd8578a69bd6cca9585a70ba3372751a2af515","size":193172368,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.10+9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c970cf3cfc68b7394c889f0df1b3ac0ca8c88a9cccea1a425bba239a392058ae","size":68202122,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.12-1.deb_amd64.deb"},{"package":"moby-engine","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"87d71671681397891d19c022bf578f0696abb43005b7ba1cc9cbb8f102792aff","size":20903180,"filename":"pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b7bf28039571e04bf00ad0942ac4c1ecf509a196171a1a31687913674a033726","size":10605616,"filename":"pool/main/m/moby-cli/moby-cli_20.10.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336567,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.402","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"d054c29f0d6ac3eb208636db5b9c603ef7368c3bd74ab28f678d58017b0f7789","size":86580584,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.402-x64.deb"},{"package":"powershell-lts","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88a8e3fc3bf5899d180a3c6932fc1f16aec744d142e468cd9c503cb81981560e","size":70364236,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.10-1.deb_amd64.deb"},{"package":"dotnet-host","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.20","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a5dfd0e6fa48287c827a3370896c76afadf82a75696447809ee2456d71e30890","size":55820,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6a2903ed2616c7e00935c25376801244c01e1a4b41f369945f13a73196871385","size":228283580,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4899-1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336560,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.403","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"e2e423e97d6571023053e0ced24a122b1ee09c82ecfe2b093204f1f0a090e6fb","size":86614876,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.403-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"9c5c3a3816280a63c5635c447b71b110af8ed95834befee9205e72ad84e37b3b","size":3524114,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.11-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2996-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"287e138165c35688a148097cb70abb64ffc82045f61e10d250b22c95b734ed43","size":204035284,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2996-1.deb"},{"package":"virtualclient","version":"1.11.0","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"11eec246fca29d7666d13cd6bfa1c629536685570a1b60b0bdeec635341cc5d1","size":44771040,"filename":"pool/main/v/virtualclient/virtualclient_1.11.0_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.306","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"41eec4c727cb18b1f14cf442927e66009b8ac56c4c2d003bcff8ff5871845862","size":85091884,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.306-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"6496680a7582d60e63818967f2cd98aee775ba721ae728343362dd4268960e2f","size":499286,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.7.deb"},{"package":"powershell","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"fa7a2b2063063103682abec757552e79ec8fdb820fcfd10ffde66bdeeabe7488","size":70363920,"filename":"pool/main/p/powershell/powershell_7.2.10-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.30 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.30)"],"sha256":"febbc996b9bb461a2ea46eea74e4a5e64cb58240e1d200277c22d7da41b96052","size":21906200,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.15 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.15)","libc6"],"sha256":"fc4667c3d1a25fd4ce10c08af3570f5d1dcf7821687755e7e7823d151955abd4","size":120738,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.15-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"a8cd4903a9dc32de6309cbda75e3f447c5eae436b6f03d9e1aa31706436202d7","size":274156,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.12.2.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.411","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"16425094e8185a26d5d517f8fad2ceeff091e75d9352d1ba5e4b6e5f2bcba020","size":48228346,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.411-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"794cbab5578ede2af54c14bef3691bd475f890e034e98465f85c8c93acc2157e","size":2812,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.10-x64.deb"},{"package":"moby-engine","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0911fe2a2ed038205282623bc7e3897ba7d93126aec7edca4464fd6c134a2aea","size":20916908,"filename":"pool/main/m/moby-engine/moby-engine_20.10.13+azure-1_amd64.deb"},{"package":"mdatp","version":"101.98.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":305796,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7e1ba007e40c4653ca8b8bdf55e29600a08ac87217267e3b78417dd8a0be1cf3","size":119520316,"filename":"pool/main/m/mdatp/mdatp_101.98.05.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.121-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314335,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.121","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"ea0ec0cc9ae4f25bb30f5f4c7704875a62d54656ee3cb1e22a3c8a4d97f24489","size":78873546,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.121-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3388-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"df05e878a11e12d9538c5c1f3f9f05b639c5340770453affbf5a41cea830a486","size":208741020,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3388-1.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13094,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.9)"],"sha256":"5f6bc5506a83dd7f0835bc4f9e1213094981f3fb60e639e321c78a73e25a1ef9","size":1499018,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.9-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.21","homepage":"https://github.com/dotnet/core","sha256":"6fbb4309a0fff8a7d33f8641fb544c310bb1d68d1de88a6d9e4aa93c151a819f","size":42368,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.21-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.19","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.19)","dotnet-runtime-deps-6.0 (>= 6.0.19)"],"sha256":"2e635f77893cd7a802297f3fe00257d3792befd579820ce1132923fd27dfee95","size":22887618,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.19-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4915-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c081e147deead98682d2ac4c05010813b67dd4f1b82fa4e66b22c159854c9ae2","size":158709156,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4915-1.deb"},{"package":"moby-buildx","version":"0.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76246,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"444825d0cb85439fb016f13acf26033d270c34ee7160d9a99fa17d748d8603e9","size":28216826,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10786,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"1f20833937b8ed1b43a292fdb0cce8bceb315fcd572768e4cfc1f97d4486d2bb","size":3414476,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.0-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70801,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.1)","dotnet-hostfxr-7.0 (>= 7.0.1)"],"sha256":"c26e9d6bfb512806e89b4f2094964915c206b62be1bae7bf5efb69c6f090a305","size":23188750,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.1-x64.deb"},{"package":"azcmagent","version":"1.23.02105.466","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"17f9602fa7199ca006776c2c0688bfba291242292db0b0528f249af5933b647a","size":53831532,"filename":"pool/main/a/azcmagent/azcmagent_1.23.02105.466_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227352,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.303","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"7a7ca82a5c100d35d52cad7b4525efb95e08039d19a99dd36efaf2ec15805f15","size":58878538,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.303-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"dab9c7f9d0e4a250212c5bb52fda8dd85f965a0e81246e6b41c3a8be54195e0b","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.16-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.13.0~beta.1)"],"sha256":"65e0a235170d0e504a0a4b15511b9e46327edd85edb997b5c484bf54ba114e75","size":80078,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.13)"],"sha256":"bbf1f452f980f7807b093746972e745a9c804da606e42e9250b1515a2179b5d7","size":6612406,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.13-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2eeaa3c725e80f22d6aa6147c4d0721be2ed17340fcb706fea47ebe9f0033c33","size":70611474,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"86602d9ba581ce2deea151abb28e56048cea0cce4aa332f28fcfc82164b77a93","size":3517456,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.0-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"b7cbcd00def1bbab3cb16f172721a42ab97ce9ef97284d92185197ae77760a3e","size":3521274,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":676,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"4b4190c608f71b68ccd64c462a67d7f1d451e2c0a4bd2a6d79d1b58ef9774856","size":147266,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"aziot-edge","version":"1.2.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"421ed2073ed78c2aff4b798fa6671c2c222ad69dd945b3150536ddddac07adef","size":5770364,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ff202d7a1773806df4d150f860f91028cd318ff5557b99ef43e7b07002d784df","size":69468394,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227600,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.400","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"e775a3dc67bd1a8a561aba1e5db71709fefc0a0f87f4b1ed17542388af03d9ab","size":59143318,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.400-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"6724a88dbbc4a9468491cb3b6c56f805a1664f17cfc141adba33b0f72fed8238","size":2126034,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.3-x64.deb"},{"package":"mssql-zulu-jre-11","version":"11.40.16-1","architecture":"amd64","section":"java","priority":"optional","installed_size":114997,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"151178cffd4aec996d1fd6e2464e0e3a03d60bccb1b23b397454b3ab5a7d1a0e","size":39715442,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre_11.40.16-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.11 Microsoft.NETCore.App 3.1.11","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.11)","dotnet-runtime-deps-3.1 (>= 3.1.11)"],"sha256":"4574cb0172cb8ce0bc5f99004f983a833086d44debfc579dba2f55a094c57c2d","size":21399282,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.11-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":162968,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"28434376d4a14f42805578d49c08d85611de8d2984b868c8317bca2e68d33434","size":65979312,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.10-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.23 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.23)","libc6"],"sha256":"cdaaa6c1cc638e1bf330d0c7e9446f5910fbc5dde5ed7b6ad5b68e2d3f9c2203","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.23-x64.deb"},{"package":"osconfig","version":"1.0.2.20220404","architecture":"amd64","section":"devel","priority":"optional","installed_size":4317,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"9330d1120c44e00a91ebc75274b4e10a7f305adfec7fcaf21165fd79cf38408d","size":1512876,"filename":"pool/main/o/osconfig/osconfig_1.0.2.20220404_focal_x86_64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68331,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.7 Microsoft.NETCore.App 5.0.7","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.7)","dotnet-hostfxr-5.0 (>= 5.0.7)"],"sha256":"767af7166d335de75bc1ea12f4b12c3eafe1cdae1977e5d9626fb7a1298fd07d","size":21787726,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.7-x64.deb"},{"package":"powershell","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"89c217d853228a7a2d60620da25b9dda36e8aa87a2714b9082b84359bb30da99","size":68347216,"filename":"pool/main/p/powershell/powershell_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312305,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.100","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.0)","dotnet-apphost-pack-6.0 (>= 6.0.0)","dotnet-runtime-6.0 (>= 6.0.0)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f792e43cf164d2d26732ca187969ba60d1b5f8f3ef820a587af023c6f45615c9","size":77916560,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.100-x64.deb"},{"package":"powershell","version":"7.3.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196786,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c23b461a443ab87f9c11ce69fb625a01d7fd141f30ca42bec7a86cefed79ebac","size":71719252,"filename":"pool/main/p/powershell/powershell_7.3.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366974,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.306","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"054944c3f1c729ebd4fc08bd58a68bf759e6878d8729815ee59145e945e59857","size":96543430,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.306-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"a7fe468a27a9efb9f56f65ce563eb582f064e486f566710c3ebb680ce3a2386d","size":1315118,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.14-x64.deb"},{"package":"powershell","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5bb0f368f4a177f2790789a57102b3d22288a3fa98e86e8f48b43b8c9705497b","size":70502394,"filename":"pool/main/p/powershell/powershell_7.2.11-1.deb_amd64.deb"},{"package":"mystikos","version":"0.11.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"e4ddec438e39a6eccb041704d3d7881cb5de62ca4be860d2182bda98c9404222","size":5664532,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.11.0-x86_64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.807-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241157,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.807","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"394c0f1ae41df719835e1b9f43ff95750b2b536febb327b51adce9d8fee15f62","size":92101918,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.807-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313399,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.113","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"829fa22bb13f41075e7a253b2588d9848c512fa59c9594fd367561180b9e0ea1","size":78501022,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.113-x64.deb"},{"package":"powershell-lts","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"dc85567c9a52e16ebed727f41389de0b8e3275437e4b7a3905bc894f359a24f9","size":69460950,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357031,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.203","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"2e1000a54d809da2b49d0fbfacb4c9eca33805e0334be8fa34815ab17814fead","size":91833094,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.203-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.812-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241219,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.812","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"24b7b07cf5de2bbf1e8fd020dcda3426589c05e4eb92c5d572c3ce9846beeddd","size":91609078,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.812-x64.deb"},{"package":"mdatp","version":"100.90.70","architecture":"amd64","section":"devel","priority":"optional","installed_size":49431,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libproxy1v5","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"9ae09e3dca009b6975321bc7d57c8b1a1586626f91dd9fedf6faeb6532d72c50","size":15945054,"filename":"pool/main/m/mdatp/mdatp_100.90.70.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"171aeb6bc5d33779abe3e2eddc99474eef8e3ae8151cd3a9115cb34d8b4d3338","size":124365596,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4653-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68316,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.1 Microsoft.NETCore.App 5.0.1","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.1)","dotnet-hostfxr-5.0 (>= 5.0.1)"],"sha256":"eb4ddf15455e10ef799558292c732e20ccc6cc00b43a1e0b8175c5f4f0dbbe90","size":21672428,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.1-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337370,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.410","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"d714b88755d977894f1485c36b44a1c5f044ecfb329e6c04da9435faea474465","size":86806086,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.410-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bb40f43fe2210a8c8c00c295c85501ac849538750306645639e4eb164882f993","size":165947920,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2883-1.deb"},{"package":"azcmagent","version":"1.17.01931.118","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"6325d3110429e507691a25971a05b8c4a3110dde345fb24f355cd8765945d550","size":52441268,"filename":"pool/main/a/azcmagent/azcmagent_1.17.01931.118_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.11)","dotnet-runtime-deps-6.0 (>= 6.0.11)"],"sha256":"e745e27dd7fbc813dcdffb896469807ed1a1a9323fbd81dd5c3af95a593e171c","size":22847074,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.11-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.526-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228629,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.526","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"5acb3f643aace977e0b8e6f1d5414b16f3ec72caa8a5c3f8597bb34467152173","size":89325496,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.526-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.22 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.22)","libc6"],"sha256":"38ee581ebe6732de3b4a09b351ad6680bfb30a62aedd0d8cc9a100b81b413051","size":143754,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.22-x64.deb"},{"package":"azapi2azurerm","version":"0.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20240,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3294cb23f7013f939e6246eded6b3e85be150991aa85bc5d050d95d5be7a8cbf","size":6674858,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.0.0-1-amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68402,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.7)","dotnet-runtime-deps-6.0 (>= 6.0.7)"],"sha256":"6099c737128e6076793bd9e7d7076a1189fbcd79e99ece43b3a283b71072d387","size":23053200,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.7-x64.deb"},{"package":"sysmonforlinux","version":"1.3.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"f79ea8c2165edf2d067e46b61a804eaa87711071d3f307f62024a4cbdc8065ac","size":1772790,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.0_amd64.deb"},{"package":"dotnet-host","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3e9f0cc103795cf8aaafdb0168ba7ec1f0763189642438455faa4b727e64e09c","size":52600,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227503,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"eb71fc6cd5b1137f9a7d3b8bb3f38773a927a7e1438b990cdf72ae3049f97b29","size":58892974,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.403-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.2)"],"sha256":"62d5edb2667273c90fca39f2bed842e0dd6aad2a66b848a53fa57852b041c173","size":6597956,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.2-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.29)"],"sha256":"fd481d70bab41f4400425f4e3d8ec6c1079a6e45e865c83c3fb2d5b522fba29c","size":5771912,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.29-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.22 Microsoft.NETCore.App 3.1.22","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.22)","dotnet-runtime-deps-3.1 (>= 3.1.22)"],"sha256":"240796de8929b597d89f200a4616568eb27171185205ccef480c2fbb1f77e5fb","size":21834512,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.22-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.1 5.0.1","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.1)","libc6"],"sha256":"6dbd073a452657fadb74e92ec5853eed163ab480f5b795d36b7413a3aaaa27d3","size":140822,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.1-x64.deb"},{"package":"powershell","version":"7.3.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172207,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9219bc276da261d6fd1bce5dcbf898466e70682ea2f17eabff85841fbe6c9e57","size":69106406,"filename":"pool/main/p/powershell/powershell_7.3.6-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176791,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"940ab39342e7222ab0b09aee1182bdc8909db10a57908f8b25f1a1b9817dc60a","size":70833626,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70798,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.0)","dotnet-hostfxr-7.0 (>= 7.0.0)"],"sha256":"e80ddae4ea254b74b1f0bc91a6ebdef405e57ec4bbee4dca96e7e0cad3510a34","size":23190380,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.0-x64.deb"},{"package":"dotnet-host","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3086468765ad4e9f4298a8494f0105e7de05df8f32629168ecd3c86f7ebe4945","size":32460,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.26-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.25","homepage":"https://github.com/dotnet/core","sha256":"89859d59a821026b2e4d4237e799da2d4ff8d8f2679d27bbbbbf3cf73424e4d6","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.25-x64.deb"},{"package":"dotnet-host","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c77426b730cdf18db5d69641478667b838c98bbeef0fca45b58a85905d69a01b","size":36562,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.24-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.209-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222002,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.209","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"6d925dbfa3976f255dcf4db5b504f91a1465f1586b73d926a654fdb99e7e95b6","size":57063358,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.209-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b959b066afa9018179da74fe45e2561a459c4b0ef359e63dba3bf2c9ccca100d","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.4-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc92+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":18424,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"90adcb51c1ec71706a363f3dc18667dc56801beed2c51f44d105e30487e16644","size":6150968,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc92+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"50f58decb20077f0570e2720ff98689e0b8771b490c81275736b857bc248ecb4","size":70342536,"filename":"pool/main/p/powershell/powershell_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"0.9.20164.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"fb1cf14f7833e1ad3b2a68ce54de79262d66606a2205afb9249c4c3f7dfc201f","size":34134372,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20164.002_amd64.deb"},{"package":"moby-compose","version":"2.20.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59115,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"acbf7cecdc9df187cc1651c91daf7d43a20e94618d0c426c1102028746bf45e6","size":11886270,"filename":"pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.10 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.10)","libc6"],"sha256":"f5682ca5b104f37b4b77fbbcf0662e7fead74014003d9aa40f4edf216e3f0d0f","size":121008,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.10-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.7)","libc6"],"sha256":"17fc7a07ed846e5f8e6060fbf3bb21686fff1d735915fbc44e6aa16e6b8d526a","size":142192,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.31","homepage":"https://github.com/dotnet/core","sha256":"760bf1bd6cca99b32db239b0bfd2260f7f24179135c7f69107a29dea06c17d64","size":41936,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.31-x64.deb"},{"package":"dotnet-host","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"44e5c71e484c1b4627a85f29561d4bcf886dd3e1c0e2a9cdfd8f8740613debcd","size":32782,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.13-x64.deb"},{"package":"aadlogin-selinux","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"0a305bb2f22e6cd270c46ad0fb9aa9ddfbf831e369e543c3774f278cde7f0a83","size":10148,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.016050002_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71045,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.18 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.18)"],"sha256":"50f5968c112685726d23c0c483f3875a5ed3d6fb9062b96e34045aef5050a9ce","size":21924114,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.18-x64.deb"},{"package":"kevlar-repokey-prod","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-test"],"sha256":"dee391c861313a0dae25cccd08af13e5ab7a60bdad4c00934ef5a60581219502","size":2498,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-prod_1.1-1_amd64.deb"},{"package":"azureauth","version":"0.8.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74210,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"0548d922295c5abf08bf13101afd2cd095d8ad153feac54299942b5462301d8a","size":24107162,"filename":"pool/main/a/azureauth/azureauth_0.8.3-1_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.0","architecture":"amd64","section":"java","priority":"optional","installed_size":89388,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"9dbd9bf6019ab06c39837b5e7ff3bf0979f28a6cb8882ad6e85ff6c3c0d04077","size":82460816,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.0_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.7)"],"sha256":"fa1bf3eb1f17d370c50d31d0af0cb4a7348ac591735f77edc00f160a2a05b916","size":7057462,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.7-x64.deb"},{"package":"intune-portal","version":"1.2303.10","architecture":"amd64","section":"utils","priority":"optional","installed_size":22500,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpango-1.0-0 (>= 1.14.0)","libpam-pwquality (>= 1.4.0-2)","libsecret-1-0 (>= 0.19.1)","libgtk-3-0 (>= 3.9.10)","libsystemd0","libc6 (>= 2.28)","libuuid1 (>= 2.16)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","libatk1.0-0 (>= 1.12.4)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.21.4)","libsqlite3-0 (>= 3.7.14)","libglib2.0-0 (>= 2.12.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","msalsdk-dbusclient (>= 1.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libssl1.1 (>= 1.1.0)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libsoup2.4-1 (>= 2.4.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"5c353bba27e2ce61b0f71e5fd38553b0b35740246b29224c59c63b46fb9b66db","size":5359808,"filename":"pool/main/i/intune-portal/intune-portal_1.2303.10_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68326,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.3 Microsoft.NETCore.App 5.0.3","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.3)","dotnet-hostfxr-5.0 (>= 5.0.3)"],"sha256":"7bc20a222deaa183550751261290146c3a20251c913c8f31f4fd4489333fcdb2","size":21819124,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.423-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193113,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.423","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.29)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.29)","aspnetcore-runtime-3.1 (>= 3.1.29)"],"sha256":"d50b5e9b7e40adca7013a516a70905f60a8f4482730d0bb17f5d76e6041d6e2e","size":49818980,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.423-x64.deb"},{"package":"mdatp","version":"101.02.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"82cea8404dbc3d29a69e3d5d0cdcd829fcdeebed9b0258f7e430783e3a89aad2","size":16305972,"filename":"pool/main/m/mdatp/mdatp_101.02.55.amd64.deb"},{"package":"aspnetcore-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":12348,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-5.0 (>= 5.0.0)"],"sha256":"c3837d2af9073a6551a81cc25ca60e84a8ac721002f1ccad75a5d376af8e2cc7","size":1316456,"filename":"pool/main/a/aspnetcore-targeting-pack-5.0/aspnetcore-targeting-pack-5.0.0.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.3.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86451,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0e73f0fb4860902c6a1ce2a26b986d43aaaac26479b3347c4ed2815ef249a4ad","size":79708440,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.3.0_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71081,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.22 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.22)"],"sha256":"48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493d84c939b7c608","size":21937036,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.22-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7257904fa3441e","size":124417844,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4590-1.deb"}] +[{"package":"dotnet-host","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2557da13447d61382f255eb751ba29cc1a8220899c1e3e640a7bb3d2a0c1d297","size":32594,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.16-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.10)"],"sha256":"1d9869f862cb4e9c46b245a343d8e39fbbc84d9f8ab9ef357c4643da20805ad3","size":6084188,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.10-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5fcdc041e503ffcd726bf6455f339b5438d3fac3689a5f5313e1eba67e606f88","size":165966956,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2883-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68167,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.25 Microsoft.NETCore.App 2.1.25","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.25)","dotnet-hostfxr-2.1 (>= 2.1.25)"],"sha256":"935826f9edac6762c4f65ec5a9199110229470b6e72274a5efe0e6d9104d3c02","size":20321788,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.25-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.25 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.25)","libc6"],"sha256":"f1b30770705e2b8b2ab722ba42623ad15d27a43c0f29c621aeab112e948260f8","size":143780,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.25-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.7)"],"sha256":"386f3e029fb52b33fcc5b98cbc481c17f0d496a609523b1878cfa16173bb61bc","size":6087024,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.7-x64.deb"},{"package":"aadsshlogin","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"68466418441afe8eb6b557d81065eb47d43646b9538c0c996ecbe8c58dbe6e75","size":418558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016820001_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d50a5c1bd8242f0320d52774d5266d94fae98779f49d9a8a096855d56177c571","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.1-x64.deb"},{"package":"dotnet-host","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.31","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"50e08c977e2cb6c3353a59c323bf52d57b78ca74c061b3ee659132103b2eca33","size":32458,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.31-x64.deb"},{"package":"sysmonforlinux","version":"1.1.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"b1f813bc8e0359f218dfb182bb64f8b5c0f6fc352e72e615758826841739e58e","size":1515746,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.0-0_amd64.deb"},{"package":"moby-containerd","version":"1.3.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.10)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"62378c56cd108ebaad70d9e0bfe8c30f715c2ae86df2393435303ceb1ed2aded","size":27668988,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.5+azure-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"d4725a8504b3a6d73f7cb82907d02e9c2176424432ad35e7fcb2d468841bf528","size":3863540,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.1-1_amd64.deb"},{"package":"azapi2azurerm","version":"1.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20596,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3d76c30d08189db164b13f34a39bfb57e8a79700effa18024b9d1fcd2aa66673","size":6702890,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.1.0-1-amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.13)","libc6"],"sha256":"93ef511b5897aead2d0d9452c19aa0d9b938e6e7986edd76fb781fb6b770f4f6","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.13-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.5 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.5)","libc6"],"sha256":"9125c2843951d5149930d1260854223ce4050eb86a9b9bbe6a5056c4b64c274d","size":140778,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.5-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2492,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"7505fd24b596049d1b573bcda9df3f1b3bb7be7611734a91825f1442d2587c4e","size":602668,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71088,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.6 Microsoft.NETCore.App 3.1.6","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.6)","dotnet-runtime-deps-3.1 (>= 3.1.6)"],"sha256":"b2b20959dcca02ffdabe5a7b212ed63d1d3a454603ab34c2c7df5f9f52671a21","size":21776838,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.6-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.0)","libc6"],"sha256":"4e10a768c6e9bee484c47e4d4e4d321556c9c5cb283d06a2655cd678497f881f","size":142176,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.0-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228009,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"361a22a6e60ec80a40351b2e1453a389e1702b31bec93ed5ceacd4fe17527874","size":58788182,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.406-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.15 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.15)","libc6"],"sha256":"d9683a54735da8114110ba75f1da9f15e1f2692b2ad33df3a6d8f95477fa35a4","size":140318,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.15-x64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":52732,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5636c437bdf857d8835c7c1ab26c6beada631fe4989efd3cd2d01140120a860b","size":10877354,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11746,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"3f8aeb1f6a3d17bf42d286c5083d43f65f07d08ba0195a88992a02b023320210","size":1314262,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"3da92fd67c733645ccdba3b0608bb1382a4e949193d5cd2eec0e1ff37e61cbb0","size":2654,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.13-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.519-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228812,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.519","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"a59888761f41fb6d1953ea2e30d4e6194bc1a610f2a93046655d290e361c982e","size":88705220,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.519-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.316-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.316","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"47cfedb8743e3dbea1e1e600cd95706dfa2f6efe425cf4662693d8734405ee8f","size":85176670,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.316-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"96ae0131a8f65e2f5deddce96f8cd00b750a8fd86379ca63ae7851f77e063700","size":419334,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016890001_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"0edf4c43e4be13a8390269ffea663cfc7a6a25a5faac9afcf4b8189abef8de10","size":2124278,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.7-x64.deb"},{"package":"mystikos","version":"0.12.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"770c905b3d7e55cd373b5459fddb2c2e14163d31218f424bdc850a4764ece70d","size":6579698,"filename":"pool/main/m/mystikos/mystikos_0.12.0_amd64.deb"},{"package":"open-enclave","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":124310,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"db486581c4046e9c983e71df1556a3568dd9ed6aed55e278fce721c827bddbcf","size":34456690,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.0_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8ab1b6ef86eac3f6043c56bc6d4c2906e547474885a27b9fca89a45e717bcd04","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.23-ubuntu.14.04-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"022b3e1cf0a2b0c3c140aa89d992dbf8b428378610056b888ea890ec95ceaced","size":227619356,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4626-1.deb"},{"package":"powershell","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0af024461c5184a387fb346ee00b3da3da5fa734ce7bdeec65b085870ca4ea7e","size":68393634,"filename":"pool/main/p/powershell/powershell_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b7518a808d2ba0cf80647bc5b0f7cfca6f8bae47d743961e5da83352c31ea64a","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.24-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ce2c901402023712f4554503d55066540b03d87efdce76db242e1db2b441390d","size":209992028,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3785-1.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.17","homepage":"https://github.com/dotnet/core","sha256":"1ea44b76143ccedabec500b42707d06edc50041d0d26b7d0689cd2a7f8e364d3","size":42336,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.17-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.27 Microsoft.NETCore.App 2.1.27","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.27)","dotnet-hostfxr-2.1 (>= 2.1.27)"],"sha256":"a3f9825b3ffe3087d7c5ebea0ee16cab29759fbdc4ab633455c7a9ed5c6f6d2a","size":20332510,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.27-x64.deb"},{"package":"azcmagent","version":"1.15.01874.34","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e30e3813d8803cc7e69e61f3d6440fcd1224451b446a596241bf913ebf840ef4","size":51722932,"filename":"pool/main/a/azcmagent/azcmagent_1.15.01874.34_amd64.deb"},{"package":"moby-containerd","version":"1.6.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":123878,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a08844feebd523f95dc261969c609f253d7bdafa34d02fa9887759c15164e31c","size":30980814,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"29b8a014222d013e3cd033f89d51bd7b1fdf5253e1be0dd94e22f219d779417b","size":1307204,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.5-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.17 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.17)","libc6"],"sha256":"675177925887deef31b6b82e5226234ce7a2a20ccd152255e0e1eff469869675","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.17-x64.deb"},{"package":"intune-portal","version":"1.2210.50","architecture":"amd64","section":"utils","priority":"optional","installed_size":26727,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["gnome-keyring (>= 3.36)","libsoup2.4-1 (>= 2.4.0)","libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libsqlite3-0 (>= 3.7.14)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libcurl4 (>= 7.16.2)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libpango-1.0-0 (>= 1.14.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.16.2)","libx11-6","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.9.10)","libglib2.0-0 (>= 2.35.8)","libssl1.1 (>= 1.1.0)","msalsdk-dbusclient (>= 1.0)","libsecret-1-0 (>= 0.19.1)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a25651c703a76d9a6c8c7b3753fc4e269cc8dcda7f3618db609da97a9df92941","size":6756548,"filename":"pool/main/i/intune-portal/intune-portal_1.2210.50_amd64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2729,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"3bfe8ee9b4483f22e063417f8441365e412007ce4242107e6857b6c89a25fe67","size":684054,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.24)","libc6"],"sha256":"78a20e961d0562c05c79ed809636535c594f3cfeb18b9b662d7768757bd7c8b9","size":142386,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.24-1_amd64.deb"},{"package":"moby-tini","version":"0.19.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":823,"maintainer":"Microsoft ","description":"tiny but valid init for containers","homepage":"https://github.com/krallin/tini","sha256":"f9e1777db87f1d10edf19f35b62bf9288ff47f1ebbb219edcaa3cd1db4539430","size":349856,"filename":"pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70843,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.10)","dotnet-hostfxr-7.0 (>= 7.0.10)"],"sha256":"61ff73e62903f96a7f4e85005bbae9c324958747a1369684754b9da69dfce308","size":23207202,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"intune-portal","version":"1.2302.11","architecture":"amd64","section":"utils","priority":"optional","installed_size":18603,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["msalsdk-dbusclient (>= 1.0)","libc6 (>= 2.29)","libsqlite3-0 (>= 3.7.14)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","libatk1.0-0 (>= 1.12.4)","gnome-keyring (>= 3.36)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libstdc++6 (>= 9)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libpam0g (>= 0.99.7.1)","libsecret-1-0 (>= 0.19.1)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)","libx11-6","libglib2.0-0 (>= 2.35.8)","libpango-1.0-0 (>= 1.14.0)","libgtk-3-0 (>= 3.9.10)","libc6 (>= 2.28)","libsystemd0"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"685c7f694bf7a1e3e8cf1cbed3198a218283c37c0b23eebdf543eec400f10374","size":3344596,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.11_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.2+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348986,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5a711a4e64db7b4b7b0b0e79be0fd182722b16e83bac584d2edfa92c309fc433","size":205342114,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.2+7-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13097,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.11)"],"sha256":"f978b549faf888d3b27caecc94ed4afe26b9bd7be908e44349e7fc7b749747fc","size":1526066,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.19 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.19)"],"sha256":"be05d2befe19c95107b1cde4fc0abe6fa6b0e4cca03f1be32408505851f2e5ce","size":21928174,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"5f5903bfd7dfc455dd48530121cd67250de834a5667fc1a022e976238ee6e5f5","size":1307476,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11285,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"4eebb74f244a7909a4b8a72ca1ffd3a75fa75a192917285f513986393c504645","size":3523918,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227516,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"d84b52c828206632fee8f7f830ccf87847b8a66d65f8d91a66f98f08f200e4a5","size":59002212,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10784,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.6","homepage":"https://github.com/dotnet/core","sha256":"8d0f284061b82e7ba4089363a14630bc7e0d5ecf89e2a14a2130b8660e34ed01","size":3411678,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.6-x64.deb"},{"package":"open-enclave","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":113802,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"1b4d1a00cf3e49a79f8b4c7bc7738a815cbb68c29ea3a896225664e1a8cc02f8","size":31111910,"filename":"pool/main/o/open-enclave/open-enclave_0.17.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.30 3.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.30)","libc6"],"sha256":"be3ff69b76c9ceca3c2e664ae2829cedeeebe40a6a8113c65cb3d39c3c15b006","size":120710,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.30-x64.deb"},{"package":"azcmagent","version":"1.10.21228.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"279296ab5dc1f4455a8ba0d2c50247c5c0db6028c648e32ed9e33c201be46009","size":49565968,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21228.010_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"b1e6af88a0ee657e0147ba620ffb0797e88185e9c81e8d39fcb4eb21cd1721ee","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022090001_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"bee6959620c1cf6a6018d530e34b328c8ae3ef6ef5ac9ed725177cc45c3bb158","size":10124,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015280001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.5)"],"sha256":"13624f3fb400d4daba08db8c7b81a08fbe0e76d012741092e1bec6630217ed74","size":6086620,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.5-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"7286ff6948a8668ec80770b44d4f665ba87c8ce39ea00b5d52fa6ed3dff0e0a0","size":26989344,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-1_amd64.deb"},{"package":"blobfuse","version":"1.4.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":34258,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.2 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"03c3eb0229ea30aa561b231555cc8971c071d424f535bb1b79dc79e0a922d4a8","size":9837918,"filename":"pool/main/b/blobfuse/blobfuse-1.4.2-ubuntu-20.04-x86_64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d0e717c4b68da8d23ca511e28c5816c1f97a9f28b39af6500cbce82d516ad4db","size":141849620,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4544-1.deb"},{"package":"defender-iot-micro-agent","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"89c53fc7ed37643ada062c31d3242b137867b0270077bbab5e8e44265f3cf0ac","size":276272,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.13.1.deb"},{"package":"scx","source":"scx","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"8efc366fcd0bea36aa4e7350f1fcefa009b8c3c5e2c08124882dc2ceadb526dc","size":2588282,"filename":"pool/main/s/scx/scx-1.6.11-0.universal.x64.deb"},{"package":"procdump","version":"1.1.1-220","architecture":"amd64","section":"devel","priority":"optional","installed_size":280,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"aa9b16f4940719db016ae7645c3deb3abefcda85ec37373be7239d0a36015901","size":91470,"filename":"pool/main/p/procdump/procdump_1.1.1-220_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3788fcba514cd7f6813cad1cc023a87a0c354b5e62fb0bba66f999622d6030fe","size":5341828,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68422,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.13)","dotnet-runtime-deps-6.0 (>= 6.0.13)"],"sha256":"0e1debddea9b7ff4939a88af07867fcefc87b2f468f98f71fadd4aa71b176a80","size":22613226,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.13-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11277,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"c6bbe37dd7bbeccff48a6b65ab692f6d778ae9dc5af29816541a54682df2f35e","size":3524590,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.3-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cae69c3c33de3da4bfcd4b7efa29c4023c518e4adba34056ebaa1b0f9f78ba22","size":2674,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.21.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59364,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"e9f35d0b7fd6e8032d7a1be840dd7546a17a76a78ce2dc244846e2e5c01309b1","size":17815234,"filename":"pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.3","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"468e51c36fa323f47ae5789cf8ae9d45475d3639062bae7e8db688d4fa85154d","size":4117940,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71082,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.23 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.23)"],"sha256":"d8a5eef5d923878c0a7533aed050532a30b0dba4ca34cce16997633eb6f13bc0","size":21927716,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.23-x64.deb"},{"package":"aziot-edge","version":"1.4.20-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18518,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.6-1)","sed"],"sha256":"201b83f04628b7b4ca023681fc1cfb79c31a58fad34bf5aa46fada8554f170ee","size":4431946,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.20-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.9 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.9)","libc6"],"sha256":"f8bf3566081aaf2d5d48876aa066a63f19112718076a64d72286492927b2848f","size":140282,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.9-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.5 Microsoft.NETCore.App 5.0.5","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.5)","dotnet-hostfxr-5.0 (>= 5.0.5)"],"sha256":"212e1082ed580e382c344308ceaa810c4c6b22369578fb02799fc7d765f3c51f","size":21795820,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.23","homepage":"https://github.com/dotnet/core","sha256":"6055ab67097c149fdbde1ce7da11181f5198f72eccbedf998cd1e5dcc38b788b","size":41920,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.23-x64.deb"},{"package":"moby-containerd","version":"1.4.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138428,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b73911216929949d23a8b4a664b75a0dd5c676488fb38ce74f5a2d25439300ef","size":30822564,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.4+azure-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"b96158bd7f48db6917e50449fcadb7e6d154735ec19973410c81da18b4585f4f","size":1315894,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313428,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.112","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"bbb517ce8930b6c25860a34f7d1858c67965ed9a4c445ab36f0482eecd123afd","size":78525266,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.112-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a8028acfa074da855eef31805a52ed341f95f33bf74319a083903b8fc17bca7c","size":157155760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5348-1.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189593,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.416","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.22)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.22)","aspnetcore-runtime-3.1 (>= 3.1.22)"],"sha256":"8b2cf4f47bff8d9768fb21626f6847e5223dc9ac12ee951718f9db41bf7c5985","size":48071620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.416-x64.deb"},{"package":"dotnet-host","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.24","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3e1b4542b0a826316d1fbbcd96f5c4672de7988939f11d478995ab0ee00fbf7","size":55918,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.24-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6670365be8316093097de476a0054d9989fc1f9116d3b558b0922e9c0190ab1f","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124223,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"bba9e4e3481c121b2cf4b208c2c2540486cd9ac5e1a6488c9a5902a15ffd5a7d","size":27583496,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.10+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.2.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23914,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"242c7beed66e90503bae72243abf10c08e68b087e601122ac18bc19c4f63aa95","size":5777600,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.8-1_amd64.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":85898,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8b0a0833dde01dd7dee5b94cd38a7379a2feba6183464f034e2c521f6eb90aa2","size":20426268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5f72d3dd601e5211aa00f26cc5ed578eca7762c0d34bea0e560e5147d1e0d8d7","size":69440998,"filename":"pool/main/p/powershell/powershell_7.2.8-1.deb_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8fa09b323ce9042ad1e8cda02546047bc6e2e9ba07afddd498ebe4a86b13df69","size":227702464,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4669-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.525-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228666,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.525","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7bf4042264f848adb36b1b8729e413ce86a772586076aa05a0f2937c403b0908","size":89342040,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.525-x64.deb"},{"package":"azcmagent","version":"1.10.21239.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"606ecba800eb9417ea5c4f2cef0c2b31e3b154e310aa95223d52c4d7cb8d684b","size":49538204,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21239.003_amd64.deb"},{"package":"dotnet-host","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fcdf2ff915a09a0eadef97518df927e173fb16f3ace90f29ee509188d945dd12","size":32478,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"1c730d33b41d3cb90a4b4113c422c1be81b5fa8f739046643befb55903921675","size":3522798,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.10-1_amd64.deb"},{"package":"open-enclave","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":191735,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e20e03dab90cd3cf7b17d8672bfc6385bd27a7adb9db4ca13ce02a7c4ad26511","size":54537200,"filename":"pool/main/o/open-enclave/open-enclave_0.19.4_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"1ff382ea6af6364f8f35a5ccd64bae88c31d09652d5ad252fd55bb212e99673d","size":2567222,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"b777ed2b90ea97dda2a8654b23901d8a2c8366e5a8c2b2573e8aba042fd9e835","size":285622,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022300001_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"b22a9d3b4e9383be7d8f3c0c7922bd1552775b7abc446a46bedb6ccaef4211f2","size":264512,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.11.1.deb"},{"package":"msalsdk-dbusclient","version":"1.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["msft-identity-broker (>= 1.0)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"78588d17039d3bf3096f1a0476e70eece76d732fd938e447e37a3c3c33af0b36","size":9932,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.9 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.9)","libc6"],"sha256":"745a556521a404a87e636a6a051021d66b0708db00201b0a8127baedc4394ec9","size":121016,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.9-x64.deb"},{"package":"open-enclave","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e312248f847146ffc16a3a44dd3379d9bbc9bc623ba41c11bdfc8daa700cbf79","size":54508872,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.2_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"267046f6a5bdc652cdff399e69bb048a9fe31b9fffa5ecf59e5ffa8651fd105b","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.7-x64.deb"},{"package":"dotnet-host","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"59f7084cb3930657e8e08dfb41bb360553a7820fac22fe19217dfe678c367a30","size":55714,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.4.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":56247,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"f4ba4ef6fd9b049349ac21d6f3dac387da99fc573b6d2aa0e8c8e3c25ff87eac","size":19462424,"filename":"pool/main/m/moby-buildx/moby-buildx_0.4.2+azure-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.7-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324493,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"d85c672f28263e589bb24c644a0d514c022c54d9a82c932dd7e204913746b408","size":192238598,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.7-1_amd64.deb"},{"package":"azureauth","version":"0.8.2-7","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"88293e261db82ab4065f3121d5347305dafae0cc18976a9db7dc857b0c9a23c8","size":24108106,"filename":"pool/main/a/azureauth/azureauth_0.8.2-7_amd64.deb"},{"package":"mdatp","version":"101.03.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"1cdeb1f84286fcfc3634aa636184e69d8de4a256d7bc3395c3cd46299cbb311c","size":16306366,"filename":"pool/main/m/mdatp/mdatp_101.03.48.amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17467,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.8)"],"sha256":"1d7fdcf419bf3a78364d885517fbbe694b34fbb4259ba1184bc1b7f7f993c435","size":5769702,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.8-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c4b114bffd76a55588d9dad3bbea3d0edb2290fb212b89501fe1dee9d0fb8886","size":10570860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-2_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120070,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4b38f17f2fcfce60d3de5c5ca99dc6443e335f273210e68d9d1e83ae7f300335","size":26969412,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"86d1b67b0287593f023edc08217c3d7b4d9fe34db6bed602f089057c7135ddd4","size":172048900,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5148-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4425-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ebda02d39c2f184fe7798f607f9baf741a726166bdf620faf30df1e8cb78ef83","size":211264760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4425-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"248211ce798f17bc101da096123ab085072f718891e812ab28d54b1ef2177267","size":124416520,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4629-1.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19877,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.18)"],"sha256":"fb2b920c58eafd21f1603fab79ad877e1a1d6b52f1b09bb3e574ba4c52e5790b","size":6614146,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.18-x64.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1cf0fe4a1864137275b9ae732c2955f6a38e652633ec31ed295f109da4b8b9c8","size":31535086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"d77d76800156fe2f8927c4058e9f38c5869792154381eaab1f21c390c1f2339f","size":1315890,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"48a86372085acf1ef0654ccca308a29db18d0cd892dfa37f707b0170ebdff1c9","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.22-x64.deb"},{"package":"azureauth","version":"0.8.2-5","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"16af522abeaf26d129c2fe85797a1545885a9ca971cffa1d139caae64f8a6bfc","size":24114326,"filename":"pool/main/a/azureauth/azureauth_0.8.2-5_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.6)"],"sha256":"04e742a057549d5c5e523ffcaa2b141e2c72746844a0129f7cebcc2c9f8707cf","size":6086044,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.6-x64.deb"},{"package":"moby-containerd","version":"1.5.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109077,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fb25060e68694a6ed58f6083001aa10e158831e537ccd8381a91683fc6dac4e0","size":26798086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"blobfuse","version":"1.3.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":32372,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6caf1a6e677ad286dd707a2ab99c202357e9b523c06980ac62e83eac577814bc","size":9299024,"filename":"pool/main/b/blobfuse/blobfuse-1.3.5-Linux-Ubuntu2004.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-common-media (= 0.11.1~beta.1)"],"sha256":"dc35ab240cb86855ab55cd95f92f89fc3900c72c1ddc234e90ddbf87a6cf5b2a","size":149912,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fad642753e596b724728fdffda51446c1371892559c07e8155f819a93a20f2a5","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.17-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.806-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.806","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"dc70903977d4832aa821e17a3734942f806dab283332eed711ab45d5de531ec7","size":92091884,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.806-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3d49b06db4758632dcb37f6e77e67fd27c62b7ca92b88a4402534d12427acc5c","size":227694792,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4727-1.deb"},{"package":"apt-transport-https-sas","version":"0.9-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"847f65c962d5a64d5d9c84673ac1aefa9e93d6456f5da6bcf84728dcfba8d707","size":12426,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-3_amd64.deb"},{"package":"aadsshlogin","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"c29b7738d9aa27f63ddb3385a104bb770de79ba757bc79156a256830a84c4e8f","size":419498,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017540001_amd64.deb"},{"package":"aziot-identity-service","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17955,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"2393429995c94361cb1691e3be79b1a210bb4ced647905c8951bd196356a71fd","size":3756332,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.3.0-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195083,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2518230120bde23d124e8a8d30d560b14572a588af57e441c4c24ea52ca79e2f","size":70861036,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336633,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.404","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"b0db8754304b29c3a8a28820080713733b8cba9cc4549e6496bf7f4945685562","size":86631222,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.404-x64.deb"},{"package":"moby-engine","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98009,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"aa0eb3b0654816491b036a85d6b3df81b0e26c54fd0086c136d973bb49b2e25c","size":21182268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.10+azure-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3069,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"87b13cedd03de43b952a2b0678191adadda03f8fcf9e584ad5d3a43b2b7c6450","size":838158,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.0_amd64.deb"},{"package":"dotnet-host","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10d190304d21b10b7f51a79d08bd5e867ef97b59cc866841d12f0970e91f62a9","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.2-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"75d79e64f4f3525555196c3de3b6a6d6c255a317a51538cfe30567f92caf51a9","size":2130996,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.13-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.16 Microsoft.NETCore.App 5.0.16","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.16)","dotnet-hostfxr-5.0 (>= 5.0.16)"],"sha256":"94c64f37c5366da138ba001c362d9f0fa75b8131817558b68e52b20bab538b56","size":21840928,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.16-x64.deb"},{"package":"powershell-preview","version":"7.2.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":164716,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f93016a0cfd85711d8eb274a123b353f463f3e589baa53c8af18c5c269126a12","size":66452168,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ce62dc4ac114de9cd82ad3db7eab8551addd5f329c55d9bc8f1a9c0ee7ea8119","size":32452,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.27-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.27)"],"sha256":"0bbe47ed2413a67ce2f84a38145cc4a3dbbefa668c8704e305818c7f4b0c7951","size":5771296,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.27-x64.deb"},{"package":"dotnet-host","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9aafd51da5c39d88c7190f208b874e8b159359b74481d46ea87159cf0fc9ffb1","size":32504,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.24-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4fab6a262de18f8b64e57dd27c5a6acd9bf769a233561ea50f9ecd5013581fc8","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.20-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3696,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"dfe9e0705a4186d418ea9a48e3c80c353e8fd943e3f566d829173d20aaaea537","size":1010380,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.19.4_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3477-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08cb107257aca65fa156ef7c7708d0620c703769cceb4aedff56f0eea688f6c6","size":209487336,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3477-1.deb"},{"package":"dotnet-host","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"168de157996cc20afcb22c99aa363447aa177347b7d053ee1e4c12e36e5adebc","size":57382,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.12-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.15+10-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316139,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"0a2a9f6be1fca5891486b90c4676b95c547e2df1a9750443ae2a8782234f3fa5","size":193176730,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.15+10-LTS-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"59a7d8c4a06591962abcea21dad220af537f300bac1f6cfc1be78cb898676457","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.1-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f7854d72dcce33b230cbcb69a9f7ddd7189d96b52edd5fda39f4cc8d24673ca8","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.11-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.2)","libc6"],"sha256":"8348f279c3614c93676cfefecf6f653135b910dd9ab0a702edc6d65f5f2bf36b","size":142108,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.2-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f6627857e9a11b74d9e676ab62b2a2a50a5f567a0c55e4bc006456159acbdfed","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.021030001_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.14 Microsoft.NETCore.App 3.1.14","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.14)","dotnet-runtime-deps-3.1 (>= 3.1.14)"],"sha256":"10563481588e18f8d8ed70d9b99a58c158b98b1ef8159c789ba55073bb240a67","size":21744410,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.14-x64.deb"},{"package":"dotnet-host","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.16","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f3beedd7786937c7fa0cf6fdc620a9b6e9a0630d49e36f868bd22526ad402bb","size":55864,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.16-x64.deb"},{"package":"moby-engine","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103382,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a5aba3a499328a654304da3ec4d5ca323c96c7849ff05f0f6f854bb980f1f435","size":22538834,"filename":"pool/main/m/moby-engine/moby-engine_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.3 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.3)","libc6"],"sha256":"d2d7de4f041b6168ae2a7be47ac3840fcb8da578f77ee0e52fda25ef5b9261c6","size":140808,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.3-x64.deb"},{"package":"dotnet-host","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d4b1ef40a32e948e99370003c3e89f4834d509b6707c5709d53b1ebf1bfe6c14","size":57278,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.8-x64.deb"},{"package":"moby-containerd","version":"1.3.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126915,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b875b91d14263bfbf3eda9313a15375f74cfa22d94e6c0ab03d62fc32032a186","size":27677300,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.8+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"36ff1945d3e7a0c5cecd8f5618a4e2790faa7cd802bda9468e09bbad39e0c8d1","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.5-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.425-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.425","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.31)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.31)","aspnetcore-runtime-3.1 (>= 3.1.31)"],"sha256":"d5baa261325602144fe72944358d02371a8dbec5d2df322e7459a4dcde0dd60a","size":49834620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.425-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71114,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.19 Microsoft.NETCore.App 3.1.19","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.19)","dotnet-runtime-deps-3.1 (>= 3.1.19)"],"sha256":"50b3441944ac5bd8b56cf77397327cb3974a7f645047ab67d6886e5ccc8def9f","size":21752250,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.19-x64.deb"},{"package":"mdatp","version":"101.24.45","architecture":"amd64","section":"devel","priority":"optional","installed_size":151288,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"862be7267065eb548f25fe8ec8654bb43d92d1b80188def5b8818e805787846e","size":44872594,"filename":"pool/main/m/mdatp/mdatp_101.24.45.amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.5)","libc6"],"sha256":"26ec1b1a281088177f66da1de36d31fd31a427f5a0e42b18538dabc503d52a1e","size":143998,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.5-x64.deb"},{"package":"dotnet-host","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"19d6e6d8937060556a8efc783fd27a32e7424da20c39ad933e27342c365f4d1b","size":52590,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19872,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.14)"],"sha256":"0734d77b6149db2d071b8b15f126cb9f7da613166cdd6bc835b791bad9f666fe","size":6612218,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.14-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4a991eb6e48937efcce608f70e0c2357df03d3d85bbe071071a0307b21dfbbc6","size":227788672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4837-1.deb"},{"package":"az-dcap-client","version":"1.8","architecture":"amd64","section":"unknown","priority":"optional","installed_size":306,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"96b4f5d6bc3d4ca79de4ea99b3cb3f1c7d518678397e8e24dada9034a53df036","size":63924,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.8_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.21 Microsoft.NETCore.App 3.1.21","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.21)","dotnet-runtime-deps-3.1 (>= 3.1.21)"],"sha256":"e2283c2375c028a33decced88a16a94d4e196b4decea7d3f61e2f7e9e0cec41d","size":21754372,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.114","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"5e73956aa56a60e1e89549e0d33fdfa6614b64234632baabb4a5c89076b61b70","size":78676286,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.114-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"80fe990383c5ed0f6cfa98079e98d93ad46324b84e254b8e8fee8150c813efb7","size":141836620,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4544-1.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.6 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.6)","libc6"],"sha256":"e3423518b16a0cbaaaddc030121ab010e47a5da00474be54cdf4260fbf31398f","size":121074,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.6-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68400,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.4)","dotnet-runtime-deps-6.0 (>= 6.0.4)"],"sha256":"01f8138ab2c5d9070f1890822f4c4dc24692b6a913b9787c9df6892aff11a234","size":23011424,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.4-x64.deb"},{"package":"dotnet-host","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"380fdc61ed10647dde7e1cf2580428c1e5ed7c492c58636e7e57087ffa30852c","size":32416,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.25-x64.deb"},{"package":"moby-compose","version":"2.1.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"73bab455d7ea48f0d15b363a15237dc7299779e05a5c16c3515e95ef52ca7310","size":6295332,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e335ea6e6fdf673e537b320a9c194b55aabf77d1a8de548941d13a008bde2398","size":21199964,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-1_amd64.deb"},{"package":"moby-containerd-shim-systemd","version":"0.1.0~beta.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":30091,"maintainer":"Microsoft ","description":"A containerd shim runtime that uses systemd to monitor runc containers","homepage":"https://github.com/cpuguy83/containerd-shim-systemd-v1","depends":["libc6 (>= 2.14)","systemd (>= 239)","moby-containerd (>= 1.6)"],"recommends":["moby-runc"],"sha256":"a8265847f51b994ae68a7e05b2768dca28c037aa8e9499e02ffeb38aa3e525de","size":11959090,"filename":"pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-common-media (= 0.13.0~beta.1)"],"sha256":"58acb3b752c6503043aaf1cfcdb3ce19ae976ba01f548c7f75dc6a91c0bb33fe","size":150004,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"241bb67ad6d16299940702fe03bff3fc17bff41d8ac8e72ba83290c5232a74c0","size":59709278,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.407-x64.deb"},{"package":"mdatp","version":"101.25.63","architecture":"amd64","section":"devel","priority":"optional","installed_size":155265,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"6c06505c5e2e9fe6a1e63dada236173729f337039fa5333f7a6026bbd0650cbd","size":46140804,"filename":"pool/main/m/mdatp/mdatp_101.25.63.amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227344,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"6a056d7df7133fb877e8f77d234642ca13f88dff9861d74738569fa9c9e02e87","size":58722724,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.302-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8289d669492f741297929c892421d04b3bb0830c5435baa14a578c45ff039827","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019630001_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"6b2b8194c70db56df207d29a1fc982494607c0e6478cf650cffd8973662d1e2a","size":3523898,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.2-x64.deb"},{"package":"procmon","version":"1.0.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":51981,"maintainer":"OSS Tooling Dev Team OSSToolingDevTeam@service.microsoft.com","description":"Procmon for Linux","homepage":"https://github.com/Microsoft/Procmon-for-Linux","depends":["libc6 (>= 2.31)","libstdc++6 (>= 10.2)","libzstd1 (>= 1.4)","libelf1 (>= 0.176)","libncurses6 (>= 6.2)","libtinfo6 (>= 6)"],"sha256":"7b989d56a131bd40a8446ad957f1f546ee9152198564354dfb5476948ba95cb0","size":19862512,"filename":"pool/main/p/procmon/procmon_1.0.1-339_amd64.deb"},{"package":"dotnet-host","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.22","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"08db6e033a295f61b61c4b7145530cce7dbde0dd485a58e67fa98a0873b7abc2","size":56000,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.22-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f04b2dab917e9b09b5b1cdac3033c8048eb822d7dae1991a0827a2c7ccbcbf97","size":156746648,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5274-1.deb"},{"package":"aadsshlogin","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"59c9bf98488d40ce7ec735416708f9117f2d7ec5dd1cc7bdccc4feaa6ff33a9a","size":421814,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020950001_amd64.deb"},{"package":"dotnet-host","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.23","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec31c357657956224fdcd301fbd64535bb2e3343fc10823c35a5c906e0573ac9","size":36584,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.23-x64.deb"},{"package":"mssql-tools","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"9e68a0f83ba7e770449e399b1513edc9826aa0c3a58e3d911ea982a362c6c41d","size":212296,"filename":"pool/main/m/mssql-tools/mssql-tools_17.6.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"849c5f843caf50de8804d6a844501f8cff8af42cd3a515683c61de98e8e8d8d8","size":32812,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.14-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.16)"],"sha256":"d4e52045a7aeb72dcadcbcab02c644253d73d7fc0f9942636a47bd36bcaf117d","size":6612278,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.16-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2a4a5500354c749fca852837ca6df935e709bf147995ddd7a1407130931c9133","size":26976612,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-3_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49824,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"32d6d1eae5e5619551b2a2704526ca2e46771b67d7170fd20df9fc0e00ba3da0","size":9653820,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ddd3c0eb7332dacfecf2a3a8ed8988439431c5f9b6b84a08e92edadec9024b08","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"04c85e431825e28b2bbcf43e18f3f8bacfde9686ea78dbba815a61e21078bf56","size":2810,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.116","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"6ac2f5102837c57d6d66a4336a1631b0cc6607b02b8a2271bb6fa43cd9c15876","size":43510406,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.116-x64.deb"},{"package":"dotnet-host","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f058e88012bda709259371aad36f8c8e51494835dd43b09ba3acc8094c1a3cb","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.12-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68444,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.16","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.16)","dotnet-runtime-deps-6.0 (>= 6.0.16)"],"sha256":"c61139846f6ab095ef9b3476feaf955eb82042525da39bc512d8eda7134f8c6b","size":22707182,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.16-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70820,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.5)","dotnet-hostfxr-7.0 (>= 7.0.5)"],"sha256":"6fad7162dbcf639ebe9609c6b4ae4167dc0488ae7c0581a6c322c007259cffa3","size":23193486,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.20 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.20)"],"sha256":"ee7e20d382b444fad8299534c3133d27180af3cdfe4c82e401298e64bfde618b","size":21927704,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175287,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"c3b8a52fd632b2a4e36fd85f7bf106cd58237cfc098687df8a2312d4d8a46881","size":43432848,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.202-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71232,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.23 Microsoft.NETCore.App 3.1.23","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.23)","dotnet-runtime-deps-3.1 (>= 3.1.23)"],"sha256":"fe6490d54339207c8f946b7f15d5770ec2d08ab37cc55d5c86da27bceb2943a1","size":21817076,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.23-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.9 Microsoft.NETCore.App 5.0.9","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.9)","dotnet-hostfxr-5.0 (>= 5.0.9)"],"sha256":"f0a48fbfc02dec7912902ad28356d282212dc0b6f6823bdcca7d2579bd2296fd","size":21522292,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.9-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-4","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7-minimal","python3","apt-transport-https"],"sha256":"839c820fdbf60e2ef630c5444ed52b172cc6e51380ed2e84f0e5c49784ecdd74","size":12482,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-4_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175200,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.107","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"c78a136dc95f35e7c59d83287185421b8b537ee49bd150312e32c462f463b726","size":43694236,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.107-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.13)"],"sha256":"8dc6bd1555aa8cab7b1e37434a8ba49e24c1d427cf8cdae4203c3a72f901979e","size":7064190,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.29 Microsoft.NETCore.App 2.1.29","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.29)","dotnet-hostfxr-2.1 (>= 2.1.29)"],"sha256":"f6d4a92499646860af596f86a0a4cf4319887149bdbf09807d0cf6a1e0aa56bb","size":20506622,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.29-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.211-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222064,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.211","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"ca310e5c489a53cd12cd5e00535269572d5cb7443dd242eab568629553c1a1d0","size":57090632,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.211-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.23)"],"sha256":"968b3d4a4417eaa5820cd2ac8c4ec35e0b6d67e1efb996461644efa175b2567a","size":5771268,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319917,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.203","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"debc94f20bcb9123d2c3bd8c369049d8af2858791da3a114c953786da442c1a2","size":80517208,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.203-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a5d634cb0d45f125a3760972b8b4accba973a18226083ee024e987860eeefe22","size":2672,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.9-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"5425475e280b41cdc55df0a2dca006cc0c88c1b2d86662a0c487091e375b435c","size":3523526,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.13-1_amd64.deb"},{"package":"procdump","version":"1.2-359","architecture":"amd64","section":"devel","priority":"optional","installed_size":292,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3499e3c5ec87145fd656dadb03e6ed9ecf200453f83c6bfe6d2d73572e74e7c3","size":95620,"filename":"pool/main/p/procdump/procdump_1.2-359_amd64.deb"},{"package":"azcmagent","version":"0.10.20195.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"4e559522e0c89907e55a576508ec1f76fa15fcf9c93d25c015f92c9fdde6cb21","size":34075864,"filename":"pool/main/a/azcmagent/azcmagent_0.10.20195.006_amd64.deb"},{"package":"mdatp","version":"101.98.30","architecture":"amd64","section":"devel","priority":"optional","installed_size":305838,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"dfec95ca4abf684f6818ad812a68cb324660a8207b5d269029b188e18a6a1afd","size":119529588,"filename":"pool/main/m/mdatp/mdatp_101.98.30.amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19885,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.20)"],"sha256":"843d5b35e21303e2e9575436c5b4c59e7795186dd4a8759eada1cf23cecb6c6d","size":6613502,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e6a14e318f264a02f26a872c2e0c2549b0081075de95b0cde221b438a1f90a37","size":54509148,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71080,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.21 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.21)"],"sha256":"a95ab0fba4b44a70f83d9430731fdd4e33fb7b25b044c301d6db22ce2db50fed","size":21919612,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.21-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"fafcef4bf72ce0f1e04f2a7ec0e81007e608ab5634aaca0798f307b44165f66e","size":499544,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.6.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19856,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.6)"],"sha256":"efb398af9fbaacb29513497bc534be63d3df8ab6b392c434336cbf6ca0ca761f","size":6604652,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.6-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19838,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.3)"],"sha256":"c6f2932646657fc4ba8921d7668e462883a5231dfb7875bf3e4a209aaafbf2c0","size":6601416,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.3-x64.deb"},{"package":"dotnet-host","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"49d4d28af9f1f097b60da2b8518d54729703542556840a988fdb188cdf9a278c","size":36650,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.18-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["apt-transport-https"],"sha256":"0cfe901ab94e9795ee5ef62180dee5192053bc6f132126e40f621b273f545762","size":12264,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-2_amd64.deb"},{"package":"dotnet-host","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8a635a0abb40c0ddcc6ea2cf3e932a4b529360d0a1cda10a01e5b5fe36007436","size":32906,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.9-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4264cfb88a9565f15594d8b54ec57bda33e06684acd8d5c9d3081ceb5089e750","size":157254364,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5390-1.deb"},{"package":"powershell","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9132d97fea77d5a8de56b5801b7579bdc1ce669dae084295ddae6b43cf5a3fdb","size":69382904,"filename":"pool/main/p/powershell/powershell_7.2.5-1.deb_amd64.deb"},{"package":"procdump","version":"1.4-13733","architecture":"amd64","section":"devel","priority":"optional","installed_size":11065,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"459930388ecacd1df86996b86fe3c52a714a3a4f9eecd62d594e6e92eb83ec4d","size":1646306,"filename":"pool/main/p/procdump/procdump_1.4-13733_amd64.deb"},{"package":"mdatp","version":"101.80.97","architecture":"amd64","section":"devel","priority":"optional","installed_size":278033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"28535a2926aaddaa715cd559ab06e1db9d70546e355c6c8b57ab9de58feac2f3","size":112232294,"filename":"pool/main/m/mdatp/mdatp_101.80.97.amd64.deb"},{"package":"moby-engine","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d9802f061fd24ef6df5db7c64173525b197a084ff982e6fbf2d6ba4fea047f24","size":22479456,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1035.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"6011d41e8e1db082d711d80b98eb923db9ae2bd81b75a7b8951a32b572b7e6d9","size":226516056,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1035.1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331328,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.309","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"1b15ae59bf908d402771e5f04ce49a9e1e79e56efbbf37f51e44ae85e4fe5775","size":85106134,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.309-x64.deb"},{"package":"moby-runc","version":"1.0.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20366,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"60f4a66821abb4c6bdccd3303ee8016572acd3ced6232beb0ab8892dbb9f39fa","size":6695040,"filename":"pool/main/m/moby-runc/moby-runc_1.0.1+azure-1_amd64.deb"},{"package":"mssql-mlservices-packages-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":1166747,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Minimal install). Provides revoscalepy and microsoftml. Excludes pre-trained models","depends":["mssql-mlservices-python","libgomp1","microsoft-openmpi (>=3.0.0)","mssql-server-extensibility (>=15.0.2000)","zip","unzip"],"sha256":"758899dc2be1d7b359e459d3017ba4c3943fed31a8cdf51159c0029dd84b472d","size":391350996,"filename":"pool/main/m/mssql-mlservices-packages-py/mssql-mlservices-packages-py_9.4.7.958_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.523-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228602,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.523","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"de54ae0983b981fa5ce72bd6d670ae23104b789bffec79ee2cbad1bd415f29c7","size":89337968,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.523-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337371,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.411","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"84f679ab43f1a1f9a9c55801fc7b8be18159b4d39a25e4cdb6e79df3ee4eea05","size":86793590,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.411-x64.deb"},{"package":"libmsquic","version":"2.2.1","architecture":"amd64","section":"default","priority":"optional","installed_size":17370,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"75ff0c9d79a479a06b4639e59143eed78f6278e04f502c682732e26c0bd739ae","size":4564454,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.1_amd64.deb"},{"package":"msopenjdk-21","version":"21.0.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352673,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"5fb5615e574cabaf0dd699797e738034523810d46b15a811ddec67b029d40744","size":176352102,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.1-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.8 Microsoft.NETCore.App 3.1.8","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.8)","dotnet-runtime-deps-3.1 (>= 3.1.8)"],"sha256":"58b750cac76d6e553d55731f03cc484a0f74e1539c86b8d4c1f4361a9a90436b","size":21765344,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.18","homepage":"https://github.com/dotnet/core","sha256":"6bbac63b66f8b3b0cee25d7e0a952f29723bab86f44184cc58d8e7ea05672897","size":41912,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.18-x64.deb"},{"package":"azcmagent","version":"0.9.20161.014","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"a7469057dd3f454c21befd31c105f8d38a50023cb9cd5224e7289fc408ff316a","size":34128190,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20161.014_amd64.deb"},{"package":"azcmagent","version":"1.4.21070.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"bb4843d9264533220d1ee8d13edfdec5f639257cdcb8152dbcddf60b07045bf4","size":18061030,"filename":"pool/main/a/azcmagent/azcmagent_1.4.21070.006_amd64.deb"},{"package":"moby-cli","version":"19.03.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83545,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a4d0f91e818dacdb189bbf923a2f1ea393c061e43b32bc0fc916aed5c571efb8","size":16420708,"filename":"pool/main/m/moby-cli/moby-cli_19.03.11+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.123-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.123","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"5ddc3e6e75eb51c2310082120b0bf93c960fbba747869b392df4989ebc8410e3","size":78945110,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.123-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120054,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2291a34f3f8f15c17fbef62e1412c2ded8178608d09a8441fbd65a1f4cb5301e","size":26994720,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"40e5dc44634227b722c8f5d25c7a8e5675a198a9e9befc1e7d646f45ae37677c","size":10587520,"filename":"pool/main/m/moby-cli/moby-cli_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b204c9015fcc56ba8397286a2ec440964c498b65fa9ef83effe64d64a782c29e","size":2800,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.12-x64.deb"},{"package":"sysmonforlinux","version":"1.1.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.1.1)"],"sha256":"da5104110392ea4362980b2a4794f71c3b99fc37372df645193ba73d68e3243e","size":1530018,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.1-0_amd64.deb"},{"package":"moby-cli","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafc180e60330284cb8058dda081a563238121aeaaa686ed3dee211a3cd01eda","size":10587576,"filename":"pool/main/m/moby-cli/moby-cli_20.10.8+azure-1_amd64.deb"},{"package":"moby-containerd","version":"1.3.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126931,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"84c208d774bd93f4b35567359fe4ac51b52aba7861b4b426f58c014818b219c5","size":27658608,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.9+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.115","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"75839c38082c6a12f50210010f3db9c1c7570853664b5ae31806835b12e4936e","size":78668378,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.115-x64.deb"},{"package":"moby-containerd","version":"1.4.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120026,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["init-system-helpers (>= 1.18~)","libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"5f8a73e8b1dd7ef167b85fe8778d3879ed0cb76c7493d89bfc286e8c03a1cbd7","size":27328778,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.8+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"758f26010760cd1b7e36aaeb4c04903d1b6f0544809e5c2d2b302d130a5d553a","size":3523928,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eb256873e4cc87bc58d309da546fa07c13fb3b979437a3da2036cbce0cb4f1e4","size":158763596,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4895-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.518-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228800,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.518","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"bdd3038f5965fae2eec58a1b8dcedc54b4bd069e61dc5a34ada6b7122a2aefaf","size":88698742,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.518-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.516-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":229026,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.516","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"39e874bcdef1e41b7f8ed6f9747d4b9422fa29a4bea185934791b6b88d819cda","size":88800084,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.516-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.28 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.28)","libc6"],"sha256":"9e32978def8d2974dd8e1884e0661fd89a66923ae40d8afa8e88ec5a804f3b55","size":120692,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.28-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3125,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"fcf42631731b58d2c9017fde53ff7c1f5cc24013f264e2484e5c9fcad000dbc1","size":853504,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.4_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.514-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228764,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.514","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"fc29ebc3fc802213fae488f6b19c26b288e4c2dcf678d52ab05a255cfff9a7f3","size":89261598,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.514-x64.deb"},{"package":"sysmonforlinux","version":"1.3.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"7f12efadf7332ca8cf6f84980b4dab8947b35e57e4ea159b757678da4c685cce","size":3204094,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":8998,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"e46789887409f1c15a58e15de83dcb4ab0ee0d85bf43b7eed26c95164173615b","size":949024,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.3.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.1)","libc6"],"sha256":"4bca2d54df5756f1b361876940374502d13bd7f6a282080e8479cb44f2bd2aae","size":143974,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.1-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.12)"],"sha256":"42f106527e3629dcb4ad94c463f7b4fbec07587d3899b9f3629f2eb975611792","size":6084640,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.12-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c95488e066f938e6293333142d9d28246393ab388e8132ec0a131448ba322973","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.17-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367144,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.309","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"f3a9e3fe50a489fed2d245de896f015ddad0bccd8de94f7fc471711327e272fc","size":96629046,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.309-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3976d4e13d7479b7a9768adadb6ed39a8ae039f6e6a6feff7f9fee3f24cfb08b","size":156787220,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5312-1.deb"},{"package":"dotnet-host","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"11057d665df8116673ac80ca53ba4a9a3269bfa6ed388fa2b4fdb19137419acc","size":36516,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319710,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.201","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"548e27d4c5b6560f91a13debf2e6337d1c6fa4f7640edf457b4262693adc056a","size":80538626,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.15.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.15.1~beta.1)"],"sha256":"debc3c3de7c09b9cc825fcdc157e74b7a1d436c8f294cd3afe766a114836f675","size":80022,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"iotedge","version":"1.1.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":21774,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.9-1)","sed"],"sha256":"fbda5dcebc6c8b304b635fb5bc1dad31a29c58ff904da74077f77477ef065f52","size":5205412,"filename":"pool/main/i/iotedge/iotedge_1.1.9-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"17e137e6afeb1ecec0f417dfad45ebbc04b5ef0f5eafec995e9972e5abffae0d","size":10214,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015090003_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.26","homepage":"https://github.com/dotnet/core","sha256":"186548e9c722eebb8317a826fb1dcccf1a402e33f086d7f88b7695bb155c1f22","size":42036,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.26-x64.deb"},{"package":"mdatp","version":"101.34.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":149583,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"c74f1485c2c1741190b1b7159077b1dc88ea023d2be967f62cd60da0e151dde8","size":44125452,"filename":"pool/main/m/mdatp/mdatp_101.34.27.amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174867,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f3d8ee4df9a80856a1dd968a1ea80e341c09a26eec7907a5cff825f234271280","size":68369482,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.1-1.ubuntu.20.04_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4824,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"0fded967b3068f387c96304c3df40e4f1475654ce7e981eaee08aa0261a1e6ce","size":1861004,"filename":"pool/main/o/omi/omi-1.6.8-1.ssl_110.ulinux.x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"bd8a0ae1102ed9e2ba317529c889024ac07fd0fd2a2a053e0af1938805ab35eb","size":1314134,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.16-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.20 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.20)","libc6"],"sha256":"568d44dc56ba8b9a1b9ed49699575f5bd9735adde91ce76f8a594185989e924a","size":120832,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.20-x64.deb"},{"package":"moby-cli","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70472,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"94a944da36bf361996e26544e4173f0c068093d455b720caf5fac4447085f306","size":12147772,"filename":"pool/main/m/moby-cli/moby-cli_20.10.7+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"43761ba143682b53b883675cd17a70bb7f89defa6162f7705354c603cb8284fe","size":152285560,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2628-1.deb"},{"package":"omi","source":"omi","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"f724b1039e8ec0b382fdd69a5e753666e0f752b8b8fc8a4504e218dfc1e96c65","size":1884694,"filename":"pool/main/o/omi/omi-1.6.10-2.ssl_110.ulinux.x64.deb"},{"package":"powershell","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"93612aa09171838e997c85b78f6fe42041fbc73741b9751f975b1e908d6e77f0","size":69457500,"filename":"pool/main/p/powershell/powershell_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f39f88e19d93e296841c9a7a072ea4d8bd6855cce4278f5ba0a51aaf1508785","size":32768,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.5-x64.deb"},{"package":"moby-cli","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":35184,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafb6aac41b3af3df5bbc6652d16408b3c4349105c60f6ba9708a73898520447","size":13037282,"filename":"pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"6c363e4748de6d674af31db7ba09cee89dae9c22636e883bd418225c08b64926","size":2127714,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.10-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"1.0.6","architecture":"amd64","section":"java","priority":"optional","installed_size":83681,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"5523be2d7b0a502b34268f94b1c95d4a892500b1ab69a1ab0e9c9cafb7c62bbb","size":77280998,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_1.0.6_amd64.deb"},{"package":"mssql-server-sqliosim","version":"15.0.2000.173581-5","architecture":"amd64","section":"misc","priority":"extra","installed_size":688855,"maintainer":"Microsoft Data Platform Group ","description":"Microsoft SQL Server SQLIOSIM","depends":["libatomic1","libunwind8","libnuma1","libc6","adduser","libc++1","gdb","debconf","hostname","openssl (>= 1.0.1g)","libgssapi-krb5-2","libsss-nss-idmap0","gawk","sed","libpam0g","libldap-2.4-2","libsasl2-2","libsasl2-modules-gssapi-mit","tzdata"],"sha256":"da98d84586f19a9ddce428f04a504b3afd2a78a546084ddb97be87261cb1b2cd","size":275507482,"filename":"pool/main/m/mssql-server-sqliosim/mssql-server-sqliosim_15.0.2000.173581-5_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"31e20c09d20ae7e532ba362411737b526cd08ad64ced422fa6ffb46285c243e3","size":227705672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4669-1.deb"},{"package":"mssql-tools18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"4475bc79d1a909605846d351ed237631e7f09d33c0125d4dbbf265e72f79b9aa","size":211222,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.0.1.1-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.521-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228520,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.521","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"a25df3dbd37b6290b8e135ee7990b2a4e71c80d45fcd93dabfede62846b41faa","size":89215248,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.521-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.7 Microsoft.NETCore.App 3.1.7","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.7)","dotnet-runtime-deps-3.1 (>= 3.1.7)"],"sha256":"72280aa6efa11801c6122ac04d69743ef2d174c006b016e95dd7a5ff6cdbeca3","size":21784186,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.7-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68403,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.8)","dotnet-runtime-deps-6.0 (>= 6.0.8)"],"sha256":"c00f193c145dbe8b518b9eea0506db8f9667205eb953e0399c9652eb79d1dec2","size":22977266,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.8-x64.deb"},{"package":"moby-compose","version":"2.3.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25856,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ef10e25980ca3063e0e47aa1e4bf696acce9d18b461d8bd52d72be497f3b6f5b","size":6533904,"filename":"pool/main/m/moby-compose/moby-compose_2.3.4+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16145,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)"],"sha256":"9dda765ea87c75ac95ca3bd36ea5bef5935f0d56de1d39a9c65d903aaf174436","size":4976178,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"641b1d131285d90449bc0e2051ca8b47b1cc1a8c6221b137dbf3f224e03e3664","size":3505028,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.1-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eac97fb739bdd5b39f9813f1376cb0cf419d87657ae5f6c2fb74b263ff5b398e","size":166080896,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3023-1.deb"},{"package":"servicefabric","version":"9.1.1230.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"86d09942e5f1b9aaaa51d714f1974d4cd9c6e6128b102cc3c103d9eb772770ec","size":219806842,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1230.1.deb"},{"package":"powershell-preview","version":"7.3.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195779,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5cca8118d8e2238bd4c7ed40a2cd370c12320ea5096aa5dfc6ab4911f3d6e7f1","size":71153972,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"6e37c1a434eb56c348f0371a658bc3e68f1332fc9f41dcb94a5c668a57434ef3","size":3509404,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.8-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68341,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.10 Microsoft.NETCore.App 5.0.10","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.10)","dotnet-hostfxr-5.0 (>= 5.0.10)"],"sha256":"a24a42a7bfccebe91fa973f09288b4158632a057d8a87108806f5ffaf00dc720","size":21664136,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.10-x64.deb"},{"package":"libmsquic","version":"2.1.0","architecture":"amd64","section":"default","priority":"extra","installed_size":22568,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"1b4cdb99cf8e012c21098ac60cd6f1a364e4dc191173cb5e8782032eaed30e39","size":6402384,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.0_amd64.deb"},{"package":"netstandard-targeting-pack-2.1","version":"2.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":19773,"maintainer":".NET Core Team ","description":"NETStandard.Library.Ref 2.1.0","homepage":"https://github.com/dotnet/core","sha256":"0f12001d1918f7ad2452d14d70bd396c82080b691407735213e90de637061f57","size":1476016,"filename":"pool/main/n/netstandard-targeting-pack-2.1/netstandard-targeting-pack-2.1_2.1.0-1_amd64.deb"},{"package":"libmsquic","version":"2.2.2","architecture":"amd64","section":"default","priority":"optional","installed_size":17401,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"a4972341d1579569c738a1de4118fc076cfcbb4a4e5b63e1459ddd59b29eb3de","size":4569798,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.2_amd64.deb"},{"package":"mdatp","version":"101.04.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":68366,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"c121d4fb5728139f2b3ba50d5de6fb5703e1139118af2262056c4d2818d7db0a","size":20445826,"filename":"pool/main/m/mdatp/mdatp_101.04.76.amd64.deb"},{"package":"moby-cli","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70537,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"85cdb0a043d8edfcfe82144526661da13438201edb7d2984df0cb6c26169a0ab","size":12181032,"filename":"pool/main/m/moby-cli/moby-cli_20.10.5+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.10)"],"sha256":"eea82ce5151760291cc9ad3d16eeb43f4fa1559f91ba0c186354822cbe97bd54","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"5aec2ea2a881cb50617647c4aee0aba4618e5f05de385a148a93ca0b9182192b","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.30-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1e55812af3a9d6a640104018bc37157ae7c5c88a742bd43bb86cf0cf6f497884","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"c73045067b66eef7d977ef52b3795d35e3b82a4016b45f32a30c3b2108e4bbfd","size":3521952,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.0-x64.deb"},{"package":"azcmagent","version":"1.20.02012.246","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"25125a7d7badbebb380d09851eb4a4b5969a081e7f1c6318c9ae046d76a076ae","size":52490324,"filename":"pool/main/a/azcmagent/azcmagent_1.20.02012.246_amd64.deb"},{"package":"moby-buildx","version":"0.8.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67232,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"fabbdaf903c269a615a9099dd9affa8476ec75e68ba54b2d0a88aa4442cdf493","size":23117324,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357028,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.202","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"7cb68886075b3361642aadd467bb4335f635d9471fcc3600d97cf8d6ec6ddaa8","size":91828358,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.202-x64.deb"},{"package":"aztfexport","version":"0.11.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"1deb19cd102b06a8444878c2b92effc0fa6599d44118519001555136c6614a1b","size":9403238,"filename":"pool/main/a/aztfexport/aztfexport-0.11.0-1-amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.0)","libc6"],"sha256":"7be696a38a2b7c6c0d000678b8dc028d48651dfc409f9c6cfcb091b2b8604fa2","size":140842,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.0-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"16595bc03b136fdb2fe41c5a326370472452543e6d320f5c3dea04f8e5f66b1c","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.7-x64.deb"},{"package":"moby-cli","version":"20.10.16+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":59397,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cddad90c0641734a6d2914e2ae5c9ccaf101764c6301dc6ac2cb1c4d72cf22fb","size":10275940,"filename":"pool/main/m/moby-cli/moby-cli_20.10.16+azure-3_amd64.deb"},{"package":"dotnet-host","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"47eae0ac1d31cfe189c0d1b7b3d3804512dacd5bc198833ebfcf25710e6ad684","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.7-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70840,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.11)","dotnet-hostfxr-7.0 (>= 7.0.11)"],"sha256":"fa711a6984616fe99212ded1e724154711ced7a404e8488d346eae0e0ca7efc6","size":23210182,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"mssql-tools","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"17d9bec19aecf32db61ff9be63c51d0b5eb332965deacb119915d1aecc447faf","size":210584,"filename":"pool/main/m/mssql-tools/mssql-tools_17.8.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.19)"],"sha256":"b75917fef8f2599d1d589e0852f8d83a125f236d6223693a5d07dccfb52e1719","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.19-x64.deb"},{"package":"libmsquic","version":"2.2.3","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"834decab349d3505421a5fb3de2e75d9d28c540d6cf60d5d83c631f7d866695e","size":4576276,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.3_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.11)","libc6"],"sha256":"c5da373a2a75523c25dd212534c37ed6bb14054de2a174e3fefe32df6595016e","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403101,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.402","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"882135010f01d9e5910fa74c786791851b205b7968cab9146849169a06caba7e","size":108189490,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.402-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8bac3dc53fab2fbcaf0a4a9406e72934a9070698d7678bee05a3b720cc580b8d","size":10144,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015950001_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317508,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"fc126a9bb2987bfa6425e72e24d481e98d1fb80abff88558ec135a5b5a42c891","size":166575154,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20.1-1_amd64.deb"},{"package":"moby-buildx","version":"0.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76252,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"e20e3ad6da8f27a77ffd2026ad8c4895cbff849ed7353788178b62be1a948d3c","size":28218310,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.4.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120038,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"3117b7ff5601d415141163ca19a32a6eca87f34c653a3f9b8a9623948c01810c","size":26961964,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.212-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222404,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.212","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"d0310b6dd5b9f2ed3e37c534d2cbaedf0a8da4e1122a2c2b6976e95ffb5dc148","size":57384856,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.212-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71083,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.24 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.24)"],"sha256":"96893026ba8f5d7ed0365960bd2f1e9b4d915bb3e1fb910ae5bcc3815cfb648b","size":21933302,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6acec0ac75a21a0081b2000090c2e0dd9c79016e1d85e8eea6129e52eba3b87f","size":124360040,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4629-1.deb"},{"package":"mdatp","version":"101.52.57","architecture":"amd64","section":"devel","priority":"optional","installed_size":186593,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8fefc473943f5096ef74a41e2d1830f90a09e4cd96609d734903bab67fb1503c","size":54831640,"filename":"pool/main/m/mdatp/mdatp_101.52.57.amd64.deb"},{"package":"unixodbc","version":"2.3.11","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11)","libodbc1 (>= 2.3.11)"],"sha256":"c77073cc0e8c641e708d08f9e9360541d98c2d9b1cefce56791866f788bd329e","size":51530,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"caebc792731e03b35387c703705967fed4e7215b649e9c2cef74632f2e38c986","size":227774608,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4806-1.deb"},{"package":"dotnet-host","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"cf12c37d476d235791f785f1e62688fb3f2a4e59c81629b8d8b63e5bdf6fff34","size":32924,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.6-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8c3aa46619d36596cc6325c2e18ebe70611f34fcaeda4c9311e6ccf6fc01d60f","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.24-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"c1d0c68d3c49d41e233931a6298b2f0a659b557beb4a3a2aa4d306583a373a32","size":3509660,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312664,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.107","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"5698bf62dedf1a1ec22304245d131c274e75f494c78a7b387b8b7a142ce28e74","size":78043244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.107-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.814-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241067,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.814","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.26)","aspnetcore-runtime-2.1 (>= 2.1.26)"],"sha256":"e32d4dd6800c2075c20001828e4896d33759c5c4cad8840cfb5e0b0a61ff33c4","size":91748748,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.814-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71116,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.16 Microsoft.NETCore.App 3.1.16","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.16)","dotnet-runtime-deps-3.1 (>= 3.1.16)"],"sha256":"6f8196101ef19b12fa94c9db6642afb842172db9c391b764126b3567f06d6e93","size":21769106,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.22","homepage":"https://github.com/dotnet/core","sha256":"3d288e067550427b67057f24260ea8cbe2f15f7620aa9f4141f5836d848af2f8","size":42338,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.22-x64.deb"},{"package":"moby-buildx","version":"0.6.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59988,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"55d1b3342acb3451fdd1e8b4dfba53069c3f928e393235ea88349e1e0832462e","size":20975064,"filename":"pool/main/m/moby-buildx/moby-buildx_0.6.3+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.317-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331557,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.317","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e332d89262c096975451b24ee0330af9d96f3862d2088a6f322828bdeae3aa80","size":85292586,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.317-1_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"65f34ed79c6bbb46d6cf18e13dbaa462282b81e4b18bac52b2742099208bbd2e","size":155268560,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2796-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.28 Microsoft.NETCore.App 2.1.28","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.28)","dotnet-hostfxr-2.1 (>= 2.1.28)"],"sha256":"94d239c104eaeb8de96537448c51e219ec89585ebc13ff63f5626677a46df514","size":20814298,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.28-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.113","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"08b51645b7483e355d8560031b2705e4cd6cb93c3f0c37c52cc63fdbd7c3aad1","size":43818916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.113-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222041,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.5)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.5)"],"sha256":"7612ea0058043ef44665071f0360de87856353141e427390ee7181e219062ae5","size":57105162,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.202-x64.deb"},{"package":"dotnet-host","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b6ceccc4f0feb49b917b66af106c196c9407a5b57ed9b67b27f8aa92f2204c2f","size":32600,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.15-x64.deb"},{"package":"azureauth","version":"0.8.2-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"4a5f24a5e999a8a6c88dae58182bb1edf0259f0b5ef49e4b3d08e15384072bc1","size":24113038,"filename":"pool/main/a/azureauth/azureauth_0.8.2-1_amd64.deb"},{"package":"azcmagent","version":"1.3.20346.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7d8627f1d460601c10e472668a5e521c4af13f7df19aba55af96d1e453f748d4","size":18323922,"filename":"pool/main/a/azcmagent/azcmagent_1.3.20346.001_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.2","architecture":"amd64","section":"default","priority":"extra","installed_size":17616,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"e605e0cbfcd7061151efb24692097b4ab09ba6417b7a50bab2b5bf4496dce170","size":8349226,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.2-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-host","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7c9909580189ff3d3d91ac83c11dc3ec97ce862e652ca67ea6738dbf83eeb1bc","size":32448,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.20-x64.deb"},{"package":"msodbcsql17","version":"17.10.5.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"5a3ab39be1db72785a3f912c04d8e5a90c27fd7f628a413405d9b9033b84880c","size":749060,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.5.1-1_amd64.deb"},{"package":"azcmagent","version":"1.9.21208.007","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"48a8a77fcfcecb4a37b9a959d1db706b0e0b0508fd6730851f3dcf7a442f6617","size":49545864,"filename":"pool/main/a/azcmagent/azcmagent_1.9.21208.007_amd64.deb"},{"package":"azcmagent","version":"1.34.02440.1130","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"539864450190c5dcf44324c571a7ba99ed9ef4c74a99b9d97859c93213d4e815","size":54823178,"filename":"pool/main/a/azcmagent/azcmagent_1.34.02440.1130_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0fd87a5a6f9a7b63200abd189cb38286e8c58cd9fef34fb7ba0c028210bc69b2","size":270460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.12.2.deb"},{"package":"dotnet-host","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fbbe8b30c4b7c6c89119dcf4b59022cbb748466af203c2d5cfb8d8e6de55291c","size":55768,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.4-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.12)","libc6"],"sha256":"0842eef025ce499ec4ab04bb9b21baa16e7e4c92047478a1e2d2edeee7a9ea8f","size":143910,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.27 Microsoft.NETCore.App 3.1.27","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.27)","dotnet-runtime-deps-3.1 (>= 3.1.27)"],"sha256":"17394b210f5e438d273818dece094dbd34274b82cf7724b025b87b2cc20ae91e","size":22010700,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.27-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d5f98751774ccae04197b7d4932efe8f3545afda5dd309a8171805df6dabddd1","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017540001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175192,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.106","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"4639c629160639de7eec4619b4830e021b24fb0d30500f741b17d1c8dc1e604a","size":42924592,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.106-x64.deb"},{"package":"moby-cli","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"f735e2f6f437b7f03fa98421a70b79112f4c8b4f8fa1d209025b1bd0b0d2e70c","size":12121304,"filename":"pool/main/m/moby-cli/moby-cli_20.10.3+azure-1_amd64.deb"},{"package":"virtualclient","version":"1.11.5","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"45d2ac561ea209473e7647cbf18e544574b7a3c1d3b56a33c78709c13993b497","size":44774340,"filename":"pool/main/v/virtualclient/virtualclient_1.11.5_amd64.deb"},{"package":"azapi2azurerm","version":"1.4.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20908,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"0c6f68997ef36825f1e97b05ed227c8f12fecb3356029da3e10423c72b650661","size":6728440,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.4.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4604e1c0b284a336d13f9ec0182f3ad13c28360c6b76f441c9e66784ac6e36d3","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.2-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.817-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241017,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.817","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7e9ec00a9f124622c300510ce9bbf55857b4b03794f7583179f3c0f13a8ef02b","size":91745548,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.817-x64.deb"},{"package":"blobfuse2","version":"2.0.2","architecture":"amd64","section":"default","priority":"optional","installed_size":27889,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"2c59f5daab9808c18034460a5fbf417896af6ca6e6f14c293afd9dad408233c3","size":13168278,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.2-Ubuntu-20.04-x86-64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e440ee439dedac9ca32f22d071667983faeac58a7824679e8613b1f0615baed2","size":227762280,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4837-1.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68375,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.1)","dotnet-runtime-deps-6.0 (>= 6.0.1)"],"sha256":"b0ad2a9ef9c20650069f9df3f122406ac747aa5502d35d941a367a8c9b6691bf","size":22974272,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)"],"sha256":"ad5397ecbbc1ee438967c77c1d946a245a3d591d4427a83c3f54dc6d0fd597a3","size":5099424,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.28 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.28)","libc6"],"sha256":"bdc41745512364daa565cf6fa586fc3546fd8432ef70c179c31bcf5595cd8a30","size":143620,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.28-x64.deb"},{"package":"libk4abt1.1","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3328758,"maintainer":"Microsoft","description":"Dynamic Libraries for Azure Kinect Body Tracking Runtime","depends":["libc6 (>= 2.27)","libgcc1 (>= 1:4.2)","libgomp1 (>= 4.9)","libk4a1.4 (= 1.4.1)","libstdc++6 (>= 6)","libx11-6 (>= 2:1.2.99.901)"],"pre_depends":["libk4a1.4 (>= 1.4.1)"],"sha256":"0a507ffbe27b49127d53c265b9ef259d0fd993c30765fd612a1ef4054985dc50","size":1785149492,"filename":"pool/main/libk/libk4abt1.1/libk4abt1.1_1.1.2_amd64.deb"},{"package":"dotnet-host","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"395725e796a51348e6853245c06d0ec5b81cf038cbc9ebc4ec9f591f12ce7681","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.13-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a027e51a6927327dcd7f0e2ed2904119d3f474f54e1e521405cbbac79e619e2","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"34bdb4adc9be76d1496ff8281c4d66aed4ba8a5baf656fba7f75d9225d00354d","size":227764116,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4753-1.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"1e1b3c93eaa1f6fd742e7dd166928435d56ccce4217e1bbc6177f172977665a7","size":2567262,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.2-x64.deb"},{"package":"aziot-edge","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.0-1)","sed"],"sha256":"5649433a6fe9e89ec2fb4e9c0d2bb3979491d11c1bce35e7e8e018c909e15474","size":4203740,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.0-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.2.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17912,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"cb26d5cba1d1fa611dcf4f8dc7a5916bda3dd6b9077c4d91230b056e8c694130","size":3802656,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.6-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":175473,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38112c1586a450e87827823c559001662ca0950d580a611e3bf58e7b62791072","size":70114408,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb"},{"package":"mdatp","version":"101.23062.0010","architecture":"amd64","section":"devel","priority":"optional","installed_size":386184,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"55b7f08fa4748037e5f67c6ca844e289da69212b1c52b7e7de6ae9553a583069","size":133718266,"filename":"pool/main/m/mdatp/mdatp_101.23062.0010.amd64.deb"},{"package":"azcmagent","version":"1.33.02399.1041","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0306d2c2afa192ef8a6ed1d99aa34a59af54f88b20cf4bf9005316bcba9919ef","size":54719874,"filename":"pool/main/a/azcmagent/azcmagent_1.33.02399.1041_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11742,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"75232addc8ebe5da0ac7bbbf605f012da77390de8db6be5627c0c1d8fee7a858","size":1313808,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.9-x64.deb"},{"package":"msopenjdk-11","version":"11.0.11+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316734,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"57aa36a8dbde09c855491a13efcaf08cce3e3c4737f30683ed123e3b4f7896a0","size":193400792,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.11+9-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"e4f1574f7e6c0190741e4fad61ab8bcdf3576560688849c02f5b6a6e2600e855","size":2119388,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.6-x64.deb"},{"package":"moby-compose","version":"2.12.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"771e7aeb4360c19c59d8e341fa49388ca5f7368745a3ad70b48ed20554d83ca8","size":9661604,"filename":"pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":122255,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34b182d515b35049e97abe846e4e637fefbcd10198dcfdb12c342df7cd300dd3","size":33313338,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.4_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.22)"],"sha256":"4ff02ca997b12cdd067c268f9e173a5fb0383f7cb804b5458f460ff320b39cd3","size":5772820,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.22-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3284-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d09699e241214dd8462b0d0e1a52f6995d7c1d3fffb72926517a1a7d2d495631","size":208712656,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3284-1.deb"},{"package":"msodbcsql17","version":"17.10.4.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"31e2c8d37b011aa51d902bf14f5f7919e69fbe52ed350fa3a2e9b1e6c8fbaa29","size":744572,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.4.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350056,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.107","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"fc203dd1fe23030645b49fa957ca63bc80f3f14dd14c12a07be5ed5d08fe0e20","size":90663186,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.107-x64.deb"},{"package":"moby-containerd","version":"1.3.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126906,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a7462ad88c12cc2ec12a42cae20a13ed377751c459bd24864cd3bb2d9725a0b6","size":27655928,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.10+azure-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a4bb8a4d80a2c8bd3faac36527a945ff000ae68a31936645a711fa9081c3059a","size":1885604,"filename":"pool/main/o/omi/omi-1.6.12-1.ssl_110.ulinux.x64.deb"},{"package":"dotnet-host","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b478f09525bbacaa261ff0edb3e0faefc648861cd5cf1e582849cf2723a086c3","size":57230,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.13-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.16)","libc6"],"sha256":"92171aaffa0102e35a70d9d06d05bf47af94febe99aff6cb09c45f864289f64e","size":142298,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.16-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4426-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9367c0d31cdf86346a5404031e7e6641f43e2940ef39c4e40e358662f7c9e891","size":135350632,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4426-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"35da4e0bf4c9964644f931cf81c3bd6bdfa3dc1b2a1ccc4893cc3263ecb373b2","size":124424256,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4653-1.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"43d23398197e62254878b0dbebfb4192d6edcb529c898735fd127ee8bc2aba13","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.6-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"915a04a17975831a96837f44f068716a250b9cbe7c2911ac646c779825c2b3af","size":3519794,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.4-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"6fe87e736d18910d0fd815aa15aa0ca8c8d0c7fa260106a8d528d1cba940840c","size":2568046,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.7-x64.deb"},{"package":"mdatp","version":"101.65.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":209057,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5455c6d16c5a5aeceb81a3f17a3bc7b81cd0bdb0d2f1d70a3014c9ee3ad58b59","size":61280098,"filename":"pool/main/m/mdatp/mdatp_101.65.77.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"6270ce975a105d44cb78f6c9b9c1815027262173d03a8697f307b56fb250fc57","size":415558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020250002_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e77af1b8d2d5d5973cd7e633cb4be7c7ad4b994d59bddb890dba5c36c02aaf55","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319790,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.200","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.2)","dotnet-apphost-pack-6.0 (>= 6.0.2)","dotnet-runtime-6.0 (>= 6.0.2)","aspnetcore-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"1025e3b198f62a3624e66ea5b3c3e693ddb53ebedf8a74e56dd221f180bba9bd","size":80440736,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.200-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350086,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.111","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"420c6cbef880bde26abc7174ee4e182b764f04f02803425e340dcafdb1f6790f","size":90702250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.111-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"73608bb57c2aa9ef501d872841e7496c78bd2a8dda1b57a0271007e3106a0a96","size":135279404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4483-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"760dac7d7083b3f28b2fccaa7dfc529c6b71df58e70239c186da94b16d0f7d82","size":2130012,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":311307,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.116","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"70b59d15f436ace27bb104305b9986d4e9bfea432730e2c5d3d287cac1600f9a","size":78307442,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.116-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b2e8605baa0ace12a5a635924875fffedc8e73688d592758212e9fc6c3e23cdd","size":228284784,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4868-1.deb"},{"package":"blobfuse2","version":"2.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":31581,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1a0543ab79bb13a82781e025c48327af3dfa11c6df34ef4a86d08b8d137ce160","size":15604716,"filename":"pool/main/b/blobfuse2/blobfuse2-2.1.0.x86_64.deb"},{"package":"moby-containerd","version":"1.6.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"cd3059a1607539a0677546b39f4e57ab5287c36434e35e122dac8f0a108428d6","size":31522474,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbbfcba94cbb3b29315d952cf4f29a7012b6f46d12324aed88f56c9db039901b","size":52476,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.32","homepage":"https://github.com/dotnet/core","sha256":"92621393c0a814a263f3215121e9a9c722095c125f1f24939a43a56265ff706d","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.6.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25932,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"526974e4a68abb33b24b36b99fa42a886ea332f1c2581f71dca0b998f35581b1","size":6564228,"filename":"pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87d355268b192b05afe470e50bd08a6d88145a53b4ae60dbaa21c677f2eedc01","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.14-x64.deb"},{"package":"libk4abt1.1-dev","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":63,"maintainer":"Microsoft","description":"Headers and cmake files needed for Azure Kinect Body Tracking Development","depends":["libk4abt1.1 (= 1.1.2)"],"pre_depends":["libk4a1.4-dev (>= 1.4.1)"],"sha256":"e04028542d35fcd7d3db2343227afc8e44f3bdc856dbe39eda0f14c31841d55b","size":11314,"filename":"pool/main/libk/libk4abt1.1-dev/libk4abt1.1-dev_1.1.2_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.31)"],"sha256":"90c26a2bd56961ae41a6efcaabb3a0531cddb8f9d160d9a490c1c4863e4a6e9d","size":5772724,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.31-x64.deb"},{"package":"azcmagent","version":"1.12.21299.035","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"1d51a95cea00deeba08e8e375e35cc825473c370dc8190bfa00dd8c6bb8b1c5b","size":49869060,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21299.035_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.3)","libc6"],"sha256":"8985e06ed129ed00a442ecb28947c0f09782607633808fb2389c5f87f7bbf04a","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.3-x64.deb"},{"package":"deliveryoptimization-agent","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"2418758faf92cb4bf8879b592100213d6f2943c38e0713080ca1937145df2c4c","size":162138,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_0.6.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.12 Microsoft.NETCore.App 3.1.12","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.12)","dotnet-runtime-deps-3.1 (>= 3.1.12)"],"sha256":"9bfb94481c3dcb25abbffdb6d6a62d6519e5e27b285df328f754ac5a857cba07","size":21905222,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189443,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.404","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.10)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.10)","aspnetcore-runtime-3.1 (>= 3.1.10)"],"sha256":"85d70b980de52d663a75b268cdbd64ec337308b71580ed2acbc85fa1e1d5bea7","size":48212190,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.404-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.114","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"d87754f9c437e4381313f3038ad558108e90bf1bdb3ea853701d085f2b64a51e","size":43875266,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.114-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.615-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237152,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.615","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"efbe8596983b759748d90f8700ab6b5d336beeb78bf8f9b0bef4952815fc650a","size":90796912,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.615-x64.deb"},{"package":"moby-runc","version":"1.1.9-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13373,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"provides":"runc","replaces":["runc"],"sha256":"9f6f3d00f1615b8859b1295852d27de3ec1cdfc78a9dad5b0911120c9ca11145","size":6707904,"filename":"pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d8c45cb378057394ad53edddb0a970025ca261743fa4621687c927ff5a445edd","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.73.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":274981,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5759eeb478f8225529149dd0891eb9f14d8ba47e8995590890d4de15964649c4","size":110911854,"filename":"pool/main/m/mdatp/mdatp_101.73.77.amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"recommends":["dmidecode"],"sha256":"4a101dc3b973bf0346fb74e616eb8b0bd0f152e56ce9719044797161c87105bf","size":522226,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.6.2.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":85899,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5a3722c7d132a27f557a004f4e40f96b417a5eaca4ff370f60ba44893e9888da","size":20423424,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2ce36274b152224ea6864bba49bf799c495f71fdc72c940cc76b143e5c2ed48c","size":9775330,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"blobfuse","version":"1.3.8","architecture":"amd64","section":"devel","priority":"optional","installed_size":33217,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.8 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"ecf0fa02ce55d860413a66de453e7c6b795379e7fb5c0ec2b38f4ac49bc70a5d","size":9492388,"filename":"pool/main/b/blobfuse/blobfuse-1.3.8-ubuntu-20.04-x86_64.deb"},{"package":"libiothsm-std","version":"1.1.13-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"e96bda6606c62fc82f3e479e3fd5b122a2ba55f9c8f10d795fe80ae8472a4ef7","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.13-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312610,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.105","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"633cc12c08795b939f67990b8677cbd693cede30ae09bbbd6bfed6e7397070db","size":78307244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.105-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.8","homepage":"https://github.com/dotnet/core","sha256":"4c6e03f5f8eca555a2020828204c7fedfee30fe0a4f22b02c1f251b5929aa05f","size":3399676,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.8-x64.deb"},{"package":"moby-cli","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70473,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6fe21617935a2cba4192e620a560ed7c320c9a83bcf09e1e3693083e13f56bf1","size":12149140,"filename":"pool/main/m/moby-cli/moby-cli_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.315-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331510,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.315","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"042fddd433534b98b33305082873f849468056d4a226d1d1addf226c19a95b82","size":85195842,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.315-x64.deb"},{"package":"msopenjdk-17","version":"17.0.1+12-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323380,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"36a5d50656f0bcfc4aeca6a388c924e88d47a994afa12470e24468f30b0cf90f","size":191722368,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.1+12-LTS-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189502,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"65956ec977a78d78aa4bd9bb4378fc0b4c3936c31f1da92c132211a86cc61630","size":48157850,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.401-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.319-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.319","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"385918a9f7fcb909bcab0f0a13ed6db6edfcb35a41f9123105495331ec28bee4","size":85294962,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.319-1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.2.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge"],"sha256":"ff240391cb2b7a0aec117e660262566509c71509b453620154aa98782c9a5ae8","size":236224,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge.deb"},{"package":"aziot-identity-service","version":"1.2.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17916,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"d857ac4eef5166fc531266c2e25d8c0f7b170819bb458f6853d63ede5cb22dc9","size":3805296,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.5-1_amd64.deb"},{"package":"msodbcsql17","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"f5562b6bc8f682f0f341d13700ae0d448276847c5de097fbb9d4c74943f1076f","size":743398,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.1.1-1_amd64.deb"},{"package":"moby-compose","version":"2.10.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f5f3a4a9f75d0ef0a8a1844fa3d63109e33a2989e1ae7599b5e6edb8fd8d91d8","size":6498184,"filename":"pool/main/m/moby-compose/moby-compose_2.10.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-compose","version":"2.1.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"950ef8246e468ec4910f7dce964cdd19c350a754aa5317eda07bda99fa39e5f5","size":6293952,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-2_amd64.deb"},{"package":"azcmagent","version":"1.13.21320.014","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"5a6e6160af4077a337699916ebf1d45cf37025650f33dd910f0459d24af2acfa","size":49774358,"filename":"pool/main/a/azcmagent/azcmagent_1.13.21320.014_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18524,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.0)"],"sha256":"53f1e28fcd0f39d4b3aec9d7cd494e9003cdb6577017e4c45b7a837320a5adcc","size":6073980,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.0-x64.deb"},{"package":"moby-containerd","version":"1.5.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":124211,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"dac49f1dfa10cc76295d563ac4fdb6790c561a8952832cd9a4778a8f2953e583","size":27576204,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.9+azure-3_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.7)","odbcinst1debian2 (= 2.3.7)","libltdl3-dev"],"sha256":"dc575321dac251eaac96ebfa024cbb2605cec279a4baae176529be97ae61fe4e","size":37052,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.7_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.4.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323717,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"23df3c1a4b3bd9218632b828765cdecc49e2143f4969496df164dad9521c060f","size":191756484,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.17","homepage":"https://github.com/dotnet/core","sha256":"a417f24d032b7dc9111a61d71df2dd1232cb5c78b6e82380a515534aafa20181","size":3429892,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.17-x64.deb"},{"package":"powershell-lts","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"75a1204f0853c30057405dca9f725fb28d2a6114c217b501c3a541d1eaf5ed92","size":68396144,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.10 Microsoft.NETCore.App 3.1.10","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.10)","dotnet-runtime-deps-3.1 (>= 3.1.10)"],"sha256":"8998f609a34cef36b14e6c4aa6d85e25f99f70c88ef78f2586f45fda3c564c2e","size":21832770,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a86f12817d94c2ec721af3537e3ef92a4371d81bf96232dbd99543b1f0648988","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.2-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324571,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6d5a05b672e69cf7be78aead401c16068734af4d9002498ab6514bffe40490f7","size":164951794,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"ad64fd258860d079afd1c1784867be30625a31cbe09438a1102791ca085fea79","size":1306464,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.3.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":404208,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.400","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"4e1bc6ef9e5e0ec0a04ddee9c971b97087e6a9a0321ced9b4a872f2bcaac5270","size":108340086,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.400-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.9-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4510,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"1f02fb4b8e31154f9f44850af306a922994f18c8a5365f878da27bcbb8ddc98f","size":473350,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.9-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.120","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"2b0127f7334f7b4d29f4fd582d7a376cd3df021652eb5a8c2791cb60b45c66ca","size":78857458,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.120-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.32)"],"sha256":"b30812c75afd7ecf71f1c7369a474d066e00a208b4f6ed41f09c8722e82ec446","size":5772914,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50205,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cdb161b6e83ce7d0369120d876b1fbe92034944681d862ded2292bb971bfc1ac","size":9779402,"filename":"pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-buildx","version":"0.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66611,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"7237fe48a538cd9f08f5482c5f3e1a3afc0c1ee6dd302bea3f3b06e7c9ab5fdc","size":23640920,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.3.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172243,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bc7806942a6f28060686621bd922df555e61e11b00d5205896baba251ffa5b1f","size":69177584,"filename":"pool/main/p/powershell/powershell_7.3.7-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-3","architecture":"amd64","section":"java","priority":"optional","installed_size":318628,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"03dea1e256a822651b96db15d5ccaa92d74f70e118d670dba0f3249a156cb92e","size":167149714,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-3_amd64.deb"},{"package":"dotnet-host","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6b76d623e1e8a5867b635c656867f9b6df17f8b5dfa1c37f66265cd5d27f526c","size":36544,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175210,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"2dcf56dedacb98bc1f661a8c35fd818c14b348ab5ea6f2d984f3d480806e44b3","size":42839214,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.104-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.101","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.1)","dotnet-apphost-pack-6.0 (>= 6.0.1)","dotnet-runtime-6.0 (>= 6.0.1)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"12cef00f2632158eb8abb3134a76f3f03b644099c98f1e2ad947a89991a48582","size":78065748,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.101-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b71bb09108f7f90c47f7aa12647eb4b294adc990880eb2d87e7c7451af205b76","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.9-x64.deb"},{"package":"aztfy","version":"0.7.0","architecture":"amd64","section":"default","priority":"extra","installed_size":40620,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"23c48caeff05fb75c9486bf0685620a773ec46ec9d6263ee28670f19bd09571e","size":8353910,"filename":"pool/main/a/aztfy/aztfy-0.7.0-1-amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70836,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.8)","dotnet-hostfxr-7.0 (>= 7.0.8)"],"sha256":"ce1576434204df98a773ce62ea757b06997a110fea7d50720c6b39a5c0476337","size":23202254,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.8-x64.deb"},{"package":"blobfuse","version":"1.4.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":34742,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b4312aa8d8765031712e012b8ce36e87b66cb1295e276801fd69c47c85c2f877","size":10094342,"filename":"pool/main/b/blobfuse/blobfuse-1.4.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.6","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.6)","dotnet-runtime-deps-6.0 (>= 6.0.6)"],"sha256":"568ac6b27881ced8198b39bdf885bc864d07fe5d629356ca135cee3d4570f983","size":22760148,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.6-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"21aeb934942572b999ebe59d74ad66f42ed592ae2e81018913968c84a13cd557","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.12-x64.deb"},{"package":"moby-buildx","version":"0.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68426,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"20c7e33d3598ae3dcd0cd0bc127e554fefd1f1fd792bde4b0b29b214a1135017","size":25559006,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.2~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"a810af35585da4c42b563a185c8865f73aa517965d9dbb987a33c94c15fd6a1d","size":1648772,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.2_public_preview_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.27 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.27)","libc6"],"sha256":"701e89dbf39e921a5118d3fc3fe168c913bfc509006ee81db507dc5765f0dbb1","size":120786,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.27-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"1689060a6209de074a7ba1ca61658d7e7fecdd4ecd8afe241a1085ad1d2fb56e","size":3510004,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189613,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"0901442238c2d98efa877e9e707b593b2b38fc553ff2aa0d6f0ac8fd6450029f","size":47898062,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.407-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313389,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.110","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"675b0ac1cde55eaa4e5b917c32c32678076614f15a28d7854dcdc2f52a8ce652","size":78476464,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.110-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"da99f73d57adcfc0ff5cfa713f52f6dbe3d6198f6a996e481ddd1da183f77221","size":157183124,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5348-1.deb"},{"package":"powershell","version":"7.3.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196907,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a99e9fe370b0d9c05c736fa81521d32375ddb418ab75c76d9d0a14b4ce3d3df2","size":71728570,"filename":"pool/main/p/powershell/powershell_7.3.0-1.deb_amd64.deb"},{"package":"mystikos","version":"0.7.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"370fa35bb30e9919d98c900077cda8a212457ff740888d990e92793e1a2697f4","size":4280430,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.7.0-x86_64.deb"},{"package":"azureauth","version":"0.8.4-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":75617,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"79bd0a12a3bad516c7511db2f08232f7313501ace0785f85ce2ac6b385d2244e","size":24635978,"filename":"pool/main/a/azureauth/azureauth_0.8.4-1_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d038485c6f83ac8259778162feda60f6d9a3347b5292320db645daccdd375731","size":20686374,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u3_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":9056,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"1cba16e3b307177cbe15bd3fd8a2a87ab8d638846988202be8a17981b5e900c9","size":2747798,"filename":"pool/main/s/scx/scx-1.6.8-1.universal.x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2723,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"9d775e854e8f618f437e1c5124ef753a7687852eab28430f7f668e27ad87245c","size":681884,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.21)","libc6"],"sha256":"310e219c7383a2a6b98e541ea0458296c6eb4fcbfb80d9d9ac9d5a1f27d0c437","size":142420,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.21-1_amd64.deb"},{"package":"mssql-zulu-jre-11","version":"11.43.56-1","architecture":"amd64","section":"java","priority":"optional","installed_size":116708,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"dbc40163338219bedb88ada68302d9b89f0896251ef5e8f853a72abe86a1a4e6","size":40354792,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre-11_11.43.56-1_amd64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"69a1f6ffb194e386d3282c0d40847cdbc4a482a644c5289aae1f55f3d6d81ca1","size":10877658,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.118","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"8a7c3ffef5add57f593f7d903c514c118c45802f4590aaf2a39f7caf082e2eb8","size":44333922,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.118-x64.deb"},{"package":"sysmonforlinux","version":"1.0.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1)"],"sha256":"aaa94351e6626aa059e19c950c98bb078981268f0f77224eed46ef0d7b0773ea","size":225748,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.0-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13091,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.0)"],"sha256":"722f7d8e829269206ad71047ae84a13a9061a5d53f3e22fdfdc447eec19016d5","size":1526164,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.0-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.10","homepage":"https://github.com/dotnet/core","sha256":"f64503f74d2f6318966bfba4d124cf7ca087d3dafd56de5e9d72a5b575ce93c9","size":42400,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.10-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3233-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a161bdc4fc21f41312d5661573d4b6d055c3d8d9c3efdf0188b1240d9ba63f55","size":208751136,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3233-1.deb"},{"package":"libdeliveryoptimization","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1513,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"31e14621381b9f382fa30382bdcec3102f231b653fddc6426c995338eeb4c896","size":156484,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_0.6.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.12 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.12)","libc6"],"sha256":"caf03000692ae0e1e3255e34a6ba9d926642f65a618badbaab7e89b2c2b43dd7","size":121046,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.12-x64.deb"},{"package":"dotnet-host","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7e55da6f87aa87547fe6feb6bdae72ee2359d2db46ee35b86e58209fd951116","size":55976,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.12-x64.deb"},{"package":"azureauth","version":"0.8.2-4","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"6c67ce3cf97d82f6e014377d4a49426b10d0e725cadba7d868639ebec42d481a","size":24118762,"filename":"pool/main/a/azureauth/azureauth_0.8.2-4_amd64.deb"},{"package":"kevlar-repokey-dev","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-prod","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-prod","kevlar-repokey-test"],"sha256":"609c344c64cebccbca2a92d43b4284e5eafa3eb2135392e53f5b483e5179c7c7","size":2494,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-dev_1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3734-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3a0353ce615bd205a150e3bae61a3f8a851355f650d262cbbda6209a6ef35a95","size":209935436,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3734-1.deb"},{"package":"azcmagent","version":"0.11.20231.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"3cd72bd47a787bf6d4075d4ae541f48e93881e76a0851942fcf6ae51862ac61a","size":33039918,"filename":"pool/main/a/azcmagent/azcmagent_0.11.20231.010_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4aecf95e06f1d933e3c502fc7825af8dbad329c9fd5289bbdc8c3091a964f90c","size":2690,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.23-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6a1ddab72b597a0d7224031b5e29b74c38fb11cc57108f6decb5de0d71ff53a1","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1642.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","lttng-tools","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"4ba4bbfd1787ff0c8e0f611b01778fea768efe59b9d280c7d0ed51e39e0b54ac","size":219899262,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1642.1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68312,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.0 Microsoft.NETCore.App 5.0.0","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.0)","dotnet-hostfxr-5.0 (>= 5.0.0)"],"sha256":"bee07a7b6e16a0a65cc6bfc6c26ecec403aebf22cc02379d8e9d88b00b9662d3","size":21522046,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.0-x64.deb"},{"package":"mdatp","version":"101.23082.0006","architecture":"amd64","section":"devel","priority":"optional","installed_size":411033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"e80cb3c420998be4370f6da7724a335bf7a233fe9fe09fd85b15f10e6a9ed519","size":150359494,"filename":"pool/main/m/mdatp/mdatp_101.23082.0006_amd64.deb"},{"package":"servicefabricsdkcommon","version":"1.4.2","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric SDK Common","depends":["servicefabric (>= 9.0.1035.1)"],"sha256":"547885035e4b4811ed5bb2868869cb8eea6d64c5922a6779a0f4890bc423c61e","size":16460,"filename":"pool/main/s/servicefabricsdkcommon/servicefabric_sdkcommon_1.4.2.deb"},{"package":"open-enclave-hostverify","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"990276df2b07966cfe0808e7ad801a6d453774cec1fd5a2df4e4bc7452527911","size":854534,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8e8c6cc973ec8b33ebc1998ab7a3899edefd8292a91cf644a4da89117951f09f","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.19-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.421-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192852,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.421","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.27)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.27)","aspnetcore-runtime-3.1 (>= 3.1.27)"],"sha256":"7025fd412711f46edf16bacb0093011fb4c2ebcbefbce2a2e624a1ce63ed3c0b","size":49770728,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.421-x64.deb"},{"package":"procdump","version":"1.5-16239","architecture":"amd64","section":"devel","priority":"optional","installed_size":10616,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f38e3b29309d220c4c57729c3ec9ddad737d1d38c56387e971e55c6440b67f53","size":1625738,"filename":"pool/main/p/procdump/procdump_1.5-16239_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89518,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0accbbc7086ad733257ccf991a181302d7e7243b99aa663f856424ff56885461","size":82560948,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"730c784e1cb207ac9dd2055e7beb46d669395c64acdb1c0cf0587123189d51c8","size":158749964,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4895-1.deb"},{"package":"scx","source":"scx","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"da87ad658af6fd2be3e23de235f8a037e04f62fca9facf4890dbe3a8c8f211ec","size":2588282,"filename":"pool/main/s/scx/scx-1.6.12-1.universal.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330672,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.301","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"bbebeb9d409cc8531efee42c19ef31cfacb4163b1e0c9c11ecf9f64def2e9d7a","size":84510338,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.301-x64.deb"},{"package":"dotnet-host","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"35fe3c54c617ca32833454137accc1b1b5200f0525eafffe5575af9eac22ac06","size":32904,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.11-x64.deb"},{"package":"azcmagent","version":"1.27.02238.691","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0d3dba479960e05eb81a9adebab11eb5cf61f8e5c3b499db8e3b9d482a5c670b","size":53707946,"filename":"pool/main/a/azcmagent/azcmagent_1.27.02238.691_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"692c946fe2e041723b9ec97a77b6ce6c81c2a04cbaeb7c97625af9bef7c80235","size":2388,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020320001_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"56c6333632b1a4a16d5bd3dcdb6a7e9326a5fca99c06b466a18f46e2e9ea574c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.17.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52651,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"651e08385f1d09502042123169438defa3c6c0bdaffb6b9cb6a324e6e25230ba","size":10854258,"filename":"pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"7b71596ff75999d5eac2af059d597b48c370df332c2bebd4e813767ac68afac0","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.0-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.30 Microsoft.NETCore.App 3.1.30","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.30)","dotnet-runtime-deps-3.1 (>= 3.1.30)"],"sha256":"748af674ef3158330159ad766e13fe2e50df9f864053831ede774f22be9b5b8e","size":21656458,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.30-x64.deb"},{"package":"dotnet-host","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b1d34d47a7db8898824408b0cb2c83f2e17647a7ad2df8fd74df7bd7fbe8e646","size":32930,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.8-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18556,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.4)"],"sha256":"5d1c630d1847717c950f9c79d5bbf7d90de4e800b8999f679082e5dad9d8038b","size":6086556,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.4-x64.deb"},{"package":"servicefabric","version":"9.1.1388.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"b83b57255cb013301f0e4798e7e3dff853cb34f5b0ac61c29b4fdbdeed118a71","size":219279812,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1388.1.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21340,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.5)"],"sha256":"fb030c9ded8cf60148ce5fc0f70958a865fc3691eb64226213ec36079e77e319","size":7053294,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.5-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":66359,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ebf6160dbc40d51ea19d6b0a9ed941e809b3424f45452c644b761000e97c5319","size":22808628,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-2_amd64.deb"},{"package":"open-enclave","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":122315,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"77f2429e1d616d9403fc51ac662958f18a244c93ff4a1a24baeb965060bf4bb9","size":33343372,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.5_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120082,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c36cef2558aad2d83c60a22f700db49fce9d4637564665dd45d2c45c198c988d","size":26953884,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.5+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"957c2861468f1e1391ad3de2f030653600a07b1bec8f1e5dd06e4af2b7a2848d","size":5745714,"filename":"pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"9d5454c1cdc84def5bdbe93f3388c7183e81e53560114aaa220cf7a14bcb995b","size":2130310,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.20-x64.deb"},{"package":"dotnet-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":28828,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"4e02a0426e93fe860fe4a3f4496da2328fc7a827e66bdab3f84f0d1d859b2e8a","size":2086486,"filename":"pool/main/d/dotnet-targeting-pack-5.0/dotnet-targeting-pack-5.0.0-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.515-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228795,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.515","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3e21d2673d8ce6b4a4078091bc8c26051f2cfc6b9e49dd7758076d7facaef06c","size":89292452,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.515-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.1","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"e1d2d1f009afa3d6da5771c4888dc9a249944c1d331efded61486ffdde1b3d93","size":79756342,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.1_amd64.deb"},{"package":"powershell","version":"7.1.0-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174304,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"09ac03bdcd7c74a36807beca62eb4ccfca690be1dc3936ed08a7b8f14fe0cff9","size":68242798,"filename":"pool/main/p/powershell/powershell_7.1.0-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"446dac739f22121c02204f78199734069801f71568387b3435ad373987370ef5","size":59115640,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.408-x64.deb"},{"package":"powershell-lts","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"d7f432866b4da70a8e0ed7e2221c165406f2e04f2c691e69960ccf85aa53ba93","size":69388194,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.5-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.12+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317079,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"a54d8a5bd2786a883b9343909ca99dd7a7f22b26d24b52fbc5cb123d01a6ce96","size":193554082,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.12+7-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.7 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.7)","libc6"],"sha256":"3f8dfa80dbdac5db78ede515af8dd60d39f6492b96b122ce8a0ff0b118e5ecc9","size":140236,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.7-x64.deb"},{"package":"moby-engine","version":"20.10.15+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"dc6f35674c5ec41af4a03ce023e3b5b8e33f1322157fc78d33349820d1fc8b21","size":20926260,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.813-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240919,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.813","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"bff9e10d3dc9c4c99e5aa234fd2c6b187dec616be823d22ded8165f9680f43d5","size":91632412,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.813-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b6bfa17bec9d4b4ac9813d4eb615239966c224d7db7019550c07fd5bf22abc73","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.14-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.25 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.25)","libc6"],"sha256":"e5e623e0673d0cbc3fdd49dfc2e50babafb3b06a33b4365c3b3e9d97553d7ca2","size":120760,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.25-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189455,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"c17e3c941a3ea084d7eb47af90856eebe858de6a41ebd42e96fef21be3531573","size":47879916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.406-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"48a9d825c07a0f1c138ba6a60050c6719925d44b23cd0e32ed34efda554ebd01","size":152285536,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2628-1.deb"},{"package":"moby-runc","version":"1.0.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15169,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"1ec023e3176b21673b5d38f1cac01ab03ad5d245aee354cdef593a1c82092f4e","size":5339204,"filename":"pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17438,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.5)"],"sha256":"e5762c7d694afeafbfa292c97db318306e26fb20a68252e07934511ab53d6d4e","size":5760232,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213479,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.102","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.2)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.2)"],"sha256":"9a82f517d20c03e91eef89b195dc1cc52bae32a1bd4cb01a3db6bfd51ff9bce7","size":55237992,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.102-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"6240db10ea11860356bb455e0895d9862b7678d19737af4de7554eb83d333bb6","size":1000112,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.14 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.14)","libc6"],"sha256":"b1c1bfd55d24df9257d564346e385acc3bbc562899413c3712552ed9efe70bf1","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.14-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.3)"],"sha256":"2252e98ccca6ed8790f8007dd8118f8999d6b4ca7be41ca3bf46fc0f8fd66f22","size":1518038,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.7)","libc6"],"sha256":"fb83c49522ac9748ae6befed061b663011abed5cb031e15d22215771d30b170c","size":143966,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.7-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124805,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"07580974546b886fe611343f06359f58b43e3e3e0fc650ea839554ef7f76a955","size":46699494,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.4-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21363,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.10)"],"sha256":"4669c57ac123ea1f3d772bec04fb2468527d68d6783809ba4b6e7a137e9ba94e","size":7062470,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"dotnet-host","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.3","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c86af078631884cb8aecb055ad37570c49a2de66672df4f4ae9ff574eca4331c","size":57350,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.3-x64.deb"},{"package":"aziot-edge","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"0700e703b2373ed90c158783af14129f06c273d147401c5e2c8c752dc66c1f85","size":4204432,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.2-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.9-5","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"1f19bcbe826ba50f0796936df7e8caabc708a3fa075ce3558363a1f4672439fb","size":12514,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-5_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.5 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.5)","libc6"],"sha256":"c1d7056b143df44b476ede6a69671e4c09b352c6f984264f61a9518a01957a85","size":121024,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.5-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.6)","libc6"],"sha256":"7f249c085c34dd797a6aad06509714992d2f48a8452798623ead69194429454f","size":141988,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.6-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175188,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.105","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"03c9b1da04c9e0c2f8f362873bd56a357879a93192882d13ad1f89b449ddda83","size":43698950,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.105-x64.deb"},{"package":"libdeliveryoptimization","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1514,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"b70bfa739e450fb29a108e9790bcf98c1d001495175dcd52b4e8c39382394b96","size":156992,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.1.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e5b7ce564750f50a1aa6a99a4a5af8ec44e8aca36ed7babcc694282c47b7f7f2","size":36488,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.28-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.27","homepage":"https://github.com/dotnet/core","sha256":"9aff677e4984e24412ef2d41c7ee1bb5853d5a676724642090419f618ae32612","size":41966,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.27-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.4)","libc6"],"sha256":"868d65aea8e5f2dc487d5f3bc1f6611778a5193483f10f401bb3353dc82d9ce6","size":144018,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.4-x64.deb"},{"package":"mde-netfilter","version":"100.69.52","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"6e00f07a56be4097b9ff86ab3257017811d1b6f6bf121b69b53a8d6c06042c36","size":24430,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.52.amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"176e5dcfe41ae8e829b78799b22f2249c3f11aeffa831643c8e4c089e533366c","size":2124774,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.5-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"21cca571060049374d892dae2996cf33064b441631a5f0384aa917da4a518a7e","size":838580,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.13 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.13)","libc6"],"sha256":"3cc503e7a916ef558185f59e36ff57a855421e1684c291357d125cd26e9a9d32","size":121130,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.13-x64.deb"},{"package":"sysinternalsebpf","version":"1.2.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"b0c82c448966603c0e472e7227b51d8c02876cb2f62f5e6d501cb6dd50d02fb8","size":715290,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.2.0_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19862,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.9)"],"sha256":"14e18640740f852138cc60bd0f5c34d9d136f225b7a249e682ece80e9f2d83bb","size":6608408,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.9-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350037,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.103","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"a510a1e1ece4d989d4afe7c89015ba3771e42277139c0b84d919bf58659178f8","size":90608242,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.103-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.4 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.4)","libc6"],"sha256":"49d45fb8f2e68e35064744b9c21633a5aa87e7f451054936867b7716ecda0750","size":140852,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"586b47ef09438c1b2cd2b493d4947d861756b44d0183d0f4396c38f98df4b6a9","size":2794,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.13)","libc6"],"sha256":"532d2fa2dc9c1b2076010d25fcd7a89fa3a37a8134f8530c58894438aa751d8a","size":143994,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.13-1_amd64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"850b005a6cff5e198e0dbceb4a06793ad9777d97a1ba8aaff6647abc1d23787c","size":9652638,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"procdump","version":"2.1-17009","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"13f33965391c2baad2dcf171aa1ff79bd0f7c6e7c0a541bd18ea6d2ae73b488f","size":1649046,"filename":"pool/main/p/procdump/procdump_2.1-17009_amd64.deb"},{"package":"moby-containerd","version":"1.6.19+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1f9e70df328d8cf6ddddc456035eaa23c6bdd22fff61846b67c1079b98afc4a2","size":31449582,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86242,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"170524326ebefe90fb0cf12222d1887bfa0920c219ac15971e211c01d8ed9780","size":20510486,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88c81dd2fb63b2f5b9161b03e3db1f8b1569d3e5e7f419a958dc4a4dbf05461f","size":58314262,"filename":"pool/main/p/powershell/powershell_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"az-dcap-client","version":"1.12.1","architecture":"amd64","section":"unknown","priority":"optional","installed_size":949,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"31cdd52119bf90c8e93bfb420a48b07d7153b1109d62004451d78e96a646cb85","size":161772,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.1_amd64.deb"},{"package":"moby-buildx","version":"0.10.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"442ee6a05061d6d597fe04da223f68a3a0ecbdd03cefc293e7d8dae6293a3a76","size":25954582,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.2","architecture":"amd64","section":"default","priority":"extra","installed_size":16078,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"0df8998cc932b73a6ab74b9849a399e23d333772f47d1cd4d83a41e986202a20","size":4117900,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.2_amd64.deb"},{"package":"mde-netfilter","version":"100.69.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"1a6ca836ac97681f0fcec4088fa942783ec22b6e5d58be5a4adcc867301c8968","size":24434,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.55.amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"82d9ce5ab6130a8cf34ea3f04b636fa3b634ed9f1b518dcb4f34ef8a60e92b22","size":485622,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"83a0ae16d28a9c8822a7df6ad9d9b2f0e8a03a6b27f25487d3a341bfa4b0d1a9","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.28-ubuntu.14.04-x64.deb"},{"package":"azapi2azurerm","version":"1.8.0","architecture":"amd64","section":"default","priority":"optional","installed_size":70084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"f25bdb7d081fc4f4adcd6621926f8cddffc9a2248c30b46e6cd568469828eecc","size":9666182,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.8.0-1-amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"eda276458ea8423b699448a0009d7474ad47a0cc93886df47dd5d88780a4fcab","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022300001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189450,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"feea21e813e5f579221f266b87e6f55b3a49b35dd7dddcf1a54216d4f2a6921c","size":48035314,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.405-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0566fd72c633ba531b52f13b777579f056bffceb889bbf667a7b58278da3ed76","size":227697024,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4727-1.deb"},{"package":"moby-compose","version":"2.15.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"c0747669c5cf76ca6c8d31d73f726666d9a167d09bca61d25b96b858d5e5efc2","size":9668570,"filename":"pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71099,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.26 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.26)"],"sha256":"d58bbf6fa31169bc9e7965f75e6d1b403d13d2a0a564b2b9773b5d8e95aaa18f","size":21943940,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.26-x64.deb"},{"package":"azcmagent","version":"1.14.21351.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"929e5bbce54aaa08d2e9ea8026ec473827a0130b585fb9433250793e247c36c8","size":50495490,"filename":"pool/main/a/azcmagent/azcmagent_1.14.21351.009_amd64.deb"},{"package":"libdeliveryoptimization","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1501,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"af3ed5ab44fee987e86154358576b01369a18467c5361916d81b0704f90a3dd4","size":156634,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.0.0_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"42645637bdc5e5cbf71b83bc6f5ab80fbc0c8d1ff8b293060c106ca064b7f6d7","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.10-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.5.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89256,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2438b186365c527f546c59e0e3a5c660c431739a12026ad89c2e0acad56ce443","size":82330362,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.5.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3ec86621b0f80d91ba828774a3f0200046ee14b27046afc64f71d7719fc22e42","size":124473264,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4704-1.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367122,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.307","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"0dd6e99a413ea41be9ecb5d1815c41f19850d198911ef9d555f0fcd54e4cb7fe","size":96591194,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.307-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3442-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6f4924c5a51a13f2a01ca9f57ec4b8e42f2625f11b9959277b353d58fc031e57","size":209376948,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3442-1.deb"},{"package":"azcmagent","version":"1.25.02203.601","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"633d248a735db74f851d802144622a5cba9888a8c9741fdab3d72d0ace467940","size":53677954,"filename":"pool/main/a/azcmagent/azcmagent_1.25.02203.601_amd64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124219,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a97ea99ba9cf7972a17ef85142fdcabe17b065b66e2c62b778bcf1a5c05942bf","size":27591168,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-1_amd64.deb"},{"package":"mdatp","version":"101.85.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":294233,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"6b594c091b2e04b72c82656b7dfc54f908268b9ceacd0adaf96bac3dc7f171b6","size":117375540,"filename":"pool/main/m/mdatp/mdatp_101.85.27.amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b5c0552f571530933268426827b82de3c5a7e2c5d7a6cb1ddddada110a1a2cb7","size":166011704,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2936-1.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"1416466bb4b4c601800a49b5c6964425787f8a7952a26d8ed3d480c563904e85","size":25957390,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u1_amd64.deb"},{"package":"az-dcap-client","version":"1.11.2","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"cb92041be615d8ade85036d7de605278bd7188bc5c22947f03fcb85685a5fb62","size":154040,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11.2_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.21 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.21)","libc6"],"sha256":"22ffa22a05d7aa611d2ecf6ee2165ac2bbcd2e6c2b99ca2a3a8f5283174ea5dd","size":143556,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.21-x64.deb"},{"package":"msodbcsql18","version":"18.3.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"526caf38a98d0f850975cb728a670702e5e60b31f75c87234f298b08f3b34990","size":756482,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6869230ff316720ef8a2729482a976f0289f492feb631080d9fc15226700bc38","size":227641572,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4626-1.deb"},{"package":"msopenjdk-17","version":"17.0.9-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324191,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"4d02c06a12e5808ad3a512bb10de1c3290ad7ebcb57fa0b08bd5d83e1aabc92c","size":164729206,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.9-1_amd64.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":13389,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"95eaff7c67998b27fc830d4526ff639c696649653b2c321fb3eaa80569bbd4c4","size":5767202,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.9)","libc6"],"sha256":"1d7e48c097b8a44fbaf341d6eeb8d176c809cd8950c5f1aecc7ce0bdfc1540a9","size":142246,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.9-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"35df0bf15be9fb9a66e520425a3d4ec04b16612f9cb57570a2403ad84eda6e89","size":2133946,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.11-x64.deb"},{"package":"azcmagent","version":"1.22.02077.406","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"28449eccc7003a5c00f74031562f05ed662b7d33840b587527a499dd0725c472","size":53412088,"filename":"pool/main/a/azcmagent/azcmagent_1.22.02077.406_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.422-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192924,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.422","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.28)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.28)","aspnetcore-runtime-3.1 (>= 3.1.28)"],"sha256":"4fd46756de5a2440abf56c14b75ed131c814d28bef262992bb0fed801fd0e621","size":49803220,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.422-x64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.7)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.7)","unixodbc (<< 2.3.7)"],"sha256":"80b52c6b1728146dd1f6b3adecb311c24fa7ca191bda569263c1733b3e6a9675","size":12024,"filename":"pool/main/u/unixodbc/odbcinst_2.3.7_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27359,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"1f36ec7f18be7b459632ced20ee68303e5a3ddcba882706a55c54c11082fc64e","size":2119378,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.2-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3129,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"9aea839f9ab284b17d957d72d1e74968267f6d883b9290a3c87e2eccc1c0b43b","size":854722,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.2_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3121,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"7dba065dc52b8eb0971a30d69c50dc293f75a6def60479e7d452a41c911dd0a7","size":853508,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.5_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.21 Microsoft.NETCore.App 2.1.21","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.21)","dotnet-hostfxr-2.1 (>= 2.1.21)"],"sha256":"8c825dcedb392ed3175a4b850d44f9e5f14ff6b80c3716c5265f66489c4b0bb5","size":20615080,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.21-x64.deb"},{"package":"procdump","version":"1.3-13160","architecture":"amd64","section":"devel","priority":"optional","installed_size":6912,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"31929586fc7fbffac526aea3586a20eb87fbd8cdcd113ab4681b691d86ea294b","size":1130220,"filename":"pool/main/p/procdump/procdump_1.3-13160_amd64.deb"},{"package":"libmsquic","version":"2.1.4","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"2275d8debabc093181fb3cf6f2c07c9351365bc4a8941c69b985a099673b298c","size":4117996,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.4_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313277,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.109","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"004d1a204598e83b4a42c38cd1e42b273a1d9063f7d78f8ab8d0fc990eec01fd","size":78428644,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.109-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330653,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.302","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"592c559cb5fc9dc5440cea502e388cc7b0aaa1beaccb03f9360e3378e0a851df","size":84868880,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.302-x64.deb"},{"package":"moby-compose","version":"2.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"4701d0142cf88e7c8d4ab4eb0a10dc047826be0c05c683960a3ca523ce01d518","size":6501704,"filename":"pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.4 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.4)","libc6"],"sha256":"c2f16c44b5de02851e803ff1d70c08eab56ffd3d466098bb37e5c6a9cc753911","size":120982,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.11)"],"sha256":"e9524164ec468565083307fa5cc0e2f6788016f36fc1aec2f4cef622f676ac08","size":5772760,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.11-x64.deb"},{"package":"dotnet-host","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fb5bd7ba708921c0ca4aa2d1f93eb6cc3f32fae622e7cc08d33f13bdae4cb05c","size":52942,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"e2e154b631f938328fdb2c262de25cc7c6769a3705a2b55d30f00fab3d715acb","size":3524566,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.7-x64.deb"},{"package":"powershell","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"11756a6265bdc1ebd14d678ab08a6999c03e24157b26b2c2e40640e44cb46acd","size":69690326,"filename":"pool/main/p/powershell/powershell_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql17","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"3353db998891244d924958830ed1c11662afd4541b41b2d4bb82add7b69147f1","size":744322,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.9.1.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"825da08fafaaf997b1fe218f01921fdac410e70b740fb8b025d2da238f0f51e6","size":3522960,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.19-x64.deb"},{"package":"procdump","version":"1.4.1-14851","architecture":"amd64","section":"devel","priority":"optional","installed_size":11111,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"a52dc999199e47240f20d68afa15a97609ddda007ee8f07d714eef1816960c8f","size":1655962,"filename":"pool/main/p/procdump/procdump_1.4.1-14851_amd64.deb"},{"package":"powershell-lts","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1d06b358202357801f6f90d65cea6d66b0033aabf1464b70862e62f3d296b393","size":68377710,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.16-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336555,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.401","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"c87f7c06058a2b355817e5671b8d94d18abbf70fba8f72824ae81ac4c5d83005","size":86551776,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.401-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19892,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.22)"],"sha256":"7f5c3705f1cc77f3c3193dca3832c6fdcb61f4fdb013c5b2ff3458cff7b490cf","size":6617570,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"046f75901d5530e3b309ebecb2e6f22138bcc93ca8bf03e24debd99f336616bc","size":3521770,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.24)"],"sha256":"a6b3a2d5fdd57d9d6c06da6eac82ffd1d8a533bc7cfe8f49fe1def4eb7773e41","size":5771272,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.24-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"180c6180ef50729b20d7057f5da16b052ce52825a2e34feb1a39581ad22dd40d","size":2132638,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.9","homepage":"https://github.com/dotnet/core","sha256":"a64f3530d4ea352189d2b3bd0bf7def827c9ff70fce7b7655df0db27038dcd0b","size":3524010,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.9-x64.deb"},{"package":"aadlogin","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"da831404adc54b986650b7a5d0ea77269a6ed0bace68e1e969622ae0fa31760c","size":411524,"filename":"pool/main/a/aadlogin/aadlogin_1.0.016050002_amd64.deb"},{"package":"hibernation-setup-tool","version":"1.0-8","architecture":"amd64","section":"utils","priority":"optional","installed_size":65,"maintainer":"Leandro Pereira ","description":"Azure Hibernation Agent","homepage":"https://github.com/microsoft/hibernation-setup-tool/","depends":["libc6 (>= 2.16)"],"suggests":["btrfs-progs","xfsprogs","grub2","udev","e2fsprogs","systemd"],"sha256":"2282e902a532536d75e032f859081891348a168a40a926502e53f67ae4587926","size":18548,"filename":"pool/main/h/hibernation-setup-tool/hibernation-setup-tool_1.0-8_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70804,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.4)","dotnet-hostfxr-7.0 (>= 7.0.4)"],"sha256":"b351edd6cc0a5ff6196cb3dcbc093b80cf9ade1d1c003e8ce5441debb7650fd0","size":23198918,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.4-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227302,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"06f173ff68233d5255696a39a7477298f54eecaeaa111142dc6dcc79077cd644","size":58426066,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.300-x64.deb"},{"package":"dotnet-host","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3d4b6997505f014ebb26d3aba0ccebd348de2c3bc4ec36593abf84e61a3fc0b9","size":36598,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.27-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.16 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.16)","libc6"],"sha256":"069a564507c39d531f4c4383944086c58d4d7b570320f847798b50c819d96ffb","size":120712,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.16-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"3722d70b879528db6c8c47037c5d0a2e0db429e4092032a613452fe2c84138cf","size":1306732,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.2.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.4)","libc6"],"sha256":"108cfdb263731e0868975ecc77c21c56b25ca9c10ae0e196e774beeed0504752","size":141998,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.4-x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2634,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"cf6dcd76811967d54319060586e829c571f12233571cbdb7d3b5a0aab3d796c5","size":658658,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.14","homepage":"https://github.com/dotnet/core","sha256":"eb25b730300d4bd9398698a6a0b036cdbc32242d0b24e4333d9f367442b9268a","size":42450,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.8 Microsoft.NETCore.App 5.0.8","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.8)","dotnet-hostfxr-5.0 (>= 5.0.8)"],"sha256":"d81bac8b4ab60b3050b04a0b3b492996ad157912b9e63766b246bafd1f986e4b","size":21796060,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.8-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.213-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.213","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"13e725e6ec66079135a45ac5c445ffc96655df68291e295ae37c52d4e70c12a9","size":57728570,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.213-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27358,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"8510cbfa8935eff4b4f008d7cd03b93235dcf14a846a4bb9242eb38aa4025782","size":2124532,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.1-x64.deb"},{"package":"moby-compose","version":"2.18.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"195167c2fa9045437964e94690e1d59ebbff788b3e7adde5261980c02f799ae4","size":10878722,"filename":"pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.3)","dotnet-runtime-deps-6.0 (>= 6.0.3)"],"sha256":"6525eb9f979c86b5ff8bcc4b4f003915845eb1cffd3f42611e134b468489d755","size":22886032,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169366,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7baa7d3e12053844fc4b069302b00346d11e83b7bb59a25702c58b555c643705","size":66943402,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.5-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"7d8324d65e4eefa0b979f0a92684391b1b554d31ca856895a4fce36b5a99d104","size":2125006,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.4-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"36cb535472ecafe46ca2004104756ef19386b677d54066a1f378b99b2de352a7","size":10216,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.015950001_amd64.deb"},{"package":"scx","source":"scx","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"bf2e8aedcd7b14cc7cf7030e8e1fbf341b8d50b083912d17a1ccfee9e1d1cd08","size":2588348,"filename":"pool/main/s/scx/scx-1.7.0-0.universal.x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.109","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"4b39fbb5aa288a2e676bc8103efddb6530271df6e4508c1589b98e9e8bcb06f0","size":43432762,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.109-x64.deb"},{"package":"moby-cli","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"ebb5874e6643b0d4fcfd33f0448db23fb7e0f85f63ed48bfd8ae666942b19c9d","size":9661496,"filename":"pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403080,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.401","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"65516f369d674b7cb6890bc5938d43689e154d468fadbfa8a0aa5e9739749694","size":108167894,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.401-1_amd64.deb"},{"package":"blobfuse","version":"1.4.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":34335,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"f9ec2fa0180f705094a90c3778ce77a3a7e3e01053134f84e40ba68601423734","size":9847136,"filename":"pool/main/b/blobfuse/blobfuse-1.4.3-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.15)","libc6"],"sha256":"9bd0c52c9ad70420d6df3cbecfe6163212c4f857b07a1d638f845b4a460d82ac","size":142382,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.15-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"cc2685bf04ed2521b1075a7f39183817da59cdcc894f56fb424b9f40863405c6","size":2122592,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"servicefabric","version":"9.1.1206.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"40de2a402e9a41d8e0e6b513fcf3a7d52c2aa0c7483600fb73b02a9c11e28b17","size":219772344,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1206.1.deb"},{"package":"aadsshlogin","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"a7a7b67e9a9c93d60f890520d4690266618f3c268ead39018680be43656d5526","size":422178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.021030001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18531,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.3)"],"sha256":"ca38e724678e3e24216f612b028dc1ab788988d7d97f47543b0b64e247a3e143","size":6085600,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.3-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":193677,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"be418a526d5fe68f39aa1ab126c6262dbf870ae8501ba44ce8b020a2282c536b","size":70083566,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.10","homepage":"https://github.com/dotnet/core","sha256":"037f67656103db1e0003abeb8f793a88164ae03ec0b3e1b20c5d64af326e0a79","size":3399672,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.10-x64.deb"},{"package":"moby-buildx","version":"0.11.2-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"52da4bc1d26985870e1840e26ce312fdeae4681c26b5ad96171370764dce449b","size":34231732,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu20.04u2_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.16.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5740ee368bda3a087c695eb0439b892dbfc5e57ea4fa95df28138065569b18a5","size":193677516,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16.1-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"7626df3cbaf454d15cad5272495e8d3a6e11b67a9ff314b92bc720ed9b5b0e3b","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020250002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.203","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"662a0caec7c1e365f7f653fec119cd1462a5a3617db478fe23fc7eda791e9bb2","size":57518152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.203-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.111","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"ffb75e9c46aa5f8bb9eba3adbcb9f4e1e31ea98a47c6cf0deeb7268ff26662cd","size":78477024,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.111-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.13 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.13)","libc6"],"sha256":"23aa9b20787674470eccbac91c559d35c35bf2ecb7e076e6d53aa5a39f52e792","size":140398,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.13-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":408,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"d0c20931d42e3bfa3c62692ed459310272d6c44896ed3dee5a8ef2f17bf44937","size":162704,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.1.0_amd64.deb"},{"package":"azure-ai-vision-dev-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"4be2318c1cd29827197b2d9645b26bee8401f05aa7971fcc1b742d3daf136de6","size":114308,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b289ce53e31fa8638fc202c4696fb2c192f3f9dabdba3181d79d5b7cbafed030","size":55824,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.11-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fc9288295fef2cfd7ae9a90ad3c26fa3ff760ed6e606796fb9741c6e9566ca72","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.26-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.311-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.311","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"c1a665a32c50c5304923b06d3186e921829b342b6be153a772b420d9e628b9bd","size":85165330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.311-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68142,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.20 Microsoft.NETCore.App 2.1.20","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.20)","dotnet-hostfxr-2.1 (>= 2.1.20)"],"sha256":"8575c612e0632a90710fabe8d76ea218b1b9dc83f62f2720d4f531c6d2aa6031","size":20602712,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.20-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d00554d3b7f1344606017276386b2036fe2651c068a346b69e0b04e1cd42851f","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019900001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.102","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.2)","dotnet-runtime-7.0 (>= 7.0.2)","dotnet-targeting-pack-7.0 (>= 7.0.2)","aspnetcore-runtime-7.0 (>= 7.0.2)"],"sha256":"33b2df24c016de3a7bc5436cc3ede1be2eb990a7b66d5744060b140890174a45","size":90599622,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.102-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.7)"],"sha256":"0ed727999af4970f63aefcb531cfb0d7f082b6aad5062d168dae767a61191c08","size":1518774,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.7-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"428a0d8326d46a397bd195f63b5954618491c838381bb1d550de054d0136883f","size":1315186,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.18-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21330,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.0)"],"sha256":"aac90ab87ac39bf89adcd5218905610d388b9c9721c82a7156eb7b3750c3a726","size":7050452,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.0-x64.deb"},{"package":"powershell","version":"7.1.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174315,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cf2d594765c3d40800ac6f838e8159d6952e1abcca18976e2b13e0a819d9c401","size":68281910,"filename":"pool/main/p/powershell/powershell_7.1.1-1.ubuntu.20.04_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"045926eb2b3ad031e0c2643bd6b219d3f8d8964fa484a10fd4e0fc29059cf7b2","size":172042448,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5148-1.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"302756ad147ecf2774368decd127789888ec31948fa42cd2d8bb3ce9435a8ca6","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.19-ubuntu.14.04-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":168,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"95ced03d2790f46ce2a827f44ba643158ccc8ae144d973f8ccc14e16e73f79bf","size":57830,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.4.0_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350036,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.104","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"1d57fcf96fa0c19c0bacc60a343952b9e21d1f3cadf38285b60160638bda93b6","size":90606898,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.104-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.28","homepage":"https://github.com/dotnet/core","sha256":"a70f9988c9e6f17bb5b7109b9901c44858c9a9bb3a65c85954a694a3c7f6a50e","size":41858,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.28-x64.deb"},{"package":"intune-portal","version":"1.2307.12","architecture":"amd64","section":"utils","priority":"optional","installed_size":23134,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libglib2.0-0 (>= 2.12.0)","libsystemd0","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","msalsdk-dbusclient (>= 1.0)","libgtk-3-0 (>= 3.21.4)","zlib1g (>= 1:1.2.0)","libgtk-3-0 (>= 3.9.10)","libsecret-1-0 (>= 0.7)","libatk1.0-0 (>= 1.12.4)","libstdc++6 (>= 9)","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libssl1.1 (>= 1.1.0)","libc6 (>= 2.28)","libsqlite3-0 (>= 3.7.14)","libpango-1.0-0 (>= 1.14.0)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","libpam0g (>= 0.99.7.1)","gnome-keyring (>= 3.36)","libcurl4 (>= 7.16.2)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ab7513205ea60621a08748343804d0e0675dfa29a62cfacea6d47531756032fc","size":5520188,"filename":"pool/main/i/intune-portal/intune-portal_1.2307.12_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227608,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"8cbb8c82766e861928b8e349046738ed8cf411e0be03cbaf63a625236056350b","size":59260772,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.401-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"77908625884345bc3114dc74ad4a48e0761d5ebfff8fa320cc195d1d30b107c1","size":838530,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.17.7_amd64.deb"},{"package":"intune-portal","version":"1.2302.9","architecture":"amd64","section":"utils","priority":"optional","installed_size":18587,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libssl1.1 (>= 1.1.0)","libsoup2.4-1 (>= 2.4.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libx11-6","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.9.10)","libpam0g (>= 0.99.7.1)","libglib2.0-0 (>= 2.12.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libcurl4 (>= 7.16.2)","libuuid1 (>= 2.16)","libsystemd0","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","gnome-keyring (>= 3.36)","libc6 (>= 2.28)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","msalsdk-dbusclient (>= 1.0)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ae0cad3b35b4601fe82a86d1c27b6526b47f0cc207b2bec0d85294059526ba71","size":3341216,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.9_amd64.deb"},{"package":"moby-cli","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e6b58e72860d678fd4892e01d410f22fa6a8b45b7998edf7991773e6e2337e00","size":16382092,"filename":"pool/main/m/moby-cli/moby-cli_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":215512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.100","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.0)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.0)"],"sha256":"fafe422d1610e009d4d68a433f651e43ef70ccbfa520d6163d50e92d407373a4","size":54972274,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.100-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18555,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.17)"],"sha256":"8ae0c155fdc56a6108e6ab13efcd2751bc1ac32a4c0a71cdd3bb9a200e5593ab","size":6086064,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.17-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.13","homepage":"https://github.com/dotnet/core","sha256":"11dc2d0bbc76ed8b6c61245a341f61d70c98c1dd8d46882aa9abde6f22d783c0","size":3403016,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.13-x64.deb"},{"package":"msopenjdk-11","version":"11.0.14.1+1-LTS-31205","architecture":"amd64","section":"java","priority":"extra","installed_size":317249,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9b31fe51c3b9edb59e8dc845eea04caca78d7bf1ccd9cac22b6004971663299f","size":193693992,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.14.1+1-LTS-31205_amd64.deb"},{"package":"blobfuse2","version":"2.1.1","architecture":"amd64","section":"default","priority":"optional","installed_size":30725,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"4b2d4ba747ca1d40625f3439382abc7245fda059f8d91df335f4028b099a00ad","size":15360896,"filename":"pool/main/b/blobfuse2/blobfuse2_2.1.1_amd64.deb"},{"package":"moby-cli","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"83d59b6074be2ce5d275af61e335bda29dca2de3c1c066f1068319f0bdab3fe7","size":10587436,"filename":"pool/main/m/moby-cli/moby-cli_20.10.10+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16368,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)"],"sha256":"3378d5a53fb6786597571960a69f94b58c4b271737689072d055ccc9758df51e","size":5060332,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.9.0~beta.1-Linux.deb"},{"package":"mystikos","version":"0.9.3","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"bbe27f1fee36b2c1138ad976ebe6c496821b51bfa74503ae06d8a894f14a9e8c","size":4315728,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.3-x86_64.deb"},{"package":"dotnet-host","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"15f7336f94ddc3131fb6977e38fef042fa0fe95198c111ec6faa8b4bf5d0119f","size":57386,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.7-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213489,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.103","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"3c18b7203d6a38930a0b5c266e6dc0946d2e7457f8db313629c8ba6391d76930","size":55140132,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.103-x64.deb"},{"package":"dotnet-host","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d9220d3f42b7960997b23f3254fbada2b905ea1b91fc80d200580d697bde1914","size":57270,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.1-x64.deb"},{"package":"powershell","version":"7.1.7-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171640,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9cd3e76f87fabb0078270cf7cf7f8e8380d9b442a5e5696fd9054d3f2015a744","size":67148874,"filename":"pool/main/p/powershell/powershell_7.1.7-1.ubuntu.20.04_amd64.deb"},{"package":"msodbcsql17","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"ea72c644ed9a2e0ef21486ef89544bb2aefbd7e0e9daa7ee708a9d6719ee38fe","size":744242,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"362826c34eff451d35a8970e7a755d70407ec1692e120df11e6f3906ee62a36a","size":52424,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.11-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.12 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.12)","libc6"],"sha256":"aa2138928390fb13617720957d7b3afb4f6ae2af59794505470d6a38f61ee419","size":140278,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.415","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.21)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.21)","aspnetcore-runtime-3.1 (>= 3.1.21)"],"sha256":"255fd286f4d28ecc4b6f9c7dc1d734231876651f46cbca9292bfcdceb3c007c2","size":48251046,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.415-x64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"89d9166fec67c6f23e21fbf7e33e0d40f3fb1ec8f77078f79bc42ee2eecc66cd","size":510722,"filename":"pool/main/u/unixodbc/libodbc1_2.3.7_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"c9672f06b201be1df4ef1834a98a1447fdb57907d817d35e47ffd01b9754e8e9","size":1314366,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70837,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.7)","dotnet-hostfxr-7.0 (>= 7.0.7)"],"sha256":"ba5c8bb6c3509d24c9f5fb8ed8b8ac51165044be3bbb726e094c781f9cc04d49","size":23204566,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ad734ae671ee9f3423e6bfc8d96b2e8fb0ac309ccf68618bd9c426a00d41c3e0","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.16-x64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.3","architecture":"amd64","section":"default","priority":"extra","installed_size":27627,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"2329a1130035d20325ac4ef38c174da38b51866c3ebc48c5f4ba6988493392d3","size":13042900,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.3-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.614-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237153,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.614","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"b7f99c6c345423943d5758c0b1857f4698280f0e35761aa3b1a848671ee466b4","size":90818518,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.614-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.426-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193108,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.426","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.32)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.32)","aspnetcore-runtime-3.1 (>= 3.1.32)"],"sha256":"5d0ffe69e1f9b2196e012a9ec3e7dd55045f2cf648f008f48871505083eb707c","size":49845438,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.426-x64.deb"},{"package":"dotnet-host","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.21","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10c0bb4a6e888b7b793ce8c2119cce80ec85c5dc2efcf36fd42be9c2ff123fe3","size":55830,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0690100dc9512fa877e61df0f6566c66635d634f8567bfa26edf9e9f317be0e1","size":2892,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.0-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"92e36a0001ef2bbe26cb348c1f28f73ec5d6d80f59f00466c043b63ee882814d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.27-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337395,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.415","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"271f45bad6cd63327162eccf54fd12bf0b13eac42100147cf03ab105d372241a","size":86815422,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.415-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.6 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.6)","libc6"],"sha256":"8e0cbb8d34ee9f019b93bc67988342e4342f8bc37c2a311c4f1536fb5612bc5f","size":140272,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.6-x64.deb"},{"package":"osconfig","version":"1.0.1.20220125","architecture":"amd64","section":"devel","priority":"optional","installed_size":3664,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"7d0a0742647236cc220429f357d9a140fc0c4961297528849d5aeb7234aab878","size":1279254,"filename":"pool/main/o/osconfig/osconfig_1.0.1.20220125_focal_x86_64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11-1)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"752ba4a9819e49a44200ddba803dd9c3f9147c0ee70b1d8fceacaa2a9fcb7cbb","size":21274,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71074,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.5 Microsoft.NETCore.App 3.1.5","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.5)","dotnet-runtime-deps-3.1 (>= 3.1.5)"],"sha256":"bbf2694874198386228b90ed189770f0f256bc2149732af4f31df060c2f6f762","size":21773970,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.5-x64.deb"},{"package":"dotnet-host","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.2","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9bffe3ef7d2deeb6bc0b7c57a8d0e1c82e801df762dd182da78f60529eb2111f","size":52992,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.2-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"11e47eee5018c4a82404e43a507b7dda59d44c7f0a34b5b2f7658749b4d105f3","size":166004040,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2936-1.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"recommends":["dmidecode"],"sha256":"99db20012d0600ad184a115e2668d18bba828539c6e9084cda153baf6f43e317","size":522078,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.6.2.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"6090cadb2918f982d6421b7b1307de164ec003d06146541f6154de564306b5b0","size":1315928,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.11-x64.deb"},{"package":"aadsshlogin","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"165d818aae5aebda9e537556b050574e813b9f8d4043cd55183f95728220be33","size":419386,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017820002_amd64.deb"},{"package":"mdatp","version":"101.02.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"eb9b29c37dd2c540a6d9601ca63dcd146aca555bec77d6cafb54d2bb53c58f5c","size":16305960,"filename":"pool/main/m/mdatp/mdatp_101.02.48.amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2664e4aa37902a632023857b19e7913c0f1bd356923af66f7a7a7ba5690b05cf","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.15-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"35ee7c2da9cf72d513b84a8bda149edcb7342248e50042216209289cf4e7e5e2","size":1315266,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.19.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"0559e3987e2fabfa1ae1d3a1586b33933876f2b849b3780d7a71f9a9d4fd5483","size":11862866,"filename":"pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.62.74","architecture":"amd64","section":"devel","priority":"optional","installed_size":210088,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"96d94685a98b33763201c3285713959757eb7255af58cae346fc71aedba2f80a","size":61608068,"filename":"pool/main/m/mdatp/mdatp_101.62.74.amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a52631688cf7998ef0677dd0931381e95606d0a0e194c2f861792281f6ce52d3","size":21194860,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-2_amd64.deb"},{"package":"moby-cli","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83541,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"58450e88d4bc91611b8838a5a2fe36f2b5241e160060a85d26040f258d7b5319","size":16409404,"filename":"pool/main/m/moby-cli/moby-cli_19.03.12+azure-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":173637,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"41ece23dc2b75bbce34604f3aac521ad2edcea4a3cf20f2c3016f509d9bd240c","size":69264320,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.4-1.deb_amd64.deb"},{"package":"mdatp","version":"101.25.09","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d3add92c54fa8c01cbff8a8f25f3e9e99b28add48a8cf11d9d03413505088aea","size":44872318,"filename":"pool/main/m/mdatp/mdatp_101.25.09.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.424-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.424","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.30)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.30)","aspnetcore-runtime-3.1 (>= 3.1.30)"],"sha256":"c210f414ae6fac87305dc87332e42eb236ecf9aa87dc239737603ead0745fb97","size":49828584,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.424-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"sha256":"6a8703b6c1146c24a62fc784a12ef0dc05517f6294dbecf7e88e5d512b8ae000","size":245508,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.6.1.deb"},{"package":"powershell","version":"7.3.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196880,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1447a6d90aa66616757290e8a4bde7df0ee14d9b77aba8d73021e849ad12f418","size":71750824,"filename":"pool/main/p/powershell/powershell_7.3.4-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.7","homepage":"https://github.com/dotnet/core","sha256":"484dca5074596febea3aeb4a00aec9e9c27c7cd408132f26ddb8fc3d3218e359","size":3399110,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.7-x64.deb"},{"package":"moby-compose","version":"2.20.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59070,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6b86549c464b157e4c9fc107296f8b591126a2ab07ff06517a9ece80f3d52523","size":11866170,"filename":"pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"microsoft-r-open-mkl-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":275115,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"c5dcc0d4756b0d6cac39ea38307c08726e518daa96b37efa597002e21888f81a","size":91215626,"filename":"pool/main/m/microsoft-r-open-mkl-3.5.2/microsoft-r-open-mkl-3.5.2.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21336,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.1)"],"sha256":"675601d3df8f116972c0786de4512a99f01c1f6cd8058cfb56f83ae7dee70ea8","size":7050794,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.1-x64.deb"},{"package":"servicefabric","version":"9.1.1457.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"70d31017bda3a7f1fcacbbed2db83f32c4f75be3d6e36679adf4ff0321a33740","size":219672394,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1457.1.deb"},{"package":"sysinternalsebpf","version":"1.0.2","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"856043680b2ccab0ccc12b284efa368d610e690a2165888dab349828dc21ea59","size":446972,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.2-1_amd64.deb"},{"package":"microsoft-r-open-sparklyr-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":267912,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"10b1881851d3ecb42e4283da60edf6f6b9f238765f2ee8d22a0d2899af4c412a","size":70041338,"filename":"pool/main/m/microsoft-r-open-sparklyr-3.5.2/microsoft-r-open-sparklyr-3.5.2.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.0)","libc6"],"sha256":"aba67fc99134f951372118c3f843be58fb05c33d5ceff5aea080eff62b8917eb","size":144012,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.0-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331267,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.304","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"4110bad4f70bd90a71271910d42d25449164217d2e2078e4f9280c024e2b76b8","size":85036956,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.304-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.413","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"388e3816185346fb6298d5ee0b165ac9510b0ed47881c4e652060a4877fe9120","size":48204804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.413-x64.deb"},{"package":"dotnet-host","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8fd1104b360e1dd8e47e89918e40055a270ea8f69721822d56a903f642c6e575","size":32402,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.22-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a6831312aa0061731cc78db5b255b3631093e10211d7c280f2a0010f188a7eeb","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.20-x64.deb"},{"package":"osconfig","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":8287,"maintainer":"osconfigsupport@microsoft.com","description":"Microsoft Azure Device OS Configuration Agent","depends":["liblttng-ust-dev (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"c80210777f54639283cdc6daffab34cbb020ffff9df15d771565f13c8bb2dba0","size":2009152,"filename":"pool/main/o/osconfig/osconfig_0.4.0_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.13 Microsoft.NETCore.App 5.0.13","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.13)","dotnet-hostfxr-5.0 (>= 5.0.13)"],"sha256":"9ad0e107c1ae2683cf643bf740a5fdebd342392e823f349d4ee8745748cf3816","size":22269634,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.13-x64.deb"},{"package":"moby-compose","version":"2.20.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59057,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6d3a316405dad90540fee81ff81841c0e24ab5de354ac4b3450e1232579046e5","size":11872246,"filename":"pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"80347c4205b28115fd646cd8d86a1fa3e09188dd3dc4c4d616097adfb0834940","size":20988132,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.616-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237173,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.616","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"986099cbca19649ad74900db804c7db7116581a3c676ff3f00c9b10c2b213bbe","size":90824460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.616-x64.deb"},{"package":"adutil","version":"1.0.014","architecture":"amd64","section":"default","priority":"extra","installed_size":13784,"maintainer":"","description":"no description given","homepage":"http://example.com/no-uri-given","depends":["realmd","krb5-user","software-properties-common","packagekit"],"vendor":"none","license":"microsoft_adutil_license","sha256":"8d4040fa87b6a2d79c22d7ad9094f9853c7af21646cb6d52b658e3eada0cc5b1","size":6701622,"filename":"pool/main/a/adutil/adutil_1.0.014_amd64.deb"},{"package":"azcmagent","version":"1.2.20314.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e62f0680c77eb9daa2c7ffd61846f6a6cdacc900d5b678b07d0367826bddd6b8","size":18337190,"filename":"pool/main/a/azcmagent/azcmagent_1.2.20314.002_amd64.deb"},{"package":"dotnet-host","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.23","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ccc981cdde9dee6bd1664246a71a5ebb44d1520e26cd4741816daa6bb29bb4b5","size":32554,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.23-x64.deb"},{"package":"dotnet-host","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"665595e26dcde23629c8684e4aa7526237ea8d983000b46cd3d308ab6508f376","size":57242,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18560,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.1)"],"sha256":"94b5917f271e0c978ac095062cda3c349343cf22443ffe6c2cdc39909df10d53","size":6085584,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.24","homepage":"https://github.com/dotnet/core","sha256":"9cc4d53e2df092267fb8d53eb3bed3f1ee46d48a2adc7c82350b0310572bbc51","size":42318,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.24-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.5.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":164,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"67196e19834fbf9242a7b5d4e4e4f857fcdff2e1693e9c934a2a9b14c027cad3","size":57722,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.5.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.14)"],"sha256":"accb5c7d83b8029a841c5f644b3385059e4c0cc523dba69d0631c8649db65632","size":5771036,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.14-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.13","homepage":"https://github.com/dotnet/core","sha256":"1869df3ac2c3474befddf2c1c4be4ef5b86a25cca046613c7e5c85bcd5bb1984","size":42476,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.13-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"30f04454aaa1fd33c74b40c8e608dfb3810d89de0c21cd0587cefbdc6e7b6621","size":154905788,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5174-1.deb"},{"package":"dotnet-host","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4e62b76f0f8d8eae41ee1f21090bb9909f0024f2d3dc3fe928a312c2bec9fc69","size":57340,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.0-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366875,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.304","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"3e683a05c3ae357896c893fb09a56418274c00498d0344af59e5d0b152ae82fd","size":96542450,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.304-x64.deb"},{"package":"mdatp","version":"101.60.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":207295,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9dc82ebe9bb10197b5286a7e34985ff308f583b719b93f8fdc4e69e2034c649b","size":60778376,"filename":"pool/main/m/mdatp/mdatp_101.60.05.amd64.deb"},{"package":"dotnet-host","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"38a501c55de8b0a2524f3af7f9187c14998e71f029b39c129165947c7ee29559","size":32522,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.18-x64.deb"},{"package":"msodbcsql17","version":"17.10.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"cc1b9698129f000c611f81b30e095a4cad804fba0af522b4d4e0035e51b82284","size":744524,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a43e2efe34f43412e02ef3deffe082cafc2e807e52f435184ab4a80f9dd325ac","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.29-x64.deb"},{"package":"powershell-lts","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"015e5607bba35fa1a9f348dab3b550c1339763bd2fae07ec05c0c2155d045de2","size":58303714,"filename":"pool/main/p/powershell-lts/powershell-lts_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11-1)","odbcinst1debian2 (= 2.3.11-1)","libltdl3-dev"],"sha256":"2d23185d950036681d26bebe982a533480de1415899b767dc9f84bab6f0f4cff","size":42366,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18561,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.2)"],"sha256":"975acfce69f012f1021b60764458ffb3fc8012bfc774f7833a55900b044b7608","size":6086552,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.2-x64.deb"},{"package":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11-1)","libodbc1 (>= 2.3.11-1)"],"sha256":"7efce8fcc4bd0e64e4c0e86506af4c139e7cef469f4aa8162bdab9af2e1a575b","size":51534,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.26)"],"sha256":"32820d75d0adcceac8fd7a1384b13965f643f4b941c9388999f2e0cadf52fe16","size":5773088,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.26-x64.deb"},{"package":"moby-engine","version":"20.10.8+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e172c5a0a9c21068d5a177810c096d37945344259d7f13b50220595078414f25","size":21180504,"filename":"pool/main/m/moby-engine/moby-engine_20.10.8+azure-3_amd64.deb"},{"package":"moby-engine","version":"20.10.16+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"4f331b0590adc6b7ed0fdd3a952bf7a8e30cfe1a97ad13f0975219a024d0ed5c","size":20970224,"filename":"pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"800c8676b1b346df51b68e564e5c3b08a5f1b4adc66dcf304004ce8e7d747c72","size":69393916,"filename":"pool/main/p/powershell/powershell_7.2.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337170,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.408","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"edc5a25502bd63d67fcca871fee05dd2232b92a2d32318506942ab18c6b28b06","size":86692582,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.408-x64.deb"},{"package":"powershell","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38ad697f50dad11ff4579069505cad9c458f70604607156c8018ac01bca6c2e7","size":69408482,"filename":"pool/main/p/powershell/powershell_7.2.3-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-3.1","version":"3.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":24673,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 3.1.0","homepage":"https://github.com/dotnet/core","sha256":"7c353df836befb40aeeb1ce0b9193445f2a340e57e6f5ab5213d5d48fa867729","size":1987718,"filename":"pool/main/d/dotnet-targeting-pack-3.1/dotnet-targeting-pack-3.1.0-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.18 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.18)","libc6"],"sha256":"091fbf1a4809dba00e407ec2de57c5ed5142c64f89dac9dc6edda75286d6c2cc","size":143800,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.18-x64.deb"},{"package":"deviceupdate-agent","version":"1.0.0","architecture":"amd64","section":"admin","priority":"extra","installed_size":5348,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.63.0)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"534423643d3222ba25888ee6d5ec27428f4b8598ec8d412412e8d8b5e9f623a2","size":1945752,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.0_ubuntu2004_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"18c02cb01e0d95ee444ad6f83ae87f99db0240bad798dba74cb7c9308894d5fa","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.018440002_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.24)"],"sha256":"22807c1504a6147d029957b8bb7efb2430ed64dff6f9a09baeb6b8292c4a5e6c","size":6621650,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"powershell","version":"7.1.3-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174299,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ed800c0e58560d6a4f743e68083f8b46bef29670917c250157aa2c1170a6e502","size":68316948,"filename":"pool/main/p/powershell/powershell_7.1.3-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19846,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.4)"],"sha256":"87c010ec02884e7dbc8592468b23f521b3002a2a94615b4e3a1bdeac84f0f82d","size":6603012,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.4-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.11)"],"sha256":"69ad7c8416e46b4928fa0dd6287ca9ed1a0aea9841bb3789407f84dc2c35b114","size":6086112,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.11-x64.deb"},{"package":"blobfuse2","version":"2.0.1","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"a2b80fb5f373aaabbfe6be13185f01f2476ae8fc9fad6f63a1bf39e8d1995fbb","size":13151180,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.1-Ubuntu-20.04-x86-64.deb"},{"package":"libmsquic","version":"2.1.8","architecture":"amd64","section":"default","priority":"optional","installed_size":16108,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"9622432bdcedddff93aa4db72970e711b4539913430ff29659ba511e51ddeae0","size":4127324,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.8_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.12","homepage":"https://github.com/dotnet/core","sha256":"8e503b4527ce44bdbc7faa74049e45505cc2b6fe397661dad18fcbfb03df52ff","size":3401078,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.12-x64.deb"},{"package":"servicefabric","version":"9.0.1103.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"98a528527d6a0a12297a7afc8a41f8a13bedc2483d1735e421087c2a5f893b40","size":219663890,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1103.1.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"8d6633d7d637add6a27594687c3bd216f20e83c9562dd580dae66f01d311e254","size":3531962,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68322,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.2 Microsoft.NETCore.App 5.0.2","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.2)","dotnet-hostfxr-5.0 (>= 5.0.2)"],"sha256":"db38c3122097400e46b34f26079e29cf5c8428d28d64b62b05970a10db844596","size":22091490,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.2-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b4ee3e096d381244271ad46a50d577c8d846190eb89a0b71a695ab6529b24932","size":228285568,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4899-1.deb"},{"package":"moby-containerd","version":"1.3.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"92f29353da40defd3a7c370379c6f7e0a9ced4da0c600a271de9eecc7455247f","size":27658880,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.6+azure-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.11-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"be07f8c4f44811d550e068822d7089b9728dd48396137d6ff2ad0ccfe934453c","size":13346,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.11-1_amd64.deb"},{"package":"moby-runc","version":"1.1.8+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13394,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"6efe544dc8808d41f55eb25b1ff308dae9579ff90946f2d7dbd7af21a60f452f","size":5766794,"filename":"pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.16.01900.74","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"afa6965d84a6d1a16a0ee872f1d6dfea851b3a4380940b8967144f37c5283033","size":51768832,"filename":"pool/main/a/azcmagent/azcmagent_1.16.01900.74_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86937,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e2c2fe4a09cf5f7ffa9d8b7907154fbd9b064d4a8dab439ed8844f2535325f8","size":20687466,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"az-dcap-client","version":"1.10","architecture":"amd64","section":"unknown","priority":"optional","installed_size":305,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"9a271799ce89fd47984139049ec3fd10ed9b77f14b0fe3211ebeaa47793c8af5","size":63908,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.10_amd64.deb"},{"package":"intune-portal","version":"1.2305.20","architecture":"amd64","section":"utils","priority":"optional","installed_size":22982,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libgtk-3-0 (>= 3.9.10)","libsystemd0","libgtk-3-0 (>= 3.21.4)","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libwebkit2gtk-4.0-37 (>= 2.5.3)","msalsdk-dbusclient (>= 1.0)","libpango-1.0-0 (>= 1.14.0)","libsoup2.4-1 (>= 2.4.0)","libsecret-1-0 (>= 0.7)","libx11-6","zlib1g (>= 1:1.2.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libsqlite3-0 (>= 3.7.14)","libpam-pwquality (>= 1.4.0-2)","libc6 (>= 2.29)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a3f9d7865374e7dd6a85ec4e73e0fae95fe28debd20ce333c08a9b68e2c05b43","size":5479172,"filename":"pool/main/i/intune-portal/intune-portal_1.2305.20_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2881-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"482a8e5c6fcd606b143216a601aa73f591d4b25cb99fb83b779f547effaeb5ef","size":190000560,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2881-1.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":10691,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"d60972a661d73058eb6d73319b7dcda94eb00da583a7497875028b129c7e2456","size":1062648,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.10.deb"},{"package":"dotnet-host","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1be8d37b8f7faa65fca577ffd1e11a3ce46a6696f3a43b6797df16804cdb5ab1","size":52498,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.6-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.30 Microsoft.NETCore.App 2.1.30","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.30)","dotnet-hostfxr-2.1 (>= 2.1.30)"],"sha256":"63e8907cd90cddae09f0ac69046cd2d19f0697497bec6f3ce83b6b5391b0374c","size":20502672,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.30-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.30","homepage":"https://github.com/dotnet/core","sha256":"069e6a26225a5e74628c552ab81cfd2e1a3851cb02a9a421dcf77212f7a2ef3b","size":42436,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.30-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0bba8b9e9cb23965807d7dc23dc6244db2f7e87634bff1c63f002f35cc1f43fa","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.20-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11743,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"316dbcaeec56d030ba6a4231df05eacaa515ceb27c5ab9ce3a66a9975494811e","size":1313840,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.10-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.313-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.313","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"4d74db683c8cb69367f466c95fd83b71ffbfc1e7b6b3b92ee3fddd6297d170dd","size":85182878,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.313-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32c458736e9aea5fdf27cd90b588d12822af06509cd1d810c38c491c338842e4","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.27-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336089,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.400","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"0c2897efed36675878f930783e75164ef8b537c90919f6308465045902a71c79","size":86384340,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.400-x64.deb"},{"package":"moby-buildx","version":"0.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68407,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"007d659dabff0cd6802afff642839960827c3f1eee107432c2f97f4b79fa4b79","size":25545586,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter-src","version":"100.69.62-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"499d5c0c2caf30b4be33753611c94edd449b87a2b40d4e200b53174c76aabb0d","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.62-2.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336570,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.405","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"04685c120f0b0db34950bbec26377fa60cdfde91537311cb6079eafa00eb6191","size":86616330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.405-x64.deb"},{"package":"dotnet-host","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbacafb7536e169aae3c7f15ef9785cfd81fef05408bd1fd38fe91d376329367","size":57478,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.2-x64.deb"},{"package":"aadsshlogin","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"28e496db72e754289da28be9e60c5e3f6ec9a424add33e82f306027baeaf3e2d","size":287178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022600002_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.26 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.26)","libc6"],"sha256":"c33fbd6e073ad51f46f68df8283a793746dffb7949224b7f83b3fed3abea8496","size":143872,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.26-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16360,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core"],"sha256":"b9365e91642d8582a2fcba79a13a51607634133644da0c97a0c425e662cd8168","size":5028016,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bf710391664124748dacdcc24f360a55e63131e132b7f4d4e080c157b797ecad","size":52564,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.14-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b65bcfd2a273e8e3b55bbf6f0752097b8dece00d9706ee9711d6a1d4af82c404","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.31 Microsoft.NETCore.App 3.1.31","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.31)","dotnet-runtime-deps-3.1 (>= 3.1.31)"],"sha256":"655e60ffab7d47476c26feb82a4ec22da080f72796d504ce5bb325383a1b842c","size":21793662,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.31-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"2723e90f7b3dd4840f4a5ecc62549f04ef3ff82f93fd177e5b8afa30d995748f","size":2568010,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-host","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"dcda2fc1cc44a0bfc87ec4a12649724a984d4c61b4d37ed5d76d87baf6f82a7f","size":32932,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.7-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.115","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"e39a2e0f210472491b067fcd120cbf2d4a7fdb238f3752733524306013da7354","size":44109078,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.115-x64.deb"},{"package":"powershell","version":"7.3.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172707,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"67dc90155fea76997645ca7490db1d33d2afd7328df609a2d1c985be0229c13b","size":69306108,"filename":"pool/main/p/powershell/powershell_7.3.5-1.deb_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186673,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.2)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"72460d8a199f2196ba5ff54cc1bd1ee8125088eadfd21ce35612dd84a2d8c9f2","size":46549742,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.300-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169450,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5565b2b4e1a9d140225923852ee535f324b5d52600414b1c7a3617999b1a0593","size":67105078,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-host","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3114be3bdae538f5bbe7ac72767371bfa084da21e35940b31416f2adce9145c4","size":52900,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"be3f9431764a17ed1f43cdeadd84ca2b5b1b800b2752c8ee35a66977ead3170d","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.7-x64.deb"},{"package":"azcmagent","version":"0.9.20168.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"d04f34fc297a26bb0df31f4f2d9f6ff4e3a00f5667ee69bfaeb368bb7324b160","size":34124838,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20168.001_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.809-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241164,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.809","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"6c3eb3b198e557174c7d5fc5777e2334ab3823c0579c4510650428c5ec02aa95","size":91744846,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.809-x64.deb"},{"package":"moby-compose","version":"2.19.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"78438210da0503e16dd86dd250a7368d8da1ab0e9b9e123cd1ede23a9c104f87","size":11868470,"filename":"pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f04d30e58186de5c16d2014702163a1bbaf1d45c81a8c13c96529f1e757ba485","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":343757,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.100","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.0)","dotnet-runtime-7.0 (>= 7.0.0)","dotnet-targeting-pack-7.0 (>= 7.0.0)","aspnetcore-runtime-7.0 (>= 7.0.0)"],"sha256":"766366dadb45bd2c882f141f0f2a9b5ceaee12b86073dc8fb4e771667ee672a0","size":88442416,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.100-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312519,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.103","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"50af338321766b2340778c3ade3277056b990a585433087d2689f1e7f19e071b","size":77837574,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.103-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.18 Microsoft.NETCore.App 2.1.18","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.18)","dotnet-hostfxr-2.1 (>= 2.1.18)"],"sha256":"3a6b3782770d7d3fabe90fef9c8151001aa568b1bfb793c2303a25ba1829ac7e","size":20639348,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.18-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1eea1eb871da3df8131c404dcba26ccddccfc4d4234384a7fdb38ce336002881","size":157251308,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5390-1.deb"},{"package":"microsoft-r-open-mro-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":149532,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["libxt6","libsm6","libpango1.0-0","libgomp1","curl","less","bash"],"sha256":"f28affd66e2c85d414464d381f3da6bd6356bd1f79f216ef519e5da0a4062d6b","size":73944196,"filename":"pool/main/m/microsoft-r-open-mro-3.5.2/microsoft-r-open-mro-3.5.2.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11-1)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"2bd241b5521b86d0c93df426f0af0f5c7bddec66b85df34871a1963897e845c6","size":99750,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11-1_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"7a7c760329044684e0614f9129037509e391f1457ca80c3b5a9df87d25d52400","size":2568218,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.1-x64.deb"},{"package":"powershell","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e764b26ba87196e78dec20665e166eee536d117deb91562a6e4ccf75cc1b6e8","size":69434548,"filename":"pool/main/p/powershell/powershell_7.2.4-1.deb_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0)","selinux-utils","selinux-policy-default"],"sha256":"8f8cae83fe053cdebc4737e3ae887e4a8334d35764612885b4dd07f0f7041add","size":10086,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014460002_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126471,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c7ddefac0e44b0b275bac572727e239c96f9a84b894890e825fb29b858cbf2f","size":47428934,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.7-1.deb_amd64.deb"},{"package":"moby-compose","version":"2.3.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":26804,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f4da1b4c0d9082ecc1471e6d9243723483a066569edf36dfd28af303d7b07031","size":6625288,"filename":"pool/main/m/moby-compose/moby-compose_2.3.3+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"35a10bdc0d07802cffd112d95efef37dc653defda6a62d85b490c72fc867b5e1","size":417742,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019900001_amd64.deb"},{"package":"dotnet-host","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f8fb5cd37c41b554e27f284d14904e2850017d5c8138335a961a3318e50cb1ab","size":32518,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.30-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"660b10f8ed6a4fdac26ce2d6a48f523b4f5a9c6f455250a8b4611593b822dc9e","size":1306240,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.1)","libc6"],"sha256":"982c3fca33c304b24d9cb78313aecb076a8a9182a17b8fbd506a3ce2cc1a2cce","size":142044,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.1-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"bee459e34ba71863e88d8ea956848c9359d66b911cf091de58024cba0257e043","size":2568242,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.1","architecture":"amd64","section":"default","priority":"extra","installed_size":16545,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"7712196b2dae76094096548322b5c4fab3d6925e19953cb76fc231aa5147e058","size":7776822,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.1-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71237,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.32 Microsoft.NETCore.App 3.1.32","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.32)","dotnet-runtime-deps-3.1 (>= 3.1.32)"],"sha256":"8f8b6409628fc252fa9ced4e4cc0e1d64cbdb4e383f689a146e1e215e5bb6aa6","size":21871538,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.32-x64.deb"},{"package":"dotnet-host","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7ce61ee5404f2ac55d834c1412267cc1eb7b6abab41572100c26b873e6a993ac","size":57210,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.4-x64.deb"},{"package":"mssql-zulu-jre-8","version":"8.48.0.50-1","architecture":"amd64","section":"java","priority":"optional","installed_size":109129,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"d4df30998acbc51019ee092032bb30d29a1ebc70398910e2a65c1b55e2e64fde","size":43720834,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.48.0.50-1_amd64.deb"},{"package":"mdatp","version":"101.39.98","architecture":"amd64","section":"devel","priority":"optional","installed_size":156517,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"66a205cdcfd0101d2ffb87dd2ab98a2c4d910e060d90f05739219ac8f2824dd8","size":45789778,"filename":"pool/main/m/mdatp/mdatp_101.39.98.amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.9","homepage":"https://github.com/dotnet/core","sha256":"2293ac02a16a580a50b49d421dcbe40d0b0c1cc7e42ed8da419bbea189ebfa5a","size":2568982,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.9-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.4","homepage":"https://github.com/dotnet/core","sha256":"451a6f449278670d33b5a24b68fb512968349936ec04b45109d2b35a172bcf05","size":2568714,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.4-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a20d656894bb7709356e3914b6aa1410b869fc97b1adc5a7a1af5b82cfd4eba1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.13-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.6-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324300,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"367323e32388113e6f9603cb65de9c117f07aa929df044670524b0df9db2e2fd","size":192107296,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.6-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337383,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.414","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e7a6f337270074619018295570ecc0d719a77b2882927da9f5d2b5052f82f198","size":86810418,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.414-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6b0da9bb00c6da874913294ba6880d7fb8b6e2d4a80be638923e0c5adb3bcfc","size":154935580,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5174-1.deb"},{"package":"aziot-edge","version":"1.2.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"df6f7dc27e8ad8aa58995e30418f474147070d05642b6830738a3c66152d2427","size":5774464,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.10-1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"7a3a9f68428fcb6c8180e3699c0fad11282903678efdfa8f878a0d9ec5465436","size":263392,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.11.1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"a986a11ed09e7b057600954e9c0daa588ef399cab2e27b8293f291129926989d","size":2123090,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.15 Microsoft.NETCore.App 5.0.15","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.15)","dotnet-hostfxr-5.0 (>= 5.0.15)"],"sha256":"0a5bebe1c956be75253c57d1b4061c4be04ed1200e8f98e5a502069fc2dfb2a6","size":21955700,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.15-x64.deb"},{"package":"sysmonforlinux","version":"1.0.2","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"7dbc4dafaa9534539f584f321c360b827cdfca79130804e64d7b86e421881577","size":231844,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.2-1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.1~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"0b6f2e929b98ba75d4ab081ff55dee289c2e861be049a8fea5e1c3a8a9a29388","size":1648696,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.1_public_preview_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d317dd44e2ed1fcd365fef02a48beae0284729e16951504a2be9ab0212e747b5","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.10-x64.deb"},{"package":"blobfuse","version":"1.4.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":34746,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"70e465013b53f7363f3a95a4f4b6ce2918d453aedd71c0f9cea6691b8e2f2642","size":10093684,"filename":"pool/main/b/blobfuse/blobfuse-1.4.5-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.318-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.318","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"f02764143bd8a171bc1120364900df226c903e53dfd351c8e45a5d7b1bec2653","size":85272970,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.318-1_amd64.deb"},{"package":"moby-compose","version":"2.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25772,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"80d0a6b4ffbd8ded5acbdcdb6d833c3b5275bf0b2718fdf2740908c3078cdb30","size":6512336,"filename":"pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.6.23+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125899,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"347e5bd7c6c052a22c54b7a2a8cd22301194075b2b7dfc374fd4188ed5feed78","size":31588386,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.11","homepage":"https://github.com/dotnet/core","sha256":"2acae1a747ca63f8b74f51b8b573e614e9bb7b4ef1697b26636f270a8b427a6f","size":3399076,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.11-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186658,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"d285189dbce539d9a85a771ed36966bf65f2447b8618d57d2932d0ee9297726a","size":46877526,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.302-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo"],"sha256":"3ca69b2c419c00ca6df523e2ef38b856c74bc6f9613ee013d9d752b10fe0ba88","size":249808,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.0.1.deb"},{"package":"azcmagent","version":"0.8.20139.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"51b3a82dd0b1f004ab3cc1dc5ceeef7b2fdde327df30966cee3e4db9779a45fa","size":34176982,"filename":"pool/main/a/azcmagent/azcmagent_0.8.20139.001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.200","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"dc711bf42291ea51b2305419bc53758125cff21078cd8191df121bf862d40b9f","size":91798318,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.200-x64.deb"},{"package":"mystikos","version":"0.10.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"31dafd89871ba16015ff8e55d16bcb6a8fc636d0fefb6699339f6facb36e52c1","size":5305344,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.10.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.4)"],"sha256":"92aa3d15a9f802c45b2845a99397eee7e8a3311e6464e6f45753a002e9b06e16","size":1515026,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.4-x64.deb"},{"package":"msodbcsql18","version":"18.3.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ae8eea58236e46c3f4eae05823cf7f0531ac58f12d90bc24245830b847c052ee","size":755938,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.2.1-1_amd64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":107145,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"51815cf4be4171c2c244f9516db0ceb8cf9f1788f4e8b22bf4c20f8bce36008f","size":26317044,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u2_amd64.deb"},{"package":"aziot-edge","version":"1.4.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17752,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.2-1)","sed"],"sha256":"d793ab78971a15050db8b6e5959bfd995867c4ded3095e5460ac054bf0d2be55","size":4230816,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.8-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350085,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.110","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"37f9bf12b98e288c114bc919c706a0ff8c72cbb4b8ced055322b53759d662f5b","size":90674390,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.110-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314323,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.118","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"c069d7068aa2c3352bedd73ee48d47deae79557bb67cd7a98f079534c067d736","size":78868818,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.118-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.24 Microsoft.NETCore.App 3.1.24","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.24)","dotnet-runtime-deps-3.1 (>= 3.1.24)"],"sha256":"f6c86e04d09923cc76aef4dddd416ae21e18783e6b9ad31ec366fe00841a05e6","size":21856944,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.24-x64.deb"},{"package":"moby-compose","version":"2.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43496,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"e5481dca839f63b8d79979974b28b106479d18a0a39aa7e492b29a5e020e67e1","size":9568480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.3971-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0dd2bc7155228abe77c3f1b9ef7f991b7198843ccaa63e2f6ce3051a09be7d0","size":134500288,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.3971-1.deb"},{"package":"azure-functions-core-tools","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"58cdf7f1c923f551bd8304f09314a0a196343f61a771eef04e3f09b62a203fe5","size":165959932,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2855-1.deb"},{"package":"msodbcsql17","version":"17.7.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"dfcb958f3625dca439bee14c2f5f91aba53bf137ab1f53c3945fd0952bf8dfd0","size":744700,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.2.1-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.23 Microsoft.NETCore.App 2.1.23","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.23)","dotnet-hostfxr-2.1 (>= 2.1.23)"],"sha256":"7252fd61a461bf62f31e57ec62b37f76ac51086b1d543fb489d1c1d994a0bcfd","size":20607706,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.314-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.314","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"7b307e2bbcedb6145bc516bdc914a2523bbd776f85729396b81094c083b32dd7","size":85192950,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.314-x64.deb"},{"package":"azureauth","version":"0.8.1-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74124,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"61784632cbfe34e1c2d28320bf0aa3111f989e9a67a5dffdaf26182d578e4c33","size":24071902,"filename":"pool/main/a/azureauth/azureauth_0.8.1-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.1.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"9dc54caf038da57759b80a8ad46f1d783dc98f9039bfa307613d962d29c1c19f","size":594218,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.0-0_amd64.deb"},{"package":"azcmagent","version":"1.19.01980.190","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"19af5c09ca4704150f53a3d07db6afaeb8bb2aff34e64cafbe128406d502c20b","size":52454744,"filename":"pool/main/a/azcmagent/azcmagent_1.19.01980.190_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227348,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"d04ec77548f0bf426187edce1505275125a002ba3bf1224096c34fe7aa0ac372","size":58709818,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.301-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":168859,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a54899f099a74cb76cab9695d4a21a604007ff3f7486c05076cbec64b8b7f777","size":66703322,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.19 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.19)","libc6"],"sha256":"0319d7c4e2bb840f95473dcad32d7a237f644a825eac7f342c83e3755b6ea398","size":143604,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.19-x64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120364,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ad64c596e281147c50337ea5b7442f9bfba41d8d002d7309d6a0b1aa2ea91cc1","size":25980172,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu20.04u2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5191940c8b6f64839b27f278880f403af9d5ec7c3d75b82cb7a5ca7047f26d99","size":124467492,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4704-1.deb"},{"package":"moby-engine","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117358,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a635857737c5e0393cbc06c4ee7051115bc828c37d7b22e3cf58f89722adbc1b","size":24773176,"filename":"pool/main/m/moby-engine/moby-engine_20.10.5+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"9a30ce389879cf3a8430103b8924c296e1d843705ed0378598da2dd5ee22928a","size":415372,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.015950001_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ee828c1bdfa48ecab95cb9625f11dbe6e3333d89c47edced6c6d85faff6fb2e6","size":157321128,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5441-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.810-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.810","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"85fa7f894ed08f386b9c18b04cb8de202cf22f68307435c784f004131c989aae","size":91737224,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.810-x64.deb"},{"package":"open-enclave","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":115291,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"85c66ff7801de3a21fae1788a1eebe1c3fcdb617127d5336c91b7ed1b08f4eaf","size":31560056,"filename":"pool/main/o/open-enclave/open-enclave_0.17.6_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-2","architecture":"amd64","section":"java","priority":"optional","installed_size":317895,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f7dd1d44a24e2a88a71847a864c6f39e32154f2a7703c30a1f2d1002566dd411","size":166897458,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.416","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"0c02d6340293058c7af92f3821702e58e7fd340276441b793d9ae44ffeb22f1c","size":86825034,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.416-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.13)"],"sha256":"3085c74701bfe21be9f9d57490721292c0ee466d142f3827e41d8759f386f217","size":6085472,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.13-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2d08ac3f8822a62d2ec5384bed68abfe55a52199c0960a43793a8f92c712ab84","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.5)","libc6"],"sha256":"946b46de39d9157ed341f4df85709543211f8baacfc94604a8a24e960250f87a","size":142074,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c203b2a5770aea2879e64d542de87dc6a705988f8aad5bae6a759f03eab6fe96","size":69689350,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql18","version":"18.1.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ecdc984603e67d6563dcf800dd6bc4705e058a4306354998f1e0caff9753ab95","size":751978,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2553b0547714f3a938ad7ff192a7948d24d509bb53c65aa582ea7adcb57fb401","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.25-ubuntu.14.04-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.10.0~beta.1)"],"sha256":"c4271a9f38e1851357258aa8c8c892be7d2b3bd4c7fe2ceae3b134ac16c1257f","size":149320,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"apt-transport-https-sas","version":"0.9-6","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"bdbf549b23f8446ae0e288db668d93670c9143765f03a7f8f4b8f087a576dc6d","size":12522,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-6_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc95+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19709,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"faf73d18c091fd1f2fc393439dafbe984f511e832331446150739c5e0da2e2b3","size":6550948,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc95+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"a28e554c180550b4d6daa763f55ef2121ea8fdd70d2da02dcc86ff7e20a70572","size":3517574,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.13-x64.deb"},{"package":"mdatp","version":"101.12.99","architecture":"amd64","section":"devel","priority":"optional","installed_size":152179,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"8751b14a8a2db98b28dcdc31cd01194ddd0910219d8204ec3471ebb7e02397fc","size":43935326,"filename":"pool/main/m/mdatp/mdatp_101.12.99.amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a8f75b0c7ee0cc1d5701ef4f2ab3c561a8d0cdc0998769794b122e6f9825fa49","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.10-1_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc94+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19694,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"2abba68b1f39a4cc5af9d7afcd8fcf48b2ef5d7cbb0b13f8c599b5eec018ec2b","size":6548584,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc94+azure-1_amd64.deb"},{"package":"azcmagent","version":"1.8.21189.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"f034191ed4aaf3ba0a8fccecf36b5813f5bf9406689e15ba9abd177e79d5dbf4","size":49532928,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21189.003_amd64.deb"},{"package":"dotnet-host","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2afa31bcf3bac0b866d3f215b71c6d56e885a9996b2c2729621222466986384d","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.5-x64.deb"},{"package":"moby-compose","version":"2.14.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ad091134300a157bfbc10ab1471e9e5a13b8670c925294a6d2077c4bb2ed9b08","size":9652610,"filename":"pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5030-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6486ba6279fa7e1402a9a57eb2fb5623513807378a83418e83c68d89ef14e291","size":156016092,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5030-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":748,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"b0e49d1b6dee1d25d2d897d8ca9dc15e3d5c1b8826f6a7e2703acd8585119397","size":113312,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.15.1~beta.1-Linux.deb"},{"package":"powershell","version":"7.1.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174285,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7435b5cdd8cbedeee396072b495b44067166674e7c40a9ee844a519c6223e482","size":68282782,"filename":"pool/main/p/powershell/powershell_7.1.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70841,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.12)","dotnet-hostfxr-7.0 (>= 7.0.12)"],"sha256":"73ed33d0f0b7f6bbbc0aa1ce299eb90eb8785186be7a8e480fc06ebd18127b3b","size":23211158,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.8)"],"sha256":"f14238d2ea7dc37d5d7c947e950fffa64e4183dcd1a88fcafdf1543cc0e21b43","size":1522110,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.611-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237134,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.611","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"3ff94801b2a6448875511986c1a7613f41387880b22a26b6433607debb4e8f0f","size":91354158,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.611-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.16)"],"sha256":"38af5c963fef967c1ff4e88a45df47e6617d05fa2814f668ce1a11350696968b","size":6085708,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.9","homepage":"https://github.com/dotnet/core","sha256":"356b86603caa1e26f2cb02e54eddd8af3a19a6cf92fc08a5f0641a3cc0332297","size":42680,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.9-x64.deb"},{"package":"azapi2azurerm","version":"0.6.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20424,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"107a2e822c62d94cd14b9b4402a135c634c1dbaac0e6e70b92803775ea27a671","size":6691356,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.6.0-1-amd64.deb"},{"package":"mdatp","version":"101.47.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":186587,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8014568ab9c8c946d280d1014b86df1165b69191239a7b79e0e0c7dace237d6d","size":54826224,"filename":"pool/main/m/mdatp/mdatp_101.47.76.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f8908ba61bfe2c80198f5e68282f02d7150a5ae4aa411444eb21ae4e8e1af71e","size":157337028,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5441-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.22 Microsoft.NETCore.App 2.1.22","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.22)","dotnet-hostfxr-2.1 (>= 2.1.22)"],"sha256":"a5d6c5497fa95d2b8d12eec33d3ed0fd43ce3ddb325ee59b273c090d8bbdfc3c","size":20601560,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.22-x64.deb"},{"package":"osconfig","version":"1.0.4.2022100104","architecture":"amd64","section":"devel","priority":"optional","installed_size":5432,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"8818ebf37cc67a05af3e1c569cbd145c26b0a44719d0c115dd62d2a4cc835023","size":1911656,"filename":"pool/main/o/osconfig/osconfig_1.0.4.2022100104_focal_x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.10)","libc6"],"sha256":"2f96001b5b7063d29a430d368cb7dba492ebd67dab5406a11c9408db4581c1a6","size":142342,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.10-x64.deb"},{"package":"aztfy","version":"0.10.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"45ea0fb07e1c2d5fc8cab233e2b530ffc05fc0865f1fd810fc49597b3ee0c12a","size":9404196,"filename":"pool/main/a/aztfy/aztfy-0.10.0-1-amd64.deb"},{"package":"azureauth","version":"0.8.2-2","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"ab456b47856de52483a9d035c7f96d0afb724d43edd6fcbf5fa53c7e3ff1587f","size":24111110,"filename":"pool/main/a/azureauth/azureauth_0.8.2-2_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.14)"],"sha256":"a183e3dd976b5283ee52acc4548cebfb852f0960f34f39a5a31ec2d6a0a0e0f0","size":6085076,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.14-x64.deb"},{"package":"edge-config-tool","version":"2.0.0","architecture":"amd64","maintainer":"Azure Percept ","description":"Microsoft Azure IoT Edge Configuration Tool","sha256":"b9e1aea2e07727fac26d45d8d5c92aafe4bd3ff63e13e875ebfaa9b14efaffc2","size":88470,"filename":"pool/main/e/edge-config-tool/edge-config-tool_2.0.0_amd64.deb"},{"package":"azcmagent","version":"1.7.21162.005","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"2a0e3cc4b517beabc2c1a8f7eb5b5bce2ed7961acc7aea7b148a12913daf4a33","size":18406364,"filename":"pool/main/a/azcmagent/azcmagent_1.7.21162.005_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"68702812eed9cbd0bdb45d04e36f33b633a09452aa39b105d974093c9177f820","size":417398,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019630001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.4-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18782,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"8db6803b985bfeeb997dbb716a9e1c6230425b0b71b59871d0ee103998e6ff01","size":4031196,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.4-1_amd64.deb"},{"package":"libmsquic","version":"2.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":16751,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"f436ce58f5d47869aefb256635b97e1b95872dba8ace6c8991928f4d8a88e782","size":4348660,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.0_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"184a9fc7cd8c4247fc5f7ea44156d79d9b6441709d2aec4a83e4f7b17b8ef48b","size":1000134,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.21)"],"sha256":"40b63967efb23ab19fb1a863c2cfb47dded87ad0eef2b9afc5c37c6876672fad","size":5772728,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.21-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"5a76b63c5cd8979e182dd7f9faea1ac1e2ce15845fabb1068e65ddb974f4918b","size":2122060,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.19-x64.deb"},{"package":"mdatp","version":"101.45.00","architecture":"amd64","section":"devel","priority":"optional","installed_size":161663,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"e6bf6ec6dee9242a8608578de115b0480159a317dc8c58950a476262014b51d2","size":46688308,"filename":"pool/main/m/mdatp/mdatp_101.45.00.amd64.deb"},{"package":"powershell","version":"7.1.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171528,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6f70084d2a2cdc2dde760b18dd716a5941452248d2869fe9de6a65fedbfe8ca8","size":67057604,"filename":"pool/main/p/powershell/powershell_7.1.6-1.ubuntu.20.04_amd64.deb"},{"package":"microsoft-mlserver-config-rserve-9.3.0","version":"9.3.0.2606","architecture":"amd64","section":"devel","priority":"optional","installed_size":46,"maintainer":"revobuil@microsoft.com","description":"Microsoft Machine Learning Server","depends":["microsoft-mlserver-packages-r-9.3.0"],"sha256":"d05c783069979e3d057e4faf981f741aaa4ab430a11fe844aaa493ce29f4240e","size":5756,"filename":"pool/main/m/microsoft-mlserver-config-rserve-9.3.0/microsoft-mlserver-config-rserve-9.3.0.deb"},{"package":"msopenjdk-17","version":"17.0.5-1","architecture":"amd64","section":"java","priority":"extra","installed_size":324215,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"c58dbc06612034c0478881304b9b96ebee23fe0212dbf38e9023c5d7087d4a85","size":192096976,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.5-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"87ccdb4c2304e2c1f8e4cd0cf00d8df90be527c08a2c9e518a9ecda2eed8ae31","size":221294856,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4502-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7ab2543933ac5e546e391128a8629af650e0d9b380a646678a8032766871bd8e","size":125645188,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4785-1.deb"},{"package":"dotnet-host","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"5c50ea7d4464f1079333901e28fd06dfbfe87db511b0b912dab724571b3b7e52","size":55720,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.0-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":755,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"8b86e75809470fa5fd5c89327ed82d0fe2e0cae0b2e71c7bd2ff8e8b5f12d1a3","size":114218,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186656,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"4b3652426ead7c0b6c873818b1d7c83dc88095ea104324f787725eaa338b2b0f","size":46591862,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.301-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.214-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.214","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"563de21936ea0c86c5602a84c88840ea8eab358e7b9aa66248fe4525199fccbc","size":57622258,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.214-x64.deb"},{"package":"dotnet-host","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6548914c6872fa051b95a87c8f624313a8e51c72729eb3f27348b20140c3f02a","size":57370,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.11-1_amd64.deb"},{"package":"moby-engine","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a93df7ad782a3041734431c3fc5028523b086d179fb13f5fd70e898bd01ab6c0","size":21178752,"filename":"pool/main/m/moby-engine/moby-engine_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8808b8db255e6d57ca8335fb14328ff99f5da45443901f2801e15661afdb33be","size":32430,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.29-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.410","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"c3ef47c6707d7087e0208368b669d38069bbfde3d3b3cee484d4482c659cabb5","size":48098966,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.410-x64.deb"},{"package":"dotnet-host","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.32","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3547d638fbd423815cdfc08f98ef9d4a1c9e51ad854e379b68af8777218c4524","size":32436,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7e57c8b75f6832402709e33190c0ed61680a1c253bcfb826726959f7763efa7c","size":9660698,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0c873e3bed6344099b81003745cae7a1707fbf7249b38922277499966e0f0496","size":362460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.1.2.deb"},{"package":"powershell","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"58e86f8f379bfacb417e617350b16696b134f50c4572ce7a56ab308cb9d243fe","size":68377064,"filename":"pool/main/p/powershell/powershell_7.2.16-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124622,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0b7eb4ebeb1d19f8d448597fe54b55f3e7496da06ecf2470fe18dd3c616d250e","size":46623124,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.6-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19874,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.12)"],"sha256":"80cfc243c528fabf035eb00208103895dc9550f8659bc62aec4538a48cec20e4","size":6611238,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.12-x64.deb"},{"package":"libmsquic","version":"2.1.7","architecture":"amd64","section":"default","priority":"optional","installed_size":16102,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"150478df2bfe05e26dc154d0144eb4c65c911c285a1bf76e01dea612bdef6586","size":4126202,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.7_amd64.deb"},{"package":"powershell-lts","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"240c3e9e1e8b7d6eb3b54297236c5aea5ede0a28b4cb37701e26526ac1f3a037","size":69430114,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.4-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.14 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.14)","libc6"],"sha256":"cf2bad79c72e6b40346ed586ed6cc248f4af1308e57b54e14cc115dfb387b8b2","size":140364,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.14-x64.deb"},{"package":"msopenjdk-17","version":"17.0.2+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323435,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"2133d1b51f9fae2d178cbb97c94b9eb567655a36d8b8ef433afaa3dd5064c018","size":191825508,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.2+8-LTS-1_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21358,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.11)"],"sha256":"e6514c9bdc094e35047f7f3c8260ffc0b12261119937fa4831e0b344ddf5260e","size":7061290,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.101","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.1)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.1)"],"sha256":"76e7d2644d91fed7dcbdc4cf048d6778f5b95646e91b711af9ddd92fd0f8e36c","size":55355152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.101-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.23)"],"sha256":"d94536b5d048ce4956e9003bb999abaa5269b572cebb85b926da3a2f9732aed0","size":6620078,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.11-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"74f632b82584c30ff621280c7fc90143cc5afad265bfd6dc85f82ad6d204cbf9","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.11-1_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.9.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"462eb22fe531e7c4aa4863c604bd3b8c521700aec4ccaaed4e462d40724cfa53","size":2588272,"filename":"pool/main/s/scx/scx-1.6.9-2.universal.x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"5c811033834fdff942210dfbf65d16eea2fe2f97d334d572cc02f3f2e43685b8","size":3520848,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.16-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31132,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"4b3447d53557aa91e5522b47cc1e65f53fc34ca7e89ac6e6e2d3de8c9a26a248","size":2567740,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.0-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3e35f04acb96f6139ef831228aa7572b9ecd7504c5a01c0645b7ed6a415e3d9a","size":227724024,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4753-1.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"9a8231a5d1334d93857adcc7ac28d9313ee10a065f8ba4f03e2f8f6f90ff392d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.13-x64.deb"},{"package":"moby-engine","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117354,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6bc4d9ea1c16030c4525c43a6fc640ea8f0e1ad511e203430ec8eb7be0cb6985","size":24759692,"filename":"pool/main/m/moby-engine/moby-engine_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68367,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.0)","dotnet-runtime-deps-6.0 (>= 6.0.0)"],"sha256":"8338aa43b86960efc2fa5018f6ee818ba75bdf0122578ac54511a626cc9c5a28","size":22849194,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.0-x64.deb"},{"package":"open-enclave","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":122136,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"b567f4e195da6b9ca229d0bfe29bd73cacb44707d4e082cefa1cedef06785fa5","size":33277940,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.0_amd64.deb"},{"package":"moby-containerd","version":"1.4.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138460,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"86fbf26537a44a35a2b14b035d115a68d633a7091edb598cc520c0126b208bae","size":30825808,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.3+azure-1_amd64.deb"},{"package":"mdatp","version":"101.23072.0021","architecture":"amd64","section":"devel","priority":"optional","installed_size":386508,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"45c0dd0dc355044c38629a7f903c994669a523a1ce93cddc66e603937c1dae70","size":133254902,"filename":"pool/main/m/mdatp/mdatp_101.23072.0021.amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.1","homepage":"https://github.com/dotnet/core","sha256":"641e499e02e79fda23cbc679116bb24abfd355dcf306e1ebcbe92ac401c2664d","size":3409646,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.6","homepage":"https://github.com/dotnet/core","sha256":"808c3c3b72039f378c84fdc9b2bd0f571517478368bd2b521ed2a236f99fe7d5","size":42496,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.6-x64.deb"},{"package":"blobfuse","version":"1.3.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":32123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"5593cf9114efe4a7032610e191523c8db16f446adbe523d483656e09cf791de5","size":9249408,"filename":"pool/main/b/blobfuse/blobfuse-1.3.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68381,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.2)","dotnet-runtime-deps-6.0 (>= 6.0.2)"],"sha256":"422ffd79ba0324eed88fe3634f69c1025d978f54738d98aeae7d84e364ce83c1","size":22859474,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c50a6d720eb317297a5915f1246f50239f4aaa98208436cbde53f5c7a9d29110","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.15-x64.deb"},{"package":"iotedge","version":"1.1.15-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22418,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.15-1)","sed"],"sha256":"6caaacc8ed1cbf0bdd734527b9bf949efb242468a97d0827bbcf6ed2baf29114","size":5367528,"filename":"pool/main/i/iotedge/iotedge_1.1.15-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.9.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4812,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a5ba699e516821411f4ef12703b393e7242fca10df69109709dac5e8f7661a9f","size":1881492,"filename":"pool/main/o/omi/omi-1.6.9-1.ssl_110.ulinux.x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4865-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"cc459fd7233209669f3583d3babbe1c59e4cf2ab8757e55f956a21598b0e8986","size":126073148,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4865-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08fefd2a57d32afe7284f2d7f0b8696d2fa97ab5196a8261a9c51653be5830a0","size":156082204,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5095-1.deb"},{"package":"powershell","version":"7.2.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188363,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9fcde25bbd7f537213e8ae34a9803c1ded59cfe1d41701816c424f9b33fd2bb3","size":69679588,"filename":"pool/main/p/powershell/powershell_7.2.0-1.deb_amd64.deb"},{"package":"sysinternalsebpf","version":"1.0.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"be45d24415c437a7ad4f629cd228981daa3cfd1cf71f92849c38291cb1b191f6","size":402112,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.0-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138440,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c28c4584af15cb55dcaeb2d0977a6da4375ef4e9c652a7fa8d21fac52b08e462","size":30819268,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.816-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241023,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.816","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"3ee8c7520affdb83e690e8e1d1a6fca6651da7655f6edd3144c2b81c9c846ecc","size":91732988,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.816-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1af932e9851bd3bc2ea9e6e750816ede6d2f1062afb6fbb8c194a35a7738b3b1","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.28-x64.deb"},{"package":"moby-engine","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":98026,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e2e90f83c1e733d3948630127dc9e4d8a7dc9824f8cf62cd9a9dd45f12a9e5cd","size":21176712,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-3_amd64.deb"},{"package":"blobfuse","version":"1.3.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":31955,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"d309e4663e49150bd8af852c864b05492d15a9e3d6fbbba21a8bd296ce9d1d87","size":9222958,"filename":"pool/main/b/blobfuse/blobfuse-1.3.2-Linux.deb"},{"package":"azcmagent","version":"1.0.20259.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"22e4e22aa2fe9324d65634f103ec360509aee682aa283246416959147c2ba3bf","size":18201370,"filename":"pool/main/a/azcmagent/azcmagent_1.0.20259.009_amd64.deb"},{"package":"libmsquic","version":"2.1.1","architecture":"amd64","section":"default","priority":"extra","installed_size":22575,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"66b934f9eb658a8f430e675ada16d16edd6789f57347a56f7ac9ea72564ca8ce","size":6406602,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.1_amd64.deb"},{"package":"aziot-edge","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"1314559971d904a3b642bd0541b489783e939c13f27f1f05b078a1c3b3dd8d83","size":4203924,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.3-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.3","homepage":"https://github.com/dotnet/core","sha256":"5247aa739c901dd9f78bf45b8f0d8c763aebcea109c9e83ce4b172c6d6c66a13","size":3398704,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.3-x64.deb"},{"package":"moby-compose","version":"2.2.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25452,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5bb4f1ff748a6aa0b4478ed7c0391a035d1565b404a913645d9cb5dcdc8de5c3","size":6319144,"filename":"pool/main/m/moby-compose/moby-compose_2.2.2+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"dff4c1804439d9c08d8dd31627040ea654765903eeb4295393585fd9e0e30b56","size":150108,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.19)","libc6"],"sha256":"cee694dccc54a8260d4971e39ff1da2b32ab2e15f77c21792625f0b287ba9f27","size":142356,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.19-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"faadd0e5e11d84f87587fe159edeed8a5de688108e786c2184f2993642286e50","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.18-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"86580698443180f77b1f3e550c84af5ce5add1f836bbab794785b1c2102e0be5","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.25-x64.deb"},{"package":"az-dcap-client","version":"1.11","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8ececbf101e9312cf3c57b619f0a7045138972ee2da54cdc48258dcbbd9b7b23","size":152336,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11_amd64.deb"},{"package":"moby-buildx","version":"0.10.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"4f18c8ea6d49049ba56dbb3ba02c57e78949c717d9fd8ef334fc1632ec96f114","size":25558318,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.24 Microsoft.NETCore.App 2.1.24","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.24)","dotnet-hostfxr-2.1 (>= 2.1.24)"],"sha256":"ff9b77a9ca019abd68854a564d5529b633c2e7254efa58b7754db1418985a695","size":20327858,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.24-x64.deb"},{"package":"moby-engine","version":"19.03.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1a0463b96c01047c079912a3fd23fc11294a3751549cc3318c198e187722599b","size":22479484,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-2_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19830,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.1)"],"sha256":"30df06bcb1ac581ecfd07a2b64fe45d2252c7eae876549e166aa1530864fd438","size":6596852,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.1-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.13)"],"sha256":"7a8bac3d07539a56ad0cb775e996da6fdd0f6ba1bb21924d7853a1f28e433ec7","size":1514874,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"mssql-tools","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"7ec6c85e184cc37ab241d01b560d99761ef641df436b065a5e195b65e017438f","size":212146,"filename":"pool/main/m/mssql-tools/mssql-tools_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.0","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"acbe521b53360a4f803e8bfc50ef0644415da7f2f7c81feb83ff5f2eb679f457","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.0-x64.deb"},{"package":"aziot-identity-service","version":"1.4.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18919,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"f8ac43250490dd18b4f9ccdd72a7f1c10a295e9336d9ef98d39f0dd4d9542098","size":4128286,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.6-1_amd64.deb"},{"package":"mystikos","version":"0.9.1","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"53a143496602981ccd0202be14766901ea0fef422e6ad6ba6f3765ff08b1ab89","size":4443962,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.1-x86_64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d6a34968d174165c3ac0bb68607b2ab0bf248e574585443971811e15ad1229c7","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.6-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"8c79c372fc677a9acf2acdb8b216daeadc2ac10b118d5643ec2ce22eb8d28089","size":79758318,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.0_amd64.deb"},{"package":"open-enclave","version":"0.17.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":115341,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"57bf989e1cbc7c0f1c39016faf5902b416a38b0939c6c8b58e5d7b3f8f1a84a2","size":31579642,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.17.7_amd64.deb"},{"package":"open-enclave","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":113932,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"940bcf829445bea407b05b7dece0991f89f26b0045696798b9c509b2bb2054a9","size":31147748,"filename":"pool/main/o/open-enclave/open-enclave_0.17.5_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175201,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.108","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"7fadaca90a5586bcf86c5717c6476be0194d9926343f6373ebfd58f91ee52be2","size":43451478,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.108-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17502,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.16)"],"sha256":"1f956f7f3109b34b6fea001237ae0496400aaadcc2db9128f036d0d32ed3ae7c","size":5773784,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.16-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.205-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.205","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"ac5d3a001fa718abb9d1095c6b5d54740d9ed873f73f30d17476e6e11ce405db","size":57015322,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.205-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.12","homepage":"https://github.com/dotnet/core","sha256":"42ecb191e3214e712f0c326642bab72ea72128a447d22f038a55286df7d1dda3","size":42736,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.12-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"37bc0cdb694b55c1ea99e4c6b92f136e7cf603fcaddebec76d11e44add41146c","size":124508616,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4736-1.deb"},{"package":"moby-containerd","version":"1.3.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126911,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"490fcb1ec50690bbb88799133fd2cae5dba6d5cb60e2edbfb6a47153b6d7da56","size":27671252,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.7+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117258,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8568f934682972051715d41d9229b8472ad4e80fa15f2ccdc22fcf22010a44c8","size":24749920,"filename":"pool/main/m/moby-engine/moby-engine_20.10.3+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"cac57f3b16afc8e2659455245b67ded3cfee570654f4dcf56f406ac93d10998d","size":155251712,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2796-1.deb"},{"package":"dotnet-host","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c3dd5069cafe3151cfe1cf170a646d3fe812a492224d423f2891d8e86913981e","size":55698,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.1-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":749,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"31a07d73e85448f222de5b7440ece1c5b4ef5b7f5d3ce7eada6a9aae0fafcbe1","size":113348,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.8 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.8)","libc6"],"sha256":"d11445de01b19806a245daf2e6708e413de8fc3a042b2432bfebf0ff04491684","size":140268,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.8-x64.deb"},{"package":"mde-netfilter-src","version":"1.0.0-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"7858cb2a6c43f44417e8d95bb9194bc98810460e516ebccdea5825ec71bab287","size":13560,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_1.0.0-2.amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.818-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240998,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.818","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"3b29d87b6ee0491de22235bccfa4ab5b9ee14cdf758b8d96c3a2185783faf65b","size":91722984,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.818-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350115,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.113","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"223e3af61704a49c26518832cfe04260c23017fd06177dcda24d83495c39012e","size":90709030,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.113-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.18","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8ffa1b39d77d6a94bd176906fb800283f6234546933df852f72179bebb7701d4","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.18-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.26 Microsoft.NETCore.App 2.1.26","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.26)","dotnet-hostfxr-2.1 (>= 2.1.26)"],"sha256":"4e494c2f20e4199b60fc405faac8ea456c2a034fdd53974e1dae30e2038adcf6","size":20322466,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.26-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.310","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"1c58a5fed9617e4c08ca224ebdc1b54a04797be23b10055ebf17ca7221f666e0","size":85091654,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.310-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.8)","libc6"],"sha256":"45c3624776c280739550c606c83185497c31b21acc8f5150e71dfd5996f504a9","size":144354,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.8-x64.deb"},{"package":"dotnet-host","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"09858829de4b32532c7002124ffa9dc5ee892adf755863bba9738d444c5ddea1","size":32884,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19855,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.5)"],"sha256":"7c264f8735dbe110e039125f5bad99ecb950a199abe16d6cd2cb97b07b4975d2","size":6604008,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.5-x64.deb"},{"package":"moby-cli","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59401,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"be80e5722544fab52ca05e7c4152e240aa3f5d7f0673e56d63ea47facc0ec0cd","size":10215796,"filename":"pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.208-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":221997,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.208","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"992200db75615210f8de592bd681f381a30f47bd73a035efd9837aef6c8d615a","size":57283674,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.208-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174793,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6196ba4ebcc16e66d20a6cf31d103898168edd2a32e11b8f79d149a95021bd23","size":68350160,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.2-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.11 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.11)","libc6"],"sha256":"e27faf05b11f71781749b07b0029c760fd61062adeca99112765d853e29e8395","size":121006,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.11-x64.deb"},{"package":"moby-engine","version":"20.10.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86247,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"645efdaea0e340dbd4739a4fa1ad8eb4558b497debef91569e6f2f75b5e115b8","size":20507890,"filename":"pool/main/m/moby-engine/moby-engine_20.10.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117234,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5782d03398d3820b1badffcbd3381c569ad99de24ce6fad57d04ce55cf1b3cd9","size":24737244,"filename":"pool/main/m/moby-engine/moby-engine_20.10.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.612-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237146,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.612","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3116f9bdfc32bf0100c4513962b32b0ab7c1798c678c82e2d41621c75f5f1109","size":90827932,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.612-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d9c1f432f1f4ce8f89a2a2694335dcf219702dd83a81bf05b2ec42731c01950a","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.29-ubuntu.14.04-x64.deb"},{"package":"aztfy","version":"0.8.0","architecture":"amd64","section":"default","priority":"extra","installed_size":42176,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"9de434526c8483d947b511fe42b3df26b38554b0a5f0e46a4988e5699924841a","size":8622710,"filename":"pool/main/a/aztfy/aztfy-0.8.0-1-amd64.deb"},{"package":"azcmagent","version":"1.12.21285.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"b8c0a57450638c73e1182d19744f643c241976aa57da8e35841635deedb7ac65","size":50058362,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21285.002_amd64.deb"},{"package":"blobfuse","version":"1.4.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":34634,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"8dd6af68d3ff2402df0fa9f1b8f489597999b792d9c38b6501676e497a422dc9","size":9918238,"filename":"pool/main/b/blobfuse/blobfuse-1.4.1-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"9eef66bbade60a95b3d7b2c869144893eea2c53e85429060901a8201ab8c9c9e","size":48443896,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.408-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330666,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.300","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"5dcee2d1cea6d4d90cdda4cf70da1b5947f3d798d47b0b477dc4885513afe860","size":84870018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.300-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.32 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.32)","libc6"],"sha256":"fd90563cc5240ec457877dde687e8fa8a9ad27a00c196955578a155d64f06796","size":120802,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.32-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.3)","libc6"],"sha256":"b1538cee2b98d3910e330790382beb315724c3bbd8dd8d59ac272a952128bb94","size":142012,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.3-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"714fa1cedf1983686dcbc9a2701799cf19b039629da67318ecb2275a5a651084","size":3508800,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.5-x64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66620,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ef924dcac53519e9efeba109316bb1914f0d143616e8cbf72f596805b69de47c","size":23649004,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc92+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18424,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"e8dcd4b5b73741799e93a7872feebe8d2e7ab822352648e78e892db3f0e81538","size":6150876,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc92+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u5","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3aa0bb5a6f547f57449367e4231821f2c5d74d715b970ce3fcd539f7783d5467","size":5742626,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u5_amd64.deb"},{"package":"powershell","version":"7.3.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172238,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"8ec60ee3bd4721f5097f7faf55c1aabf984118821ed78baca70be3612516cc9b","size":69171666,"filename":"pool/main/p/powershell/powershell_7.3.9-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71104,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.9 Microsoft.NETCore.App 3.1.9","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.9)","dotnet-runtime-deps-3.1 (>= 3.1.9)"],"sha256":"ed8a7d2622700881aec4df5bcb8dfbcc03c1871ccb3038bef5e3b30ec9d2a9e2","size":21668374,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.9-x64.deb"},{"package":"unixodbc","version":"2.3.7","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.7)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.7)","libodbc1 (>= 2.3.7)"],"sha256":"3a1ee6341d9319731bbffbae775fd7f455bcd34d97237a82b58a3280a3366f24","size":19572,"filename":"pool/main/u/unixodbc/unixodbc_2.3.7_amd64.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.7)"],"replaces":["unixodbc (<< 2.3.7)"],"sha256":"a5ba3b5fad82f0330a8bf4b5b89fe34420ae9b884e75889d4a0803a455180be6","size":134622,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.7_amd64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"845d2c21326f23d4b1fc2eb3e3731dc0dfe0b93b51af66c99e1013b7b50681b4","size":114288,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11067,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"3c8fc6205fe4da858312a53ed26f0135213d0c59125831e51309e484536801eb","size":3519186,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":113729,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34800a59772281468a27c26289a56095c160a43f56e4e9cf37fb9b1acf04f7b4","size":31089900,"filename":"pool/main/o/open-enclave/open-enclave_0.17.0_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175186,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.111","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"1d89de60a7aecb43b5cbeaf07199809995dba4509ad1b6cbca893bb605a6fbca","size":42912182,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.111-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.15)"],"sha256":"bb6a784b886153a7655c94f81466776b7f2c121d67566bbb6d957a92a8f995cd","size":6611850,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.15-x64.deb"},{"package":"moby-cli","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50209,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5d46cb0b3e8e531fe6b1556d32a9e9dbffdb67b22bc3fe0c2daf446a3d85b3bd","size":9774914,"filename":"pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.8)","libc6"],"sha256":"fd31f75d787c6793c265f8521b647e06ce8b00327798d55607422ad78ad92c6c","size":142306,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.8-x64.deb"},{"package":"dotnet-host","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.19","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"278bed877fa7bc39a69554a244ee6caa905f499e7ad316ecd03c04138e8e65cc","size":55870,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.19-x64.deb"},{"package":"azcmagent","version":"1.29.02286.794","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"a2de8f368efc70d6c0d6de01331560fa3308f579559aa1706a2e2acc678981e0","size":54135290,"filename":"pool/main/a/azcmagent/azcmagent_1.29.02286.794_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"9919b50d49031d858c81a4cfbff7b84c66ed947f702ad7d2f9aace7db8ff9827","size":9764162,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.20","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.20)","dotnet-runtime-deps-6.0 (>= 6.0.20)"],"sha256":"356aef8ceafe55124bae9ad0deb58f3d020884e0edf1e7d6bf5f79f3f565bf7e","size":22931670,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.20-x64.deb"},{"package":"msopenjdk-11","version":"11.0.21-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317689,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"7c153e16c53b1b45b9ad3c94c4dc30e3574cca0eebdb1b69df5ce515db2d4f8a","size":166637290,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b343a98f70e1b5873dfdc5e3e430cb297332d7b151908d8b9a96169f471ec229","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.30-ubuntu.14.04-x64.deb"},{"package":"moby-compose","version":"2.14.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"32663f95c2fb8408df560b915d4b54f2bb654b566064437f685b8ed19a84edee","size":9648794,"filename":"pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3ab05a7d67163edc77a0d03071534fb3245cab1a754f77c7257726b12a3b94d9","size":20990140,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u3_amd64.deb"},{"package":"powershell-lts","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bf822a5033403c396126818985fee79af163b62bb015603d81400e90ac9e32c7","size":69396358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.2-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.9)"],"sha256":"d7b54dab1e26e0c64c4c5d96e5e49f1448dac7af404e7b2a17a481ffceb4cc08","size":6084140,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17476,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.12)"],"sha256":"e07ab6c36de877eb61fb9cd182d657b7e6a53b762da719ace97181cd481efcd7","size":5773228,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.12-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.26 Microsoft.NETCore.App 3.1.26","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.26)","dotnet-runtime-deps-3.1 (>= 3.1.26)"],"sha256":"af152782c61c6692099936e87411728f533c9c5c435c761f7c94e4af1a5e5b61","size":21806626,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.26-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":61003,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1c97c4538464a3f58e13e6c3f3c3419471b6815bcfc215f3e32c82b8024bb6ff","size":10618136,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-3_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174370,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.112","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"37474633fbd4a915592a311245a2e64679b4d5c8b130c1edd488aabab49576a3","size":44274732,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.112-x64.deb"},{"package":"aziot-edge","version":"1.4.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18312,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.4-1)","sed"],"sha256":"f16c37a6f8550f6f100fcfbec01e3a829f8382472d123fa5279a192511f9ebe1","size":4360864,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.10-1_amd64.deb"},{"package":"aztfexport","version":"0.12.0","architecture":"amd64","section":"default","priority":"optional","installed_size":72408,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"436aa6a7e279bebeafa09d520485ec92bf9336b24dad38f8f226a98a5b1bd0df","size":11732782,"filename":"pool/main/a/aztfexport/aztfexport_0.12.0_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0c7f2d75631bb15d657bad2a6fe7160557fed3f31aa4e8858052bd644b0699e","size":166092780,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3023-1.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"4da5438cdb779ace13629af714b8c1c918939810a4be3cd50f4b7e88ae2f66ea","size":34231376,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u3_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"ec9f9d3a58b953b4c0ae51d23a66ee1f3848089a23b32fc60f4279df5eda1fe7","size":10222,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016890001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350058,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.108","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"df8a89bade0d908f4d57ef6fffb9510e0efeda2350a8a4dc7ce5f57211ac79ce","size":90674394,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.108-x64.deb"},{"package":"azapi2azurerm","version":"1.6.0","architecture":"amd64","section":"default","priority":"optional","installed_size":36328,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"e5ce4199c1bb93083fe7d3d718e2fc94ff5d4f588256729e1201c60a104e4c1d","size":9880990,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.6.0-1-amd64.deb"},{"package":"dotnet-host","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.3","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3f16a25e552118bdefff7b064466df569c214acfb75b7466b89af1b40879db9","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.3-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c38406fde5a67fe3a2bed2735865b1b3e51d6f23ad0ee23bb27461433011383f","size":221301300,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4502-1.deb"},{"package":"powershell","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1b140bf45d3eefdf41ea4dc0793bff981fd16f120845546eb561c998c7b8ee2d","size":68191810,"filename":"pool/main/p/powershell/powershell_7.2.12-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21337,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.2)"],"sha256":"2c6630799fbc17eebedc7a256c11e3340201d455e5c2aa5ce64e552aa07ab848","size":7050582,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.2-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16147,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"4927ad8980bacaa284aae6a65dfae195ebd74c3546a9dc3b5f283adbff09339e","size":4976590,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.22","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.22)","dotnet-runtime-deps-6.0 (>= 6.0.22)"],"sha256":"86c8edb1b543a25dfef7dae191243d36ff939800a0a04f6f6d2a597d208711e0","size":22756012,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"2263268dd3724b84e315045019c19ea3b12dc90cb12a983f49fdfa0c45aef2f6","size":3520144,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.18-x64.deb"},{"package":"powershell","version":"7.1.5-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174301,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"4d0ee19617ebd696527e966a35a00f94ca3e83c850efdde10cd4b27369a17288","size":68234364,"filename":"pool/main/p/powershell/powershell_7.1.5-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-host","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.3","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"416e02afae3d47adfe80662d495d3c2abbfd44828a2f2c2269f6409c0df07198","size":55716,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.3-x64.deb"},{"package":"dotnet-host","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e41a81816f2530fd3a54b2c06027fc3b63c07779ee6e841cd69a6ad46c754af7","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.29-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.24 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.24)","libc6"],"sha256":"7e93324e11a85e2e278d2c457782730536863ada2be36536fa906daaa8430408","size":120808,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e1e1b6c0ce33a0b2dca2400809844b154a4e79e28803ae5c08c1d8ad9897eb39","size":124372068,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4590-1.deb"},{"package":"powershell","version":"7.3.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196866,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"40bee3deb9ac71dfd86a7dbf2f2bdcb8d039fa454dc9d705d579e4957194fcd4","size":71643662,"filename":"pool/main/p/powershell/powershell_7.3.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4438107a1e87d88552be66d4f97174d2858749562bc585e111a556c6163c62d8","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.4-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"89fb369b900c258e1b562eb19a94d7f0d39ed85490fc679686802d0633d67b20","size":224535344,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4585-1.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.2","homepage":"https://github.com/dotnet/core","sha256":"082940af64707c787fbaf9ad384c1bffcbab69a163bafcb20c5fc81a15602943","size":3398280,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.2-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.30 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.30)","libc6"],"sha256":"836cfc014fed64658c164f0cfa5c1a72239cf1cddd6ec540cdb55dfa12e7be4c","size":143462,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.30-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"3f6ac011906fa751b3825746b28515160a1b7b1571a8721ab481da9c5d8ddd69","size":2568066,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188276,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c582b062d21a97cb7efc4a3e386364d5b1c34e1e84b349fc716bf0907a399572","size":69625606,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cbac333cbfd66f544a0f17c1b8d28d9ba4fa16ffc4800e5b7b49d04409961ac6","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.4-x64.deb"},{"package":"moby-compose","version":"2.2.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"2efc3db162bc600ead2d9d9d61f1d2c11b44e175f7dc886a903a9bae2db8af56","size":6318328,"filename":"pool/main/m/moby-compose/moby-compose_2.2.3+azure-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"346995543fd62c9bcb5f29d79defceaa1dc045740a7744e9e059650c4a51c779","size":2370,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.9)","libc6"],"sha256":"d11e1cfee96cc2b1bae9292643cd3ba66bc93256eb6a4b575516539ce70dbcd9","size":143918,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.117-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.117","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"5e35a944d7c356e99ad426f7926222e25137a168f25180a84e250f1452a5a4df","size":44408280,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.117-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.15 Microsoft.NETCore.App 3.1.15","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.15)","dotnet-runtime-deps-3.1 (>= 3.1.15)"],"sha256":"ba356f88ddb6140d0268fd0be5a5dcc31c75644078c0775ff6143a0a20c9d930","size":21779462,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.15-x64.deb"},{"package":"moby-cli","version":"20.10.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0896d5309e54afa99f815f14c8e3ff04e3358dc43b55d8d6c0686c1132a2c106","size":9662014,"filename":"pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.12)","libc6"],"sha256":"cf766a63271559df4756a494ea2f4e44eed0439aa06e9abaebd9ef4605864e93","size":142378,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.12-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.12 Microsoft.NETCore.App 5.0.12","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.12)","dotnet-hostfxr-5.0 (>= 5.0.12)"],"sha256":"e4cdeb68aea4302db017410c3f67ed4de22daa1d2aeaecf63fc31ca6eb2a6d47","size":21494580,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.12-x64.deb"},{"package":"msodbcsql18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"89901f55eb486aa4da822dc76cf0fd6e118315d4ffecce59a2d06ef704cdd01c","size":748328,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.0.1.1-1_amd64.deb"},{"package":"mssql-zulu-jre-8","version":"8.50.0.52-1","architecture":"amd64","section":"java","priority":"optional","installed_size":108803,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"179bed451b4dc9a714fd420d68a1c5dc6181e844a3242f1d7389b796f8b8f2f6","size":43383650,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.50.0.52-1_amd64.deb"},{"package":"moby-compose","version":"2.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"dc5d0e7d902c4109aeabea6b318eeed91edab1a7ec5cefa93d0271b5e2a386a5","size":6498584,"filename":"pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.58.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":207291,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"2756a8f62089c0658da3ae4ed07a1ee3ecbf66f7402a949755638fd545bb3636","size":60775648,"filename":"pool/main/m/mdatp/mdatp_101.58.80.amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.15)"],"sha256":"4d0dbe848462066fa801d87436c285f85a23bf9f191c10f661de48b5cf270eb2","size":6085368,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.15-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350106,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.112","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"afba66259ca95dc675eb24bbecf5b0bc0aacf07f7d48517c35ba62f3e2456cb2","size":90698250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.112-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.12)","dotnet-runtime-deps-6.0 (>= 6.0.12)"],"sha256":"1d806a6e46ff240495369dd475725db165a9affec62a406849716b0f1639ac0e","size":22701764,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.12-x64.deb"},{"package":"moby-compose","version":"2.22.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58356,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"8b02f3867e62b644ccc79eca07d9df6afe37c10b76ceca0bc2150a8eda8e0aed","size":17591254,"filename":"pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu20.04u1_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.1+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348947,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"24b1b22b78ab1df983dc071387e986f867f6df1776d456009ed3dc3fbb03332b","size":205299892,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.1+9-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18085,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"e5889ba4810a386b9936e79b88d8227d234b75fa23195cd551e0a83167c92421","size":3862392,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.2-1_amd64.deb"},{"package":"moby-cli","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":35186,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0caa95c30f185e78bba8715e97da7136f060d781e76bf39bf6d37c18f0e8dd72","size":13042042,"filename":"pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2750-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5f4fa83a6479b527ba9275ee5d855f7286effe0af04cb156ec6e2820179a0336","size":199612768,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2750-1.deb"},{"package":"dotnet-host","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"392275546433e1fa28f1ae534c201dac53bf96e6cd0d3ec8ff70a26fc249b3f0","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.8-x64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4a3d543caa33f4be29d7aea0a33efa581443e6dda42bfdbd1dacd7be2166fee2","size":44742158,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68423,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.14","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.14)","dotnet-runtime-deps-6.0 (>= 6.0.14)"],"sha256":"78bcf00bc7cee6a25df87ca96973a708579a9da6946131698a1fd10444e67dbb","size":22694152,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.14-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"7ea14d800e7ce879d94968dd78e31ad271354d0c84a6a7b1466b1587be999005","size":499706,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.7.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366874,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.305","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"4d75c12e2936c62b5be154a61969239f44680cc12bd9b157f32ea40b93ebeefd","size":96542698,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.305-x64.deb"},{"package":"mssql-mlservices-mlm-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549271,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Full install). Provides python packages revoscalepy, microsoftml, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-py"],"sha256":"f40b5c6c70354d67c278283a872c052ac559bf60315d911cb4ec5e8f0026c894","size":521701284,"filename":"pool/main/m/mssql-mlservices-mlm-py/mssql-mlservices-mlm-py_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.11)"],"sha256":"5b0d4eb3d443b454fde34563054c0edf602f60fc3ddde753a2d21db4259df218","size":6608208,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.11-x64.deb"},{"package":"dotnet-host","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1a95de2961d82020f738965e57218af627370d8b2cbe8008b6fca6047c9db651","size":52666,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.13-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70839,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.9)","dotnet-hostfxr-7.0 (>= 7.0.9)"],"sha256":"cf64af93034be5eb0e8b4152100ee1f62ce1c41db6c3e8efc870c60ece52b222","size":23199430,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0a904362091791c5465b9ee18a2ff9667f052d59e5d4bd24d343f8d11de4839b","size":155422440,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5198-1.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3827a6839c3a55bbb8f0cc26906f21bf7620369e5ddf8de7964baeda6c8786e0","size":5765922,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.22 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.22)","libc6"],"sha256":"5d4aacd0bbb204df019c83122607cfa3b4788bc6165843ba5bf13942b78ab04f","size":120766,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.22-x64.deb"},{"package":"libmsquic","version":"1.9.0","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@d9433bfe88a5>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"bd5ba068566c5cd6f84b8c1e7ce88332f7c5fe8cea9e6f5e52a700a1a57e4b48","size":773398,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.0_amd64.deb"},{"package":"msodbcsql17","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"73bfd1fb1b70dac76e68e59f5635d9383e3bce223ccbd73b43246cdef4a5b626","size":743884,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.8.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.6","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"293ddde2a6efd98dcfd5cef91444d5a5226bfa3b52592b81c303fe610117314c","size":55838,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.6-x64.deb"},{"package":"powershell","version":"7.3.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196826,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7190f391fdbacfababd8a2801b9ac1ff2b98663fefa2bd70b2bdc4a366ed02e0","size":71622188,"filename":"pool/main/p/powershell/powershell_7.3.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222412,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.201","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"970a6612345d7b157b485fdb3ca12e3792768a383d95eaa6d0e49a8b0096f8b7","size":57570422,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":508,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core (= 0.9.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.9.0~beta.1)"],"sha256":"97398caf0fcd0cacbd467cdd29eaaae2c3282c45fb179778841773aacc884742","size":78472,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.9.0~beta.1-Linux.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":512,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.10.0~beta.1)"],"sha256":"e1ea2d650eddc24d02243d7b2a656e99f14dc67730242cbc05de820419d29ad4","size":79326,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"msodbcsql18","version":"18.2.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"2a2e0b7fe70fd41ff87823d67e7544b555657c333f22541f5a1b96fa82b1741f","size":752616,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.2.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.11","homepage":"https://github.com/dotnet/core","sha256":"f5f590c6be535a897976074d656ba9fe04be87c63a860a0217db724c6518178f","size":42744,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.11-x64.deb"},{"package":"msopenjdk-17","version":"17.0.3+7-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323643,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9ceeed9a945f9b772de6157a86eb1ec2a7e995fb2bd06b796c8687a9e8e1b43b","size":191708950,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.3_amd64.deb"},{"package":"azapi2azurerm","version":"1.7.0","architecture":"amd64","section":"default","priority":"optional","installed_size":38084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6389f078d27cd88e4d98a835f40d2c4a59ccab93f65bd4811ba21ba6219f7711","size":10216844,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.7.0-1-amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.4)"],"sha256":"85b026987b04ff8258d6e42677e2292d1b775f562e86ae7a1de9305646c27147","size":7051730,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.4-x64.deb"},{"package":"microsoft-identity-diagnostics","source":"microsoft-identity-diagnostics","version":"1.1.0","architecture":"amd64","section":"java","priority":"optional","installed_size":3944,"maintainer":"Microsoft Identity","description":"microsoft-identity-diagnostics","depends":["default-jre","jq"],"owner":"Microsoft Identity","packager":"Microsoft Identity","sha256":"c3fea4c7143de315a6fc5a565939a7be654aaecc113e5e8a250ac83fbb645e86","size":3710392,"filename":"pool/main/m/microsoft-identity-diagnostics/microsoft-identity-diagnostics_1.1.0_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.17)"],"sha256":"ea006190e965a407726db2ec6f533f39e83eea4785cba16b89fdc55c561800e8","size":5771072,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.17-x64.deb"},{"package":"moby-cli","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61009,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"084cd12e9d8a5b238eb2e10dafd4adc2f10e8fe586021682d8f4f891bd3e517e","size":10611276,"filename":"pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.4.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18300,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.3-1)","sed"],"sha256":"0ae876963ac701d7686dcae51c07ed0edf0ab3a529fb1f87ae76b9d191a21775","size":4361250,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.9-1_amd64.deb"},{"package":"moby-cli","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5b8bfba41a2afa6de91fbf35a0fc005c549ba4428acefab6216fc070a230b137","size":10594424,"filename":"pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"22db54b2b0a7d85c4fd6ddcbd1071cf6690f37fe1f86b2ab1d76605301c297d3","size":2126478,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2748-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e4757e43421856dd01a297de2518a0979455f303affc4df7775a9dacb9ac464d","size":155251980,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2748-1.deb"},{"package":"moby-compose","version":"2.14.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43888,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6265ccc1a795669685d383783e4f2e6b973b862e3fb5775274699758a0a66e3f","size":9652378,"filename":"pool/main/m/moby-compose/moby-compose_2.14.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-compose","version":"2.0.0~rc.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25268,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"9571f78093694921902fe407649388fd4b48b8f89432893458891e2ccaea8660","size":6247244,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~rc.2+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"00194f5ea94974620a3255fc29990b323b621317fed2e9f209dcadf14528aaab","size":408388,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014760002_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e4e957b810ff363c724afd9398a9d02fe4cb3f78fd611694d5b9ab9abada1bfa","size":2662,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.18-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"ed6c17e9b097f870215ae32caba285a0a5e80f0281d42f9e0e53250eba6095c8","size":1308164,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.6-x64.deb"},{"package":"mdatp","version":"101.56.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":209752,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"f3da7d4ec2f218f3c89d55f054f8981d85c444935882dfd3944edc076a0f91e8","size":60952270,"filename":"pool/main/m/mdatp/mdatp_101.56.62.amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.15","homepage":"https://github.com/dotnet/core","sha256":"44c3a29730492668bbd5821e70081e0ddb20b38fc2eaa5c4c2ebf99fe9784e44","size":42262,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.15-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.308","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"79fc932e3258553858c6382c16802fcfa94d62f28517117af2afb39d56a11948","size":85094014,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.308-x64.deb"},{"package":"libmsquic","version":"1.9.1","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@9d58bd1cab7b>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"005fa43baa219c99f3dbd5390570f7784ad57a665ee75e526dd23a3c1ef2cfd7","size":773500,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.30)"],"sha256":"402f832862ef2322cff59931844b5adbcbdab63725a9925667883ff45dfe9ed0","size":5775564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.18 3.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.18)","libc6"],"sha256":"ee67dd1b1a5740ae263785574907efd2869998fc9af0d6735b196a5410e10eeb","size":120800,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.18-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"5157e4e1f5161048ca76e1fe1cff487d566ab21e491dc55346b9ca02dea26707","size":10202,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017190001_amd64.deb"},{"package":"aadsshlogin","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"3f5c88739aae903fdcc035eadb492764c0d0c2d8faa2db9432f1b7eeabf1bcd8","size":415792,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020320001_amd64.deb"},{"package":"moby-engine","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"530b25a33deb1641dd9ff15065ec7ba248a9ded75b96d2409cffe9d8970f1533","size":20691414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.11 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.11)","libc6"],"sha256":"346c1c49b7f41d464719a2389b1340515b64899cbef07d560eafd65437064630","size":140414,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.11-x64.deb"},{"package":"mdatp","version":"101.98.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":311625,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"147bab5f68ee0bad8b2eec5dd67bf10db5ee75bcc867902d63ad39b706e351ab","size":120076756,"filename":"pool/main/m/mdatp/mdatp_101.98.64.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"19454afb0d67ecf652c90ecbf65443b5524652960848ad267989b2122edcd5e8","size":421574,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.419-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189759,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.419","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.25)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.25)","aspnetcore-runtime-3.1 (>= 3.1.25)"],"sha256":"9b5337bd95cc181c5bb932c143f3113176dab3e06285edb8855cb25dc6aba921","size":48632002,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.419-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.18)"],"sha256":"96d5e5d5856a7748dca4536b045a993327362e7fc8b70403f71a7b1d511e40e0","size":5770944,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.18-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366165,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.302","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"0eb71faed541f514db82c099ca2673a31f61a1610d609015125e5bf8b0825127","size":96471690,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.302-x64.deb"},{"package":"mssql-tools","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"738e74704c935e0e6710a486b5607629201e4d1ccd8267a007286bad06314979","size":210546,"filename":"pool/main/m/mssql-tools/mssql-tools_17.9.1.1-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.24","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.24)","dotnet-runtime-deps-6.0 (>= 6.0.24)"],"sha256":"da2ab36b08a57243f18bb74639b7c3d04b208b53cc97fa52a6e7fadbfeb3a76f","size":23042886,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.14","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3cbd0265d728a2e0f045f86b1426f91511042c41d64dd5c842f98a9e31a3cb3","size":55756,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17477,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.28)"],"sha256":"d3462772eb5accb36372a0b01f079b44da114b8f9c8a404ae4512c4ad8df2fa6","size":5770252,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.28-x64.deb"},{"package":"mdatp","version":"101.23.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"a7579005e783af0a46215df77bba992acd3d641fb72e331d9b7b83d958db4f33","size":44873452,"filename":"pool/main/m/mdatp/mdatp_101.23.64.amd64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":65424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"da7bb023af3964e47ea808fc590db7ea4b9178253ef0ef5b7959f33e026825cf","size":24476584,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"azcmagent","version":"1.8.21196.008","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"48220f8a0d8da89a839770f528dc24c937d37d07c4a1b250f82c40589ce987fd","size":49539918,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21196.008_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.24 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.24)","libc6"],"sha256":"1c963d730df35afbdd08774445048e21b215fe4a1ca4aa7a315038f262206fff","size":143978,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.24-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.613-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237379,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.613","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"af89a736bbe1bdd955cf185d762f48c2538da908fff74b8c5625a68a928280cf","size":91109030,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.613-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"98e226c6ba99ef984fc0672c64c50b5ad3b1b03ba574ddbcdcb87cb6920100a1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.4-x64.deb"},{"package":"moby-runc","version":"1.0.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15164,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"966319b07864ddb965f0fae70aa331b228f9ba5ef8eee8fc5bccec0be9097d61","size":5342240,"filename":"pool/main/m/moby-runc/moby-runc_1.0.2+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"47224012dd00dc4ca3922f53ec6f28b59183c31e8b96d6fb5378f16bdc48ea58","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.3-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"b53ebcfacdf29eac63b0cbfbac377be5a0d43604f42f9a81332a3bd7ef3ca668","size":8618,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.0.0_amd64.deb"},{"package":"blobfuse","version":"1.3.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":32116,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"e7e371cd87cdccddccd16a489a8ce328fc91966000cf15b231b8071aa484bbd8","size":9247938,"filename":"pool/main/b/blobfuse/blobfuse-1.3.3-Linux.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9a9bf7427c72d85516659c34b1d3155144bc9f45e8268b5afb5fd6f6cd3b80e2","size":165951860,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2855-1.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"298ca20f667539f0447ce70b602175c5a43667e4df2a5918850e38be70d93e74","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.11-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"df9e26395b518354f6b59724ca4a99385a81d0dcd93116629e650791ccc54373","size":854522,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71070,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.4 Microsoft.NETCore.App 3.1.4","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.4)","dotnet-runtime-deps-3.1 (>= 3.1.4)"],"sha256":"28a521d6ea2af92c6c3f028cfe5de65f49830fedb26cd0ab8c50716a9093414e","size":21758502,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.4-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330659,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.303","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"e03edf1562de2d46ed9ede9b2090c8c67c694c22dda9caab48a7b3de7bbc994c","size":84893404,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.303-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.29 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.29)","libc6"],"sha256":"037ac33738434a2134563d40a0b20811bb4e01543bf25a16d700f769e1117470","size":143502,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.29-x64.deb"},{"package":"msodbcsql18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"b03047121eb77666ab31d842f1b5e7abf0d488d4964de97cd7864296312c5058","size":751576,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.1.1-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"7e1318fbdb8cb45bcda27e89eb70503024856fc6dd746c6ec4afaec7583e357d","size":13151206,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-Ubuntu-20.04-x86-64.deb"},{"package":"moby-compose","version":"2.4.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25900,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"a44fe5896d17c913708b1ec073a27b3005e06e2da4ce1bcc4e9d66105deaf0c7","size":6553632,"filename":"pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"89ac9a18542ccbf905a024567e4b112ac7ad87fe01341b88f36076dc3aa42cac","size":36608,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.30-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.414","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"a74f1f420d43895ed7672cdaa10c34e6061f3794203c21bda1163a805da6003d","size":47689264,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.414-x64.deb"},{"package":"aziot-edge","version":"1.2.7-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":24498,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.5-1)","sed"],"sha256":"be275ac3efb940ce9813ec539b4d71deb49f1308890975b3396441ec15bb0bf1","size":5801232,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.7-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.420-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192811,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.420","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.26)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.26)","aspnetcore-runtime-3.1 (>= 3.1.26)"],"sha256":"2559bd4f2f5f56aa43038f36b6c6ecd62e80f2f7e7b2c42dcea35f2ff57c4393","size":49628712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.420-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0edb21dea4dc5410ef2d5eb293973ad3674cf78a0c2feca897d8b78de2bf1be0","size":3521342,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.201","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"f76fd2500bc24f7d149bc04898c38b7739855f89083f9ba6bdeb608be077e336","size":91822146,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.201-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"38f353af5ed7d7fc336527e53b4a000a63e832d9aa2431ab9c6cf0343ee7cdc2","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.3-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2453,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"01ff7a8f22ae168b292f2ae2195d5ca245ccfcce3731a668d2297d688b48ec55","size":600674,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"caa042a6bbd325c7bbb6d43906cc82643139192e294081d965ab9f01fbdfa099","size":2134180,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.16-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"2b0162e4c5436de0e1d77bd3983f4c30980d6e0f9082b4605bde0b1dcedf0edd","size":276220,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.13.1.deb"},{"package":"mdatp","version":"101.18.53","architecture":"amd64","section":"devel","priority":"optional","installed_size":161906,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"81461dc1ff36d153bd25ffe1df4bac5b86d0c1f04dfaf51bc88983cd5bd71c1e","size":46555298,"filename":"pool/main/m/mdatp/mdatp_101.18.53.amd64.deb"},{"package":"mssql-mlservices-packages-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":930206,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Minimal install). Provides RevoScaleR, sqlRUtils, MicrosoftML, olapR. Excludes pre-trained models","depends":["microsoft-r-open-mro-3.5.2","microsoft-r-open-mkl-3.5.2","mssql-server-extensibility (>=15.0.2000)","microsoft-openmpi (>=3.0.0)","zip","unzip"],"sha256":"e14ac0e6d687739a1e3909989000a25fee5d8a9929b48e39dd78f00943c6f469","size":315570216,"filename":"pool/main/m/mssql-mlservices-packages-r/mssql-mlservices-packages-r_9.4.7.958_amd64.deb"},{"package":"moby-compose","version":"2.0.0~beta.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":24812,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f56dcf1e37a8142f372a00065d6777249c2824527082902abe2edf9c6a99ce57","size":6150688,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~beta.6+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3568-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7740d9dabdc573fd79a667270286de40d4e7e228ac625b13430c6817329591ba","size":210162064,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3568-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68340,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.14 Microsoft.NETCore.App 5.0.14","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.14)","dotnet-hostfxr-5.0 (>= 5.0.14)"],"sha256":"e4586a6c19e25f8de85705e8eba701d831528a41af4802f56be25a099b6a69ac","size":21997426,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.20)"],"sha256":"eb3e6be4924a022cd556e69e57c659224958f95923f07291797ae2dc163b1a85","size":5771624,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.20-x64.deb"},{"package":"omi","source":"omi","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4932,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"50b375bd6daebc0d958bf2e40b4d1344d0d0e60f33a96fe9047fed28177a7978","size":1916714,"filename":"pool/main/o/omi/omi-1.7.1-0.ssl_110.ulinux.s.x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.19","homepage":"https://github.com/dotnet/core","sha256":"bf3f3c369ee7c8d2ec6a8b943cb33d6ebdefa6c7a9c10da16bc10c6301984c24","size":41926,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.19-x64.deb"},{"package":"mdatp","version":"101.23082.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":411025,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"6eb534b0e23b061644bf6b11a6eaeacc59e7f44ca5afba33a505f3950ebf456f","size":150354446,"filename":"pool/main/m/mdatp/mdatp_101.23082.0009_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2630-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3b3068a6c3dc8569dfe470d4d49907b94ccc0b26daaf5ea75c1b14866374b5b0","size":196791632,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2630-1.deb"},{"package":"dotnet-host","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8d6bc7c7136b190c4be6ad8166c1fc434b7b5e01b1cdb92de4ff74011784112e","size":52610,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.16-x64.deb"},{"package":"powershell","version":"7.3.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172244,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c4ddfbad0231ba18ad70571c4c5d69f5a2dd5f7834054737ac6bb4089d83317e","size":69188746,"filename":"pool/main/p/powershell/powershell_7.3.8-1.deb_amd64.deb"},{"package":"servicefabric","version":"9.0.1260.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"06efd5242831d6cbe0ad52c5f48c8c7b8f351111866a2157213bea352bf751d6","size":219809800,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1260.1.deb"},{"package":"open-enclave-hostverify","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"eac91b2aeb9a9d5d65bfc3bee92bc182b45a1dc36206565b9e1a29991510cde8","size":838576,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.2_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.418-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189686,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.418","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.24)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.24)","aspnetcore-runtime-3.1 (>= 3.1.24)"],"sha256":"110ed42ce693e9e87a8d262ccfb4890258c1b9c67aa74289a75ef05270284c70","size":48701804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.418-x64.deb"},{"package":"dotnet-host","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ced1920acd3fa15e7b196570f2a8ccb7f7b5f190d6f54bef6542f5812652647a","size":52544,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.10-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.524-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228636,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.524","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"4337dc8d667486f84b352f6ed5191439e4eae6ce9e7053c113ba86f6ea20dbc6","size":89347104,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.524-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.9)","dotnet-runtime-deps-6.0 (>= 6.0.9)"],"sha256":"43fd3fccf39777add0f20b110264ad674c51db7e71cba095e694e45fd286b195","size":22757840,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.9-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124351,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c6294b5e3f4ccd0be66fbbaa85c712a6e8ea40b6b1ef21b2c0fa75665b2a2bbd","size":46492464,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.5-1.deb_amd64.deb"},{"package":"az-dcap-client","version":"1.12.0","architecture":"amd64","section":"unknown","priority":"optional","installed_size":928,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8f8b8a97e62e5e6c96737e6ad5beebb6cf72ec287ff91f22dbd012de8b3b0c3e","size":157348,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.0_amd64.deb"},{"package":"moby-compose","version":"2.0.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25308,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"77efca81480ca14296bb9ee2431243f2f7a1f4a99e0416de54cd6a09affaba5c","size":6258904,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.417-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189683,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.417","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.23)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.23)","aspnetcore-runtime-3.1 (>= 3.1.23)"],"sha256":"c2eb73259d21d048a36a6dd1a94b491b22d803066efc0ca0416daf3a4aea8b27","size":48794952,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.417-x64.deb"},{"package":"aadlogin","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"a0fc2406eaa9ec62c488c6663cefe2d8c4ed0422d7c0a5776dd8fda173ebb2c8","size":409538,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015090003_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3904-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fce4415081b2014454c7e0e09b55cb0c4518ecdfdfa96e6b7e7e5054b0548a9b","size":210976936,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3904-1.deb"},{"package":"azure-functions-core-tools","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fbd61709f8d36b229cc8fefd7fb657958c6e05a60cc63cce0e8e1c61bfe2e267","size":156055452,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5095-1.deb"},{"package":"azcmagent","version":"1.30.02313.864","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"217334ca96338070b7e7592e98eebff6de450b154e79b095fb77956269d08bb7","size":54191138,"filename":"pool/main/a/azcmagent/azcmagent_1.30.02313.864_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4865-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e5a1b29838b4bd994f116abd7703c5705e0e88177b0899d91f157b8592ed1864","size":126081380,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4865-1.deb"},{"package":"iotedge","version":"1.1.13-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22410,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.13-1)","sed"],"sha256":"5226e164dd8e0b6318a9c83ebc12ae4b7f10dfbf1da6b489616c328326d2a17b","size":5365236,"filename":"pool/main/i/iotedge/iotedge_1.1.13-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"dfb9214017c725b2f2857bd83da980623a9136e48905375df61319b1ccb12ec1","size":3531316,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.12-x64.deb"},{"package":"blobfuse","version":"1.3.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":32438,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.6 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6aede32ccf34dbfd76bffbb270a4fe2b15a2f2bf1f5bf8ea4fec63f80f9081eb","size":9324526,"filename":"pool/main/b/blobfuse/blobfuse-1.3.6-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"0e7f8c54b3dfea3b702f365b5a3e6ea6d8cf4a7c4662060468bdc85b7ba5bc0a","size":3510880,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.6 Microsoft.NETCore.App 5.0.6","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.6)","dotnet-hostfxr-5.0 (>= 5.0.6)"],"sha256":"4df8bd5483874ceecce6b637025073d3b22786fee9ef4af2dedb232eed5873e2","size":22057276,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.6-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.517-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228837,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.517","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"e6e6d81c8eaa8b4fb732e5f7fdac15e177c239dbd031a175b97145ffa6f0b786","size":89500922,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.517-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"b80fa237cab00252cc80941d7c912bed0c6565891b9ad4a41ebb2641e1c138a8","size":2133678,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"aea9bbfadb50a1d585f155e1288b96a271e5323745a8237804d4d1ebab50e5fd","size":1885624,"filename":"pool/main/o/omi/omi-1.7.0-0.ssl_110.ulinux.x64.deb"},{"package":"mdatp","version":"101.23052.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":338816,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"9ab4f42422cc0a05edb15b77e86a6ce02a81723fa78cccb88cd050252d63bb91","size":127189952,"filename":"pool/main/m/mdatp/mdatp_101.23052.0009.amd64.deb"},{"package":"osconfig","version":"1.0.5.2023013001","architecture":"amd64","section":"devel","priority":"optional","installed_size":5153,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"52ba97e9735618903e85a50294eef44fa930ee476077d7416a4e7bc2ef40f1fa","size":1851528,"filename":"pool/main/o/osconfig/osconfig_1.0.5.2023013001_focal_x86_64.deb"},{"package":"sysmonforlinux","version":"1.2.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.2.0)"],"sha256":"39e135f6689b247a432965a4637d4ef33b8e247185a84b6e22bb88cf85f941f3","size":1763970,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.2.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4484-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"607fe4f1b916dc219c50db78982467537da3ff06c52419690be4be120dec1800","size":211180224,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4484-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":759,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"d20d401ffd04570d660e9519f01856af426e76e43bb0dc881e02089375f77b1e","size":114856,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337378,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.412","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"dd362800c334d523de07ad66ee417fc7bfb3719fae9e47a6db056bc550a0f071","size":86785310,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.412-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.20 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.20)","libc6"],"sha256":"f39bd912468456be7292f870fdff2c06fa5f89117d240e2b4ef8362a5b3d1005","size":143576,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.20-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.25 Microsoft.NETCore.App 3.1.25","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.25)","dotnet-runtime-deps-3.1 (>= 3.1.25)"],"sha256":"a0d0d0fbbab9b9daf11923e9cbaa91f9501881a2a71235ae79038d8f46cc928c","size":21306090,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.25-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86958,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1f0df1f218007cb1f051cc4fd80e79ae38a1a9641be0fa71ae2f754023bea6b5","size":20689626,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126664,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0bdc48a71d6515f866fedbd9aef11869979c3fbb1aac470b1ca8a4a366025d20","size":47817962,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a76ec8cf376965a2fd15d5e058801940fea64b84d1d1806bb27d647b8d26b25c","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.22-x64.deb"},{"package":"msopenjdk-17","version":"17.0.4-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323723,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9a19875d9ceb75e0a53b8d891e251d2f3e3b5e8fe2d8212958dbfae9d9a6fcb5","size":191767862,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ebffdfbece2e6a15cb8ca36681eb25fe4af0cc3a0914b468c97f5dde27b1cf1a","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.2-x64.deb"},{"package":"codespaces","version":"1.0.2705","architecture":"amd64","section":"devel","priority":"extra","installed_size":94759,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"f7d3d255d28501e3b044c629a5f5c124481d1752e2d57dc3f3e8a09f08cc6a01","size":27038796,"filename":"pool/main/c/codespaces/codespaces_1.0.2705_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fdab3fb00d13808ecfbfc38615abdbfd719852aac2af5244d4d96f650fd7a6d8","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70794,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.3)","dotnet-hostfxr-7.0 (>= 7.0.3)"],"sha256":"872025cfc583a1011dfcab995b870b320c02ac0bb639fef2473da68193d04de1","size":23196546,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.3-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.413","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"6f9a124784e3653bd9e94ca6e5a6bb334876bc0c8c311c6ba9b8f56378175576","size":86794698,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.413-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":9002,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"44ad702805647f92be8eb885950c28ab5bfc886b5c27a7106adf069acc3436ba","size":950516,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.8.deb"},{"package":"dotnet-host","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"caa3845eeafc6c216ba279ff4646785cf2fa433e7927a3183cf89083dfdbfd35","size":32472,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.28-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2602,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"115f317b11d6b989cb7e2ca91a93378e72e1c0dd5c66b0b6e3302ba185756356","size":647158,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.10.0~beta.1-Linux.deb"},{"package":"azcmagent","version":"1.1.20287.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"046ccbd2a8fc63e22f6c1e35ea12d4cf7989680f43ebb1f884ec485797248266","size":18254798,"filename":"pool/main/a/azcmagent/azcmagent_1.1.20287.003_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.1)"],"sha256":"c085c0275e7e0a416d98c5514c08e43e1842f20f97f5d7bc2f1b647f442375fe","size":1496790,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.1-x64.deb"},{"package":"procdump","version":"2.2-17219","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3c7d9ee6832a137f4f0a331bc0c9e002f544df6f90c38f878203432e70f78320","size":1649314,"filename":"pool/main/p/procdump/procdump_2.2-17219_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"767a00e324ffcc296021afd1aecdb3263cbab0d79bdc33dbeadc4925f1967215","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.21-ubuntu.14.04-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"e5638610bf3a4a5a45029e91edba0ecc1a6d45d25e733014a4a1ffe927a34aaa","size":2569446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.8-x64.deb"},{"package":"moby-buildx","version":"0.8.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"75b1a3ddf85ec693e210a5c1c95520e0bd0daad97855b83e71d1189036e7e8a6","size":23115808,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.1+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["uuid-runtime","libcurl4","openssh-server"],"sha256":"f0ce33c696ef3e43db1863ece443bd9cf05a147e9ee1895de7a8bf02c10f89e2","size":408454,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014460002_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.4 Microsoft.NETCore.App 5.0.4","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.4)","dotnet-hostfxr-5.0 (>= 5.0.4)"],"sha256":"23b35e8f0806da0400692a6fccced60b646c963f670b4d4f0afc611741b61e53","size":21666482,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b5292e77dea925f8f42cebefed36456b7d445550667e4e2f10c421800243eaf3","size":2802,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.11-x64.deb"},{"package":"moby-runc","version":"1.1.6+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"13a329ff5144bea7a53279c7817d93ecaa809b54fe6fb3446271a801ecbf2f75","size":5765270,"filename":"pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2931-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"24469122e8d18f39a1cd81536e686e64a4db72023381f7e6100aa28dbf46843c","size":189901280,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2931-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"77c33e5cc79a5e787f2ea52d4ed1d5b488fa1b8a75bac71f89aa7dbb66884172","size":224546532,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4585-1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.204-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.204","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"f201477cbd121fc19972135c96df8cad66f1d032cd6674b3cfe7bfb3dbfd7a30","size":57052168,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.204-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2798-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1180664cb2b0443c917020035cbc9afbe6c2f0eb02b44b368fdaa06b6e9c9ca1","size":199570824,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2798-1.deb"},{"package":"azcmagent","version":"1.5.21103.012","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"ae286b111045800a34714dd0c235ad2c1332f0427cd9d4efb20bbf8b966b77c6","size":18200878,"filename":"pool/main/a/azcmagent/azcmagent_1.5.21103.012_amd64.deb"},{"package":"blobfuse","version":"1.3.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":32299,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"4f2cdf1424188cef2f2c9d84056518a1aa605f70418cfa49db413378f3828dff","size":9275670,"filename":"pool/main/b/blobfuse/blobfuse-1.3.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.14","homepage":"https://github.com/dotnet/core","sha256":"90ef0d4bdf9275dbf138490bd2fc308d7291ea1c4cca4428b518c9d34f9235be","size":3412096,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.14-x64.deb"},{"package":"dotnet-host","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f6f7c2d47dfb5611daa5362c784b4a3132643affa2af8eea2d73d2c616ebe3a","size":32848,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.10-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.15)"],"sha256":"1ba5241e0921b49c5b79ca6352cb9471c9f52404fc781d619d0c500af9309853","size":5771540,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.207-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222088,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.207","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"d1bc258e7ce50cf0032c1599dc4953b2d3053a25b70c55999294148142cf144b","size":57439210,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.207-x64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11)","odbcinst1debian2 (= 2.3.11)","libltdl3-dev"],"sha256":"af92e472b5811d93ee143d74f84e36035d54e879c3e983c20c1ce831ed3c2661","size":42092,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":192266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a3aee968950be1b9dc7e8900ce2ac8537cc349dbb5f8c9ec4147ae5d6c704a1","size":69296044,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.8-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.23 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.23)","libc6"],"sha256":"19334631da0ccb215cf05921be73263251b86a3928a49b22dfd2eb3a316c4233","size":143478,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.23-x64.deb"},{"package":"osconfig","version":"1.0.3.2022061604","architecture":"amd64","section":"devel","priority":"optional","installed_size":5338,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"b90f458ed9a31c68751e7c911339b88f26934637f15f0c4668a74b83d1f5a8c8","size":1873930,"filename":"pool/main/o/osconfig/osconfig_1.0.3.2022061604_focal_x86_64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":46224,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"d17612518e9da1676b1d7ca4e4a5c34cdf0112034e2147c84c6c968f47d5ef8e","size":10168922,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.17 Microsoft.NETCore.App 3.1.17","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.17)","dotnet-runtime-deps-3.1 (>= 3.1.17)"],"sha256":"a77fe36f2576b841a6c97d8ff34fe371b3a5e99d5dcca6e7857ddd8e8f644b12","size":22014644,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.17-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.10 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.10)","libc6"],"sha256":"d3b59efb3cacce21964eaed142cfddcf9ee089bc03be959f6668cf782f85ab42","size":140290,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.10-x64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"0cf41bd4984948cf0efeef593c8455ef9085dfc7797ceac09c93a32d5d633588","size":26991484,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-3_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.0)"],"sha256":"7afb956081476567eaf4cfc501d80e36f45e7f5cfa632b9bd3f5ae11164498ef","size":6597988,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.0-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"03b6bf32043878a8795761446606057d6ebc4b983189e373e11f98d4ecdcdd7a","size":163448,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.0.0_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70844,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.13)","dotnet-hostfxr-7.0 (>= 7.0.13)"],"sha256":"8e1eddfe95f1ff945a99e4a7320e89168791bef823d2c208a94fa337198ab7af","size":23207954,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.412","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"9552616ce32bdb1cb508912f5a1658fb837908f5a8683a4dfe218c96afeb7e72","size":48448546,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.412-x64.deb"},{"package":"dotnet-host","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.23","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b09d6cde7441c2eaff5b52f2946dbd20f13c27277b7882b083db362c5c982ab4","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.23-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.119-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.119","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"b86c178e4a12c74704dcf88ce50509c5464abb2f0cb5647d42285851814ead77","size":44221936,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.119-x64.deb"},{"package":"moby-containerd","version":"1.5.14+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":107149,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ae122dadaf5ec4af7b7eb176cd30cd25f304b7bc3ab375fe98a0c4a4d195a652","size":26328750,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.6.21132.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7848a2e2af66bf781f9ed6e97383d75c91572e8ae78507411d46a15a9b2dfaf2","size":18393252,"filename":"pool/main/a/azcmagent/azcmagent_1.6.21132.003_amd64.deb"},{"package":"moby-engine","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97192,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3b00225c2da675b9aec9bb564c96f28f1324e1e0b811d85a9f92258982cc68f4","size":22796342,"filename":"pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"sha256":"1cbb09e808628fc0f6b3c8d4190bdf72aa4abeae6bee553fb279eaf530f3d5ca","size":247000,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge-3.6.1.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"40054404658f583020b4fbbe0457de6cfd4b0fbe4bf0ee29f1f7ea0489023d5b","size":99742,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11_amd64.deb"},{"package":"moby-containerd","version":"1.6.16+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":123874,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2d48ceb4e5a1342de32c5ff1b522eead21f1738d782785a3469b18087d69e815","size":30983354,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":320277,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.202","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"9c772c540a3c0f2d381f43e8c957d125bc60eaaac26bc03df64af37c16b295a9","size":80345074,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.202-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2c6cfbcac249976eb38350d6ab9bc5ca5b7e24f9912fb16b0ac5183439d03a06","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.3-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.13)"],"sha256":"715b47ec285b237f848de3812c6ade82e8e145506742445e4e15679a94a3d3e8","size":5770616,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.13-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189425,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"0e13c8b61406fd33189984cdf15825163d9ad9efdd6ff0eee3a59f1a9f87602a","size":47662712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.403-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.13 Microsoft.NETCore.App 3.1.13","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.13)","dotnet-runtime-deps-3.1 (>= 3.1.13)"],"sha256":"e68e3308a9fb85ab39ed98538604c0f55f7906176aee67cd2ea965b744ca97c4","size":21727966,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.13-x64.deb"},{"package":"aadsshlogin","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"27ebc6dbdfbacb230152da41b1fc87b66a5b37a8f3b72d3def70de0c249906af","size":283634,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022090001_amd64.deb"},{"package":"dotnet-host","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"aff93d6991b1b40fe3cf237917bbcfe051796b8499d0109d601449fb05cc2f92","size":32874,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.12-x64.deb"},{"package":"azcmagent","version":"1.18.01965.166","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"6222db0bc7e2b874193d109b88d420ad3f39198caa0d013a314e1ee43763c739","size":52442524,"filename":"pool/main/a/azcmagent/azcmagent_1.18.01965.166_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.403","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"02fc8659df6b8072d12a3fe4757d0e75c91ef0f4829edd926f0766737c5d315d","size":108194782,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.403-1_amd64.deb"},{"package":"moby-engine","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106338,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"05a18fb71276a063f8a6f2ca216bbe3cd6cb2bf1731ebb1ac34292d4b8e6d23c","size":22708988,"filename":"pool/main/m/moby-engine/moby-engine_19.03.14+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312591,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.104","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"966102b1975f5a371ec6e70fc87181846d1ee81bd4eb4747a439cfde6b840022","size":77930174,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.104-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6a06548c60acd80cbeae521682d0257bf2d19e04c8b830246ad966b9e7a19c9","size":156768584,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5274-1.deb"},{"package":"sysinternalsebpf","version":"1.1.1","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"1dd9e60dfefcc67a0617b864467b91237043d0ec1bff053d6d09a147aa33bcdd","size":675114,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.1-0_amd64.deb"},{"package":"iotedge","version":"1.1.11-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22406,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.11-1)","sed"],"sha256":"b307e4f510a3425f3d3282ad0763db7cc7bd1360e41f3dc3548ee8f033c0b1c5","size":5366952,"filename":"pool/main/i/iotedge/iotedge_1.1.11-1_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":501,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core","azure-ai-vision-runtime-image-analysis"],"sha256":"2c5191dbe6fd403b2602052e8c8eec335fe79b4a12587ea32cb22d39a9cd8331","size":77352,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":125669,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"166445aebcd9332fa928bafcd666cee7e4e8d59b126b602d055dc76253d2381c","size":31518918,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0abf0aea546c03a27a2948b0ef5f51f2eb6120b39dce94983a2f214249c7b7b1","size":2568446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e9cf6178ae45f187173f1f806e1889cbcf87fa9e55fb4658ff1ef0617d2de25","size":68352544,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-host","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.9","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4c6621e18fbc3baf2ba5a45334b8b86073e0a3a3afc20af7df539d34c3e4e833","size":57178,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.9-x64.deb"},{"package":"dotnet-host","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.15","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2d084d26ada01ddc7eb08809dd498002f112670c8aee58b122200cce86a8ac00","size":55902,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libpam0g (>= 0.99.7.1)","libselinux1 (>= 2.0.65)","libsemanage1 (>= 2.0.32)","libssl1.1 (>= 1.1.0)","libuuid1 (>= 2.16)","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"c9c89c8d6d55e1887e3fc8b15252850095c7ad10c19bcc78d1fc21c729c4a163","size":287578,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_amd64.deb"},{"package":"mdatp","version":"101.60.93","architecture":"amd64","section":"devel","priority":"optional","installed_size":207852,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9faf6bf463dcd6cb467eb3b887b9f5af1d7c5a0e05126b989f5c7c640db84567","size":60945336,"filename":"pool/main/m/mdatp/mdatp_101.60.93.amd64.deb"},{"package":"azcmagent","version":"1.24.02147.540","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"572a26cd0e32a9d21ad0c6df406349110bde36150426e0f78a2bc84f532f51dc","size":53624042,"filename":"pool/main/a/azcmagent/azcmagent_1.24.02147.540_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.8","homepage":"https://github.com/dotnet/core","sha256":"5a6723aa7323f676d0ec8465fe3b602fd6cf8adeb4eb3116811624a140b876ac","size":42452,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.8-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)"],"sha256":"8e7550023fbc57e74b2c137731f2dedf9dc8c0fc1b106b9d051e0dba8e97e862","size":5099542,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.31 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.31)","libc6"],"sha256":"56ef9743de9e2daf7a37873c7d8df3b022354219ec5f8f53a7a5c02138ac405f","size":120744,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.31-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337159,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.406","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"6f0964aa293e16b62a09a7c9729f03739dd5f5580702abafa2836d02bec26014","size":86710362,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.406-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.18","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.18)","dotnet-runtime-deps-6.0 (>= 6.0.18)"],"sha256":"bebae5e400edcf0dde125ac0be4a050443701904abc62d951097ea836865b347","size":23003214,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.18-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"becf3010aa8513fac0cbdaaf3173b2fc4363c1d6e8edf0b0db6762c3f8fbc640","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.16-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.17 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.17)","libc6"],"sha256":"5a5023c3892045065a46cb3487fb406bfb297e57aa4f7187cdeaa64181e4d82c","size":140426,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.17-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.7)"],"sha256":"5c60c0e32b4411b290d7a0169ef42fde0207876aead9fbbf9b42741bc27e12de","size":6606224,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"9608dfd66efa12ac140fd22d6b0ae1b83d324bcd0b6a5f17aa744177ea3d5140","size":3517494,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87618b484f3f331246a154bd7f60d37cfd9886a5a387b60040c554ebd698ae38","size":2644,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.12-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.23)","libc6"],"sha256":"b0fd147129b2e43d6f372e0ec8672e9b240b80972102582921b829282cc7bdf2","size":142344,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.23-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.6)"],"sha256":"fec1c17c7c876314684490ca6a0b6dee6a6c4113d5116e7a8cdce9bec436f8f0","size":5766564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.6-x64.deb"},{"package":"aziot-edge","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17499,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.3.0-1)","sed"],"sha256":"26d6e671ead2589047577db8abb90fa908d34c8431346bb6ceef761b546f7d08","size":4123540,"filename":"pool/main/a/aziot-edge/aziot-edge_1.3.0-1_amd64.deb"},{"package":"codespaces","version":"1.0.2579","architecture":"amd64","section":"devel","priority":"extra","installed_size":94383,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"de7608b5adef8a63f576ea96802f680897932e37f8d63435f586c2442e5a2ebe","size":27042980,"filename":"pool/main/c/codespaces/codespaces_1.0.2579_amd64.deb"},{"package":"moby-buildx","version":"0.5.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59965,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"6010b29f27c571b60622ed6a8e11df33fd1630238ba3158454d60426db674df9","size":20595128,"filename":"pool/main/m/moby-buildx/moby-buildx_0.5.1+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19878,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.19)"],"sha256":"a5542d3b15bb4cf1dcd16c3a80da543e0bbeabba37be690758d5e3d8c3af69a2","size":6613598,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.19-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.10)"],"sha256":"ac987094f8faae67945a87a069a49e989972c16ca7cc9612fd2d5bfc739b9832","size":6609196,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":122140,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"6f526e67a6e04bd738ed8460f43ff18ad6f98742cc30782c66aa5e77b47237c6","size":33277610,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.19-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317712,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5dd9d213017e1885ba6031e313ee2a7fc4779f757e08de981cee0afbbc318a31","size":194122530,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.19-1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.32","architecture":"amd64","section":"devel","priority":"optional","installed_size":97,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"81fddeaeddf948e1b22963d5c9fb48d50368a5f8d7c208814726b546f31d2105","size":25252,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.32.amd64.deb"},{"package":"procdump","version":"2.0-16795","architecture":"amd64","section":"devel","priority":"optional","installed_size":10696,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f69c54d78708b84c27e90600fbc50a11392b384a92acb18e522d236d38113a61","size":1645762,"filename":"pool/main/p/procdump/procdump_2.0-16795_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.16","homepage":"https://github.com/dotnet/core","sha256":"a2f0195941608d63d37b1e982dcba2093632e5110761eeaebb8a420789439188","size":42294,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.7","homepage":"https://github.com/dotnet/core","sha256":"d26aa9f96af6dd3fee9bd9e45e6520e31920bf3850eb872956da82a508c9dcbf","size":42692,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.7-x64.deb"},{"package":"aztfexport","version":"0.13.1","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"06e37c42e9ad8c3c14e99616d7a2f4ec05110017d81828bd93d5cab8663d5619","size":11882146,"filename":"pool/main/a/aztfexport/aztfexport_0.13.1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.2)","libc6"],"sha256":"835aa82ef1cd149f912a69a997286c5e44fbb2dec8c7ae5343cdf76d3afee16f","size":143898,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.2-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a2133041f7d9a6ee5ba65f79a4e146dab634865237b86cb9c4f15811e5571f9","size":2652,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.22-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.16","homepage":"https://github.com/dotnet/core","sha256":"ae49980e30d863cba720f34bfab96db9cb6966c22cb773685617c6f47b5175cb","size":3418406,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.16-x64.deb"},{"package":"msodbcsql17","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"e8b30d2949b6c5411825eab7996630498b5b9aa8a4f4affdeaa204fc07c0c15a","size":743228,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.6.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17468,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.9)"],"sha256":"5f4d6ca15089702f0247a710cddd9a99ff15a7129b1b3a98e692b6af500818dd","size":5768454,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.9-x64.deb"},{"package":"mdatp","version":"101.94.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":301191,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"03edc9a54c09ababa41a5f3886a3af2e1114b96c10cdf22eb2bd6c344758ed68","size":117484794,"filename":"pool/main/m/mdatp/mdatp_101.94.13.amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"6cc25729cc609a73d6aaf7940d0a2b66a6ed1d6414260343739fe5c10d863bce","size":1836,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017820002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213643,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"282746eaaf7422e389c9f2ab44aa148223c2d96e1febbaffebe86d822c77527f","size":54843396,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.104-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.11 Microsoft.NETCore.App 5.0.11","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.11)","dotnet-hostfxr-5.0 (>= 5.0.11)"],"sha256":"7bfb09b4a2578ead902561fe49319372f503ed5957daddb04ba30588f21a266f","size":21471080,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.11-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.29","homepage":"https://github.com/dotnet/core","sha256":"88479611946f8cd8c44c834899a935d356d2b6baca8d6ea9d7a2ee0e00c23f7f","size":42066,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.29-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.15","homepage":"https://github.com/dotnet/core","sha256":"99b72ef9f7882df88cebf3fb864c74a7ab6b42545cdfa2eaf92bbbfdd541544c","size":3415008,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"0379d716bb7bfe19bca7742d179ad1d15037c9ac15425b6978bd20d28c2d0ee2","size":420006,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.018440002_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.4","homepage":"https://github.com/dotnet/core","sha256":"3ca5ea3cd2a93dadf7e96b86ffbe70c8bf568f03337c8b0150503435da5722b3","size":3413198,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.4-x64.deb"},{"package":"azcmagent","version":"1.28.02260.736","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3c15e96bd33a66432e397062305c47f62d7e29cb1daca0984e5c8e7d01e51a43","size":53738666,"filename":"pool/main/a/azcmagent/azcmagent_1.28.02260.736_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.2)"],"sha256":"ec0cdcc4cf6ff7aa4f9709cd7b7f1c8177ae4a01acd69b9ca53d1cc924c0826f","size":1516930,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.2-x64.deb"},{"package":"acms-client","version":"5.25","architecture":"amd64","priority":"extra","maintainer":"dsmsdev","description":"ACMS client for dSMS","depends":["curl","libcurl4","libacl1","libuuid1","libxml2","gnupg"],"sha256":"51f54b378f67bd2fae11cadebb6da932d3af9c857f5802b69eede907d5d15b2d","size":984602,"filename":"pool/main/a/acms-client/acms-client-5.25_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"bff2289dfed0fb7f90d969d5bef78ce3dae4ec3c845d4547e315b3e74e018b8f","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.11-x64.deb"},{"package":"mdatp","version":"101.45.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":162513,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"135aaef60f21e0bc01e5705e4d42ad8a6f2551718b6d51f4bb5aef41e2650f4f","size":47102476,"filename":"pool/main/m/mdatp/mdatp_101.45.13.amd64.deb"},{"package":"dotnet-host","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9fae6c1552491f0df64c060a52d6a631582aeee38bfc5597edca6643c1b2d915","size":36630,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.25-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.10)","dotnet-runtime-deps-6.0 (>= 6.0.10)"],"sha256":"25d420ba348172b128109c37e20790dda6d089a335c200635667f52362d8ccb9","size":23009270,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.10-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.8)"],"sha256":"fe093d8c965519050ec012a273b54e80590c38b214e9f98ddeadd10d89a615e6","size":6605452,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.8-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"65b5db317c082fc2faa9894915697e991014e253c9eda7505f06fa19bff49094","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.26-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e8a462ade9d000c63ea23567d2c0f3ff1d44755e9827adb7e249dca5efc787f3","size":167356368,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3188-1.deb"},{"package":"dotnet-host","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e47b8abe42da934b27969dd4385546e97f8c2c09d83ff3bceb0e28e7ef15d5dd","size":57218,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"05b8dbac0076ac80c1abae45fe66cd04a9ff9e621b22efdfe45fd5301826708a","size":1306680,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.7-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"c404c8d4a732f60814a1cd15730e7f38cbeac70aa46e936dbe8ee7a6c20b1755","size":2567646,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.5-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"900d02b0c6113ac51a2410488ef4f46f6fd1b438f18e5c83a0919ab645622d2c","size":1315550,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.5)"],"sha256":"d04d176d380a33e36e3588f7855317213ecd0020decd6326d5bd6076401ddfa0","size":1513034,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c0cb7aab087fa409889a0da328d16c3f2cf97d848d329142bdd3deb1b1e8e05","size":70340358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"1.11.21253.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"04a8677f6b2b2a7369f174dab1fc369e2e060bdef902ad00973de3fd6402a068","size":49555540,"filename":"pool/main/a/azcmagent/azcmagent_1.11.21253.002_amd64.deb"},{"package":"moby-engine","version":"19.03.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7a951c2a0612ea1c189cab2f2279fa0628b0fc37077de48b6ccba00ddebc4a89","size":22526996,"filename":"pool/main/m/moby-engine/moby-engine_19.03.11+azure-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331351,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.307","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"cbd5a89006370129d484ecb59bcff70b18644c2bfef2da621834a0d02d15721d","size":85122482,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.307-x64.deb"},{"package":"dotnet-host","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a8914e4e15052ff97b39824900a87f0538d3d5d56afeac61c380149294493c5e","size":52532,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.17-x64.deb"},{"package":"msalsdk-dbusclient","version":"1.0.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["microsoft-identity-broker (>= 1.2)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"d1d1eee986c6181db1937e2a44eeb32f0c53aa5f1397c978f06f0ad15d147c50","size":9930,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"30084161440d7cc15252df8e8cb53c6e653147e16de3df7b1ee25102a2bd251c","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.5-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.7)"],"sha256":"6ed9010d53b22a0086294c5384801605284bef8d1e2a3429d5877dd6a4e9449b","size":5767600,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.7-x64.deb"},{"package":"dotnet-host","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7b4745302630fe0cf936c6e1b1eef87cf29db06de5a03d62b4196e472d5e305","size":36580,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.26-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc93+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19335,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ad97bc60927a1ee6045cb2db4bb36b983bc8f18092f82eebdb0b7f8085a65794","size":6436176,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc93+azure-1_amd64.deb"},{"package":"kevlar-repokey-test","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-prod"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-prod"],"sha256":"c7ff8b5f9532cb585cb50aea395535024cb9934c7e1219e3261f91f639543673","size":2500,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-test_1.1-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1056.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"72bdf3c72584eead823b7588b371262ea28b09d7d884ceb895abe84fff3f32c9","size":226518346,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1056.1.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.22)","libc6"],"sha256":"c5a1b053ad7cbd575809bbfab15fce0bd2ada12876d7a65583c441f0d95e311c","size":142392,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.22-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"e0a9923e22f6202245812d62a3cca02b524127bc7ed77840ad5d58ee33b8afb7","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022600002_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.17-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317445,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"ca210b6bd54ec06e3f7bea285b80df66e2054aa438b97b3a63223c8cf65701aa","size":193991608,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.17-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.200","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"54ad60c1a3413fcbfb5c9490adeb39a8884935b7dbc30324f279ba4091fee6d7","size":57258152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.200-x64.deb"},{"package":"aziot-identity-service","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"51f980280e4b34d1398bb78f0227cc020aa41cd19356346afafb21f24d6ad124","size":3862532,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.0-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"012eb465df8a50284c49d0e37940e4bb84a88600094c7b706e5b15ef724c1333","size":69447560,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.8-1.deb_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.4","architecture":"amd64","section":"default","priority":"extra","installed_size":27858,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"bf244b9c2ef285d31785405e1d6a9ef97b177952dace823330f8048e65012736","size":13148292,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.4-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.11)","libc6"],"sha256":"11d2256fef69f75655ff54b6efaa710980f7497d1ee213953881753cc4ec6be1","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.11-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.25)"],"sha256":"b3de39c43b81423eaeb7b2b4821152495d7e2c35461e3c1d089c4f2579930be3","size":5772068,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.25-x64.deb"},{"package":"powershell-lts","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0ee622ed63628b45ecd297847d068fd0f9ce6675cf82bc19c83f6bf89afe1791","size":69415978,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.3-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160411,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cb98c746e36a959a3fc1be9fd03ee2eba47d0f1ceebd3a6bb4a9b2afd91aedea","size":64879422,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.8-1.deb_amd64.deb"},{"package":"mdatp","version":"101.29.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":148771,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d584e20c8fefa3ba05135655f2416365e99fa078568a3144226eb592a935bd4e","size":43943754,"filename":"pool/main/m/mdatp/mdatp_101.29.64.amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.8 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.8)","libc6"],"sha256":"ac92bef47efbbde3ea36ca981cad17f3abde3b8145fb79dad3ec86d2f7a3365d","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a582fa1a887fd86b3f89437139fed370f37f8e1308581ca7ae2b9f609d4d9add","size":25986352,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec63ccc3628fd4e5e8013bddae353225110503aa7786fd6d9c1509aad2af3f2c","size":55874,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.10-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.5","homepage":"https://github.com/dotnet/core","sha256":"cd48ff631f943efeb568d7434e11095a4523a5ed11c26ad893c1640385ee15d4","size":42722,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.5-x64.deb"},{"package":"msopenjdk-11","version":"11.0.16-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f5b62099a636f842c0e90a9103c58fabb5c7784c94fd98d44161755b36e260ff","size":193647354,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":680,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.9.0~beta.1)"],"sha256":"ede9b0fd7cc154335a4a8c0e38326e8584d2f571a20e826f5eab08d2764e27e6","size":148154,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.9.0~beta.1-Linux.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"d5a34d329b246897fad6bb370f397682cc40e40ee6a331530beaa6dbfbdadc0b","size":361020,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.1.2.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.21 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.21)","libc6"],"sha256":"b64dbaf4efff1814b6653808020f98b1b0008f323af9a84fcf771e972d624b78","size":120854,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.21-x64.deb"},{"package":"moby-cli","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"56c45f3c9cf67943f5e2ea6a1d3b51eb7fb64437b6404c6b53e21e99a369f6f7","size":12155328,"filename":"pool/main/m/moby-cli/moby-cli_19.03.15+azure-1_amd64.deb"},{"package":"powershell","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"27ac4fa4f3e7f0934afb4883df21e572b3d9650e17221d0f3f288f250a92dbc9","size":68350538,"filename":"pool/main/p/powershell/powershell_7.2.15-1.deb_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"c278d3834aa12a985f0fc920610f3f8f59a1f223bd27115395f4c3d973d3885d","size":2588278,"filename":"pool/main/s/scx/scx-1.6.10-2.universal.x64.deb"},{"package":"aztfexport","version":"0.13.0","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"5b991791b757e7205e56bf05ed9942d8c4bd949d3cd8e862b18414924a4c78ab","size":11881750,"filename":"pool/main/a/aztfexport/aztfexport_0.13.0_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"260bdf499e815b7f8e4f85f5feeb15df78a07c39ce04899c12b856446f1b1a65","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1625.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"93590808e1510dcca63c0356c7ce287f5f4fd58de266252d78f498677a1ddfb2","size":219877974,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1625.1.deb"},{"package":"azureauth","version":"0.7.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":59271,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"660f183ab8d44e13e9c1755b4cb16fc38112f348ca67da470e585876b4c76770","size":19023014,"filename":"pool/main/a/azureauth/azureauth_0.7.3-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324342,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"56009bcf7b9c08524d134fc97b99611b05d96884feee1a6de79e1e0269dc13bd","size":164702238,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8.1-1_amd64.deb"},{"package":"moby-cli","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e59b8af8190363dfa05acfcb7d68ac2be9d2fc27b6d327cbba81c8f5de5dc7f","size":16397016,"filename":"pool/main/m/moby-cli/moby-cli_19.03.14+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19893,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.21)"],"sha256":"9a74c3e3e9c66283bbf52f3cc6706555ed222a77f5adb68be201ecc4577cd04e","size":6618446,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312463,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.102","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.2)","dotnet-apphost-pack-6.0 (>= 6.0.2)","dotnet-runtime-6.0 (>= 6.0.2)","aspnetcore-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"8392b43e50399f3ecb3bbcf3722dc0651d603fad91ee023a93f44249263ecec1","size":78141664,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.102-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312663,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.106","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"5d0cb323acfadabde60420dafc2beae59b9c7e50949be88df6c5c4fbfcc8a44e","size":77747042,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.106-x64.deb"},{"package":"azcmagent","version":"1.35.02478.1194","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"34ea6c2cfcbf593546d19bf6de0245008ba19c5f57d6562e7b9371792ae03279","size":55205234,"filename":"pool/main/a/azcmagent/azcmagent_1.35.02478.1194_amd64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"359c86bb4ef6fcb9d7aba0b4e52a26be110bb61ebd32ee8a3f30dc78604ecd63","size":21264,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.13+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317057,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f186bcb7e5329090a4df46ead70dda124429a977e408c6f1964d6c92f215104c","size":193475910,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.13+8-LTS-1_amd64.deb"},{"package":"mssql-mlservices-python","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":6168858,"maintainer":"Microsoft Data Platform Group ","description":"Anaconda Python for Microsoft SQL Server Machine Learning Services. Provides Open-source distribution of Anaconda and Python","sha256":"ff410d1eaee1c05e846b57a7125e7b1135eeceb44f8e46d21b4380abaaba0efc","size":1405022092,"filename":"pool/main/m/mssql-mlservices-python/mssql-mlservices-python_9.4.7.958_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"45b99186d653c5da137cb970f760ec552cc19e34867f0ea9538231de09167369","size":499988,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.4.deb"},{"package":"aziot-identity-service","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18807,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"c99435b96a6515f009b7fb5c80b871c92f5af551af132b4921b7097cc1d3b395","size":4024220,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.3-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.12)"],"sha256":"b942920b01885f1ba0980cbe3bee729b059b8f24a90069e95cb4dc2b74a30afc","size":1530422,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.409-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.409","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"abd49223df11a97d89158a4a6ea5de3a67d247d612913352086f8c7178405fb1","size":48416056,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.409-x64.deb"},{"package":"mdatp","version":"101.68.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":211880,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"f30d0cddb2341e50f82bd4a46e1b70a3608e134ab4ce03e894757c4b6e207a05","size":62043662,"filename":"pool/main/m/mdatp/mdatp_101.68.80.amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86241,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"280d0c96ffd04c2243f8dc97867a5f4244a862e38776c202d55daf9a4bfc47e5","size":20499414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17435,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.4)"],"sha256":"55f9fbaf87977ead5245675615f9587d512a55010d5916b9f8f728cf56214cec","size":5761980,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.4-x64.deb"},{"package":"mssql-tools18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"084728b16bcd4861296281290d731d22905fd298b6c2fd76036bf07314b6e952","size":211806,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.1.1.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350038,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.105","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"ee86e6651c1e00b627ef3f7688ca41c0090058df0c2508c638404e7bd64753c8","size":90637070,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.105-x64.deb"},{"package":"moby-containerd","version":"1.6.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125895,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"649ee53d05248a2f3807119389b0208ea7abd7a75f05219f6e6431767a140727","size":31599602,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.815-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241065,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.815","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"612d37eeb142fadbeaff254038fe55f184a1d68f8e1b92468f07f61e2da95d79","size":91759364,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.815-x64.deb"},{"package":"dotnet-host","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6a4b0bcc39800ee3b0afc3abc71e91551e1b91ee64ccd7af3cf27b6d5c9d58bb","size":32466,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.17-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3331-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"2853c3da2add0aecc4c72bd79a045acb8b235fe29c73e55b917fbcfd4e5612d6","size":208736172,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3331-1.deb"},{"package":"open-enclave-hostverify","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"5e644c718af535a268e77c82d77879dce7dd9541d158b1a199fa92b9a6fc608e","size":838568,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.5_amd64.deb"},{"package":"deviceupdate-agent","version":"1.0.2","architecture":"amd64","section":"admin","priority":"extra","installed_size":5423,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"42b39f5be5b2e5224b3b7f4b5a789a7791c941afdf264bb5dba99d06a317086e","size":1977950,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.2_ubuntu2004_amd64.deb"},{"package":"dotnet-host","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.1","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"99fc197b20902186c6aebc85aea822570d0e203080d1190275b378c3a360ed4b","size":52842,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.1-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"d0cb227c89dd60b7bddb22b19457285b3865273a265bf54e5243fe4a0d662f15","size":8784,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_0.6.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"20522a063dd32fd8072a9af2b3beec664bb5e44131841f011ac4287ba4278afa","size":227751104,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4806-1.deb"},{"package":"moby-engine","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117374,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a09a4f83339d5aea4d0f206f7e2b4ebc0b0ed1e375a01a9a9c0398f7f8b6f983","size":24736660,"filename":"pool/main/m/moby-engine/moby-engine_20.10.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.808-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241389,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.808","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"a05f869fc620f9c8e5be98508928d01911590bfb109eb88f924b5fcfe4f4ae57","size":91790784,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.808-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"c267904d0bfcdd06c48b26ca377b1d4cbe1dad8ab24b663809b19c33369c2995","size":3521558,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66340,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"0fadad0de7d30f3064e9218da272bf5501234f9d6385faece7b444acde72d344","size":22795548,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.124-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314393,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.124","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"b12b9b63f859b0eb365fc0aaa9d7995add2a24ddc02e0df5602372b51e0a25d3","size":78926170,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.124-1_amd64.deb"},{"package":"mssql-tools18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"29cf926ce277c710766a2aea8f755474c67002f0cccbd1293993d83c4f636ee2","size":211366,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.2.1.1-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"8b1e8e8539e5a5186bd52c168d7fad2a912d0765a999c0e7010444941b7ef402","size":2131114,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.15-x64.deb"},{"package":"azureauth","version":"0.8.2-3","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"48c9c5389d2a1728fc93ba81812d5de5d80f06de5620f2b39c1812408079e1f5","size":24113598,"filename":"pool/main/a/azureauth/azureauth_0.8.2-3_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21357,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.9)"],"sha256":"9966a7144980e0c2bb7e0a7d9dcede9248b401f6f25029a42072500831a77fb1","size":7059802,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.9-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.206-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.206","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"4ff2bc9e1710927d8c8f3eca32a654e799e580e876b5e692f3fbf4a22f4ea9f3","size":57699996,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.206-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71113,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.27 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.27)"],"sha256":"01277316792615af37048c0745d1281bf8677c1303935882af1f91904fe4d422","size":21987372,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.27-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227565,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.404","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"5c9eb60dc14c3de77141c0ce7146896f91f0e45fa19063fff45f29c3b4b44b57","size":58920910,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.404-x64.deb"},{"package":"mdatp","version":"101.71.18","architecture":"amd64","section":"devel","priority":"optional","installed_size":212129,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"a01be3805ced294071b50ec817aa52dd7e3ed03907ca1a14690f0bcad2e1ce46","size":62151012,"filename":"pool/main/m/mdatp/mdatp_101.71.18.amd64.deb"},{"package":"moby-compose","version":"2.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"13f2b881b89fb6888d9c760056f474e8a957a0302556227543fcbaddfe0390ef","size":9569480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"69f10e4842ea147f09de31260716f8ec225c4b37db721d03392a6719cd0ff0ea","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.0-x64.deb"},{"package":"blobfuse2","version":"2.0.5","architecture":"amd64","section":"default","priority":"optional","installed_size":31350,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1f399da94f337942d78995cbab448f88552e7107e2ebbd885d463b22a2bd43f8","size":15490920,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.5.x86_64.deb"},{"package":"scx","source":"scx","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7920,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"120ad5bfed144be98b596a7130ab6ef75590d602f470edafe496b92cf95bb84b","size":2748240,"filename":"pool/main/s/scx/scx-1.7.1-0.ssl_110_universal.s.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337182,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.407","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"6749bdafa013e4681150e83b49102e7dabe276d5cf2effafc74505b597dc63ba","size":86699018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.407-x64.deb"},{"package":"dotnet-host","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f80582e30c742f2e0615eb456535b98524fb0036af163b40c5ea8b52d85fc35a","size":32404,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.19-x64.deb"},{"package":"powershell-lts","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"e8a94fca555dd774d7c942d6892082637b811b8eb3eddf1a6820033d833d156c","size":70503936,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.11-1.deb_amd64.deb"},{"package":"moby-containerd","version":"1.5.16+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109065,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"70fff5c28bf9a65ff9119757a923d7637402b84b3715be6c57fca005f3792e82","size":26803798,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.2 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.2)","libc6"],"sha256":"eede5e3518991b6b207259660751fbb2803afd10578863c00cb113fbc03aa6c6","size":140760,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.2-x64.deb"},{"package":"mde-netfilter-src","version":"100.69.59-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"a804fafeb8c74bca1b8344740b45d39b1dea55e65be9f73d3d88fb2eeb1f3643","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.59-2.amd64.deb"},{"package":"azapi2azurerm","version":"1.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20460,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"40aeaab74ceb13e7c63047f68992d326dc4b23bc3e2e3fa32200ad3cf4fe5481","size":6693854,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.0.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"31c882bf5eed107484514717267ebef2535552d8a5b6477a53d70923dfd2e1a2","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.19-x64.deb"},{"package":"blobfuse2","version":"2.0.3","architecture":"amd64","section":"default","priority":"optional","installed_size":27909,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"ff605bf4122ef16eb33411f58240594c45b411b2807431f7a7c8874b6f0ce9fd","size":13181856,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.3.x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.5)","dotnet-runtime-deps-6.0 (>= 6.0.5)"],"sha256":"d62ec2da2962a43a5f0dba56da7473a91a592f5bd93c660a73f4485ce92e9f70","size":22586332,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.5-x64.deb"},{"package":"libmsquic","version":"2.2.4","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"994d24a840e636f75a59cac0674627ac661e864268b6298f004d9e2044c87aa5","size":4575380,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.4_amd64.deb"},{"package":"mdatp","version":"101.98.58","architecture":"amd64","section":"devel","priority":"optional","installed_size":306955,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7bc64225075faaef53ec1053f82c96afe64ed8bc676f2c1306237d7c6186a253","size":120343942,"filename":"pool/main/m/mdatp/mdatp_101.98.58.amd64.deb"},{"package":"aztfy","version":"0.9.0","architecture":"amd64","section":"default","priority":"optional","installed_size":46316,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"4724f2facdb5c23b9913f23d89b10316d6cd5cc320fdf436bcf68d6a0b16f8ab","size":8770940,"filename":"pool/main/a/aztfy/aztfy-0.9.0-1-amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13096,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.10)"],"sha256":"8bab05ba98fd4ad4daf82e5386008bbce86e9961c6e4435d2e9822da843bccea","size":1510954,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f84e4d0753808e6bf67444aa83bc1d8da29e5fd367fb7cbfd90bb6b531568201","size":1305948,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.0.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367125,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.308","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"14819de0322cdb8b9c824ad59523ff57988c1d0bbb84c34e8d76e39797c1dbc8","size":96633586,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.308-1_amd64.deb"},{"package":"blobfuse","version":"1.3.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":33123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.7 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b84b62cb202e0c45feb5d4dfb0b183e4442f48c36d7c8949578aba10a9cfb843","size":9462010,"filename":"pool/main/b/blobfuse/blobfuse-1.3.7-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70793,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.2)","dotnet-hostfxr-7.0 (>= 7.0.2)"],"sha256":"6df99d1c834135ebb4586f8a416716cc691285d5528fc2d08075ec060227016b","size":23188610,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.2-x64.deb"},{"package":"azcmagent","version":"1.32.02371.983","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"e89390a265f126952d225d40a5c4e58014a32c20efc573868674738097b08b5f","size":54306730,"filename":"pool/main/a/azcmagent/azcmagent_1.32.02371.983_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"c663e63f79bfee8b76205b03bc7bfefe282becacf8a7dd98b380354d42988521","size":1315494,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.18.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":122248,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"f5ea248d511c8221f0363d2040271758a3ca7f2d642edcd66c36f5006311b5ec","size":33299982,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.2_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.17 Microsoft.NETCore.App 5.0.17","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.17)","dotnet-hostfxr-5.0 (>= 5.0.17)"],"sha256":"a66dde139e264fb73a05421293609413126d5b7928141138e78f51ed2b2be568","size":22011822,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.17-x64.deb"},{"package":"servicefabric","version":"9.1.1592.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"dbe9072890631add3bfa35454db4ad5d00d62d5bb54935780c4826e89eee081d","size":219815274,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1592.1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227617,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"698e5de0f8650f096a70bec60f0ae3bcc8a661729e438a4c807ecd3b579dd4c6","size":58837002,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.405-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"3a1c44092c90f674e400896b1bdb629091bc899774ef03d80a6f82568743069c","size":3522342,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.24-1_amd64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"60a2432bb916841fe75f77b9a6bb26417c68c7ee34f783966f6ddc20a39eb167","size":44742130,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u2_amd64.deb"},{"package":"intune-portal","version":"1.2211.21","architecture":"amd64","section":"utils","priority":"optional","installed_size":18507,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libatk1.0-0 (>= 1.12.4)","libuuid1 (>= 2.16)","libcurl4 (>= 7.16.2)","libsoup2.4-1 (>= 2.4.0)","libsystemd0","libx11-6","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.16.2)","libc6 (>= 2.29)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)","msalsdk-dbusclient (>= 1.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libglib2.0-0 (>= 2.12.0)","libc6 (>= 2.28)","libgtk-3-0 (>= 3.9.10)","libssl1.1 (>= 1.1.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"696481ab2d249391918d008691058791c138b82f0300283654841dd181036dd4","size":3310888,"filename":"pool/main/i/intune-portal/intune-portal_1.2211.21_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.29 Microsoft.NETCore.App 3.1.29","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.29)","dotnet-runtime-deps-3.1 (>= 3.1.29)"],"sha256":"82a0de75f01251437d155681b4706eb56438e2fca21135d1dfb4d3b3a44ec74e","size":21619890,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.29-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"0659506cd6862cdcce62768918ea580c070c1249a0e2e5b0aba323891e75bac7","size":1314238,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.19-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.26 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.26)","libc6"],"sha256":"8fe6a2130ed312ada320642f2307bf2d5f668e5ddb17403914a76df0486cceaf","size":120752,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.26-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"8390b688082ac2020be3ec1b6e2e900c224ce58bf8a9aea9ec5de177c03afe2c","size":499500,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.6.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.4","homepage":"https://github.com/dotnet/core","sha256":"a29731b3eb2fbc979483e03413bba8cc3caa6bf5250e7a141f4eb68d00dcca60","size":3523150,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.4-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"e3c05b2bb27d1b332e34d4363b72cc8ed6d47a18f278c5fd9d4ad65502695184","size":3521786,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312667,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.108","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"06d2325a3a1310f231bbbf0d1f4428fd71934e0b448fb30a458f5a76235b3fa0","size":78002896,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.108-x64.deb"},{"package":"powershell-lts","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"12f24124a2908286b81081866fc63562dbff0aff63ed85bf4c2140772da3bc78","size":68354770,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.15-1.deb_amd64.deb"},{"package":"mde-netfilter","version":"100.69.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"212e84e652d7b1591429bcf4e6acefee0fb3ba3295b8a2e64652cd8235058974","size":24424,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.62.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189498,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"bf51063ba56fb5033d15f759affb4361ce8a467d1c6f4a8a93f3c68c47f7ae7a","size":48250240,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.9","homepage":"https://github.com/dotnet/core","sha256":"6b16c95467e30e877a45ce38aa28accd9e8bba195289248e8fd212240226cff0","size":3406414,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.9-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86953,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c87c63362406bb6146c525d1f89d08283be4df96fbb3fe748a96c83667c02c09","size":20692210,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"eca7883022d9968c8ce2e357230abe4fbae1df472f490c13428a988275d34527","size":24420,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.48.amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.19 Microsoft.NETCore.App 2.1.19","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.19)","dotnet-hostfxr-2.1 (>= 2.1.19)"],"sha256":"51d29f4bb8769d6a799558f31cdcac99ece2213ba632c201c7c3b908cdb05a62","size":20646700,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71092,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.25 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.25)"],"sha256":"853db00bda315f9542a5e538a7e4c6c56203de0e47b58c51cae0b965936f33a4","size":21961714,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.25-x64.deb"},{"package":"mssql-tools","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"750c5e413db5a154dd708e85bbe3ca11bdfa1bc9093a898934e2a858c8336ffa","size":210704,"filename":"pool/main/m/mssql-tools/mssql-tools_17.10.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bfb537fe76a7537389d7bbb2184fbb3d47c2507d5618fc6dc6cee489de2cae96","size":124528228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4736-1.deb"},{"package":"msopenjdk-11","version":"11.0.18-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317542,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"aa8b4fef36b3105c2da2fa5115c1e6ad1db05059a113a3848e821a26190bbf5d","size":194035104,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.18-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.4","architecture":"amd64","section":"default","priority":"optional","installed_size":31358,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"79198abd87f82ee46b1b894d0ef873e93cecc508316e93893b5db322fe0a114f","size":15490958,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.4.x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"8eb9366b0a0a45e0231704b408fae41733d283c8d663e90189aa3b70a333ae54","size":3519112,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.23-1_amd64.deb"},{"package":"aadlogin","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"4e0471d3b89a07c159e5e7f1ffee0ad6a2a6b98941a5d2dc3310e5f65f9dc483","size":407452,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015280001_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":513,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.11.1~beta.1)"],"sha256":"6e6b028987de0f3a3d03868ebdc4bdb403b10a4f83f5f0ccfd4d6b666cfa19e3","size":79986,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"mde-netfilter","version":"100.69.59","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"9bb51091801bbfa8979e90de219b80ae4ec77bffbb71d63ee87a68242af631a4","size":24414,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.59.amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.8)"],"sha256":"3064914f58f7f230a74bbe0c9c22e9522898f8f8005999ca536f4a429e0a8af9","size":7057918,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.8-x64.deb"},{"package":"aadsshlogin","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"5b9542c5ba271ee38580d8152f8ddc13869037e74124e4a9b567458017d36a59","size":418790,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017190001_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68462,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.21","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.21)","dotnet-runtime-deps-6.0 (>= 6.0.21)"],"sha256":"94954b3e7667d6fcc8c6f2de4f07602653cba4b8419edaa41eacbc205c931466","size":22867970,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.10)","libc6"],"sha256":"fc05aaf053f3306f2dd18eaabb047097e5fa1609afafd5c0f529072e39b8de6d","size":143938,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.10-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"645c4cee097414d061a02cfb148b0d54274dd6d9ca06367c61d12ceb0fab4dd9","size":26982140,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.11+azure-1_amd64.deb"},{"package":"defender-iot-premium","version":"0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender Premium","conflicts":["defender-iot-micro-agent"],"depends":["defender-iot-micro-agent-edge","sim-agent-edge"],"sha256":"a4a5179f8c2fa455fdcabfa4bb288fc31f2f75b6af0dbaf0676623e747cc9a3c","size":1272,"filename":"pool/main/d/defender-iot-premium/defenderiot-premium-ubuntu2004-amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.20","homepage":"https://github.com/dotnet/core","sha256":"8ec70663d512ed443c4527fbf447b29676fe3ce69bbbbbe58912fa3324d3877b","size":42028,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.122-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.122","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"2a8ce53fc735ccd1336abc88949ec01164b53ae92e73113ccae284426808466d","size":78881346,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.122-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"18ff586f6e58d8b0b92e371f3dd23c2cc107c1c943be1479a122a1402ac4ba81","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.110","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.10)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.10)","aspnetcore-runtime-3.1 (>= 3.1.10)"],"sha256":"0c4febbe0a5031c9497be65082e34fc8f869d707895f1c4368db61edd6a2afce","size":43155386,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.110-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.3)"],"sha256":"d0ef9c1f3798088ed85efd5528038d2f49bd1abfbf925ab1650ee00c259c2bee","size":7051750,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169170,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"576b137e96a3853e87d2595efd06c8acdda6746bc9e207ace3ef7ba7b18a1747","size":67026634,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.7-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f43df5cc056e4efed7fb1834c85c21c1f63af3af9cdbd4a2567b4c62a550d3e8","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.31-x64.deb"},{"package":"powershell","version":"7.1.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174320,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"23639edff0487fe084d011767c67d35d55f37a22bd00cd0bb48acddff9f217b8","size":68283752,"filename":"pool/main/p/powershell/powershell_7.1.2-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.12)"],"sha256":"49778ed3574083e50016311ef9880a9e056a3b1a22e927de7c2d85c788b034a0","size":7064358,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"moby-compose","version":"2.6.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25720,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"96719d676128a6620f9a4c2d91f69f65455d8167b6e4206e827f22b3d65fc8b7","size":6499556,"filename":"pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"953f95560f7fe014ac2e89b4ad6d1113f9d88deddca6a571f7d1d1346e59fda4","size":10262,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016820001_amd64.deb"},{"package":"moby-engine","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2b0072cb4de51dff8327d7222c6054095c880d97195c59901a8003fa59ac2637","size":21175036,"filename":"pool/main/m/moby-engine/moby-engine_20.10.8+azure-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.3.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"3e270e63a81f5cd729afb1f69b43e9fc648f010be900068fab4f30bb4a4adb7f","size":714818,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.3.0_amd64.deb"},{"package":"aziot-edge","version":"1.4.16-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18513,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.5-1)","sed"],"sha256":"ff467929857a81cc3ed6261aef74323ddb423eac938de832e6cfdb3ed342b7a5","size":4430372,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.16-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"f74114d6282233fc1ba4f5a15b0edf94e7fdc5e5bae13a90917abdfdc228b4ad","size":3518666,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.120","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"e52be3bd6881374458c71b2415dd9b161c2afef6aa9ccc1a39efea053dc86ddc","size":43996192,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.120-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.4","homepage":"https://github.com/dotnet/core","sha256":"36ed81ddbcfe3d88f50af12c69fb776ead270473b859e19241602a53b8e20855","size":42468,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.4-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"860018d9b9d9d59cdaea249e76b894d970cf2084d4cf1f6786f623bcb7c7d378","size":3520576,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32a124e361da79d71007cf8a9f1c916ba7fb543d06eae504eeb58e23cd9bfe5d","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.23-1_amd64.deb"},{"package":"moby-cli","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b884d901dc121f68973e86cabe6897dc4d75ef36073e482d300534af94c65518","size":10578864,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8b9d47e868ff588ae5bf664488ca477a135250c95710fb182347710096129c43","size":135288228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4483-1.deb"},{"package":"aziot-edge","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"52e552d29d0e63e170389d07dfb35d8fa7d0e7ac394ca2a96521cb3aec48112b","size":4204528,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.5","homepage":"https://github.com/dotnet/core","sha256":"4c87ab48a41bad9380eb738078c16a08cd6e1c2de4b31c231f5418f7102208ad","size":3399662,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.5-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":44,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"3f47623349ef8ebde89e3d52415ef854a84553046421036404ffe9d74bf3b4f0","size":9164,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.1.0_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"28dd20f6330a3450e23fb0e4c179a25e3ed71db7d3722c1e55089040432c22af","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.8-x64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":118172,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbd03457376c4da1098fd64f88ba7e1c9364d3f54a8ef3cc300102bdcbbeab58","size":24574184,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-ubuntu20.04u3_amd64.deb"},{"package":"azureauth","version":"0.8.2-8","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"75cbd72c69154486be29fae15d943f345260e9433353f1199389e1cb80a99bc2","size":24118802,"filename":"pool/main/a/azureauth/azureauth_0.8.2-8_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367152,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.310","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"a3cb0afabef1917d15235dced239ab22071c829da8f8c0122e66e9fa5a9eccc3","size":96615326,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.310-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.29 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.29)"],"sha256":"e543e97c14378c663703f2ffe643bfbf449b8093d73be0d4f64779602f64a070","size":21914140,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.29-x64.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":69097,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"3205845143e75adbaf2df5d4acb2925d86917e3e17c4f3945938c363bbd2d387","size":25966666,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.18 Microsoft.NETCore.App 3.1.18","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.18)","dotnet-runtime-deps-3.1 (>= 3.1.18)"],"sha256":"48350737cda6361ab38e083a455e27ed00a126413ff867c79763b75eeee7a381","size":21887942,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.18-x64.deb"},{"package":"moby-compose","version":"2.23.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58369,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"1c094bde70a1ccf9886c162cb47c89f75ecdf2ba9cb18ddc604b231adc458f77","size":17592370,"filename":"pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.14)","libc6"],"sha256":"06558a79a1f4004ee029c0ca5e06635ee771f3379b28e409cdb9126c8fa4de71","size":142366,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.14-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.28 Microsoft.NETCore.App 3.1.28","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.28)","dotnet-runtime-deps-3.1 (>= 3.1.28)"],"sha256":"e5245eb6ee751de6929b08e564b1bcc76b8b6190fe761e5b56963dc941a25948","size":21822608,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.28-x64.deb"},{"package":"mssql-mlservices-mlm-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549275,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Full install). Provides RevoScaleR, MicrosoftML, sqlRUtils, olapR, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-r"],"sha256":"59c5558dc8065f87447538df2e2a2bd5118a773a8750718a56b1df090443b277","size":521701410,"filename":"pool/main/m/mssql-mlservices-mlm-r/mssql-mlservices-mlm-r_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.28 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.28)"],"sha256":"138e2838b892d92a0bb3b8236d72987af65ed9451f1dd1ae03f920ba6cec17de","size":21905448,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.28-x64.deb"},{"package":"aadlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"8221a88f2d61c55eb5d477e261c47b51a03f4afe49954c93477d62480c32b7f8","size":413684,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015950001_amd64.deb"},{"package":"azapi2azurerm","version":"1.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20660,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6099cbc085feae459ba885b688a11111c95bfecb321da7a17f593e4b8da3a339","size":6709814,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.2.0-1-amd64.deb"},{"package":"libmsquic","version":"1.5.0","architecture":"amd64","section":"default","priority":"extra","installed_size":5560,"maintainer":"<@28646e3e24d7>","description":"no description given","homepage":"https://github.com/microsoft/msquic","vendor":"none","license":"MIT","sha256":"f7307dc9be7a8a671898029392352c23a30099c8ef201826c2ab6ba2ed935e10","size":1813382,"filename":"pool/main/libm/libmsquic/libmsquic-1.5.0-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"71a3aa22666f1348e84d2d308db567fc5acc7dc3877c7b4d329f4bc1c0b587f3","size":2118644,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.18-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-3","architecture":"amd64","section":"java","priority":"optional","installed_size":325465,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"3ea7875f7ee282162012226e206a40de9f8d2d2de720f41f573a45ebeed08bb1","size":165338790,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-3_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.19 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.19)","libc6"],"sha256":"fa4e79024e7b1101e088c9d2ccdb16025af516c3aa33706257d2e1395b99ccb9","size":120914,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.19-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"3ba76caa0397c4cc1c8dd81fc6fe321c59870850faafe53d6c53993410462ae9","size":837980,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.6_amd64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbc4785935323208e52a67294c91e4a2942fc778688a04c1d5c2bfd10d40fc2c","size":26990272,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-2_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"9f9fa8ff87294acd3d2446188eb19a2450dcb4735b8af9ea00d44d23bf664405","size":500628,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.20)","libc6"],"sha256":"38f6d045ebf8dc7b6b1c554a4d81a8e59e50e90438ee9b1fd76f594047583d3d","size":142360,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331325,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.305","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"0d00a3ebb16ac569861b16c79c64a094ae0460767206c4a0663d85010a758286","size":85062916,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.305-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3160-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"aa2bf4e9c55be59f76b3adfa80c2e189a1ffdcca908b6fb786317a9b891d1727","size":204037628,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3160-1.deb"},{"package":"powershell-preview","version":"7.2.0-preview.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160448,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a28a1d06c3790f9cb1b5fe7bf5df1a72bf01f8dcaa9bed1c53656739d53c64c","size":64902476,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.9-1.deb_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.10-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"3324fc1a3204b8781d018da00b427a4600e3af44b8fc28a04326913de802ac2e","size":13190,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.10-1_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.27 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.27)","libc6"],"sha256":"2c9e779ee95dce861cd6d2c8d14d37dcf560f4ad982235af86664ad4c0c68eb6","size":143614,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.27-x64.deb"},{"package":"open-enclave","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":113754,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"c4957ceca38fe897f2237c396a638f6ca03deab9b1e2087809eae77f13d2c2ec","size":31095302,"filename":"pool/main/o/open-enclave/open-enclave_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.18)","libc6"],"sha256":"9930731bace0066046b2ab6be0886548e62a4f0b12aa72e8c59b58f93c88e117","size":142484,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.18-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.23","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.23)","dotnet-runtime-deps-6.0 (>= 6.0.23)"],"sha256":"aed16cfefc6903202f11af5aad5728f6eabe5905221309097e9d5dd60bfd2e29","size":22882640,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5c6f1d1609d7f1566ddef53416ae4d63c1fef4c001eede265f66c1b930ef0a33","size":228285872,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4868-1.deb"},{"package":"codespaces","version":"1.0.2804","architecture":"amd64","section":"devel","priority":"extra","installed_size":95227,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"7ad79a3bcd30c42347e465cab0ae379591a52ae01aeda160b2e00e9a46bdeaa2","size":27017990,"filename":"pool/main/c/codespaces/codespaces_1.0.2804_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":206162,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"573b9336334b5e4df31df0fc62ce82f186770a569d501fc643e15ee68262740b","size":74245238,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.2-1.deb_amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"55a2cad0d17fd8068f2bda66b83a4bdf0c55ce9a3e5ea859d7effe06ecab1cc1","size":485628,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11-1_amd64.deb"},{"package":"moby-compose","version":"2.17.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52638,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"314a1812d59c17901c1a0506d25f44883c3c9f972abb21e0afdd22510aee19ac","size":10850714,"filename":"pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c707b0a5897a613d1e36df579699cf01283ecd255b85af60127d204b21f1ea04","size":20971950,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.25.72","architecture":"amd64","section":"devel","priority":"optional","installed_size":146402,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d7a8f56970f48dbc7ea30a611e68cb9afcd91d5603c5ced0df51329920211bd5","size":43263098,"filename":"pool/main/m/mdatp/mdatp_101.25.72.amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"fa26dcf2fa4f3895f94b0b7d772794f3ce225ca3a48fde0bd0b2c62b73b2dba8","size":10166,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014760002_amd64.deb"},{"package":"azcmagent","version":"1.21.02043.328","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3e6cd4ad741a2f5ce1aa8320733a88dcaecf13ad35f48833da8fff7ede193603","size":53305240,"filename":"pool/main/a/azcmagent/azcmagent_1.21.02043.328_amd64.deb"},{"package":"moby-containerd","version":"1.6.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"61b4d8602bda831abd9f42ac170b83403ac9f5836d6d31ea1ee5458abc4def22","size":31459254,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3584,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"43b79ffff2d3e985569eb5cbde9d3c3c697c32c9e014e510d52ee4e9a10c3c85","size":980418,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f92b5019226d9bbeddc5395dea76685ef7d7c4a08e39f213d8c4aa67693bab7","size":36586,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.19-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.811-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.811","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"6b78f2524be868f547fce3d608d313c05b9afceedf22ad824561df267b0cc962","size":91745460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.811-x64.deb"},{"package":"mdatp","version":"101.75.43","architecture":"amd64","section":"devel","priority":"optional","installed_size":276698,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"4ae9bb8102a336f865aaf0ceab70b142622053192ef67c4d1bc4f5affd1c8669","size":111919766,"filename":"pool/main/m/mdatp/mdatp_101.75.43.amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8-2","architecture":"amd64","section":"java","priority":"optional","installed_size":324732,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"42cf4a8de93da7d44cbf043b207f077797c88b9c4f6fc3ec10612901aa61f0b2","size":165069322,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-2_amd64.deb"},{"package":"powershell","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a0d810fe381b77e4bfb99cc67f713f6d483545e94bdeb4150524c085cf20e2da","size":69463938,"filename":"pool/main/p/powershell/powershell_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.101","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.1)","dotnet-runtime-7.0 (>= 7.0.1)","dotnet-targeting-pack-7.0 (>= 7.0.1)","aspnetcore-runtime-7.0 (>= 7.0.1)"],"sha256":"eb3bf2a85ba09a791fc25a9dfe04d5131a24350f86af34cf15550defb7d26365","size":90604170,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.101-x64.deb"},{"package":"omi","source":"omi","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"348d6f0a0eb31522b476ed2127e4f86ee838c151d8ac832507f5d855f727ab60","size":1884682,"filename":"pool/main/o/omi/omi-1.6.11-0.ssl_110.ulinux.x64.deb"},{"package":"msopenjdk-21","version":"21.0.0-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352607,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6fd0f193b52b70d9585f9fc17a936f43ff9a079ed481670cd073976cd205dcc7","size":176295410,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.0-1_amd64.deb"},{"package":"moby-engine","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106344,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"02b7a3fe3c6792adf0f5d9c5c839f1f4f64f0c5e94e01093a6a6fe2fd32c2233","size":22701568,"filename":"pool/main/m/moby-engine/moby-engine_19.03.15+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.520-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228838,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.520","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"320d09a1c12ad84961cd151fdbf32e885f678eb42bc24e1f6cfa902025fd68b5","size":88849892,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.520-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.20 Microsoft.NETCore.App 3.1.20","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.20)","dotnet-runtime-deps-3.1 (>= 3.1.20)"],"sha256":"b73687da9c7bc457089d120c4f3cb687e4bbba06bc060ce8ff194bd3d3bfb545","size":21925522,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.20-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"24079bf09fc03151279b13f00ec7fd91cf7ec732d78727ae741cf0d708665c2c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.18-x64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":46220,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"012ae97f71917974a18379d04dd18150431f7cb9a5db5e04584e8ee4c4faf3ec","size":10169662,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.29 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.29)","libc6"],"sha256":"b9c9d07b5cf5d7783b387c67332fcb3356f445a2c21ca54bd15c0f598e5db436","size":120826,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.29-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68431,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.15","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.15)","dotnet-runtime-deps-6.0 (>= 6.0.15)"],"sha256":"06c1d3b8bd5657d0874fd729658659ad614176f7fa04e164f9dc785fcc9596e5","size":23080224,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.15-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"0.0.20211217~dev.1","architecture":"amd64","section":"java","priority":"optional","installed_size":83678,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"bab8e21f461a64ec24fffa77d1c174278b27d37c143f7b488d8bf25d4b9424cb","size":77279776,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_0.0.20211217~dev.1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.15-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"0ecba2f0103f3b53f639db55cb310b65667452b5d646926354d53bcf16b3ca4a","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.15-1_amd64.deb"},{"package":"azcmagent","version":"1.26.02210.615","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"c7ef2f69d6b0486a0088d524576f8ee91cbb90a54c4560cb49215fe0db19756d","size":53683134,"filename":"pool/main/a/azcmagent/azcmagent_1.26.02210.615_amd64.deb"},{"package":"moby-buildx","version":"0.8.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"9fd0481a56296898268892396ad63fd88cf6d0d9e650b05092a7ddc8500b61f0","size":23112352,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.0+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5845b74b3f0ac65102718e6a072cba6cd3eddbeb3ed3d6d0e0e4f6265287f1dd","size":167345404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3188-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27377,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"013256f409694381c6fb4dc00177e901e26078cd3ad0c478ccb681b4912f9817","size":2124346,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.9-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"9b6ab8b9c98bb3845819842de5158fd910b1d061b890749b49efe0d26cedb467","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020950001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18866,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"eb6a43a875b392d2a3013c9cafdb913aa7121322769233072aab0cf26371c438","size":4109284,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.5-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.8)"],"sha256":"c166ae2b979361d5bd6ae28735c19e071790fd14a88e2dc2ada370fbfceccc13","size":6085572,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.8-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.16 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.16)","libc6"],"sha256":"435049901ac1e2010f576db4b376f2f0b8541f34da202c2e2741e4a8f03a9617","size":140480,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.16-x64.deb"},{"package":"moby-engine","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86226,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"25ab605af59493188d1ec43afe3079dc1f00c80a086531a849d5e7cbfab2f3bb","size":20497760,"filename":"pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.31.02356.952","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"7c93aff6e5b62413727e391e666fd857be0d76b8e6b3119dd5e9c94329c5bd28","size":54290410,"filename":"pool/main/a/azcmagent/azcmagent_1.31.02356.952_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e6ca931e3c33ef55ada53058ec62416516965fcb3f0bfd8377303a8a97cfcbbc","size":156812136,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5312-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"8538163055e1112654548c1ffb2acf2bd54bf73ce25e5aa4594345ef306410c7","size":2117782,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"845a4dcdf7cfef468f114df064ddf0d91df3339e8fa81a4d642bdcb9b69918b0","size":3516354,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.21-1_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6517c2b485ebd5f9431a263692da4d415222a845d7553cf4645d475d953f2def","size":9652860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c6487b48e2118900cffeed91d67d9012f4e1e114c8c48fb2f01ad6526b6ebb01","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.8-x64.deb"},{"package":"azapi2azurerm","version":"1.3.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20744,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3be8889ef4a2bc388927a8179644551dd2ee00ef0c1c17975c839f6e1882118b","size":6716362,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.3.0-1-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27356,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"e6ee3b8d371697a07a3a88480ef620b173c61ef5e03c6fb159d91cd906e9cd86","size":2123508,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.0-x64.deb"},{"package":"mystikos","version":"0.9.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"c5bb8a03a650a3719fc19fa3d3a879fbbebe5ecfedef6db091215fd517244df1","size":4436802,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"148be51af16984cf17386ec477d9a3903670cca73a7f25443ec7b1d66ca22c36","size":1315226,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.98.89","architecture":"amd64","section":"devel","priority":"optional","installed_size":332405,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"582d1b94508d2d84432e1e4e049d6dbc712cca437ac82a2f25650703843a2f24","size":125131640,"filename":"pool/main/m/mdatp/mdatp_101.98.89.amd64.deb"},{"package":"moby-runc","version":"1.0.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20329,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ea515a80936dfec4ab07d9f37709d3074922feff5d10881f8dfecafc3e544ff2","size":6679756,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0+azure-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317734,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f5dd608c47a122ba604277b10d19d76dee2562d86b670402afe568f219d946a8","size":166768998,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-1_amd64.deb"},{"package":"mystikos","version":"0.8.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"637c845250a0a9c608a948672bfc60e1f810f36d0df33236fa711fcded549b9e","size":4373656,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.8.0-x86_64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d337b71bebb235a7e8a19cd961fdb2bd8c82d512755bb965dfb868880d5ff589","size":125664952,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4785-1.deb"},{"package":"moby-compose","version":"2.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6c802b98ea7ec047243ee7cfa1911ceb225c7aef8bdba133ee292d17724a2e41","size":9564136,"filename":"pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350083,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.109","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"bc23f4fa578ffe9206fc1cb4c299e04f890994ed3672571840e5e1d49abfcd57","size":90667862,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.109-x64.deb"},{"package":"msodbcsql18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"38bfecba0dfde7fd37c32e958bcf91321e5b7868ef0bd4d123b2f2e8c1252afc","size":752844,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6d9ef3a2caa939749d9fa94af1f515878843591103b9e1ffaac6b6392d70641f","size":155432416,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5198-1.deb"},{"package":"moby-engine","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97207,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3e79c2699a41d60544f79848fd8dcc97329f24114cff4619bcb646bb65f1925a","size":22804998,"filename":"pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"mdatp","version":"101.00.75","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"b07fecc2ba406124fb70454b202acda539971b81ed2f0bcb45360c8d743a951e","size":16305902,"filename":"pool/main/m/mdatp/mdatp_101.00.75.amd64.deb"},{"package":"moby-engine","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"07b58269da94bce5fbbc406a910f365292f2149ce48eda815aeb758f48609907","size":20926788,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"fb7dced8af436496de783c2194bfef410c56e156bdff60240203e9361c003a1f","size":5341004,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.1","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"30aef6a9e6d3f0ddfdba91ad2f1c2e3d35afdd88e8fbfffcf17cefe01c55bb10","size":2654,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.1-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"641bed77ff67c69c7789b7502d5287ddf4d7ee9856f7f4bddf391a9c444d8d11","size":2656,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.14-x64.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76294,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"28b5bb9ce627cf98273b8dbfa8cb931d06a7b65a6eef7093400d301b4623b935","size":28218446,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.9","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"76cf3687d7402eef8425db6f75c13395664c418c3c8c0f66f32c9cce724edbaf","size":55690,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.9-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.7 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.7)","libc6"],"sha256":"ba43de611f4179cb3ccf68194890920aa2b97dcf4f24d4861f9500afc8d87aca","size":121042,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.7-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.2.0","architecture":"amd64","section":"java","priority":"optional","installed_size":83741,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2fc3bc221bb28c45ada5ac1d5ca3a24f002432860069bd0a79f1363dd5b3dddd","size":77328246,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.2.0_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.210-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222047,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.210","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"e9c3e1c1e73a19d0a792bbf7f76c5a161dd69c0912cfa587464a8c8f12f7c153","size":57223366,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.210-x64.deb"},{"package":"msopenjdk-11","version":"11.0.10+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316427,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"34a27d9fce24ecec7787b67d22bd8578a69bd6cca9585a70ba3372751a2af515","size":193172368,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.10+9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c970cf3cfc68b7394c889f0df1b3ac0ca8c88a9cccea1a425bba239a392058ae","size":68202122,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.12-1.deb_amd64.deb"},{"package":"moby-engine","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"87d71671681397891d19c022bf578f0696abb43005b7ba1cc9cbb8f102792aff","size":20903180,"filename":"pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b7bf28039571e04bf00ad0942ac4c1ecf509a196171a1a31687913674a033726","size":10605616,"filename":"pool/main/m/moby-cli/moby-cli_20.10.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336567,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.402","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"d054c29f0d6ac3eb208636db5b9c603ef7368c3bd74ab28f678d58017b0f7789","size":86580584,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.402-x64.deb"},{"package":"powershell-lts","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88a8e3fc3bf5899d180a3c6932fc1f16aec744d142e468cd9c503cb81981560e","size":70364236,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.10-1.deb_amd64.deb"},{"package":"dotnet-host","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.20","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a5dfd0e6fa48287c827a3370896c76afadf82a75696447809ee2456d71e30890","size":55820,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6a2903ed2616c7e00935c25376801244c01e1a4b41f369945f13a73196871385","size":228283580,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4899-1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.119-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314323,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.119","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"012290bff29f75dadc362e8844c7cac4be6a392a62eb630ba3e78701c8c9cc73","size":78874786,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.119-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336560,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.403","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"e2e423e97d6571023053e0ced24a122b1ee09c82ecfe2b093204f1f0a090e6fb","size":86614876,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.403-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"9c5c3a3816280a63c5635c447b71b110af8ed95834befee9205e72ad84e37b3b","size":3524114,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.11-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2996-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"287e138165c35688a148097cb70abb64ffc82045f61e10d250b22c95b734ed43","size":204035284,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2996-1.deb"},{"package":"virtualclient","version":"1.11.0","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"11eec246fca29d7666d13cd6bfa1c629536685570a1b60b0bdeec635341cc5d1","size":44771040,"filename":"pool/main/v/virtualclient/virtualclient_1.11.0_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.306","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"41eec4c727cb18b1f14cf442927e66009b8ac56c4c2d003bcff8ff5871845862","size":85091884,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.306-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"6496680a7582d60e63818967f2cd98aee775ba721ae728343362dd4268960e2f","size":499286,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.7.deb"},{"package":"powershell","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"fa7a2b2063063103682abec757552e79ec8fdb820fcfd10ffde66bdeeabe7488","size":70363920,"filename":"pool/main/p/powershell/powershell_7.2.10-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.30 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.30)"],"sha256":"febbc996b9bb461a2ea46eea74e4a5e64cb58240e1d200277c22d7da41b96052","size":21906200,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.15 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.15)","libc6"],"sha256":"fc4667c3d1a25fd4ce10c08af3570f5d1dcf7821687755e7e7823d151955abd4","size":120738,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.15-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"a8cd4903a9dc32de6309cbda75e3f447c5eae436b6f03d9e1aa31706436202d7","size":274156,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.12.2.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.411","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"16425094e8185a26d5d517f8fad2ceeff091e75d9352d1ba5e4b6e5f2bcba020","size":48228346,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.411-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"794cbab5578ede2af54c14bef3691bd475f890e034e98465f85c8c93acc2157e","size":2812,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.10-x64.deb"},{"package":"moby-engine","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0911fe2a2ed038205282623bc7e3897ba7d93126aec7edca4464fd6c134a2aea","size":20916908,"filename":"pool/main/m/moby-engine/moby-engine_20.10.13+azure-1_amd64.deb"},{"package":"mdatp","version":"101.98.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":305796,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7e1ba007e40c4653ca8b8bdf55e29600a08ac87217267e3b78417dd8a0be1cf3","size":119520316,"filename":"pool/main/m/mdatp/mdatp_101.98.05.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.121-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314335,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.121","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"ea0ec0cc9ae4f25bb30f5f4c7704875a62d54656ee3cb1e22a3c8a4d97f24489","size":78873546,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.121-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3388-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"df05e878a11e12d9538c5c1f3f9f05b639c5340770453affbf5a41cea830a486","size":208741020,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3388-1.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13094,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.9)"],"sha256":"5f6bc5506a83dd7f0835bc4f9e1213094981f3fb60e639e321c78a73e25a1ef9","size":1499018,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.9-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.21","homepage":"https://github.com/dotnet/core","sha256":"6fbb4309a0fff8a7d33f8641fb544c310bb1d68d1de88a6d9e4aa93c151a819f","size":42368,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.21-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.19","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.19)","dotnet-runtime-deps-6.0 (>= 6.0.19)"],"sha256":"2e635f77893cd7a802297f3fe00257d3792befd579820ce1132923fd27dfee95","size":22887618,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.19-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4915-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c081e147deead98682d2ac4c05010813b67dd4f1b82fa4e66b22c159854c9ae2","size":158709156,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4915-1.deb"},{"package":"moby-buildx","version":"0.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76246,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"444825d0cb85439fb016f13acf26033d270c34ee7160d9a99fa17d748d8603e9","size":28216826,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10786,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"1f20833937b8ed1b43a292fdb0cce8bceb315fcd572768e4cfc1f97d4486d2bb","size":3414476,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.0-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70801,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.1)","dotnet-hostfxr-7.0 (>= 7.0.1)"],"sha256":"c26e9d6bfb512806e89b4f2094964915c206b62be1bae7bf5efb69c6f090a305","size":23188750,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.1-x64.deb"},{"package":"azcmagent","version":"1.23.02105.466","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"17f9602fa7199ca006776c2c0688bfba291242292db0b0528f249af5933b647a","size":53831532,"filename":"pool/main/a/azcmagent/azcmagent_1.23.02105.466_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227352,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.303","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"7a7ca82a5c100d35d52cad7b4525efb95e08039d19a99dd36efaf2ec15805f15","size":58878538,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.303-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"dab9c7f9d0e4a250212c5bb52fda8dd85f965a0e81246e6b41c3a8be54195e0b","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.16-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.13.0~beta.1)"],"sha256":"65e0a235170d0e504a0a4b15511b9e46327edd85edb997b5c484bf54ba114e75","size":80078,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.13)"],"sha256":"bbf1f452f980f7807b093746972e745a9c804da606e42e9250b1515a2179b5d7","size":6612406,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.13-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2eeaa3c725e80f22d6aa6147c4d0721be2ed17340fcb706fea47ebe9f0033c33","size":70611474,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"86602d9ba581ce2deea151abb28e56048cea0cce4aa332f28fcfc82164b77a93","size":3517456,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.0-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"b7cbcd00def1bbab3cb16f172721a42ab97ce9ef97284d92185197ae77760a3e","size":3521274,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":676,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"4b4190c608f71b68ccd64c462a67d7f1d451e2c0a4bd2a6d79d1b58ef9774856","size":147266,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"aziot-edge","version":"1.2.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"421ed2073ed78c2aff4b798fa6671c2c222ad69dd945b3150536ddddac07adef","size":5770364,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ff202d7a1773806df4d150f860f91028cd318ff5557b99ef43e7b07002d784df","size":69468394,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227600,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.400","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"e775a3dc67bd1a8a561aba1e5db71709fefc0a0f87f4b1ed17542388af03d9ab","size":59143318,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.400-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"6724a88dbbc4a9468491cb3b6c56f805a1664f17cfc141adba33b0f72fed8238","size":2126034,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.3-x64.deb"},{"package":"mssql-zulu-jre-11","version":"11.40.16-1","architecture":"amd64","section":"java","priority":"optional","installed_size":114997,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"151178cffd4aec996d1fd6e2464e0e3a03d60bccb1b23b397454b3ab5a7d1a0e","size":39715442,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre_11.40.16-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.11 Microsoft.NETCore.App 3.1.11","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.11)","dotnet-runtime-deps-3.1 (>= 3.1.11)"],"sha256":"4574cb0172cb8ce0bc5f99004f983a833086d44debfc579dba2f55a094c57c2d","size":21399282,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.11-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":162968,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"28434376d4a14f42805578d49c08d85611de8d2984b868c8317bca2e68d33434","size":65979312,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.10-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.23 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.23)","libc6"],"sha256":"cdaaa6c1cc638e1bf330d0c7e9446f5910fbc5dde5ed7b6ad5b68e2d3f9c2203","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.23-x64.deb"},{"package":"osconfig","version":"1.0.2.20220404","architecture":"amd64","section":"devel","priority":"optional","installed_size":4317,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"9330d1120c44e00a91ebc75274b4e10a7f305adfec7fcaf21165fd79cf38408d","size":1512876,"filename":"pool/main/o/osconfig/osconfig_1.0.2.20220404_focal_x86_64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68331,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.7 Microsoft.NETCore.App 5.0.7","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.7)","dotnet-hostfxr-5.0 (>= 5.0.7)"],"sha256":"767af7166d335de75bc1ea12f4b12c3eafe1cdae1977e5d9626fb7a1298fd07d","size":21787726,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.7-x64.deb"},{"package":"powershell","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"89c217d853228a7a2d60620da25b9dda36e8aa87a2714b9082b84359bb30da99","size":68347216,"filename":"pool/main/p/powershell/powershell_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312305,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.100","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.0)","dotnet-apphost-pack-6.0 (>= 6.0.0)","dotnet-runtime-6.0 (>= 6.0.0)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f792e43cf164d2d26732ca187969ba60d1b5f8f3ef820a587af023c6f45615c9","size":77916560,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.100-x64.deb"},{"package":"powershell","version":"7.3.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196786,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c23b461a443ab87f9c11ce69fb625a01d7fd141f30ca42bec7a86cefed79ebac","size":71719252,"filename":"pool/main/p/powershell/powershell_7.3.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366974,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.306","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"054944c3f1c729ebd4fc08bd58a68bf759e6878d8729815ee59145e945e59857","size":96543430,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.306-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"a7fe468a27a9efb9f56f65ce563eb582f064e486f566710c3ebb680ce3a2386d","size":1315118,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.14-x64.deb"},{"package":"powershell","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5bb0f368f4a177f2790789a57102b3d22288a3fa98e86e8f48b43b8c9705497b","size":70502394,"filename":"pool/main/p/powershell/powershell_7.2.11-1.deb_amd64.deb"},{"package":"mystikos","version":"0.11.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"e4ddec438e39a6eccb041704d3d7881cb5de62ca4be860d2182bda98c9404222","size":5664532,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.11.0-x86_64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.807-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241157,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.807","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"394c0f1ae41df719835e1b9f43ff95750b2b536febb327b51adce9d8fee15f62","size":92101918,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.807-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313399,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.113","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"829fa22bb13f41075e7a253b2588d9848c512fa59c9594fd367561180b9e0ea1","size":78501022,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.113-x64.deb"},{"package":"powershell-lts","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"dc85567c9a52e16ebed727f41389de0b8e3275437e4b7a3905bc894f359a24f9","size":69460950,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357031,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.203","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"2e1000a54d809da2b49d0fbfacb4c9eca33805e0334be8fa34815ab17814fead","size":91833094,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.203-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.812-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241219,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.812","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"24b7b07cf5de2bbf1e8fd020dcda3426589c05e4eb92c5d572c3ce9846beeddd","size":91609078,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.812-x64.deb"},{"package":"mdatp","version":"100.90.70","architecture":"amd64","section":"devel","priority":"optional","installed_size":49431,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libproxy1v5","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"9ae09e3dca009b6975321bc7d57c8b1a1586626f91dd9fedf6faeb6532d72c50","size":15945054,"filename":"pool/main/m/mdatp/mdatp_100.90.70.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"171aeb6bc5d33779abe3e2eddc99474eef8e3ae8151cd3a9115cb34d8b4d3338","size":124365596,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4653-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68316,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.1 Microsoft.NETCore.App 5.0.1","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.1)","dotnet-hostfxr-5.0 (>= 5.0.1)"],"sha256":"eb4ddf15455e10ef799558292c732e20ccc6cc00b43a1e0b8175c5f4f0dbbe90","size":21672428,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.1-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337370,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.410","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"d714b88755d977894f1485c36b44a1c5f044ecfb329e6c04da9435faea474465","size":86806086,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.410-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bb40f43fe2210a8c8c00c295c85501ac849538750306645639e4eb164882f993","size":165947920,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2883-1.deb"},{"package":"azcmagent","version":"1.17.01931.118","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"6325d3110429e507691a25971a05b8c4a3110dde345fb24f355cd8765945d550","size":52441268,"filename":"pool/main/a/azcmagent/azcmagent_1.17.01931.118_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.11)","dotnet-runtime-deps-6.0 (>= 6.0.11)"],"sha256":"e745e27dd7fbc813dcdffb896469807ed1a1a9323fbd81dd5c3af95a593e171c","size":22847074,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.11-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.526-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228629,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.526","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"5acb3f643aace977e0b8e6f1d5414b16f3ec72caa8a5c3f8597bb34467152173","size":89325496,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.526-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.22 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.22)","libc6"],"sha256":"38ee581ebe6732de3b4a09b351ad6680bfb30a62aedd0d8cc9a100b81b413051","size":143754,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.22-x64.deb"},{"package":"azapi2azurerm","version":"0.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20240,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3294cb23f7013f939e6246eded6b3e85be150991aa85bc5d050d95d5be7a8cbf","size":6674858,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.0.0-1-amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68402,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.7)","dotnet-runtime-deps-6.0 (>= 6.0.7)"],"sha256":"6099c737128e6076793bd9e7d7076a1189fbcd79e99ece43b3a283b71072d387","size":23053200,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.7-x64.deb"},{"package":"sysmonforlinux","version":"1.3.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"f79ea8c2165edf2d067e46b61a804eaa87711071d3f307f62024a4cbdc8065ac","size":1772790,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.0_amd64.deb"},{"package":"dotnet-host","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3e9f0cc103795cf8aaafdb0168ba7ec1f0763189642438455faa4b727e64e09c","size":52600,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227503,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"eb71fc6cd5b1137f9a7d3b8bb3f38773a927a7e1438b990cdf72ae3049f97b29","size":58892974,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.403-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.2)"],"sha256":"62d5edb2667273c90fca39f2bed842e0dd6aad2a66b848a53fa57852b041c173","size":6597956,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.2-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.29)"],"sha256":"fd481d70bab41f4400425f4e3d8ec6c1079a6e45e865c83c3fb2d5b522fba29c","size":5771912,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.29-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.22 Microsoft.NETCore.App 3.1.22","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.22)","dotnet-runtime-deps-3.1 (>= 3.1.22)"],"sha256":"240796de8929b597d89f200a4616568eb27171185205ccef480c2fbb1f77e5fb","size":21834512,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.22-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.1 5.0.1","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.1)","libc6"],"sha256":"6dbd073a452657fadb74e92ec5853eed163ab480f5b795d36b7413a3aaaa27d3","size":140822,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.1-x64.deb"},{"package":"powershell","version":"7.3.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172207,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9219bc276da261d6fd1bce5dcbf898466e70682ea2f17eabff85841fbe6c9e57","size":69106406,"filename":"pool/main/p/powershell/powershell_7.3.6-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176791,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"940ab39342e7222ab0b09aee1182bdc8909db10a57908f8b25f1a1b9817dc60a","size":70833626,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70798,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.0)","dotnet-hostfxr-7.0 (>= 7.0.0)"],"sha256":"e80ddae4ea254b74b1f0bc91a6ebdef405e57ec4bbee4dca96e7e0cad3510a34","size":23190380,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.0-x64.deb"},{"package":"dotnet-host","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3086468765ad4e9f4298a8494f0105e7de05df8f32629168ecd3c86f7ebe4945","size":32460,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.26-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.25","homepage":"https://github.com/dotnet/core","sha256":"89859d59a821026b2e4d4237e799da2d4ff8d8f2679d27bbbbbf3cf73424e4d6","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.25-x64.deb"},{"package":"dotnet-host","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c77426b730cdf18db5d69641478667b838c98bbeef0fca45b58a85905d69a01b","size":36562,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.24-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.209-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222002,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.209","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"6d925dbfa3976f255dcf4db5b504f91a1465f1586b73d926a654fdb99e7e95b6","size":57063358,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.209-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b959b066afa9018179da74fe45e2561a459c4b0ef359e63dba3bf2c9ccca100d","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.4-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc92+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":18424,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"90adcb51c1ec71706a363f3dc18667dc56801beed2c51f44d105e30487e16644","size":6150968,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc92+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"50f58decb20077f0570e2720ff98689e0b8771b490c81275736b857bc248ecb4","size":70342536,"filename":"pool/main/p/powershell/powershell_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"0.9.20164.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"fb1cf14f7833e1ad3b2a68ce54de79262d66606a2205afb9249c4c3f7dfc201f","size":34134372,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20164.002_amd64.deb"},{"package":"moby-compose","version":"2.20.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59115,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"acbf7cecdc9df187cc1651c91daf7d43a20e94618d0c426c1102028746bf45e6","size":11886270,"filename":"pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.10 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.10)","libc6"],"sha256":"f5682ca5b104f37b4b77fbbcf0662e7fead74014003d9aa40f4edf216e3f0d0f","size":121008,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.10-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.7)","libc6"],"sha256":"17fc7a07ed846e5f8e6060fbf3bb21686fff1d735915fbc44e6aa16e6b8d526a","size":142192,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.31","homepage":"https://github.com/dotnet/core","sha256":"760bf1bd6cca99b32db239b0bfd2260f7f24179135c7f69107a29dea06c17d64","size":41936,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.31-x64.deb"},{"package":"dotnet-host","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"44e5c71e484c1b4627a85f29561d4bcf886dd3e1c0e2a9cdfd8f8740613debcd","size":32782,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.13-x64.deb"},{"package":"aadlogin-selinux","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"0a305bb2f22e6cd270c46ad0fb9aa9ddfbf831e369e543c3774f278cde7f0a83","size":10148,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.016050002_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71045,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.18 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.18)"],"sha256":"50f5968c112685726d23c0c483f3875a5ed3d6fb9062b96e34045aef5050a9ce","size":21924114,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.18-x64.deb"},{"package":"kevlar-repokey-prod","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-test"],"sha256":"dee391c861313a0dae25cccd08af13e5ab7a60bdad4c00934ef5a60581219502","size":2498,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-prod_1.1-1_amd64.deb"},{"package":"azureauth","version":"0.8.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74210,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"0548d922295c5abf08bf13101afd2cd095d8ad153feac54299942b5462301d8a","size":24107162,"filename":"pool/main/a/azureauth/azureauth_0.8.3-1_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.0","architecture":"amd64","section":"java","priority":"optional","installed_size":89388,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"9dbd9bf6019ab06c39837b5e7ff3bf0979f28a6cb8882ad6e85ff6c3c0d04077","size":82460816,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.0_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.7)"],"sha256":"fa1bf3eb1f17d370c50d31d0af0cb4a7348ac591735f77edc00f160a2a05b916","size":7057462,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.7-x64.deb"},{"package":"intune-portal","version":"1.2303.10","architecture":"amd64","section":"utils","priority":"optional","installed_size":22500,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpango-1.0-0 (>= 1.14.0)","libpam-pwquality (>= 1.4.0-2)","libsecret-1-0 (>= 0.19.1)","libgtk-3-0 (>= 3.9.10)","libsystemd0","libc6 (>= 2.28)","libuuid1 (>= 2.16)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","libatk1.0-0 (>= 1.12.4)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.21.4)","libsqlite3-0 (>= 3.7.14)","libglib2.0-0 (>= 2.12.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","msalsdk-dbusclient (>= 1.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libssl1.1 (>= 1.1.0)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libsoup2.4-1 (>= 2.4.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"5c353bba27e2ce61b0f71e5fd38553b0b35740246b29224c59c63b46fb9b66db","size":5359808,"filename":"pool/main/i/intune-portal/intune-portal_1.2303.10_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68326,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.3 Microsoft.NETCore.App 5.0.3","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.3)","dotnet-hostfxr-5.0 (>= 5.0.3)"],"sha256":"7bc20a222deaa183550751261290146c3a20251c913c8f31f4fd4489333fcdb2","size":21819124,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.423-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193113,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.423","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.29)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.29)","aspnetcore-runtime-3.1 (>= 3.1.29)"],"sha256":"d50b5e9b7e40adca7013a516a70905f60a8f4482730d0bb17f5d76e6041d6e2e","size":49818980,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.423-x64.deb"},{"package":"mdatp","version":"101.02.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"82cea8404dbc3d29a69e3d5d0cdcd829fcdeebed9b0258f7e430783e3a89aad2","size":16305972,"filename":"pool/main/m/mdatp/mdatp_101.02.55.amd64.deb"},{"package":"aspnetcore-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":12348,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-5.0 (>= 5.0.0)"],"sha256":"c3837d2af9073a6551a81cc25ca60e84a8ac721002f1ccad75a5d376af8e2cc7","size":1316456,"filename":"pool/main/a/aspnetcore-targeting-pack-5.0/aspnetcore-targeting-pack-5.0.0.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.3.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86451,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0e73f0fb4860902c6a1ce2a26b986d43aaaac26479b3347c4ed2815ef249a4ad","size":79708440,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.3.0_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71081,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.22 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.22)"],"sha256":"48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493d84c939b7c608","size":21937036,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.22-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7257904fa3441e","size":124417844,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4590-1.deb"}] From fa416083f290a379c7c30a1d49d0f05abe304606 Mon Sep 17 00:00:00 2001 From: Hamza Saht <74961214+Luigi31415@users.noreply.github.com> Date: Tue, 19 Nov 2024 21:28:32 +0300 Subject: [PATCH 33/52] Fix/spaces in program name (#608) * fix: enforce word boundaries while checking state presence * fix: add tests for the special netstat case with space in process name --------- Co-authored-by: Kelly Brazil --- jc/parsers/netstat_linux.py | 3 +- .../ubuntu-18.04/netstat-sudo-lnp-space.json | 1 + .../ubuntu-18.04/netstat-sudo-lnp-space.out | 51 +++++++++++++++++++ tests/test_netstat.py | 12 +++++ 4 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out diff --git a/jc/parsers/netstat_linux.py b/jc/parsers/netstat_linux.py index 222f2944d..216a94e13 100644 --- a/jc/parsers/netstat_linux.py +++ b/jc/parsers/netstat_linux.py @@ -1,5 +1,6 @@ r"""jc - JSON Convert Linux netstat Parser""" import string +import re def normalize_headers(header): @@ -38,7 +39,7 @@ def parse_network(headers, entry): ] # split entry based on presence of value in "State" column - contains_state = any(state in entry for state in LIST_OF_STATES) + contains_state = any(re.search(rf"\b{re.escape(state)}\b", entry) for state in LIST_OF_STATES) split_modifier = 1 if contains_state else 2 entry = entry.split(maxsplit=len(headers) - split_modifier) diff --git a/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json new file mode 100644 index 000000000..835325eeb --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json @@ -0,0 +1 @@ +[{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"9898","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":9898},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"192.168.68.116","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"bareos-fd","kind":"network","pid":584,"local_port":"9102","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":9102},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"sshd: /usr/sbin","kind":"network","pid":600,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":22},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"5432","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":5432},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"postgres","kind":"network","pid":1676,"local_port":"5433","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":5433},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"127.0.0.1","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"exim4","kind":"network","pid":928,"local_port":"25","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":25},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"zabbix_agen","kind":"network","pid":1817931,"local_port":"10050","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":10050},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"pgpool: watchd","kind":"network","pid":1187,"local_port":"9000","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":9000},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"9898","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":9898},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"sshd: /usr/sbin","kind":"network","pid":600,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":22},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"5432","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":5432},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"postgres","kind":"network","pid":1676,"local_port":"5433","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":5433},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"zabbix_agen","kind":"network","pid":1817931,"local_port":"10050","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":10050},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"dhclient","kind":"network","pid":535,"local_port":"68","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":68},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1204,"local_port":"37300","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":37300},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1205,"local_port":"9694","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":9694},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1203,"local_port":"9694","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":9694},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1206,"local_port":"44649","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":44649},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"rsyslogd","kind":"network","pid":494,"local_port":"52868","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":52868},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"127.0.0.1","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"containerd","kind":"network","pid":1112,"local_port":"42351","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":42351},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"127.0.0.53","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"systemd-resolve","kind":"network","pid":885,"local_port":"53","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":53},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"sshd","kind":"network","pid":1127,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":22},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"sshd","kind":"network","pid":1127,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":22},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"127.0.0.53","foreign_address":"0.0.0.0","state":null,"program_name":"systemd-resolve","kind":"network","pid":885,"local_port":"53","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":53},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"192.168.71.131","foreign_address":"0.0.0.0","state":null,"program_name":"systemd-network","kind":"network","pid":867,"local_port":"68","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":68},{"proto":"raw6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"7","program_name":"systemd-network","kind":"network","pid":867,"local_port":"58","foreign_port":"*","transport_protocol":null,"network_protocol":"ipv6","local_port_num":58},{"proto":"unix","refcnt":2,"flags":"ACC","type":"SEQPACKET","state":"LISTENING","inode":20812,"program_name":"init","path":"/run/udev/control","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33765,"program_name":"systemd","path":"/run/user/1000/systemd/private","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33808,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent.ssh","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33809,"program_name":"systemd","path":"/run/user/1000/gnupg/S.dirmngr","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33810,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent.browser","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33811,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33812,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent.extra","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20655,"program_name":"init","path":"/run/systemd/private","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20662,"program_name":"init","path":"/run/lvm/lvmetad.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20664,"program_name":"init","path":"/run/systemd/journal/stdout","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20891,"program_name":"init","path":"/run/lvm/lvmpolld.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27473,"program_name":"init","path":"/run/acpid.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27443,"program_name":"init","path":"/run/snapd.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27445,"program_name":"init","path":"/run/snapd-snap.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27475,"program_name":"init","path":"/run/uuidd/request","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27481,"program_name":"init","path":"/var/run/docker.sock","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27489,"program_name":"init","path":"/var/run/dbus/system_bus_socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27468,"program_name":"init","path":"/var/lib/lxd/unix.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":30726,"program_name":"containerd","path":"/run/containerd/containerd.sock","kind":"socket","pid":1112},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27436,"program_name":"init","path":"@ISCSIADM_ABSTRACT_NAMESPACE","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":25548,"program_name":"VGAuthService","path":"/var/run/vmware/guestServicePipe","kind":"socket","pid":607}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out new file mode 100644 index 000000000..0152b9fa4 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out @@ -0,0 +1,51 @@ +Active Internet connections (only servers) +Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name +tcp 0 0 0.0.0.0:9898 0.0.0.0:* LISTEN 1178/pgpool +tcp 0 0 192.168.68.116:9102 0.0.0.0:* LISTEN 584/bareos-fd +tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 600/sshd: /usr/sbin +tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN 1178/pgpool +tcp 0 0 0.0.0.0:5433 0.0.0.0:* LISTEN 1676/postgres +tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 928/exim4 +tcp 0 0 0.0.0.0:10050 0.0.0.0:* LISTEN 1817931/zabbix_agen +tcp 0 0 0.0.0.0:9000 0.0.0.0:* LISTEN 1187/pgpool: watchd +tcp6 0 0 :::9898 :::* LISTEN 1178/pgpool +tcp6 0 0 :::22 :::* LISTEN 600/sshd: /usr/sbin +tcp6 0 0 :::5432 :::* LISTEN 1178/pgpool +tcp6 0 0 :::5433 :::* LISTEN 1676/postgres +tcp6 0 0 :::10050 :::* LISTEN 1817931/zabbix_agen +udp 0 0 0.0.0.0:68 0.0.0.0:* 535/dhclient +udp 0 0 0.0.0.0:37300 0.0.0.0:* 1204/pgpool: heartb +udp 0 0 0.0.0.0:9694 0.0.0.0:* 1205/pgpool: heartb +udp 0 0 0.0.0.0:9694 0.0.0.0:* 1203/pgpool: heartb +udp 0 0 0.0.0.0:44649 0.0.0.0:* 1206/pgpool: heartb +udp 0 0 0.0.0.0:52868 0.0.0.0:* 494/rsyslogd +tcp 0 0 127.0.0.1:42351 0.0.0.0:* LISTEN 1112/containerd +tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 885/systemd-resolve +tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1127/sshd +tcp6 0 0 :::22 :::* LISTEN 1127/sshd +udp 0 0 127.0.0.53:53 0.0.0.0:* 885/systemd-resolve +udp 0 0 192.168.71.131:68 0.0.0.0:* 867/systemd-network +raw6 0 0 :::58 :::* 7 867/systemd-network +Active UNIX domain sockets (only servers) +Proto RefCnt Flags Type State I-Node PID/Program name Path +unix 2 [ ACC ] SEQPACKET LISTENING 20812 1/init /run/udev/control +unix 2 [ ACC ] STREAM LISTENING 33765 1723/systemd /run/user/1000/systemd/private +unix 2 [ ACC ] STREAM LISTENING 33808 1723/systemd /run/user/1000/gnupg/S.gpg-agent.ssh +unix 2 [ ACC ] STREAM LISTENING 33809 1723/systemd /run/user/1000/gnupg/S.dirmngr +unix 2 [ ACC ] STREAM LISTENING 33810 1723/systemd /run/user/1000/gnupg/S.gpg-agent.browser +unix 2 [ ACC ] STREAM LISTENING 33811 1723/systemd /run/user/1000/gnupg/S.gpg-agent +unix 2 [ ACC ] STREAM LISTENING 33812 1723/systemd /run/user/1000/gnupg/S.gpg-agent.extra +unix 2 [ ACC ] STREAM LISTENING 20655 1/init /run/systemd/private +unix 2 [ ACC ] STREAM LISTENING 20662 1/init /run/lvm/lvmetad.socket +unix 2 [ ACC ] STREAM LISTENING 20664 1/init /run/systemd/journal/stdout +unix 2 [ ACC ] STREAM LISTENING 20891 1/init /run/lvm/lvmpolld.socket +unix 2 [ ACC ] STREAM LISTENING 27473 1/init /run/acpid.socket +unix 2 [ ACC ] STREAM LISTENING 27443 1/init /run/snapd.socket +unix 2 [ ACC ] STREAM LISTENING 27445 1/init /run/snapd-snap.socket +unix 2 [ ACC ] STREAM LISTENING 27475 1/init /run/uuidd/request +unix 2 [ ACC ] STREAM LISTENING 27481 1/init /var/run/docker.sock +unix 2 [ ACC ] STREAM LISTENING 27489 1/init /var/run/dbus/system_bus_socket +unix 2 [ ACC ] STREAM LISTENING 27468 1/init /var/lib/lxd/unix.socket +unix 2 [ ACC ] STREAM LISTENING 30726 1112/containerd /run/containerd/containerd.sock +unix 2 [ ACC ] STREAM LISTENING 27436 1/init @ISCSIADM_ABSTRACT_NAMESPACE +unix 2 [ ACC ] STREAM LISTENING 25548 607/VGAuthService /var/run/vmware/guestServicePipe diff --git a/tests/test_netstat.py b/tests/test_netstat.py index 755318256..54392ddb6 100644 --- a/tests/test_netstat.py +++ b/tests/test_netstat.py @@ -37,6 +37,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.out'), 'r', encoding='utf-8') as f: ubuntu_18_4_netstat_sudo_lnp = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out'), 'r', encoding='utf-8') as f: + ubuntu_18_4_netstat_sudo_lnp_space = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-aeep.out'), 'r', encoding='utf-8') as f: centos_7_7_netstat_sudo_aeep = f.read() @@ -164,6 +167,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.json'), 'r', encoding='utf-8') as f: ubuntu_18_4_netstat_sudo_lnp_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json'), 'r', encoding='utf-8') as f: + ubuntu_18_4_netstat_sudo_lnp_space_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-aeep.json'), 'r', encoding='utf-8') as f: centos_7_7_netstat_sudo_aeep_json = json.loads(f.read()) @@ -317,6 +323,12 @@ def test_netstat_sudo_lnp_ubuntu_18_4(self): """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_sudo_lnp, quiet=True), self.ubuntu_18_4_netstat_sudo_lnp_json) + def test_netstat_sudo_lnp_ubuntu_18_4(self): + """ + Test 'sudo netstat -lnp' on Ubuntu 18.4 with a space in the process name(special case) + """ + self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_sudo_lnp_space, quiet=True), self.ubuntu_18_4_netstat_sudo_lnp_space_json) + def test_netstat_sudo_aeep_centos_7_7(self): """ Test 'sudo netstat -aeep' on Centos 7.7 From c0f9b705c6dcfdd3badb45864c5557449946fa23 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:33:19 -0800 Subject: [PATCH 34/52] doc update --- CHANGELOG | 7 ++++--- jc/parsers/netstat.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index da5ee3feb..253c3af97 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,15 @@ jc changelog -20241118 v1.25.4 +20241119 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) -- Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Enhance `ping-s` streaming parser to support error replies - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs -- Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `mount` parser for cases where there are spaces in the filesystem name +- Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 50c82b006..b39ac704c 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -355,7 +355,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.15' + version = '1.16' description = '`netstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' From 0af4a3a5d73b7b594b902404b574c4d47028de50 Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Tue, 19 Nov 2024 21:43:24 +0300 Subject: [PATCH 35/52] fix: New RE_PROBE_IPV6_ONLY with better complexity in worst case (#609) Example ':'*100 Co-authored-by: Kelly Brazil --- jc/parsers/traceroute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index a55b85748..d1a6b5fc4 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -167,7 +167,7 @@ class info(): RE_HEADER = re.compile(r'(\S+)\s+\((\d+\.\d+\.\d+\.\d+|[0-9a-fA-F:]+)\)') RE_PROBE_NAME_IP = re.compile(r'(\S+)\s+\((\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|[0-9a-fA-F:]+)\)+') RE_PROBE_IP_ONLY = re.compile(r'(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s+([^\(])') -RE_PROBE_IPV6_ONLY = re.compile(r'(([a-f0-9:]+:+)+[a-f0-9]+)') +RE_PROBE_IPV6_ONLY = re.compile(r'(([a-f0-9]*:)+[a-f0-9]+)') RE_PROBE_BSD_IPV6 = re.compile(r'\b(?:[A-Fa-f0-9]{1,4}:){7}[A-Fa-f0-9]{1,4}\b') RE_HOP = re.compile(r'^\s*(\d+)?\s+(.+)$') RE_PROBE_ASN = re.compile(r'\[AS(\d+)\]') From 4cb88977cc699dbda8e99af0ce930ba2f8742e71 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:51:10 -0800 Subject: [PATCH 36/52] add long ipv6 test --- tests/test_traceroute.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/test_traceroute.py b/tests/test_traceroute.py index 7a113f414..71c3341ce 100644 --- a/tests/test_traceroute.py +++ b/tests/test_traceroute.py @@ -270,6 +270,19 @@ def test_traceroute_n_ipv6(self): """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute_n_ipv6, quiet=True), self.generic_traceroute_n_ipv6_json) + def test_traceroute_long_ipv6(self): + """ + Test 'traceroute6' with a long ipv6 response + """ + data = '''traceroute6 to turner-tls.map.fastly.net (2a04:4e42:200::323) from 2600:1700:bab0:d40:985:f00a:98bd:f142, 5 hops max, 12 byte packets + 1 * * * + 2 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 27.635 ms 20.383 ms 23.438 ms + 3 * * * + 4 2001:1890:ff:ff08:12:242:117:16 20.118 ms 20.327 ms 21.213 ms + 5 * * *''' + expected = json.loads('''{"destination_ip":"2a04:4e42:200::323","destination_name":"turner-tls.map.fastly.net","hops":[{"hop":1,"probes":[]},{"hop":2,"probes":[{"annotation":null,"asn":null,"ip":null,"name":null,"rtt":27.635},{"annotation":null,"asn":null,"ip":null,"name":null,"rtt":20.383},{"annotation":null,"asn":null,"ip":null,"name":null,"rtt":23.438}]},{"hop":3,"probes":[]},{"hop":4,"probes":[{"annotation":null,"asn":null,"ip":"2001:1890:ff:ff08:12:242:117:16","name":null,"rtt":20.118},{"annotation":null,"asn":null,"ip":"2001:1890:ff:ff08:12:242:117:16","name":null,"rtt":20.327},{"annotation":null,"asn":null,"ip":"2001:1890:ff:ff08:12:242:117:16","name":null,"rtt":21.213}]},{"hop":5,"probes":[]}]}''') + self.assertEqual(jc.parsers.traceroute.parse(data, quiet=True), expected) + if __name__ == '__main__': unittest.main() From 2278c7ecaba75d80c2d15754bbd3f93e2d03f02f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:51:16 -0800 Subject: [PATCH 37/52] doc update --- CHANGELOG | 1 + jc/parsers/traceroute.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 253c3af97..1faa22040 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,6 +11,7 @@ jc changelog - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name +- Fix `traceroute` parser to support extreme IPv6 cases - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index d1a6b5fc4..36d74d821 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -123,7 +123,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.7' + version = '1.8' description = '`traceroute` and `traceroute6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' From a8b231da81fae8928688c51002dc6e56cce31e10 Mon Sep 17 00:00:00 2001 From: pettai Date: Tue, 19 Nov 2024 21:12:43 +0100 Subject: [PATCH 38/52] nsd-control parser update, zone transfer status (#607) * add more parsing functionality for transfering state * add additional/conditional fields into the schema --------- Co-authored-by: Kelly Brazil --- jc/parsers/nsd_control.py | 22 +++++++++++++++++-- .../generic/nsd_control-zonestatus.json | 2 +- .../generic/nsd_control-zonestatus.out | 6 +++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/jc/parsers/nsd_control.py b/jc/parsers/nsd_control.py index fd80e9501..e2eed3048 100644 --- a/jc/parsers/nsd_control.py +++ b/jc/parsers/nsd_control.py @@ -28,9 +28,13 @@ "zone": string "status": { "state": string, + "pattern": string, # Additional + "catalog-member-id": string, # Additional "served-serial": string, "commit-serial": string, - "wait": string + "notified-serial": string, # Conditional + "wait": string, + "transfer": string # Conditional } } ] @@ -89,7 +93,7 @@ def _process(proc_data): List of Dictionaries. Structured to conform to the schema. """ - int_list = {'verbosity', 'ratelimit', 'wait'} + int_list = {'verbosity', 'ratelimit', 'wait', 'transfer'} for entry in proc_data: for key in entry: @@ -229,6 +233,20 @@ def parse(data: str, raw: bool = False, quiet: bool = False): raw_output.append(zonename) continue + if line.startswith('notified-serial:'): + linedata = line.split(': ', maxsplit=1) + notified = linedata[1].strip('"').rstrip('"') + zstatus.update({'notified-serial': notified}) + continue + + if line.startswith('transfer:'): + linedata = line.split(': ', maxsplit=1) + transfer = linedata[1].strip('"').rstrip('"') + zstatus.update({'transfer': transfer}) + zonename.update({'status': zstatus}) + raw_output.append(zonename) + continue + # stats if line.startswith('server') or line.startswith('num.') or line.startswith('size.') or line.startswith('time.') or line.startswith('zone.'): itrparse = True diff --git a/tests/fixtures/generic/nsd_control-zonestatus.json b/tests/fixtures/generic/nsd_control-zonestatus.json index bf3b32437..6d2e06825 100644 --- a/tests/fixtures/generic/nsd_control-zonestatus.json +++ b/tests/fixtures/generic/nsd_control-zonestatus.json @@ -1 +1 @@ -[{"zone":"sunet.se","status":{"state":"ok","served-serial":"2023091302 since 2023-09-14T00:50:11","commit-serial":"2023091302 since 2023-09-14T07:04:05","wait":"27023 sec between attempts"}},{"zone":"catz.sunet.se","status":{"pattern":"example.catalog","catalog-member-id":"4b6f6ce2de5929e4.zones.example.catalog.","state":"ok","served-serial":"1705484863 since 2024-01-17T13:06:02","commit-serial":"1705484863 since 2024-01-17T13:06:02","wait":"21341 sec between attempts"}}] +[{"zone":"sunet.se","status":{"state":"ok","served-serial":"2023091302 since 2023-09-14T00:50:11","commit-serial":"2023091302 since 2023-09-14T07:04:05","wait":"27023 sec between attempts"}},{"zone":"sunet.dev","status":{"state":"refreshing","served-serial":"2023095893 since 2024-10-10T10:10:35","commit-serial":"2023095893 since 2024-10-18T10:00:45","notified-serial":"2023095880 since 2024-10-19T06:11:35","transfer":"TCP connected to 192.168.1.100"}},{"zone":"catz.sunet.se","status":{"pattern":"example.catalog","catalog-member-id":"4b6f6ce2de5929e4.zones.example.catalog.","state":"ok","served-serial":"1705484863 since 2024-01-17T13:06:02","commit-serial":"1705484863 since 2024-01-17T13:06:02","wait":"21341 sec between attempts"}}] diff --git a/tests/fixtures/generic/nsd_control-zonestatus.out b/tests/fixtures/generic/nsd_control-zonestatus.out index 4b57fcde9..cda4a4848 100644 --- a/tests/fixtures/generic/nsd_control-zonestatus.out +++ b/tests/fixtures/generic/nsd_control-zonestatus.out @@ -3,6 +3,12 @@ zone: sunet.se served-serial: "2023091302 since 2023-09-14T00:50:11" commit-serial: "2023091302 since 2023-09-14T07:04:05" wait: "27023 sec between attempts" +zone: sunet.dev + state: refreshing + served-serial: "2023095893 since 2024-10-10T10:10:35" + commit-serial: "2023095893 since 2024-10-18T10:00:45" + notified-serial: "2023095880 since 2024-10-19T06:11:35" + transfer: "TCP connected to 192.168.1.100" zone: catz.sunet.se pattern: example.catalog catalog-member-id: 4b6f6ce2de5929e4.zones.example.catalog. From 34ab34cc66fbd87ef08fa52d35f2c1532d67189f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 12:15:18 -0800 Subject: [PATCH 39/52] doc update --- CHANGELOG | 1 + jc/parsers/nsd_control.py | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1faa22040..0d91ddc6d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,7 @@ jc changelog - Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Enhance `nsd-control` parser with additional state fields - Enhance `ping-s` streaming parser to support error replies - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs diff --git a/jc/parsers/nsd_control.py b/jc/parsers/nsd_control.py index e2eed3048..595431aec 100644 --- a/jc/parsers/nsd_control.py +++ b/jc/parsers/nsd_control.py @@ -17,24 +17,24 @@ [ { - "version": string, - "verbosity": integer, - "ratelimit": integer + "version": string, + "verbosity": integer, + "ratelimit": integer } ] [ { - "zone": string + "zone": string "status": { - "state": string, - "pattern": string, # Additional - "catalog-member-id": string, # Additional - "served-serial": string, - "commit-serial": string, - "notified-serial": string, # Conditional - "wait": string, - "transfer": string # Conditional + "state": string, + "pattern": string, # Additional + "catalog-member-id": string, # Additional + "served-serial": string, + "commit-serial": string, + "notified-serial": string, # Conditional + "wait": string, + "transfer": string # Conditional } } ] @@ -69,7 +69,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`nsd-control` command parser' author = 'Pettai' author_email = 'pettai@sunet.se' From 7ddd2a4ce20dac70fb1c4ab095457a8f2184c7c3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 14:12:21 -0800 Subject: [PATCH 40/52] fix yaml parser to support values starting with an equal sign --- CHANGELOG | 1 + jc/parsers/yaml.py | 16 +++++++++------- tests/test_yaml.py | 8 ++++++++ 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0d91ddc6d..43fff3a44 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -14,6 +14,7 @@ jc changelog - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name - Fix `traceroute` parser to support extreme IPv6 cases - Fix `uptime` parser for data that contains `user` instead of `users` +- Fix `yaml` parser to support values that start with an equal sign - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters 20240609 v1.25.3 diff --git a/jc/parsers/yaml.py b/jc/parsers/yaml.py index 8a13a5b61..eb536d588 100644 --- a/jc/parsers/yaml.py +++ b/jc/parsers/yaml.py @@ -87,7 +87,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.7' + version = '1.8' description = 'YAML file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -111,7 +111,6 @@ def _process(proc_data): List of Dictionaries. Each dictionary represents a YAML document. """ - # No further processing return proc_data @@ -148,17 +147,20 @@ def parse(data, raw=False, quiet=False): # plugin code is incompatible with the pyoxidizer packager YAML.official_plug_ins = lambda a: [] - yaml = YAML(typ='safe') + # use the default `typ` to correctly load values that start with a literal "=" + yaml = YAML(typ=None) # modify the timestamp constructor to output datetime objects as # strings since JSON does not support datetime objects yaml.constructor.yaml_constructors['tag:yaml.org,2002:timestamp'] = \ yaml.constructor.yaml_constructors['tag:yaml.org,2002:str'] + # modify the value constructor to output values starting with a + # literal "=" as a string. + yaml.constructor.yaml_constructors['tag:yaml.org,2002:value'] = \ + yaml.constructor.yaml_constructors['tag:yaml.org,2002:str'] + for document in yaml.load_all(data): raw_output.append(document) - if raw: - return raw_output - else: - return _process(raw_output) + return raw_output if raw else _process(raw_output) diff --git a/tests/test_yaml.py b/tests/test_yaml.py index b61150d7d..0579b47ee 100644 --- a/tests/test_yaml.py +++ b/tests/test_yaml.py @@ -56,6 +56,14 @@ def test_yaml_datetime(self): expected = [{"deploymentTime":"2022-04-18T11:12:47"}] self.assertEqual(jc.parsers.yaml.parse(data, quiet=True), expected) + def test_yaml_equalsign(self): + """ + Test yaml file with a value that starts with a literal equal sign "=" (should convert to a string) + """ + data = 'key: =' + expected = [{"key":"="}] + self.assertEqual(jc.parsers.yaml.parse(data, quiet=True), expected) + if __name__ == '__main__': unittest.main() From 7887789d0d733e58c0e24a9001034529b3b3a382 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 Nov 2024 13:49:27 -0800 Subject: [PATCH 41/52] coerce non-json-serializable objects to strings --- CHANGELOG | 3 ++- jc/cli.py | 7 ++++++- jc/jc_types.py | 9 +-------- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 43fff3a44..80a19377f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20241119 v1.25.4 +20241120 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS @@ -16,6 +16,7 @@ jc changelog - Fix `uptime` parser for data that contains `user` instead of `users` - Fix `yaml` parser to support values that start with an equal sign - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters +- Enhance cli to coerce any non-JSON-serializable objects to a string 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field diff --git a/jc/cli.py b/jc/cli.py index 41c8358da..72ef79973 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -401,11 +401,16 @@ def json_out(self) -> str: self.json_indent = 2 self.json_separators = None + # Convert any non-serializable object to a string + def string_serializer(data): + return str(data) + j_string = json.dumps( self.data_out, indent=self.json_indent, separators=self.json_separators, - ensure_ascii=self.ascii_only + ensure_ascii=self.ascii_only, + default=string_serializer ) if not self.mono and PYGMENTS_INSTALLED: diff --git a/jc/jc_types.py b/jc/jc_types.py index d34af2714..6377559f7 100644 --- a/jc/jc_types.py +++ b/jc/jc_types.py @@ -3,6 +3,7 @@ import sys from typing import Any, Dict, List, Tuple, Iterator, Optional, Union +CustomColorType = Dict[Any, str] JSONDictType = Dict[str, Any] StreamingOutputType = Iterator[Union[JSONDictType, Tuple[BaseException, str]]] @@ -42,11 +43,3 @@ else: ParserInfoType = Dict TimeStampFormatType = Dict - - -try: - from pygments.token import (Name, Number, String, Keyword) - CustomColorType = Dict[Union[Name.Tag, Number, String, Keyword], str] - -except Exception: - CustomColorType = Dict # type: ignore From 7d33850d43b91f6a1bc6bf3a8e81db70ff1f0e91 Mon Sep 17 00:00:00 2001 From: Hamza Saht <74961214+Luigi31415@users.noreply.github.com> Date: Mon, 25 Nov 2024 00:24:04 +0300 Subject: [PATCH 42/52] fix: Edit pythonapp.yml workflow to run on non-draft PRs (#617) --- .github/workflows/pythonapp.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 1f3ea468e..319c64fea 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -10,6 +10,7 @@ on: jobs: old_python: + if: github.event.pull_request.draft == false runs-on: ${{ matrix.os }} strategy: matrix: @@ -37,6 +38,7 @@ jobs: python -m unittest discover tests latest_python: + if: github.event.pull_request.draft == false runs-on: ${{ matrix.os }} strategy: matrix: From 7fbe1e9f21ae8dc5e3cda3993f2c4b93da6dd967 Mon Sep 17 00:00:00 2001 From: Hamza Saht <74961214+Luigi31415@users.noreply.github.com> Date: Mon, 25 Nov 2024 00:34:58 +0300 Subject: [PATCH 43/52] Add WireGuard (wg) Command Output Parser (#606) * feat: add parser to parse the output of wg * fixup! feat: add parser to parse the output of wg * feat: Add tests for windows 10 --------- Co-authored-by: Kelly Brazil --- jc/lib.py | 1 + jc/parsers/wg_show.py | 270 ++++++++++++++++++ .../ubuntu-22.04/wg_show--one_device.json | 95 ++++++ .../ubuntu-22.04/wg_show--one_device.out | 9 + .../ubuntu-22.04/wg_show--two_devices.json | 245 ++++++++++++++++ .../ubuntu-22.04/wg_show--two_devices.out | 22 ++ .../fixtures/windows/windows-10/wg_show.json | 94 ++++++ tests/fixtures/windows/windows-10/wg_show.out | 9 + tests/test_wg_show.py | 26 ++ 9 files changed, 771 insertions(+) create mode 100644 jc/parsers/wg_show.py create mode 100644 tests/fixtures/ubuntu-22.04/wg_show--one_device.json create mode 100644 tests/fixtures/ubuntu-22.04/wg_show--one_device.out create mode 100644 tests/fixtures/ubuntu-22.04/wg_show--two_devices.json create mode 100644 tests/fixtures/ubuntu-22.04/wg_show--two_devices.out create mode 100644 tests/fixtures/windows/windows-10/wg_show.json create mode 100644 tests/fixtures/windows/windows-10/wg_show.out create mode 100644 tests/test_wg_show.py diff --git a/jc/lib.py b/jc/lib.py index 0b4341ba4..44c585926 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -225,6 +225,7 @@ 'vmstat-s', 'w', 'wc', + 'wg-show', 'who', 'x509-cert', 'x509-csr', diff --git a/jc/parsers/wg_show.py b/jc/parsers/wg_show.py new file mode 100644 index 000000000..608d953a2 --- /dev/null +++ b/jc/parsers/wg_show.py @@ -0,0 +1,270 @@ +r"""jc - JSON Convert `wg show` command output parser + +Parses the output of the `wg show all dump` command, providing structured JSON output for easy integration and analysis. + +Usage (cli): + + $ wg show all dump | jc --wg-show + +or + + $ jc wg-show + +Usage (module): + + import jc + result = jc.parse('wg-show', wg_command_output) + +Schema: + + [ + { + "device": string, + "privateKey": string, + "publicKey": string, + "listenPort": integer, + "fwmark": integer, + "peers": [ + { + "publicKey": string, + "presharedKey": string, + "endpoint": string, + "latestHandshake": integer, + "transferRx": integer, + "transferSx": integer, + "persistentKeepalive": integer, + "allowedIps": [string] + } + ] + } + ] + +Examples: + + $ wg show all dump | jc --wg-show -p + [ + { + "device": "wg0", + "privateKey": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", + "publicKey": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", + "listenPort": 51820, + "fwmark": null, + "peers": { + "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=": { + "presharedKey": null, + "endpoint": "79.134.136.199:40036", + "latestHandshake": 1728809756, + "transferRx": 1378724, + "transferSx": 406524, + "persistentKeepalive": null, + "allowedIps": ["10.10.0.2/32"] + }, + "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=": { + "presharedKey": null, + "endpoint": "79.134.136.199:35946", + "latestHandshake": 1728809756, + "transferRx": 4884248, + "transferSx": 3544596, + "persistentKeepalive": null, + "allowedIps": ["10.10.0.3/32"] + }, + "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=": { + "presharedKey": null, + "allowedIps": ["10.10.0.4/32"] + }, + "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=": { + "presharedKey": null, + "endpoint": "173.244.225.194:45014", + "latestHandshake": 1728809827, + "transferRx": 1363652, + "transferSx": 458252, + "persistentKeepalive": null, + "allowedIps": ["10.10.0.5/32"] + } + } + } + ] + + + $ wg show all dump | jc --wg-show -p -r + [ + { + "device": "wg0", + "privateKey": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", + "publicKey": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", + "listenPort": 51820, + "fwmark": null, + "peers": { + "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=": { + "presharedKey": null, + "endpoint": "79.134.136.199:40036", + "latestHandshake": 1728809756, + "transferRx": 1378724, + "transferSx": 406524, + "persistentKeepalive": -1, + "allowedIps": ["10.10.0.2/32"] + }, + "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=": { + "presharedKey": null, + "endpoint": "79.134.136.199:35946", + "latestHandshake": 1728809756, + "transferRx": 4884248, + "transferSx": 3544596, + "persistentKeepalive": -1, + "allowedIps": ["10.10.0.3/32"] + }, + "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=": { + "presharedKey": null, + "allowedIps": ["10.10.0.4/32"] + }, + "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=": { + "presharedKey": null, + "endpoint": "173.244.225.194:45014", + "latestHandshake": 1728809827, + "transferRx": 1363652, + "transferSx": 458252, + "persistentKeepalive": -1, + "allowedIps": ["10.10.0.5/32"] + } + } + } + ] +""" + +from typing import List, Dict, Optional, Union +from jc.jc_types import JSONDictType +import jc.utils +import re + +PeerData = Dict[str, Union[Optional[str], Optional[int], List[str]]] +DeviceData = Dict[str, Union[Optional[str], Optional[int], Dict[str, PeerData]]] + + +class info: + """Provides parser metadata (version, author, etc.)""" + + version = "1.0" + description = ( + "Parses the output of the `wg show` command to provide structured JSON data" + ) + author = "Hamza Saht" + author_email = "hamzasaht01@gmail.com" + compatible = ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"] + tags = ["command"] + magic_commands = ["wg-show"] + + +__version__ = info.version + + +def _process(proc_data: List[DeviceData]) -> List[JSONDictType]: + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (List[Dict]) Raw structured data to process + + Returns: + + List[Dict]: Structured data that conforms to the schema + """ + processed_data: List[JSONDictType] = [] + for device in proc_data: + processed_device = { + "device": device["device"], + "privateKey": device.get("privateKey"), + "publicKey": device.get("publicKey"), + "listenPort": device.get("listenPort"), + "fwmark": device.get("fwmark"), + "peers": [ + { + "publicKey": peer_key, + "presharedKey": peer_data.get("presharedKey"), + "endpoint": peer_data.get("endpoint"), + "latestHandshake": peer_data.get("latestHandshake", 0), + "transferRx": peer_data.get("transferRx", 0), + "transferSx": peer_data.get("transferSx", 0), + "persistentKeepalive": peer_data.get("persistentKeepalive", -1), + "allowedIps": peer_data.get("allowedIps", []), + } + for peer_key, peer_data in device.get("peers", {}).items() + ], + } + processed_data.append(processed_device) + return processed_data + + +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[DeviceData]: + """ + Main text parsing function. + + Parses the output of the `wg` command, specifically `wg show all dump`, into structured JSON format. + + Parameters: + + data: (str) Text data to parse, typically the output from `wg show all dump` + raw: (bool) If True, returns unprocessed output + quiet: (bool) Suppress warning messages if True + + Returns: + + List[Dict]: Parsed data in JSON-friendly format, either raw or processed. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: List[DeviceData] = [] + current_device: Optional[str] = None + device_data: DeviceData = {} + + if jc.utils.has_data(data): + for line in filter(None, data.splitlines()): + fields = re.split(r"\s+", line.strip()) + if len(fields) == 5: + device, private_key, public_key, listen_port, fwmark = fields + if current_device: + raw_output.append({"device": current_device, **device_data}) + current_device = device + device_data = { + "privateKey": private_key if private_key != "(none)" else None, + "publicKey": public_key if public_key != "(none)" else None, + "listenPort": int(listen_port) if listen_port != "0" else None, + "fwmark": int(fwmark) if fwmark != "off" else None, + "peers": {}, + } + elif len(fields) == 9: + ( + interface, + public_key, + preshared_key, + endpoint, + allowed_ips, + latest_handshake, + transfer_rx, + transfer_tx, + persistent_keepalive, + ) = fields + peer_data: PeerData = { + "presharedKey": preshared_key + if preshared_key != "(none)" + else None, + "endpoint": endpoint if endpoint != "(none)" else None, + "latestHandshake": int(latest_handshake), + "transferRx": int(transfer_rx), + "transferSx": int(transfer_tx), + "persistentKeepalive": int(persistent_keepalive) + if persistent_keepalive != "off" + else -1, + "allowedIps": allowed_ips.split(",") + if allowed_ips != "(none)" + else [], + } + device_data["peers"][public_key] = { + k: v for k, v in peer_data.items() if v is not None + } + + if current_device: + raw_output.append({"device": current_device, **device_data}) + + return raw_output if raw else _process(raw_output) diff --git a/tests/fixtures/ubuntu-22.04/wg_show--one_device.json b/tests/fixtures/ubuntu-22.04/wg_show--one_device.json new file mode 100644 index 000000000..310ccbb13 --- /dev/null +++ b/tests/fixtures/ubuntu-22.04/wg_show--one_device.json @@ -0,0 +1,95 @@ +[ + { + "device": "wg0", + "privateKey": "ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N=", + "publicKey": "PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN=", + "listenPort": 51820, + "fwmark": null, + "peers": [ + { + "publicKey": "rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe=", + "presharedKey": null, + "endpoint": "82.132.137.204:50024", + "latestHandshake": 1829439251, + "transferRx": 1536642, + "transferSx": 492320, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.2/32" + ] + }, + { + "publicKey": "A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE=", + "presharedKey": null, + "endpoint": "82.132.137.204:49732", + "latestHandshake": 1829439125, + "transferRx": 5641359, + "transferSx": 4206783, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.3/32" + ] + }, + { + "publicKey": "pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5=", + "presharedKey": null, + "endpoint": null, + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 0, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.4/32" + ] + }, + { + "publicKey": "hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx=", + "presharedKey": null, + "endpoint": "180.255.226.203:21678", + "latestHandshake": 1829439243, + "transferRx": 1555523, + "transferSx": 544780, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.5/32" + ] + }, + { + "publicKey": "kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ=", + "presharedKey": null, + "endpoint": "82.132.137.204:67130", + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 0, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.6/32" + ] + }, + { + "publicKey": "XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe=", + "presharedKey": null, + "endpoint": "180.255.226.203:56092", + "latestHandshake": 1829439121, + "transferRx": 1900247, + "transferSx": 1352639, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.8/32" + ] + }, + { + "publicKey": "tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh=", + "presharedKey": null, + "endpoint": "82.132.137.204:60184", + "latestHandshake": 1829037182, + "transferRx": 75047, + "transferSx": 184725, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.7/32" + ] + } + ] + } +] diff --git a/tests/fixtures/ubuntu-22.04/wg_show--one_device.out b/tests/fixtures/ubuntu-22.04/wg_show--one_device.out new file mode 100644 index 000000000..7a2831d2c --- /dev/null +++ b/tests/fixtures/ubuntu-22.04/wg_show--one_device.out @@ -0,0 +1,9 @@ +wg0 ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N= PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN= 51820 off +wg0 rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe= (none) 82.132.137.204:50024 10.10.0.2/32 1829439251 1536642 492320 off +wg0 A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE= (none) 82.132.137.204:49732 10.10.0.3/32 1829439125 5641359 4206783 off +wg0 pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5= (none) (none) 10.10.0.4/32 0 0 0 off +wg0 hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx= (none) 180.255.226.203:21678 10.10.0.5/32 1829439243 1555523 544780 off +wg0 kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ= (none) 82.132.137.204:67130 10.10.0.6/32 0 0 0 off +wg0 XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe= (none) 180.255.226.203:56092 10.10.0.8/32 1829439121 1900247 1352639 off +wg0 tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh= (none) 82.132.137.204:60184 10.10.0.7/32 1829037182 75047 184725 off + diff --git a/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json b/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json new file mode 100644 index 000000000..9b9351dec --- /dev/null +++ b/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json @@ -0,0 +1,245 @@ +[ + { + "device": "wg0", + "privateKey": "ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N=", + "publicKey": "PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN=", + "listenPort": 51820, + "fwmark": null, + "peers": [ + { + "publicKey": "rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe=", + "presharedKey": null, + "endpoint": "82.132.137.204:50024", + "latestHandshake": 1829439251, + "transferRx": 1536642, + "transferSx": 492320, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.2/32" + ] + }, + { + "publicKey": "A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE=", + "presharedKey": null, + "endpoint": "82.132.137.204:49732", + "latestHandshake": 1829439125, + "transferRx": 5641359, + "transferSx": 4206783, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.3/32" + ] + }, + { + "publicKey": "pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5=", + "presharedKey": null, + "endpoint": null, + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 0, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.4/32" + ] + }, + { + "publicKey": "hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx=", + "presharedKey": null, + "endpoint": "180.255.226.203:21678", + "latestHandshake": 1829439243, + "transferRx": 1555523, + "transferSx": 544780, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.5/32" + ] + }, + { + "publicKey": "kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ=", + "presharedKey": null, + "endpoint": "82.132.137.204:67130", + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 0, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.6/32" + ] + }, + { + "publicKey": "XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe=", + "presharedKey": null, + "endpoint": "180.255.226.203:56092", + "latestHandshake": 1829439121, + "transferRx": 1900247, + "transferSx": 1352639, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.8/32" + ] + }, + { + "publicKey": "tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh=", + "presharedKey": null, + "endpoint": "82.132.137.204:60184", + "latestHandshake": 1829037182, + "transferRx": 75047, + "transferSx": 184725, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.7/32" + ] + }, + { + "publicKey": "JH8Fz8KGH5vDYu3eUuWwRcTUcvRqFHZfMlNtsg2xZwF=", + "presharedKey": null, + "endpoint": "91.142.150.210:51478", + "latestHandshake": 1829037123, + "transferRx": 985632, + "transferSx": 723582, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.9/32" + ] + }, + { + "publicKey": "Yx6kNq8xhPmKhYq0YqTxVt2ZmxZvdYKg5Ymj9fgHkGh=", + "presharedKey": null, + "endpoint": "92.233.144.193:61112", + "latestHandshake": 1829037212, + "transferRx": 1350235, + "transferSx": 945301, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.0.10/32" + ] + } + ] + }, + { + "device": "wg1", + "privateKey": "JnR8bwIHKq7yqfNDOWBlTohSTxl7Wa9/sTLcf6tQ+4O=", + "publicKey": "MUocVr6x4gjhT9vkkDrzm6hc/906dJHYcgk93iHvbmR=", + "listenPort": 51821, + "fwmark": null, + "peers": [ + { + "publicKey": "yQHRBjVgy2fC9EkUFlhdDPZ0Lekv4YM9+Q0GmnXw9gf=", + "presharedKey": null, + "endpoint": "72.144.138.212:50135", + "latestHandshake": 1929850372, + "transferRx": 1678923, + "transferSx": 513470, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.2/32" + ] + }, + { + "publicKey": "C1gsotwrx9S9jsq9yzJgPPO0hNRYgrDsblmj6dSrkZE=", + "presharedKey": null, + "endpoint": "59.232.145.213:49364", + "latestHandshake": 1929850156, + "transferRx": 5982563, + "transferSx": 4378204, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.3/32" + ] + }, + { + "publicKey": "qjkYZR6WfgnTGjnXrqokf+xw/fIFMHyPtLu9w3DwOF6=", + "presharedKey": null, + "endpoint": null, + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 0, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.4/32" + ] + } + ] + }, + { + "device": "wg1", + "privateKey": "JpK6HvHKLp9zmqDFQXBqUmxTSvW6Vp9/zTLbf6pT+7N=", + "publicKey": "LQdcXs5y5dkgU0vmkCszm8hf/907fKHYdhk94jHvbnQ=", + "listenPort": 51821, + "fwmark": null, + "peers": [ + { + "publicKey": "tRFGGjUhy3hD0GmVEljeDQY0Mhlv5YM7+Q2HmnWy9je=", + "presharedKey": null, + "endpoint": "69.157.149.222:51049", + "latestHandshake": 1929851223, + "transferRx": 1680921, + "transferSx": 523451, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.5/32" + ] + }, + { + "publicKey": "K2hzotyrx8S1jsq0yzHgTQO1kOYVhrDwblmj7eTrkZF=", + "presharedKey": null, + "endpoint": "61.242.155.214:48012", + "latestHandshake": 1929851045, + "transferRx": 6052145, + "transferSx": 4435280, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.6/32" + ] + }, + { + "publicKey": "VliYZS7WggpUFkWNralkg+wz/eIHMHyStMpu0x4EoEJ=", + "presharedKey": null, + "endpoint": null, + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 0, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.7/32" + ] + }, + { + "publicKey": "kB8yFrKmyvaDF1uL2uUgeOsLL99jeUL2kefKRt3ZoFh=", + "presharedKey": null, + "endpoint": "72.132.145.206:62084", + "latestHandshake": 1929137285, + "transferRx": 95023, + "transferSx": 197982, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.8/32" + ] + }, + { + "publicKey": "Z9fsqvwty8U9jqj1zyKgPRQ1hOXYgrFtcmli8fSprHF=", + "presharedKey": null, + "endpoint": "68.243.154.222:54321", + "latestHandshake": 1929137125, + "transferRx": 1200475, + "transferSx": 890678, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.9/32" + ] + }, + { + "publicKey": "Lx9lNq9xhPnJhYr1YqYxVt3ZmyawdZLg5Zmj0fhGlJk=", + "presharedKey": null, + "endpoint": "71.233.144.204:59012", + "latestHandshake": 1929137243, + "transferRx": 1450234, + "transferSx": 1006235, + "persistentKeepalive": -1, + "allowedIps": [ + "10.10.1.10/32" + ] + } + ] + } +] diff --git a/tests/fixtures/ubuntu-22.04/wg_show--two_devices.out b/tests/fixtures/ubuntu-22.04/wg_show--two_devices.out new file mode 100644 index 000000000..109f8cf4c --- /dev/null +++ b/tests/fixtures/ubuntu-22.04/wg_show--two_devices.out @@ -0,0 +1,22 @@ +wg0 ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N= PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN= 51820 off +wg0 rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe= (none) 82.132.137.204:50024 10.10.0.2/32 1829439251 1536642 492320 off +wg0 A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE= (none) 82.132.137.204:49732 10.10.0.3/32 1829439125 5641359 4206783 off +wg0 pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5= (none) (none) 10.10.0.4/32 0 0 0 off +wg0 hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx= (none) 180.255.226.203:21678 10.10.0.5/32 1829439243 1555523 544780 off +wg0 kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ= (none) 82.132.137.204:67130 10.10.0.6/32 0 0 0 off +wg0 XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe= (none) 180.255.226.203:56092 10.10.0.8/32 1829439121 1900247 1352639 off +wg0 tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh= (none) 82.132.137.204:60184 10.10.0.7/32 1829037182 75047 184725 off +wg0 JH8Fz8KGH5vDYu3eUuWwRcTUcvRqFHZfMlNtsg2xZwF= (none) 91.142.150.210:51478 10.10.0.9/32 1829037123 985632 723582 off +wg0 Yx6kNq8xhPmKhYq0YqTxVt2ZmxZvdYKg5Ymj9fgHkGh= (none) 92.233.144.193:61112 10.10.0.10/32 1829037212 1350235 945301 off +wg1 JnR8bwIHKq7yqfNDOWBlTohSTxl7Wa9/sTLcf6tQ+4O= MUocVr6x4gjhT9vkkDrzm6hc/906dJHYcgk93iHvbmR= 51821 off +wg1 yQHRBjVgy2fC9EkUFlhdDPZ0Lekv4YM9+Q0GmnXw9gf= (none) 72.144.138.212:50135 10.10.1.2/32 1929850372 1678923 513470 off +wg1 C1gsotwrx9S9jsq9yzJgPPO0hNRYgrDsblmj6dSrkZE= (none) 59.232.145.213:49364 10.10.1.3/32 1929850156 5982563 4378204 off +wg1 qjkYZR6WfgnTGjnXrqokf+xw/fIFMHyPtLu9w3DwOF6= (none) (none) 10.10.1.4/32 0 0 0 off +wg1 JpK6HvHKLp9zmqDFQXBqUmxTSvW6Vp9/zTLbf6pT+7N= LQdcXs5y5dkgU0vmkCszm8hf/907fKHYdhk94jHvbnQ= 51821 off +wg1 tRFGGjUhy3hD0GmVEljeDQY0Mhlv5YM7+Q2HmnWy9je= (none) 69.157.149.222:51049 10.10.1.5/32 1929851223 1680921 523451 off +wg1 K2hzotyrx8S1jsq0yzHgTQO1kOYVhrDwblmj7eTrkZF= (none) 61.242.155.214:48012 10.10.1.6/32 1929851045 6052145 4435280 off +wg1 VliYZS7WggpUFkWNralkg+wz/eIHMHyStMpu0x4EoEJ= (none) (none) 10.10.1.7/32 0 0 0 off +wg1 kB8yFrKmyvaDF1uL2uUgeOsLL99jeUL2kefKRt3ZoFh= (none) 72.132.145.206:62084 10.10.1.8/32 1929137285 95023 197982 off +wg1 Z9fsqvwty8U9jqj1zyKgPRQ1hOXYgrFtcmli8fSprHF= (none) 68.243.154.222:54321 10.10.1.9/32 1929137125 1200475 890678 off +wg1 Lx9lNq9xhPnJhYr1YqYxVt3ZmyawdZLg5Zmj0fhGlJk= (none) 71.233.144.204:59012 10.10.1.10/32 1929137243 1450234 1006235 off + diff --git a/tests/fixtures/windows/windows-10/wg_show.json b/tests/fixtures/windows/windows-10/wg_show.json new file mode 100644 index 000000000..c56b4441c --- /dev/null +++ b/tests/fixtures/windows/windows-10/wg_show.json @@ -0,0 +1,94 @@ +[ + { + "device": "wg0", + "privateKey": "Xa4Bq8AUFrjKp+Z283VDzEUVeOOn2wX/uuLTMUkkJens=", + "publicKey": "mL2Co/VecYWtXSY6YUZAI6cAsFZDCEV+9iZKibNcWTu=", + "listenPort": 45321, + "fwmark": null, + "peers": [ + { + "publicKey": "bN9QoMEqlKUpncq0Q8ye9yURczKwmbXzwVsG7A+RV2B=", + "presharedKey": null, + "endpoint": "123.45.67.89:51820", + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 1532, + "persistentKeepalive": -1, + "allowedIps": [ + "0.0.0.0/0" + ] + } + ] + }, + { + "device": "wg0", + "privateKey": "yJ3PoNAqlNUpmcq0P7xv8zURdyKwmbZwwUsG9B+SV3C=", + "publicKey": "kP2Lo/WfgVWtYSY7ZUZAJ7cBsEZECFV+8jYKidOcVTv=", + "listenPort": 53211, + "fwmark": null, + "peers": [ + { + "publicKey": "dQ5AoNAqpOUlncq0P9ze8xURayLwmbYwwVsH8C+TV4D=", + "presharedKey": null, + "endpoint": "203.0.113.4:51820", + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 2001, + "persistentKeepalive": -1, + "allowedIps": [ + "192.168.1.0/24" + ] + } + ] + }, + { + "device": "wg0", + "privateKey": "pR6DoOBqmNUlncq0P1wq9zUSeyJwmbVxxWsF7D+RU5E=", + "publicKey": "qN2Mo/XghWWtXSY8YVZBK8cDsFZDCFQ+7kZKjbNcWTx=", + "listenPort": 67514, + "fwmark": null, + "peers": [ + { + "publicKey": "tA8AoPCqoPUlncq0P8xe7xUSayKwmbWxxVsG8E+UV6F=", + "presharedKey": null, + "endpoint": "198.51.100.15:51820", + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 1403, + "persistentKeepalive": -1, + "allowedIps": [ + "10.0.0.0/8" + ] + } + ] + }, + { + "device": "wg0", + "privateKey": "zU9CoQCqmQUlncq0P4wo6yUTbyJwmbYyyWsF9F+SV7G=", + "publicKey": "vM2Ko/YigXWtYSY9YUZCJ9dCsGZECFV+5lZLjcOcVVy=", + "listenPort": 79812, + "fwmark": null, + "peers": [ + { + "publicKey": "xC7DoRDqnRUlncq0P2wq9yUScyKwmbXzyWsH8F+TU8H=", + "presharedKey": null, + "endpoint": "172.16.0.1:51820", + "latestHandshake": 0, + "transferRx": 0, + "transferSx": 1872, + "persistentKeepalive": -1, + "allowedIps": [ + "172.16.0.0/16" + ] + } + ] + }, + { + "device": "wg0", + "privateKey": "rE4AoSCqnSUlncq0P7wv9zURdyLwmbZxzWsG9G+UV9I=", + "publicKey": "fN2Oo/ZjhYUtXSZ0YUZDK8eDsFZDCFQ+4jYKjcNcVVw=", + "listenPort": 91114, + "fwmark": null, + "peers": [] + } +] diff --git a/tests/fixtures/windows/windows-10/wg_show.out b/tests/fixtures/windows/windows-10/wg_show.out new file mode 100644 index 000000000..d282d8606 --- /dev/null +++ b/tests/fixtures/windows/windows-10/wg_show.out @@ -0,0 +1,9 @@ +wg0 Xa4Bq8AUFrjKp+Z283VDzEUVeOOn2wX/uuLTMUkkJens= mL2Co/VecYWtXSY6YUZAI6cAsFZDCEV+9iZKibNcWTu= 45321 off +wg0 bN9QoMEqlKUpncq0Q8ye9yURczKwmbXzwVsG7A+RV2B= (none) 123.45.67.89:51820 0.0.0.0/0 0 0 1532 off +wg0 yJ3PoNAqlNUpmcq0P7xv8zURdyKwmbZwwUsG9B+SV3C= kP2Lo/WfgVWtYSY7ZUZAJ7cBsEZECFV+8jYKidOcVTv= 53211 off +wg0 dQ5AoNAqpOUlncq0P9ze8xURayLwmbYwwVsH8C+TV4D= (none) 203.0.113.4:51820 192.168.1.0/24 0 0 2001 off +wg0 pR6DoOBqmNUlncq0P1wq9zUSeyJwmbVxxWsF7D+RU5E= qN2Mo/XghWWtXSY8YVZBK8cDsFZDCFQ+7kZKjbNcWTx= 67514 off +wg0 tA8AoPCqoPUlncq0P8xe7xUSayKwmbWxxVsG8E+UV6F= (none) 198.51.100.15:51820 10.0.0.0/8 0 0 1403 off +wg0 zU9CoQCqmQUlncq0P4wo6yUTbyJwmbYyyWsF9F+SV7G= vM2Ko/YigXWtYSY9YUZCJ9dCsGZECFV+5lZLjcOcVVy= 79812 off +wg0 xC7DoRDqnRUlncq0P2wq9yUScyKwmbXzyWsH8F+TU8H= (none) 172.16.0.1:51820 172.16.0.0/16 0 0 1872 off +wg0 rE4AoSCqnSUlncq0P7wv9zURdyLwmbZxzWsG9G+UV9I= fN2Oo/ZjhYUtXSZ0YUZDK8eDsFZDCFQ+4jYKjcNcVVw= 91114 off diff --git a/tests/test_wg_show.py b/tests/test_wg_show.py new file mode 100644 index 000000000..a212018ca --- /dev/null +++ b/tests/test_wg_show.py @@ -0,0 +1,26 @@ +import unittest +import os +import sys + +sys.path.append(os.getcwd()) +from tests import utils_for_test as test_utils + +sys.path.pop() + + +class MyTests(unittest.TestCase): + def test_wg_show_nodata(self): + """ + Test 'wg-show' with no data + """ + test_utils.run_no_data(self, __file__, []) + + def test_wg_show_all_fixtures(self): + """ + Test 'wg-show' with various fixtures + """ + test_utils.run_all_fixtures(self, __file__) + + +if __name__ == "__main__": + unittest.main() From be1dd031f17740702a5d21d66f4606622d164bd0 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 24 Nov 2024 13:38:10 -0800 Subject: [PATCH 44/52] doc update --- CHANGELOG | 2 ++ jc/parsers/wg_show.py | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 80a19377f..5b8b61356 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ jc changelog 20241120 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) +- Add `wg show` command parser - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS - Enhance `nsd-control` parser with additional state fields @@ -21,6 +22,7 @@ jc changelog 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field - Enhance `git-log` standard and streaming parsers with added `lines_changed` field under `file_stats` +- Fix `lspci` parser to handle `physlot` fields with a range value - Fix `pci-ids` parser to correctly handle multiple subdevices - Fix `pip-show` parser to handle multi-line fields with a beginning blank line - Fix `ss` parser to correctly handle the `Recv-Q` field being too close to the `Status` field diff --git a/jc/parsers/wg_show.py b/jc/parsers/wg_show.py index 608d953a2..756facb2f 100644 --- a/jc/parsers/wg_show.py +++ b/jc/parsers/wg_show.py @@ -8,7 +8,7 @@ or - $ jc wg-show + $ jc wg show all dump Usage (module): @@ -85,7 +85,6 @@ } ] - $ wg show all dump | jc --wg-show -p -r [ { @@ -151,7 +150,7 @@ class info: author_email = "hamzasaht01@gmail.com" compatible = ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"] tags = ["command"] - magic_commands = ["wg-show"] + magic_commands = ["wg show"] __version__ = info.version From 95cba21d7333a7d204d01f71ab9955231326eb7f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 24 Nov 2024 14:57:55 -0800 Subject: [PATCH 45/52] initial pacman parser --- jc/lib.py | 1 + jc/parsers/pacman.py | 196 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 197 insertions(+) create mode 100644 jc/parsers/pacman.py diff --git a/jc/lib.py b/jc/lib.py index 44c585926..a195855d1 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -108,6 +108,7 @@ 'openvpn', 'os-prober', 'os-release', + 'pacman', 'passwd', 'path', 'path-list', diff --git a/jc/parsers/pacman.py b/jc/parsers/pacman.py new file mode 100644 index 000000000..12e811058 --- /dev/null +++ b/jc/parsers/pacman.py @@ -0,0 +1,196 @@ +r"""jc - JSON Convert `pacman` command output parser + +Supports the following `pacman` arguments: + +- `-Si` +- `-Sii` +- `-Qi` +- `-Qii` + +Usage (cli): + + $ pacman -Si | jc --pacman + +or + + $ jc pacman -Si + +Usage (module): + + import jc + result = jc.parse('pacman', pacman_command_output) + +Schema: + + [ + { + "repository": string, + "name": string, + "version": string, + "description": string, + "architecture": string, + "url": string, + "licenses": [ + string + ], + "groups": [ + string + ], + "provides": [ + string + ], + "depends_on": [ + string + ], + "optional_deps": [ + { + "name": string, + "description": string + } + ], + "conflicts_with": [ + string + ], + "replaces": [ + string + ], + "download_size": string, + "installed_size": string, + "packager": string, + "build_date": string, + "validated_by": [ + string + ], + "backup_files": [ + string + ] + } + ] + +Examples: + + $ pacman | jc --pacman -p + [] + + $ pacman | jc --pacman -p -r + [] +""" +from typing import List, Dict +from jc.jc_types import JSONDictType +import jc.utils + + +class info(): + """Provides parser metadata (version, author, etc.)""" + version = '1.0' + description = '`pacman` command parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] + tags = ['command', 'file'] + magic_commands = ['pacman'] + + +__version__ = info.version + + +def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (List of Dictionaries) raw structured data to process + + Returns: + + List of Dictionaries. Structured to conform to the schema. + """ + list_list = [ + 'licenses', 'groups', 'provides', 'depends_on', 'optional_deps', + 'conflicts_with', 'replaces', 'validated_by', 'backup_files' + ] + + + return proc_data + + +def parse( + data: str, + raw: bool = False, + quiet: bool = False +) -> List[JSONDictType]: + """ + Main text parsing function + + Parameters: + + data: (string) text data to parse + raw: (boolean) unprocessed output if True + quiet: (boolean) suppress warning messages if True + + Returns: + + List of Dictionaries. Raw or processed structured data. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: List[Dict] = [] + entry_obj: Dict = {} + multiline_fields = {'required_by', 'optional_deps', 'backup_files'} + multiline_list: List = [] + multiline_key = '' + + if jc.utils.has_data(data): + + for line in filter(None, data.splitlines()): + splitline = line.split(' : ', maxsplit=1) + + if len(splitline) == 2: + # this is a key/value pair + key, val = splitline + key = key.strip() + key = jc.utils.normalize_key(key) + val = val.strip() + + # new entries can start with "Repository" or "Name" + if (key == 'name' or key == 'repository') and len(entry_obj) > 2: + if multiline_list: + entry_obj[multiline_key] = multiline_list + multiline_list = [] + multiline_key = '' + if entry_obj: + raw_output.append(entry_obj) + entry_obj = {} + entry_obj[key] = val + continue + + if key in multiline_fields: + multiline_list = [] + if val != 'None': + multiline_list.append(val) + multiline_key = key + continue + + if key not in multiline_fields: + if multiline_list: + entry_obj[multiline_key] = multiline_list + multiline_list = [] + multiline_key = '' + entry_obj[key] = val if val != 'None' else None + continue + + # multiline field continuation lines + multiline_list.append(line.strip()) + continue + + # grab the last entry + if entry_obj: + if multiline_list: + entry_obj[multiline_key] = multiline_list + multiline_list = [] + multiline_key = '' + raw_output.append(entry_obj) + + return raw_output if raw else _process(raw_output) From ef9ca9322e18ee4d00b37d7d2c81cce408e88c31 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 24 Nov 2024 16:02:59 -0800 Subject: [PATCH 46/52] Some processing completed --- jc/parsers/pacman.py | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/jc/parsers/pacman.py b/jc/parsers/pacman.py index 12e811058..b50dbbc86 100644 --- a/jc/parsers/pacman.py +++ b/jc/parsers/pacman.py @@ -48,6 +48,9 @@ "description": string } ], + "optional_for": [ + string + ], "conflicts_with": [ string ], @@ -106,11 +109,34 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: List of Dictionaries. Structured to conform to the schema. """ - list_list = [ - 'licenses', 'groups', 'provides', 'depends_on', 'optional_deps', - 'conflicts_with', 'replaces', 'validated_by', 'backup_files' - ] - + split_fields = { + 'licenses', 'groups', 'provides', 'depends_on', 'conflicts_with', + 'replaces', 'optional_for' + } + + space_split_fields = { + 'required_by', 'groups', 'provides', 'depends_on', + 'conflicts_with', 'replaces', 'validated_by' + } + + two_space_fields = {'licenses', 'validated_by'} + + # initial split for field lists + for item in proc_data: + for key, val in item.items(): + if key in split_fields: + if val is None: + item[key] = [] + else: + item[key] = val.split() + + # fixup for specific lists + if key in space_split_fields and isinstance(val, List): + val_list = [x.split() for x in val] + item[key] = [x for xs in val_list for x in xs] # flatten the list + + if key in two_space_fields and isinstance(val, str): + item[key] = val.split(' ') return proc_data From 6ae2e17ea187181361d206236d5b95e8cddc8a2e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 24 Nov 2024 17:30:03 -0800 Subject: [PATCH 47/52] add examples and tests --- jc/parsers/pacman.py | 102 +- tests/fixtures/generic/pacman--packages.json | 1 + tests/fixtures/generic/pacman--packages.out | 2010 +++++++++++++++++ tests/fixtures/generic/pacman--qii-zstd.json | 1 + tests/fixtures/generic/pacman--qii-zstd.out | 334 +++ .../generic/pacman--si-graphicsmagick.json | 1 + .../generic/pacman--si-graphicsmagick.out | 23 + tests/templates/.DS_Store | Bin 0 -> 6148 bytes tests/test_pacman.py | 31 + 9 files changed, 2499 insertions(+), 4 deletions(-) create mode 100644 tests/fixtures/generic/pacman--packages.json create mode 100644 tests/fixtures/generic/pacman--packages.out create mode 100644 tests/fixtures/generic/pacman--qii-zstd.json create mode 100644 tests/fixtures/generic/pacman--qii-zstd.out create mode 100644 tests/fixtures/generic/pacman--si-graphicsmagick.json create mode 100644 tests/fixtures/generic/pacman--si-graphicsmagick.out create mode 100644 tests/templates/.DS_Store create mode 100644 tests/test_pacman.py diff --git a/jc/parsers/pacman.py b/jc/parsers/pacman.py index b50dbbc86..49b734289 100644 --- a/jc/parsers/pacman.py +++ b/jc/parsers/pacman.py @@ -72,11 +72,93 @@ Examples: - $ pacman | jc --pacman -p - [] + $ pacman -qii zstd | jc --pacman -p + [ + { + "name": "zstd", + "version": "1.5.6-1", + "description": "Zstandard - Fast real-time compression algorithm", + "architecture": "x86_64", + "url": "https://facebook.github.io/zstd/", + "licenses": [ + "BSD-3-Clause", + "GPL-2.0-only" + ], + "groups": [], + "provides": [ + "libzstd.so=1-64" + ], + "depends_on": [ + "glibc", + "gcc-libs", + "zlib", + "xz", + "lz4" + ], + "required_by": [ + "android-tools", + "appstream", + ... + "tiled", + "vulkan-radeon", + "wireshark-cli" + ], + "optional_for": [ + "xarchiver" + ], + "conflicts_with": [], + "replaces": [], + "installed_size": "1527.00 KiB", + "packager": "Levente Polyak ", + "build_date": "Sat 11 May 2024 06:14:19 AM +08", + "install_date": "Fri 24 May 2024 09:50:31 AM +08", + "install_reason": "Installed as a dependency for another package", + "install_script": "No", + "validated_by": [ + "Signature" + ], + "extended_data": "pkgtype=pkg" + } + ] - $ pacman | jc --pacman -p -r - [] + $ pacman -qii zstd | jc --pacman -p -r + [ + { + "name": "zstd", + "version": "1.5.6-1", + "description": "Zstandard - Fast real-time compression algorithm", + "architecture": "x86_64", + "url": "https://facebook.github.io/zstd/", + "licenses": "BSD-3-Clause GPL-2.0-only", + "groups": null, + "provides": "libzstd.so=1-64", + "depends_on": "glibc gcc-libs zlib xz lz4", + "required_by": [ + "android-tools appstream avr-gcc binutils blender blosc", + "boost-libs btrfs-progs cloudflare-warp-bin comgr curl", + "dolphin-emu file flatpak gcc gdal gnutls karchive", + "karchive5 kmod lib32-zstd libarchive libelf libtiff", + "libva-mesa-driver libxmlb libzip lld llvm-libs mariadb-libs", + "mesa mesa-vdpau minizip-ng mkinitcpio mold netcdf", + "opencl-clover-mesa opencl-rusticl-mesa openucx postgresql", + "postgresql-libs ppsspp qemu-img qemu-system-riscv", + "qemu-system-x86 qgis qt6-base qt6-tools rsync rustup", + "squashfs-tools squashfuse systemd-libs tiled vulkan-radeon", + "wireshark-cli" + ], + "optional_for": "xarchiver", + "conflicts_with": null, + "replaces": null, + "installed_size": "1527.00 KiB", + "packager": "Levente Polyak ", + "build_date": "Sat 11 May 2024 06:14:19 AM +08", + "install_date": "Fri 24 May 2024 09:50:31 AM +08", + "install_reason": "Installed as a dependency for another package", + "install_script": "No", + "validated_by": "Signature", + "extended_data": "pkgtype=pkg" + } + ] """ from typing import List, Dict from jc.jc_types import JSONDictType @@ -121,6 +203,8 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: two_space_fields = {'licenses', 'validated_by'} + name_description_fields = {'optional_deps'} + # initial split for field lists for item in proc_data: for key, val in item.items(): @@ -138,6 +222,14 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: if key in two_space_fields and isinstance(val, str): item[key] = val.split(' ') + if key in name_description_fields and isinstance(val, list): + new_list = [] + for name_desc in val: + n, d = name_desc.split(': ') + new_obj = {'name': n, 'description': d} + new_list.append(new_obj) + item[key] = new_list + return proc_data @@ -193,6 +285,8 @@ def parse( continue if key in multiline_fields: + if multiline_list: + entry_obj[multiline_key] = multiline_list multiline_list = [] if val != 'None': multiline_list.append(val) diff --git a/tests/fixtures/generic/pacman--packages.json b/tests/fixtures/generic/pacman--packages.json new file mode 100644 index 000000000..19c9d7389 --- /dev/null +++ b/tests/fixtures/generic/pacman--packages.json @@ -0,0 +1 @@ +[{"repository":"core","name":"acl","version":"2.3.2-1","description":"Access control list utilities, libraries and headers","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/acl","licenses":["LGPL"],"groups":[],"provides":["xfsacl","libacl.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bfs","borg","borg2","bup","casync","cdrtools","clifm-git","coreutils","coreutils-hybrid-git","cups","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","gettext","incus","incus-tools","kio","krusader","lib32-acl","libarchive","libisofs","logrotate","lxd","proftpd","proxmox-backup-client","rsync","rsync-reflink","sed","shadow","snapper","spice-gtk","systemd","tar","udisks2","udisks2-btrfs","udisks2-lvm2","vim","vis","xfsdump"],"optional_for":["diffoscope","mkosi","mkosi-git"],"conflicts_with":["xfsacl"],"replaces":["xfsacl"],"download_size":"137.78 KiB","installed_size":"329.98 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jan 2024 04:57:20 PM +08","md5_sum":"33d329308c838e76498e4eac7e603291","sha_256_sum":"cbfb71e8ba9aca9e51cbdfd77d0ec51371eb865a9a098c77e2c6046962e6ae0a","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"amd-ucode","version":"20240809.59460076-1","description":"Microcode update image for AMD CPUs","architecture":"any","url":"https://gitlab.com/kernel-firmware/linux-firmware","licenses":["custom"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"59.22 KiB","installed_size":"158.98 KiB","packager":"Tobias Powalowski ","build_date":"Mon 12 Aug 2024 02:43:48 AM +08","md5_sum":null,"sha_256_sum":"c04893e8d8defdc2ccfa29c09b2599906291a12b5e470aff9e4a80e43bece68e","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"archlinux-keyring","version":"20240709-1","description":"Arch Linux PGP keyring","architecture":"any","url":"https://gitlab.archlinux.org/archlinux/archlinux-keyring/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["pacman"],"required_by":["base","base-devel","chaotic-keyring"],"optional_for":["mkosi-git"],"conflicts_with":[],"replaces":[],"download_size":"1198.18 KiB","installed_size":"1709.20 KiB","packager":"Christian Hesse ","build_date":"Wed 10 Jul 2024 05:31:37 AM +08","md5_sum":null,"sha_256_sum":"a6f573fc97fc21b55504a4d75d010257792847a5b87f19edff4ffb662f6f53a2","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"argon2","version":"20190702-6","description":"A password-hashing function (reference C implementation)","architecture":"x86_64","url":"https://github.com/P-H-C/phc-winner-argon2","licenses":["Apache","custom:CC0"],"groups":[],"provides":["libargon2.so=1-64"],"depends_on":["glibc"],"required_by":["cryptsetup","keepassxc","opendht","php","php-legacy","python-argon2-cffi-bindings","unrealircd","znc"],"optional_for":["keepass","tomb-git"],"conflicts_with":[],"replaces":[],"download_size":"33.33 KiB","installed_size":"106.02 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 12:53:38 AM +08","md5_sum":null,"sha_256_sum":"467da2efdcef1bab8403ece5895794539b983ea7de664105a2dc821c68e8ba13","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"attr","version":"2.5.2-1","description":"Extended attribute support library for ACL support","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/attr","licenses":["LGPL"],"groups":[],"provides":["xfsattr","libattr.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bcachefs-tools-git","coreutils","coreutils-hybrid-git","glusterfs","lib32-attr","patch","proton-ge-custom","shadow","shake","toybox","wine-ge-custom","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","xfsdump"],"optional_for":[],"conflicts_with":["xfsattr"],"replaces":["xfsattr"],"download_size":"68.41 KiB","installed_size":"216.00 KiB","packager":"Christian Hesse ","build_date":"Sun 14 Jan 2024 10:58:15 PM +08","md5_sum":"50de36b6ebed40dd90f6c42cfb698b53","sha_256_sum":"83bcd58b066492f1242be41fa3f5750586d9eb7d8424a776e9fd6a8c5a496948","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"audit","version":"4.0.2-2","description":"Userspace components of the audit framework","architecture":"x86_64","url":"https://people.redhat.com/sgrubb/audit","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":["libaudit.so=1-64","libauparse.so=0-64"],"depends_on":["glibc","krb5","libkrb5.so=3-64","libgssapi_krb5.so=2-64","libcap-ng","libcap-ng.so=0-64"],"optional_deps":[{"name":"libldap","description":"for audispd-zos-remote"},{"name":"sh","description":"for augenrules"}],"required_by":["apparmor","aravis","dbus","dbus-broker","gdm","gdm-prime","ksystemlog","networkmanager","networkmanager-iwd","osquery","pam","perf","python-audit","shadow","systemd","trace-cmd","usbguard"],"optional_for":["clevis"],"conflicts_with":[],"replaces":[],"download_size":"395.15 KiB","installed_size":"1053.22 KiB","packager":"David Runge ","build_date":"Wed 04 Sep 2024 03:56:53 PM +08","md5_sum":null,"sha_256_sum":"9933298fff9e3866509e25091e02e25533f0a3d27b9964b35503c2ad3f58c47a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"autoconf","version":"2.72-1","description":"A GNU tool for automatically configuring source code","architecture":"any","url":"https://www.gnu.org/software/autoconf","licenses":["GPL2","GPL3","custom"],"groups":[],"provides":[],"depends_on":["awk","m4","diffutils","perl","sh"],"required_by":["argbash","autoconf-archive","base-devel","mate-common"],"optional_for":["asdf-vm","bauh"],"conflicts_with":[],"replaces":[],"download_size":"650.53 KiB","installed_size":"2277.08 KiB","packager":"Antonio Rojas ","build_date":"Sat 23 Dec 2023 08:16:19 AM +08","md5_sum":"cc7e1d210723d19fac4db93d89c77336","sha_256_sum":"44afcc89c89548bede040ae09e66ece236dc99202458bc22866bc3d490df4345","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"automake","version":"1.17-1","description":"A GNU tool for automatically creating Makefiles","architecture":"any","url":"https://www.gnu.org/software/automake","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["perl","bash"],"required_by":["base-devel","mate-common"],"optional_for":["asdf-vm","autoconf-archive","bauh"],"conflicts_with":[],"replaces":[],"download_size":"626.63 KiB","installed_size":"1654.66 KiB","packager":"Lukas Fleischer ","build_date":"Sat 20 Jul 2024 05:26:35 PM +08","md5_sum":null,"sha_256_sum":"71f691855fb6d1edc61e365f40c6dfd704d2af27a9a2828e753eb92cf2e03c9d","signatures":"A91764759326B440","extended_data":null},{"repository":"core","name":"b43-fwcutter","version":"019-5","description":"firmware extractor for the b43 kernel module","architecture":"x86_64","url":"https://wireless.wiki.kernel.org/en/users/Drivers/b43","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["glibc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"17.07 KiB","installed_size":"44.78 KiB","packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:49:54 PM +08","md5_sum":null,"sha_256_sum":"8d8dc6f758afafdae33498321f0d14d82dff166d9dde58414f855491535fb396","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"base","version":"3-2","description":"Minimal package set to define a basic Arch Linux installation","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["filesystem","gcc-libs","glibc","bash","coreutils","file","findutils","gawk","grep","procps-ng","sed","tar","gettext","pciutils","psmisc","shadow","util-linux","bzip2","gzip","xz","licenses","pacman","archlinux-keyring","systemd","systemd-sysvcompat","iputils","iproute2"],"optional_deps":[{"name":"linux","description":"bare metal support"}],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.31 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Sun 08 Oct 2023 09:15:41 AM +08","md5_sum":"9fde97a64c7825c959d498235cede216","sha_256_sum":"25da12f0347e4bef6c215dcd32b6495beb86010a8c7e40828167b95f56639061","signatures":"3B94A80E50A477C7","extended_data":null},{"repository":"core","name":"base-devel","version":"1-2","description":"Basic tools to build Arch Linux packages","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["archlinux-keyring","autoconf","automake","binutils","bison","debugedit","fakeroot","file","findutils","flex","gawk","gcc","gettext","grep","groff","gzip","libtool","m4","make","pacman","patch","pkgconf","sed","sudo","texinfo","which"],"required_by":["multilib-devel"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.05 KiB","installed_size":"0.00 KiB","packager":"Antonio Rojas ","build_date":"Sat 07 Sep 2024 03:08:35 AM +08","md5_sum":null,"sha_256_sum":"412a2effe23751e1c11b2fa68155f1a29ecea5d9dc8ea8cef4e87b7b429d3201","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"bash","version":"5.2.032-2","description":"The GNU Bourne Again shell","architecture":"x86_64","url":"https://www.gnu.org/software/bash/bash.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["sh"],"depends_on":["readline","libreadline.so=8-64","glibc","ncurses"],"optional_deps":[{"name":"bash-completion","description":"for tab completion"}],"required_by":["4ti2","9base","acme.sh","aconfmgr-git","acpid","adljack","afl++","alpine-chroot-install","alvr","ammonite","ananicy","android-ndk","android-sdk-build-tools","ankama-launcher","ant","antiword","antlr4","anything-sync-daemon","apparmor","apt","arch-install-scripts","arch-update","arch-wiki-lite","archiso","archiso-git","archivetools","archlinux-contrib","archlinux-java-run","ardour","ardour-git","arduino-ide","ark","asus-kbd-backlight","at-spi2-core","atop","audio-convert","aurutils","autoconf","autoconf-git","automake","base","bash-completion","bashburn","bashrun","bashtop","bat-extras","bats","bats-assert","bats-file","bats-support","bcachefs-tools","bcc-tools","bees","betterlockscreen","bind","bison","blender","blesh","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","booster","booster-git","bootiso","briar-desktop","brickadia-launcher","bup","bzip2","bzip3","ca-certificates-utils","cairo","carla","cfs-zen-tweaks","chaotic-neofetch-git","checksec","cjdns","clamav","clazy","clevis","cloud-guest-utils","cloud-image-utils","cloud-init","cmake-extras-git","codon-bin","cosmic-session","cpupower","cronie","crowdsec","cscope","cups-filters","db","db5.3","debtap","deepin-kwin","dejagnu","deltachat-desktop","devtools","dhclient","dhcpcd","dialog","dictd","diffutils","digikam","discord-chat-exporter-cli","distrobox","djvulibre","dkms","dmenu","dmtcp","doas-sudo-shim","dracut","drawio-desktop","dtc","e2fsprogs","easy-rsa","ebook-tools","ecl","ed","elfutils","emovix","epsxe","epubcheck","etc-update","exim","fakechroot","fakeroot","fastjet","faust","ffcast","fflas-ffpack","fftw","fig2dev","figlet","findutils","fio","firefox","firefox-developer-edition","firefox-esr","firrtl","flatpak","flex","fltk","foomatic-db-engine","freecell-solver","freedm-git","freedoom-git","freetype2","fricas","fwupd","fzf","gap","gap-packages","gawk","gdbm","gdm","gdm-prime","gedit","geeqie","geogebra","geos","gettext","ghidra","givaro","glib2","gnome-common","gnome-flashback","gnome-session","gnome-settings-daemon","gnome-shell","gnome-subtitles","gnuchess","gnupg","godot-mono-git","gpgit","gpm","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grails","grub","gsl","gsocket","gtk-sharp-3","gtk-update-icon-cache","gtk4","gzip","haskell-dataenc","haskell-extensible-exceptions","haskell-filemanip","haskell-hashtables","haskell-hosc","haskell-microspec","hblock","hdapsd","hdf5","hdf5-openmpi","heaptrack","hepmc","hepmc2","hip-runtime-amd","hipify-clang","hivex","hotdoc","hplip","httrack","hunspell","hwdetect","hydra","hyprshot","i3lock-fancy-git","ibus-typing-booster","icons-in-terminal-git","icu","icu69","ifplugd","ijs","imagescan","incron","intel-oneapi-common","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intellij-idea-community-edition","ipman","iptables","iptables-nft","ipvsadm","irpf","ispell","iverilog-git","jadx","java-runtime-common","jellyfin-server","jenv","jmol","jpeg-archive","jruby","js115","js128","js91","jython","kafka","kakasi","kde-cli-tools","kde-dev-scripts","kde-gtk-config","kdepim-addons","kdevelop","keychain","keycloak","keyutils","kinfocenter","klipperscreen","kmix","kommit","konsole","konversation","krb5","kubetail","kwallet-pam","lantern-bin","laptop-detect","lftp","lib32-libltdl","libassuan","libcamera","libchardet","libcups","libdca","libeatmydata","libgpg-error","libguestfs","libiodbc","libksba","libmbim","libmikmod","libnet","liboggz","libpcap","libpng","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","librewolf","libteam","libtool","libusb-compat","libxml2","libxslt","lightdm-gtk-greeter-settings","linbox","lksctp-tools","lm_sensors","lmms","lsb-release","ltex-ls-bin","lua-language-server","lua-luarepl","lua51-luarepl","lua52-luarepl","lua53-luarepl","lvm2","lxc","lynis","m4","mame","man-db","maven","mbedtls","mc","mcfly","mediathekview","mellite","meson","mill","minicom","miniupnpc","minq-ananicy-git","mjpegtools","mk-configure","mkinitcpio","mkinitcpio-archiso","mkinitcpio-systemd-tool","mkosi","mono","mtools","mullvad-browser-bin","mumble-server","mysql","mysql-clients","ncurses5-compat-libs","neofetch","neofetch-git","neovim-symlinks","netpbm","nfs-utils","nikto","nim","nm-cloud-setup","nm-iwd-cloud-setup","nnn","nnn-nerd","nomachine","npth","nspr","nspr-hg","nss","nss-hg","nuget","nvidia-prime","openapi-diff","openapi-generator","openresolv","openzwave","os-prober","os-prober-btrfs","osquery","ostree","p7zip","pacman","pacman-git","pacman-offline","pahole","pakka","pantheon-files","papirus-folders","pari","pass","pastel-docs","pax-utils","paxtest","pcre","pd","pdftk","perf","pesign","pipewire-jack","pipewire-module-xrdp","pipewire-v4l2","pkgconf","plantuml","plantuml-server","plasma-sdk","plasma-workspace","play.it","plymouth","plymouth-git","pm-utils","podman-docker","ponysay","pop-launcher","pop-launcher-git","posix","postfix","postgresql","pps-tools","preload","prettyping","processing","profile-cleaner","profile-sync-daemon","pulseaudio-control","pulseaudio-equalizer-ladspa","pycharm-community-edition","pyenv","pythia8","python-playwright","qemu-guest-agent","qtcreator","quarto-cli-bin","quilt","r","radare2","rasqal","rauc","rcs","rdma-core","redland","redo-sh","refind","reflector-simple","remmina","river","rizin","rkhunter","rocm-clang-ocl","rocm-gdb","roswell","rp-pppoe","rpmextract","rtirq","ruby-build","rust","sane","sbt","schedtoold","screenfetch","sdcc","sddm","sddm-git","sdedit","sdparm","serproid","sgml-common","shattered-pixel-dungeon","shunit2","singular","smali","smartmontools","solr","source-highlight","sowing","speakup-utils","spirv-tools","sqlcl","sqlmap","ssacli","ssh-tools","steam","steam-native-runtime","steamcmd","steamtinkerlaunch","stumpwm-contrib-git","subversion","switchboard-plug-security-privacy","sympow","syslog-ng","system-config-printer","systemd","taglib","taglib1","termv-git","testssl.sh","texinfo","texlive-bin","tgt","toolbox","tor","tracker3","tradingview","translate-shell","translate-toolkit","transmageddon","tropy-bin","txt2man","ufetch-git","ugit","umu-launcher","unifetch","unzip","usbctl","uuid","vala","valabind","ventoy-bin","vis","vkd3d-proton-mingw-git","vlc","vlc-luajit","vnstat","voacapl","vpnc","wcurl","wezterm","which","wireguard-tools","wireless-regdb","wl-mirror","wqy-zenhei","wv","wxwidgets-gtk3","wxwidgets-qt5","x2goserver","xapian-core","xdg-user-dirs","xdg-utils","xdm-archlinux","xfsprogs","xmlsec","xonotic-data","xorg-server","xorg-server-xvfb","xorg-x11perf","xorg-xdm","xorg-xpr","xosd","xssstate","xsudo-git","xwax","xz","yabridge","yodl","yosys","z","zaproxy","zramswap"],"optional_for":["a2jmidid","alsa-oss","alsa-utils","audit","btrbk","ecasound","gcin","hatari","ipxe","kernelshark","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","libkkc","lokalize","mdadm","mumble","mympd","ncurses","niri","nvm","openssh","passt","pcre2","rt-tests","skim","tzdata","unbound","usbutils","vim-csound","vim-runtime","wit"],"conflicts_with":[],"replaces":[],"download_size":"1859.23 KiB","installed_size":"9419.19 KiB","packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 01:59:54 PM +08","md5_sum":null,"sha_256_sum":"a067b212c273e1102ee9f85b916ed354760937d886b67d20b246253b2d2bbd6b","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"binutils","version":"2.43+r4+g7999dae6961-1","description":"A set of programs to assemble and manipulate binary and object files","architecture":"x86_64","url":"https://www.gnu.org/software/binutils/","licenses":["GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.0-or-later","LGPL-3.0-or-later","GFDL-1.3","FSFAP"],"groups":[],"provides":["libctf.so=0-64","libgprofng.so=0-64","libsframe.so=1-64"],"depends_on":["glibc","jansson","libelf","zlib","zstd"],"optional_deps":[{"name":"debuginfod","description":"for debuginfod server/client functionality"}],"required_by":["0ad","base-devel","bootiso","bpf","bpftrace","checksec","debtap","devtools","dracut-hook-uefi","flatpak-builder","fpc","gcc","gcc13","gdb-dashboard","gsocket","imd-git","kcov","libabigail","looking-glass-git","looking-glass-host-git","mkinitcpio","namcap","openucx","peda","perf","posix","posix-software-development","rebuild-detector","rmlint","sbctl","systemd-ukify","systemd-ukify-git","vmware-horizon-client"],"optional_for":["bauh","crash","diffoscope","dracut","hotspot","inxi","xarchiver","xarchiver-gtk2"],"conflicts_with":["binutils-multilib"],"replaces":["binutils-multilib"],"download_size":"7.65 MiB","installed_size":"41.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:32:39 AM +08","md5_sum":null,"sha_256_sum":"6702f58e662908cbd5a86d554363348c2ab5c2e5e594f9d07d5627d16fda57b7","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"bison","version":"3.8.2-6","description":"The GNU general-purpose parser generator","architecture":"x86_64","url":"https://www.gnu.org/software/bison/bison.html","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh","gettext"],"required_by":["base-devel","posix-c-development"],"optional_for":["bauh"],"conflicts_with":[],"replaces":[],"download_size":"772.49 KiB","installed_size":"2598.64 KiB","packager":"Leonidas Spyropoulos ","build_date":"Sat 24 Jun 2023 06:03:51 PM +08","md5_sum":"41fc9c90033977614d66eadc7361d455","sha_256_sum":"91de470c3a723f3cbf615abc9fc6fbd3075aaf5a978820db6550eae151a0afbd","signatures":"59E43E106B247368","extended_data":null},{"repository":"core","name":"brotli","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":["libbrotlicommon.so=1-64","libbrotlidec.so=1-64","libbrotlienc.so=1-64"],"depends_on":["glibc"],"required_by":["android-tools","arrow","chromium","cpp-httplib-compiled","curl","curl-rustls","dvisvgm","dwarfs","electron23","electron30","electron31","electron32","elinks","exiv2","freetype2","gnutls","godot","godot-mono","lib32-brotli","libjxl","libjxl-git","libsoup","libsoup3","links","lynx","nginx-mainline-mod-brotli","nginx-mod-brotli","nix","nodejs","nodejs-lts-hydrogen","nodejs-lts-iron","peazip","perl-io-compress-brotli","podman-desktop","python-brotlicffi","qt6-base","suyu-dev-qt6-git","tracktion-waveform","ungoogled-chromium","wget2","wireshark-cli","woff2"],"optional_for":["apache","engrampa","lighttpd"],"conflicts_with":[],"replaces":[],"download_size":"384.67 KiB","installed_size":"996.63 KiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"2f7ce0251b13c348ddaa16b03b25cd2c27a110b54402d8a0494811f44af0f2a6","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"brotli-testdata","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm - test data","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"6.13 MiB","installed_size":"14.76 MiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"10007017b62e5a0d465e1a180662fcc3ecd2a335ce7870409676e55722ada693","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"btrfs-progs","version":"6.10.1-2","description":"Btrfs filesystem utilities","architecture":"x86_64","url":"https://btrfs.readthedocs.io","licenses":["GPL-2.0-only"],"groups":[],"provides":["btrfs-progs-unstable"],"depends_on":["glibc","util-linux-libs","lzo","zlib","zstd","libgcrypt","systemd-libs"],"optional_deps":[{"name":"python","description":"libbtrfsutil python bindings"},{"name":"e2fsprogs","description":"btrfs-convert"}],"required_by":["archinstall","btrbk","btrfs-assistant","btrfs-assistant-git","btrfs-snapshots-git","btrfsmaintenance","buttermanager","distrobuilder","grub-btrfs","libblockdev-btrfs","libguestfs","refind-btrfs","rusnapshot-git","snap-pac","snap-sync","snapper","udisks2-btrfs"],"optional_for":["cri-o","devtools","docker","dracut","gparted","incus","incus-tools","libblockdev-fs","lxd","mkosi","mkosi-git","podman","schroot","timeshift","udisks2"],"conflicts_with":["btrfs-progs-unstable"],"replaces":["btrfs-progs-unstable"],"download_size":"1213.13 KiB","installed_size":"6661.96 KiB","packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 08:52:23 PM +08","md5_sum":null,"sha_256_sum":"3e6ffcac374877c8a1b449429a2458d14b0a53ab6eb5aaafab10392a011fd833","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"bzip2","version":"1.0.8-6","description":"A high-quality data compression program","architecture":"x86_64","url":"https://sourceware.org/bzip2/","licenses":["BSD"],"groups":[],"provides":["libbz2.so=1.0-64"],"depends_on":["glibc","sh"],"required_by":["adios2","amavisd-new","apt","arrow","base","boost-libs","botan","cargo-dist","cargo-make","cargo-pgrx","cargo-tauri","clamav","clonezilla","coin-or-coinutils","czkawka-cli","czkawka-gui","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","doomseeker","dovecot","dpkg","dra","elinks","emby-ffmpeg","espup","ext4magic","fbreader","felix-rs","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","file","flightcore","fnm","fox","freeciv","freetype2","fsarchiver","gambas3-gb-compress","gimp","git-cinnabar","gnupg","goldendict-webengine-pr-git","goxlr-utility","graphicsmagick","grass","gst-plugins-bad","gst-plugins-good","gtkwave","gtkwave-gtk3-tcl","handbrake","handbrake-cli","handbrake-nvenc-cli","haskell-bz2","haskell-bzlib","httplz","imagemagick","imagemagick-full-git","imlib2","irrlicht","irrlicht-docs","iverilog","iverilog-git","jellyfin-ffmpeg","karchive","karchive5","krokiet","lib32-bzip2","libarchive","libelf","libewf","libgringotts","libgsf","libmirage","libosmium","libretro-dolphin","libretro-play","libsolv","libunarr","libzip","links","ludusavi","lynx","mairix","mariadb","mariadb-lts","maturin","miktex","miniserve","minizip-ng","miopen-hip","mpd","munge","netcdf","nix-init","openpgp-ca","openpgp-ca-restd","ouch","pacman-bintrans","pacman-bintrans-tools","partimage","pbzip2","pcre","pcre2","perl-compress-bzip2","pgpdump","pixi","pyflow","pypy","pypy3","python","python-cramjam","python-johnnycanencrypt","python-osmium","python-pysequoia","python-pytables","python39","qemu-block-dmg","qemu-git","qemu-headless-git","qsopt-ex","quilt","r","rage-encryption","rattler-build","rbutil","reprepro","rocksdb","routino","rye","sentry-cli","sequoia-chameleon-gnupg","sequoia-sop","sequoia-sq","sh4d0wup","simutrans","slade","sonic-visualiser","ssh-openpgp-auth","sshd-openpgp-auth","tarsnap","thunderbird","tracktion-waveform","ugrep","unarchiver","unzip","wasm-pack","wget2","wit","yelp","zeroc-ice","zip"],"optional_for":["3cpio","android-ndk","atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","mkinitcpio","unp","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":"58.38 KiB","installed_size":"145.00 KiB","packager":"Christian Hesse ","build_date":"Mon 18 Mar 2024 06:29:13 AM +08","md5_sum":"93dc36daf50abe23faeafbfb3c8c828f","sha_256_sum":"8779003d659c441b952095c19907603a738c1366f25cc51be3fd139fa4e95748","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"ca-certificates","version":"20240618-1","description":"Common CA certificates - default providers","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["ca-certificates-mozilla"],"required_by":["arch-audit","aria2","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-cacert<=20140824-4"],"replaces":["ca-certificates-cacert<=20140824-4"],"download_size":"2.08 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"982005bd5ecc998c05f561b57bb58b4457407779727e3c3d59e926d34a8b0712","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-mozilla","version":"3.104-1","description":"Mozilla's set of trusted CA certificates","architecture":"x86_64","url":"https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS","licenses":["MPL-2.0"],"groups":[],"provides":[],"depends_on":["ca-certificates-utils>=20181109-3"],"required_by":["ca-certificates"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"387.42 KiB","installed_size":"1069.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Sat 31 Aug 2024 07:36:20 AM +08","md5_sum":null,"sha_256_sum":"37e07a5d347ff9c68157bec8729c4c50f6fa538bbdb612e03166cf59ce8ca3ff","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-utils","version":"20240618-1","description":"Common CA certificates (utilities)","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":["ca-certificates","ca-certificates-java"],"depends_on":["bash","coreutils","findutils","p11-kit"],"required_by":["arch-audit","aria2","ca-certificates-icp_br","ca-certificates-mozilla","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","jdk","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jre","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jre8","jre8-openjdk-headless","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-java"],"replaces":["ca-certificates-java"],"download_size":"10.81 KiB","installed_size":"13.63 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"aabd5b2b7030716ccdd465d607e734e851fe4a01adf8293a3968fe22eb89ce9b","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"coreutils","version":"9.5-2","description":"The basic file, shell and text manipulation utilities of the GNU operating system","architecture":"x86_64","url":"https://www.gnu.org/software/coreutils/","licenses":["GPL-3.0-or-later","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["acl","attr","glibc","gmp","libcap","openssl"],"required_by":["afl-utils","alpine-chroot-install","ant","arch-install-scripts","archinstall","base","bashtop","bats","bootiso","ca-certificates-utils","checksec","devtools","diffoscope","dkms","dmenu","dracut","garuda-update","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grml-zsh-config","gsocket","gzip","hwdetect","i3lock-fancy-git","inxi","java-runtime-common","keycloak","linux","linux-cachyos","linux-cachyos-bore","linux-cachyos-lts","linux-clear","linux-hardened","linux-lqx","linux-lts","linux-lts515","linux-mainline","linux-mainline-x64v3","linux-nitrous","linux-rt","linux-rt-lts","linux-vfio","linux-vfio-lts","linux-vfio-x64v3","linux-xanmod-edge-x64v3","linux-xanmod-lts","linux-xanmod-rt","linux-xanmod-x64v2","linux-zen","linux-znver2","linux-znver3","linux-znver4","luarocks","mariadb","mariadb-lts","minieap","mintstick","mkinitcpio","netctl","p11-kit","pacman","pacman-git","perf","perl-libintl-perl","posix","posix-xsi","quickemu","rpmextract","tblock-gui","tdrop","testssl.sh","usbctl","util-linux","wikiman","xsudo-git","zshdb"],"optional_for":["usbutils"],"conflicts_with":[],"replaces":[],"download_size":"2.75 MiB","installed_size":"15.87 MiB","packager":"Tobias Powalowski ","build_date":"Fri 30 Aug 2024 07:57:19 PM +08","md5_sum":null,"sha_256_sum":"6038dfa8f09380d65d3df7119b19dde96ab20f983b95b1056861aae1fef947b5","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cracklib","version":"2.10.2-1","description":"Password Checking Library","architecture":"x86_64","url":"https://github.com/cracklib/cracklib","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","zlib"],"required_by":["389-ds-base","deepin-pw-check","lib32-cracklib","libpwquality"],"optional_for":["mariadb","mariadb-lts","xkcdpass"],"conflicts_with":[],"replaces":[],"download_size":"275.46 KiB","installed_size":"925.81 KiB","packager":"Tobias Powalowski ","build_date":"Tue 06 Aug 2024 02:39:50 PM +08","md5_sum":null,"sha_256_sum":"692c691ea08066bac8ae2423dd6f332a3e1bb040f9ae615e206d5ad13df98175","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cryptsetup","version":"2.7.5-1","description":"Userspace setup tool for transparent encryption of block devices using dm-crypt","architecture":"x86_64","url":"https://gitlab.com/cryptsetup/cryptsetup/","licenses":["GPL"],"groups":[],"provides":["libcryptsetup.so=12-64"],"depends_on":["device-mapper","libdevmapper.so=1.02-64","openssl","popt","util-linux-libs","libuuid.so=1-64","json-c","libjson-c.so=5-64","argon2","libargon2.so"],"required_by":["archinstall","deepin-file-manager","libblockdev-crypto","luksmeta","mkinitcpio-utils","osquery","pam_mount","stratisd","systemd","tomb-git","volume_key","yubikey-full-disk-encryption","zulucrypt"],"optional_for":["clevis","dracut","hwdetect","mkinitcpio-systemd-tool","mkosi-git","rauc"],"conflicts_with":["mkinitcpio<38-1"],"replaces":[],"download_size":"753.85 KiB","installed_size":"2997.09 KiB","packager":"Christian Hesse ","build_date":"Tue 03 Sep 2024 06:09:57 PM +08","md5_sum":null,"sha_256_sum":"7f603f586ccb21d946408ffe2f6011a3b0025e3051dfa70dbedb02a8a96476f3","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"curl","version":"8.9.1-2","description":"command line tool and library for transferring data with URLs","architecture":"x86_64","url":"https://curl.se/","licenses":["MIT"],"groups":[],"provides":["libcurl.so=4-64"],"depends_on":["ca-certificates","brotli","libbrotlidec.so=1-64","krb5","libgssapi_krb5.so=2-64","libidn2","libidn2.so=0-64","libnghttp2","libnghttp2.so=14-64","libnghttp3","libnghttp3.so=9-64","libpsl","libpsl.so=5-64","libssh2","libssh2.so=1-64","zlib","libz.so=1-64","zstd","libzstd.so=1-64","openssl","libcrypto.so=3-64","libssl.so=3-64"],"required_by":["0ad","across","ani-cli","appstream","appstream-glib","arch-update","archlinux-repro","ardour","ardour-git","ario","asdf-vm","asymptote","audacious-plugins","aura","aura-git","auracle-git","aurutils","aws-sdk-cpp","barrier-headless","betterdiscordctl-git","boinc","boinc-nox","bootiso","btfs","cairo-dock","cargo-c","cargo-clone","cargo-crev","cargo-geiger","cargo-generate","cargo-outdated","cargo-shuttle","cargo-tarpaulin","cargo-udeps","castget","casync","cclive","cemu-git","cfitsio","choosenim","clamav","clamav-unofficial-sigs","cmake","cmake-git","coeurl","conky","cryfs","csound","curlftpfs","curlie","ddclient","ddnet","dehydrated","devtools","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dovecot","dtools","dub","efl","element","elinks","emulationstation","espflash","espup","ettercap","ettercap-gtk","exiv2","facter","fbreader","fcitx-cloudpinyin","fcitx5-chinese-addons","feh","fisher","flashplugin","flatpak","flatpak-builder","flickcurl","freeciv","freeipa-client","freeoffice","ftl-sdk","fwupd","gambas3-gb-net-curl","gammu","gdal","gerbera","giac","git","git-cinnabar","github-desktop","gitlab-runner","glyr","gmic","gmt","gnome-notes","gpredict","gst-plugins-bad","guitarix","hblock","hcxtools","hlsdl","html-xml-utils","hurl","hw-probe","icaclient","imhex","jp2a","kcov","kicad","kicad-git","klavaro","kodi","kodi-git","kodi-gles","kodi-stable-git","lastpass-cli","leatherman","lib32-curl","libclastfm","libcmis","libcurl-compat","libcurl-gnutls","libdatovka","libelf","libgphoto2","libindi","libkiwix","libkolabxml","liblphobos","libmediainfo","libmodsecurity","libnpupnp","liboauth","libofa","libofx","libproxy","libqalculate","libquvi","librdkafka","libreoffice-dev-bin","libreoffice-fresh","libreoffice-still","librepo","libresprite-git","libreswan","libsixel","libupnpp","libxmlrpc","llvm-libs","lnav","lokinet","luarocks","lutris","lutris-git","lv2lint","lxpanel","lxpanel-gtk3","manaplus","mcpelauncher-linux-git","megaglest","megatools","mesonlsp","micromamba","minetest","minetest-git","minetest-server","minetest-server-git","moc-pulse","mongodb","mpd","mpdscribble","musikcube","mysql-workbench","ncmpcpp","netcdf","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","netcdf-openmpi","netsurf","networkmanager","networkmanager-iwd","newsboat","nheko-git","nix","nix-init","nm-cloud-setup","nm-iwd-cloud-setup","nspluginwrapper","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-backgroundremoval","obs-streamfx-unstable","obs-studio","obs-studio-git","obs-studio-stable","obs-studio-tytan652","octave","odamex-git","odr-dabmux-git","onlyoffice-bin","openrct2","opl-synth","osbuild","osdlyrics","ostree","p2pool","pacman","pacman-git","pacredir","pacrunner","pakka","passenger","path-of-building-community-git","percona-server","phoenicis-playonlinux","php","php-legacy","pianobar","pkgfile","pokerth","polybar","polybar-git","poppler","powerdns","powerdns-recursor","profanity","profanity-gtk","proj","psensor","python-pycurl","python-tensorflow","python-tensorflow-cuda","python-tensorflow-opt","python-tensorflow-opt-cuda","qemu-block-curl","qemu-git","qemu-headless-git","qemu-tools","qmmp","r","raptor","rauc","reapack","release-plz","remmina","rhonabwy","rink","rng-tools","roswell","rpcs3-git","rpi-imager","rtorrent","ruby-patron","rust","rustup","rustup-git","s3fs-fuse","sabnzbd","sane","scummvm","scummvm-git","seadrive-daemon","sentry-native","sheldon","siril-git","slurm-llnl","smooth","softmaker-office-2024-bin","soundwire","speedtest++","spring","springlobby","srb2kart","sssd","steam","steam-native-runtime","strongswan","sunshine","supertux","supertuxkart","sword","sysdig","syslog-ng","tensorflow","tensorflow-cuda","tensorflow-opt","tensorflow-opt-cuda","termv-git","tesseract","tinyemu","toxic","tpm2-tools","tpm2-tss","transmission-cli","transmission-gtk","transmission-qt","transmission-remote-gtk","trurl","typst-lsp","uget","ulfius","umu-launcher","unrealircd","vagrant","vcpkg","viking","virtualbox","virtualbox-kvm","vorbis-tools","warsow","wasm-pack","wcurl","weechat","wpscan","wxwidgets-common","xerces-c","xfce4-screenshooter","xine-ui","xonotic","xrootd","xtrabackup","ytfzf","ytfzf-git","yubico-c","yubico-c-client","zabbix-agent","zabbix-agent2","zabbix-proxy","zabbix-server","zapret-common-git","zellij"],"optional_for":["apache","bashtop","claws-mail","clevis","curlew","deadbeef","deadbeef-git","fio","freeradius","gap-packages","gcin","gimp-git","gpgit","inxi","ispin","mariadb","mariadb-lts","mkinitcpio-archiso","mkosi-git","monitoring-plugins","nextcloud","opensips","pciutils","surf-git","systemd","tor-router","translate-shell","vicious","wps-office","wps-office-cn","xmms2"],"conflicts_with":[],"replaces":[],"download_size":"1112.47 KiB","installed_size":"1916.32 KiB","packager":"Leonidas Spyropoulos ","build_date":"Mon 05 Aug 2024 03:53:07 PM +08","md5_sum":null,"sha_256_sum":"816d521855ba751ad814499e4fc68a00d49182a1e622307e5d33a873f0fbc0a4","signatures":"244740D17C7FD0EC","extended_data":null},{"repository":"core","name":"dash","version":"0.5.12-1","description":"POSIX compliant shell that aims to be as small as possible","architecture":"x86_64","url":"http://gondor.apana.org.au/~herbert/dash/","licenses":["BSD"],"groups":[],"provides":[],"depends_on":["glibc","libedit","libedit.so=0-64"],"required_by":["dashbinsh"],"optional_for":["dracut"],"conflicts_with":[],"replaces":[],"download_size":"82.51 KiB","installed_size":"153.90 KiB","packager":"Levente Polyak ","build_date":"Sat 25 Feb 2023 12:34:46 AM +08","md5_sum":"0368b51e48997a1b3e23faca23101eaa","sha_256_sum":"28622213069475e022656a627bff1891e8ee986d7b539eb4f3af620a8c7e27f4","signatures":"FC1B547C8D8172C8","extended_data":null},{"repository":"core","name":"db","version":"6.2.32-1","description":"The Berkeley DB embedded database system","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["AGPL3"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["apt","isync","opendkim","python-bsddb"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":"1360.35 KiB","installed_size":"7336.65 KiB","packager":"Frederik Schwan ","build_date":"Sun 11 Dec 2022 02:39:34 AM +08","md5_sum":"dac58b30bebd81ea97e54b23eb6a2d74","sha_256_sum":"a0013dbb897620edca8736676b7b2ee4b854ef9479a1555f69557cac58187581","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"db5.3","version":"5.3.28-5","description":"The Berkeley DB embedded database system v5.3","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["custom:sleepycat"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["389-ds-base","bitcoin-daemon","bitcoin-qt","bitcoin-tx","bogofilter","bogofilter-db","inn","jack2","jnettop","perl","perl-berkeleydb","reprepro","swi-prolog"],"optional_for":["bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","iproute2"],"conflicts_with":[],"replaces":[],"download_size":"1212.97 KiB","installed_size":"6609.88 KiB","packager":"Frederik Schwan ","build_date":"Wed 01 May 2024 11:27:30 PM +08","md5_sum":null,"sha_256_sum":"edb56c7d84c438b387a53ee414daff2611f62e4804ec8f2995e17b34437c0a4c","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"dbus","version":"1.14.10-2","description":"Freedesktop.org message bus system","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["libdbus","libdbus-1.so=3-64"],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["a2jmidid","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","android-emulator","ardour","ardour-git","at-spi2-core","avahi","awesome","awesome-git","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brickadia-launcher","brltty","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cdemu-daemon","cef-minimal-obs-bin","chromium","cloudflare-warp-bin","colord","compiz-core","compiz-gtk","connman","connman-git","consolekit","corectrl","cosmic-applets","cosmic-applets-git","cups","darling-bin","dbus-broker-units","dbus-c++","dbus-daemon-units","dbus-glib","deskreen","displaycal","dnsmasq","dropbox","dunst","efl","emacs","emacs-nativecomp","emacs-ng","emacs-nox","emacs-wayland","emby-theater","eruption","fcitx","filezilla","firedragon","firefox","firefox-developer-edition","firefox-esr","firefox-nightly","firefox-wayland-hg","flatpak","fluidsynth","fnott","fprintd","fyi","gambas3-gb-dbus","gamemode","gnome-mplayer","gnome-online-accounts","gogglesmm","gpu-screen-recorder-git","hplip","imhex","jack2","jack2-dbus","kdeconnect","keymapper-git","kitty","kitty-git","kitty-shell-integration","lib32-dbus","libcupsfilters","libdecor","libglib-testing","libgnome-keyring","libnih","libnvme","libpcap","libpulse","libreoffice-fresh","libreoffice-still","librewolf","libteam","libvirt-dbus","light-locker","malcontent","mangohud","mangohud-git","mmsd-git","modrinth-app-git","mozillavpn","mozillavpn-git","mpd","mullvad-browser-bin","mullvad-vpn-cli","ncspot","neard","obs-studio-tytan652","ofono","osquery","pacrunner","pantheon-default-settings","pantheon-settings-daemon","perl-net-dbus","picom","picom-git","pipewire","pipewire-audio","pipewire-jack-client","pipewire-media-session","pipewire-pulse","pop-bin","pop-launcher","pop-launcher-git","pycharm-community-eap","python-dasbus","python-dbus","python-dbus-fast","python-dbus-next","qt6-base","qt6-webengine","quota-tools","reboot-arch-btw","rescrobbled-git","retroarch","rtkit","runst","signal-desktop","signal-desktop-beta","slurm-llnl","snapper","songrec","sonyheadphonesclient-bin","spice-vdagent","spotify-player","spotifyd","steam","steam-native-runtime","stratisd","strawberry-full-git","strawberry-git","subversion","swaylock-fprintd-git","switchboard-plug-power","system76-firmware","system76-power","systemd","telepathy-glib","telepathy-mission-control","termius","termscp","termusic","thunderbird","thunderbird-beta","tiny","toastify","tradingview","udisks2","umu-launcher","ungoogled-chromium","vita3k-avx-git","vita3k-git","vlc","vlc-luajit","wesnoth","weston","wezterm-git","widelands","wingpanel-indicator-notifications","wired","wldash","wluma","wpa_supplicant","x2goserver","xdg-dbus-proxy","xorg-server","xorg-server-git","zam-plugins-clap","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zbar","zoom"],"optional_for":["alsa-plugins","claws-mail","deadbeef","deadbeef-git","fastfetch","picom","picom-git","utox"],"conflicts_with":["libdbus"],"replaces":["libdbus"],"download_size":"304.86 KiB","installed_size":"910.57 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"c08fa536e28863e35a9591196876faf7","sha_256_sum":"28b519535496a8c8b7885fb2d4c089ca98e34250dfc468aad2267c639026f219","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker","version":"36-4","description":"Linux D-Bus Message Broker","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":[],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["dbus-broker-units"],"optional_for":["at-spi2-core"],"conflicts_with":[],"replaces":[],"download_size":"144.96 KiB","installed_size":"353.90 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"557a742031b10e6d8b76ce2bb98298dbb001ac76b68ee003417f6fceb9ae65bd","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker-units","version":"36-4","description":"Linux D-Bus Message Broker - Service units","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus","dbus-broker"],"required_by":["dbus-units","systemd"],"optional_for":[],"conflicts_with":["dbus-daemon-units"],"replaces":[],"download_size":"2.38 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"bb97bd8f943e581a6c02be0aea368c2faa035f709406bffed77e807e96882e2f","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-daemon-units","version":"1.14.10-2","description":"Freedesktop.org message bus system - Service units","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus"],"required_by":["systemd"],"optional_for":[],"conflicts_with":["dbus-broker-units"],"replaces":[],"download_size":"2.87 KiB","installed_size":"0.80 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"79259a029b856b6958749db1a3d0f192","sha_256_sum":"61e184d5fae5ec13073525c6f17c2a630b6892dc8847585d2e454e590dbe5919","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-docs","version":"1.14.10-2","description":"Freedesktop.org message bus system - Documentation","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"1329.87 KiB","installed_size":"21471.26 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"1e71d48059b0d86d21a3af48ce4e8191","sha_256_sum":"faed9464ab5a4bfb63ea9a585025a7e0b9fc7d41433a7a75c96ae3d6cd4d3ae1","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-units","version":"36-4","description":"D-Bus service units (default provider)","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["CC0-1.0"],"groups":[],"provides":[],"depends_on":["dbus-broker-units"],"required_by":["systemd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.14 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"eb7a93b615db7183fde62723f8ccb94094ceaab53782cbd63c159ae30ac5ce8a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"debugedit","version":"5.0-6","description":"Tool to mangle source locations in .debug files","architecture":"x86_64","url":"https://sourceware.org/debugedit/","licenses":["GPL-3.0-or-later","GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","libelf"],"required_by":["base-devel","flatpak-builder","zotero-bin"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"44.01 KiB","installed_size":"105.24 KiB","packager":"Morten Linderud ","build_date":"Sat 04 May 2024 12:15:41 AM +08","md5_sum":null,"sha_256_sum":"dfd548598504d5e1f12296dc49bbbc43976702fdf2700cdd93404e3b4a1992c4","signatures":"9C02FF419FECBE16","extended_data":null},{"repository":"core","name":"debuginfod","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (debuginfod)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","libmicrohttpd","libmicrohttpd.so=12-64","sqlite","libsqlite3.so=0-64"],"optional_deps":[{"name":"elfutils=0.191","description":"for translations"}],"required_by":["pwndbg","valgrind"],"optional_for":["binutils","delve"],"conflicts_with":[],"replaces":[],"download_size":"135.62 KiB","installed_size":"339.33 KiB","packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"337ddacd32f8dcc2f8dcd69232d4c9091ce5617f334d483e5216496dca6e1e4b","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"device-mapper","version":"2.03.26-1","description":"Device mapper userspace library and tools","architecture":"x86_64","url":"http://sourceware.org/dm/","licenses":["GPL2","LGPL2.1"],"groups":[],"provides":["libdevmapper.so=1.02-64","libdevmapper-event.so=1.02-64"],"depends_on":["glibc","systemd-libs","libudev.so=1-64"],"required_by":["cri-o","cryptsetup","dmraid","docker","grub","grub-improved-luks2-git","grub-silent","libblockdev-dm","libblockdev-lvm","libblockdev-mpath","libldm","lvm2","mkinitcpio-archiso","multipath-tools","nfs-utils","osquery","parted","podman","skopeo","tcplay","veracrypt","xfsprogs"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"277.59 KiB","installed_size":"756.56 KiB","packager":"Christian Hesse ","build_date":"Sun 25 Aug 2024 03:20:53 AM +08","md5_sum":null,"sha_256_sum":"6ed7fd89d8824cb83f95c7ec55c00485865e836ed30a5c55cc6425c5234b5585","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"dialog","version":"1:1.3_20240619-2","description":"A tool to display dialog boxes from shell scripts","architecture":"x86_64","url":"https://invisible-island.net/dialog/","licenses":["LGPL2.1"],"groups":[],"provides":["libdialog.so=15-64"],"depends_on":["sh","ncurses"],"required_by":["python-pythondialog"],"optional_for":["arch-wiki-lite","etc-update","gammu","netctl","texlive-binextra"],"conflicts_with":[],"replaces":[],"download_size":"199.41 KiB","installed_size":"463.88 KiB","packager":"Evangelos Foutras ","build_date":"Mon 01 Jul 2024 02:03:02 AM +08","md5_sum":null,"sha_256_sum":"fc0e81648bd6c38e1ff32db8b5c21ad33bfc8a345d30b0a9be4dcef768c8f6dd","signatures":"51E8B148A9999C34","extended_data":null},{"repository":"core","name":"diffutils","version":"3.10-1","description":"Utility programs used for creating patch files","architecture":"x86_64","url":"https://www.gnu.org/software/diffutils","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","bash"],"required_by":["aconfmgr-git","arch-update","archlinux-repro","autoconf","btrfs-assistant","btrfs-assistant-git","colordiff","dehydrated","devtools","diffoscope","etckeeper","mediawiki","mkinitcpio","pacdiff-pacman-hook-git","pkgdiff","posix","quilt","rcs","steam","umu-launcher","usbctl"],"optional_for":["gzip","khard","pace","pacman-contrib","qmk","terraform"],"conflicts_with":[],"replaces":[],"download_size":"344.62 KiB","installed_size":"1518.90 KiB","packager":"Sébastien Luttringer ","build_date":"Wed 24 May 2023 03:47:08 AM +08","md5_sum":"bd4ad1c815ab296ddeadef8ec6e859a1","sha_256_sum":"88e4705cd3d078c250b6ce94ccdabc48da1a093aa64c0fb0cb832c6ce4797e2d","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"ding-libs","version":"0.6.2-2","description":"\"DING is not GNU\" helper libraries for SSSD and FreeIPA","architecture":"x86_64","url":"https://github.com/SSSD/ding-libs","licenses":["GPL-3.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["gssproxy","sscg","sssd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"124.80 KiB","installed_size":"656.41 KiB","packager":"Andreas Radke ","build_date":"Sun 17 Mar 2024 04:54:54 PM +08","md5_sum":"4e62db1a524ead54b52b59c12c12e0f9","sha_256_sum":"e72c72725452ec0287383e847e039777eed504ef1707f09101d795b429c50846","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"dmraid","version":"1.0.0.rc16.3-15","description":"Device mapper RAID interface","architecture":"x86_64","url":"https://people.redhat.com/~heinzm/sw/dmraid/","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["device-mapper>=2.0.54"],"optional_for":["dracut"],"conflicts_with":["mkinitcpio<0.7"],"replaces":[],"download_size":"121.92 KiB","installed_size":"314.03 KiB","packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:51:09 PM +08","md5_sum":null,"sha_256_sum":"e9a661652d8e4076d2164b77c88f94ebd93dcf16dd66714513621b40e4de86b9","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"dnssec-anchors","version":"20190629-4","description":"DNSSEC trust anchors for the root zone","architecture":"any","url":"https://data.iana.org/root-anchors/","licenses":["custom:none"],"groups":[],"provides":[],"depends_on":[],"required_by":["bind","knot-resolver","ldns","unbound"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"3.07 KiB","installed_size":"0.79 KiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Jul 2024 04:15:16 AM +08","md5_sum":null,"sha_256_sum":"648ab7c4ac43421e6f8026128f84fdefcc5ebc0d171d6c723441e4d12c69048e","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"dosfstools","version":"4.2-5","description":"DOS filesystem utilities","architecture":"x86_64","url":"https://github.com/dosfstools/dosfstools","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["archinstall","archiso","archiso-git","bootiso","clonezilla","distrobuilder","libguestfs","mintstick","penguins-eggs","refind","ventoy-bin","woeusb","woeusb-ng"],"optional_for":["gparted","grub","grub-improved-luks2-git","grub-silent","kpmcore","libblockdev-fs","mkosi-git","rauc","rpi-imager","sedutil","syslinux","udisks2"],"conflicts_with":[],"replaces":[],"download_size":"135.52 KiB","installed_size":"409.22 KiB","packager":"Jelle van der Waa ","build_date":"Sun 25 Aug 2024 02:52:04 AM +08","md5_sum":null,"sha_256_sum":"03a7d8bd939a80418d9744afad00c22b91c4b411bdf9662744647c383a0ec503","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"e2fsprogs","version":"1.47.1-4","description":"Ext2/3/4 filesystem utilities","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":["libcom_err.so=2-64","libe2p.so=2-64","libext2fs.so=2-64","libss.so=2-64"],"depends_on":["sh","util-linux-libs"],"optional_deps":[{"name":"lvm2","description":"for e2scrub"},{"name":"util-linux","description":"for e2scrub"},{"name":"smtp-forwarder","description":"for e2scrub_fail script"}],"required_by":["apptainer","archinstall","archiso","archiso-git","bind","bootiso","deepin-clone","distrobuilder","ext4magic","extundelete","freerdp","fsarchiver","fuse-ext2-git","fuse2fs","krb5","lib32-e2fsprogs","libblockdev-fs","mc","mintstick","nfs-utils","osbuild","quota-tools","schroot","supermin","termius","tomb-git"],"optional_for":["btrfs-progs","diffoscope","dracut","kpmcore","mkosi-git","pjproject","rauc","udisks2"],"conflicts_with":[],"replaces":[],"download_size":"1264.47 KiB","installed_size":"5322.71 KiB","packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"f72a32b7c97ab2dafff65d466d1b91243bf74b55fd5e975584ab4d6299ea13b9","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"efibootmgr","version":"18-3","description":"Linux user-space application to modify the EFI Boot Manager","architecture":"x86_64","url":"https://github.com/rhboot/efibootmgr","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","popt","efivar","libefiboot.so=1-64","libefivar.so=1-64"],"required_by":["grub-silent","refind","system76-firmware"],"optional_for":["grub","grub-improved-luks2-git","hw-probe","memtest86-efi","rauc","syslinux"],"conflicts_with":[],"replaces":[],"download_size":"30.09 KiB","installed_size":"83.71 KiB","packager":"David Runge ","build_date":"Wed 13 Mar 2024 05:47:21 PM +08","md5_sum":"b28be257dd69d2c324267ccad6b1bab4","sha_256_sum":"6c8024c4b0abbdc3ff87a582ca1730448ef462015d3d0e97249d988f59c66c65","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"efivar","version":"39-1","description":"Tools and libraries to work with EFI variables","architecture":"x86_64","url":"https://github.com/rhboot/efivar","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libefiboot.so=1-64","libefisec.so=1-64","libefivar.so=1-64"],"depends_on":["glibc"],"required_by":["dbxtool","efibooteditor","efibooteditor-qt5","efibootmgr","mokutil","pesign"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"144.70 KiB","installed_size":"541.61 KiB","packager":"David Runge ","build_date":"Thu 01 Feb 2024 05:57:25 PM +08","md5_sum":"06ab87bfdac70ba57b6626951a6f9000","sha_256_sum":"16422088da42f1ac562851d06ce86ad659f0775c86d9b1f54fa5a7067f9d636a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"elfutils","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (utilities)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","sh"],"required_by":["avrdude","babeltrace","flatpak-builder","hotspot","kcov","libabigail","libdwarf","ltrace","namcap","perf","pwninit","rpm-tools","systemtap-git"],"optional_for":["debuginfod","dracut"],"conflicts_with":[],"replaces":[],"download_size":"583.84 KiB","installed_size":"3576.72 KiB","packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"ecd122522f2abfa532173b36897db0986e586a33198e2b0862e5205b3d382c22","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"expat","version":"2.6.3-2","description":"An XML parser library","architecture":"x86_64","url":"https://libexpat.github.io/","licenses":["MIT"],"groups":[],"provides":["libexpat.so=1-64"],"depends_on":["glibc"],"required_by":["aarch64-linux-gnu-gdb","android-emulator","apr-util","arm-none-eabi-gdb","audacity","augustus","avahi","avr-gdb","blender","blockbench-bin","boca","boinctui","bolt-launcher","brltty","calf","cef-minimal-obs-bin","clasp-cl-git","cmake","dbus","dbus-broker","dbus-glib","deskreen","digikam","dovecot","ejabberd","elinks","emby-ffmpeg","emby-theater","exempi","exiv2","fontconfig","fpc","gdal","gdb","git","insight-toolkit","jack2-dbus","lapce","lapce-git","lftp","lib32-expat","libcomps","libdatovka","libdom","libmesode","libnpupnp","libofa","libosmium","libreoffice-fresh","libreoffice-still","libsolv","libstrophe","libupnpp","libva-mesa-driver","libwmf","lm32-elf-gdb","lua-expat","lua51-expat","lua52-expat","lua53-expat","mame","mesa","mesa-tkg-git","mesa-vdpau","miktex","mpd","mysql-workbench","neon","neovide","nominatim","obs-studio-tytan652","oculante","opencl-clover-mesa","opencl-rusticl-mesa","or1k-elf-gdb","osm2pgsql","paraview","perl-xml-parser","polkit","polkit-consolekit","pop-bin","ppc64le-elf-gdb","profanity","profanity-gtk","pypy","pypy3","python","python-astropy","python-osmium","python39","qgis","qt6-webengine","rfdump","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sdbus-cpp","sdbus-cpp-doc","sh2-elf-gdb","signal-desktop","signal-desktop-beta","skia-sharp","snapcast","subversion","termius","tradingview","vmware-horizon-client","vulkan-intel","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","wayland","wayland-chromium","wayland-git","wxwidgets-common","zeroc-ice"],"optional_for":["dbus-c++","unbound"],"conflicts_with":[],"replaces":[],"download_size":"113.25 KiB","installed_size":"426.08 KiB","packager":"David Runge ","build_date":"Thu 05 Sep 2024 01:19:42 AM +08","md5_sum":null,"sha_256_sum":"6487b7be759572043cf59b7999883be027025c74f003fbca1b5203f1236b181f","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"fakeroot","version":"1.36-1","description":"Tool for simulating superuser privileges","architecture":"x86_64","url":"https://tracker.debian.org/pkg/fakeroot","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["glibc","filesystem","sed","util-linux","sh"],"required_by":["anydesk-bin","apptainer","base-devel","debtap","devtools","gnome-shell-extension-arch-update","lib32-fakeroot","reprotest"],"optional_for":["bauh","i3status-rust","i3status-rust-git","pacman-contrib","pacseek"],"conflicts_with":[],"replaces":[],"download_size":"76.42 KiB","installed_size":"141.27 KiB","packager":"Christian Hesse ","build_date":"Fri 16 Aug 2024 01:17:43 AM +08","md5_sum":null,"sha_256_sum":"7bdd5f7580b20ab1574346c673a1d1a1c25aa9a902ef3b9e77944345a934e558","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"file","version":"5.45-1","description":"File type identification utility","architecture":"x86_64","url":"https://www.darwinsys.com/file/","licenses":["custom"],"groups":[],"provides":["libmagic.so=1-64"],"depends_on":["glibc","zlib","xz","bzip2","libseccomp","libseccomp.so=2-64","zstd","libzstd.so=1-64"],"required_by":["android-file-transfer","atool","base","base-devel","bootiso","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","carla","carla-git","checksec","clifm-git","ext4magic","feh","file-roller","gerbera","haskell-magic","hyprlock-git","hyprpaper","hyprpaper-git","imhex","keepalived","libmodulemd","lyx","moc-pulse","mpd-notification","nano","osquery","pleroma-bin","posix","python-magic","radare2","radare2-git","ristretto","rizin","rpm-tools","rspamd","sox","subversion","util-linux","vifm","viking","vis","xdg-utils","yara","zathura","zim-tools"],"optional_for":["inxi","libextractor","ranger-git"],"conflicts_with":[],"replaces":[],"download_size":"395.80 KiB","installed_size":"8534.61 KiB","packager":"Sébastien Luttringer ","build_date":"Fri 28 Jul 2023 05:23:09 AM +08","md5_sum":"5e1deb413f19678a56204e3d5e4b3f8a","sha_256_sum":"3ad37e246e893cdf59ae3af862d083c52087c47d3e6210996075ce77d41c5a1a","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"filesystem","version":"2024.04.07-1","description":"Base Arch Linux files","architecture":"any","url":"https://archlinux.org","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["iana-etc"],"required_by":["base","dracut","fakeroot","glibc","glibc-eac","glibc-eac-roco","mkinitcpio","nethack","plymouth"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"14.02 KiB","installed_size":"22.33 KiB","packager":"David Runge ","build_date":"Mon 08 Apr 2024 02:02:30 AM +08","md5_sum":null,"sha_256_sum":"07acb29650aeaee633edd337af5bfa9c3b3309c9f198e5bad145bd4bbdacc40a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"findutils","version":"4.10.0-2","description":"GNU utilities to locate files","architecture":"x86_64","url":"https://www.gnu.org/software/findutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","sh"],"required_by":["anything-sync-daemon","base","base-devel","bash-complete-alias","bootiso","ca-certificates-utils","checksec","devtools","dracut","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","java-runtime-common","metals","mkinitcpio","penguins-eggs","posix","profile-cleaner","profile-sync-daemon","quilt","rosenpass","themix-icons-archdroid-git","themix-icons-gnome-colors-git","themix-icons-numix-git","themix-icons-papirus-git","themix-icons-suru-plus-aspromauros-git","themix-icons-suru-plus-git","themix-theme-materia-git","themix-theme-oomox-git","wikiman"],"optional_for":["pacman-contrib"],"conflicts_with":[],"replaces":[],"download_size":"473.38 KiB","installed_size":"1747.66 KiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 03:52:07 PM +08","md5_sum":null,"sha_256_sum":"ba960db631b9e379076d24c336a190f7a9cdbafa2c928544fdb8a819d253d37d","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"flex","version":"2.6.4-5","description":"A tool for generating text-scanning programs","architecture":"x86_64","url":"https://github.com/westes/flex","licenses":["custom"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh"],"required_by":["at","base-devel","ccid","lib32-flex","ming","posix-c-development","splint"],"optional_for":["bauh","linux-atm"],"conflicts_with":[],"replaces":[],"download_size":"307.55 KiB","installed_size":"955.65 KiB","packager":"David Runge ","build_date":"Sat 18 Mar 2023 07:32:09 AM +08","md5_sum":"e9c3f6267b26aefea45af135185a98e2","sha_256_sum":"9fdee0b311ce967927006f523e537670d1be94deee52e0115902cf6087c59e25","signatures":"139B09DA5BF0D338","extended_data":null},{"repository":"core","name":"fuse2fs","version":"1.47.1-4","description":"Ext2/3/4 filesystem driver for FUSE","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":[],"depends_on":["fuse3","e2fsprogs"],"required_by":["apptainer"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"29.32 KiB","installed_size":"71.58 KiB","packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"52c213add64f11e3e7adc87985dbe67ebef9b8b7379fe24ee3123b4188f990c0","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gawk","version":"5.3.0-2","description":"GNU version of awk","architecture":"x86_64","url":"https://www.gnu.org/software/gawk/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["awk"],"depends_on":["sh","glibc","mpfr"],"required_by":["aconfmgr-git","aerc","arch-install-scripts","autoconf","autoconf-git","base","base-devel","bashtop","bootiso","cfs-zen-tweaks","chaotic-neofetch-git","check","checksec","devtools","dkms","doas-sudo-shim","dracut","esh","fricas","garuda-update","green-recorder","green-recorder-git","i3lock-fancy-git","lynis","mk-configure","mkinitcpio","pacman","pacman-git","pkgdiff","posix","prettyping","quilt","rofi-pass","rosenpass","sofia-sip","syslog-ng","tdrop","termv-git","translate-shell","tuned","txt2man","ugit","wikiman","xschem","yadm"],"optional_for":["blesh-git","geeqie","geeqie-git","khal","mc","texmacs","vim-runtime"],"conflicts_with":[],"replaces":[],"download_size":"1323.54 KiB","installed_size":"3401.80 KiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:51:08 PM +08","md5_sum":null,"sha_256_sum":"474af00363e5e3ac13e06d2b79e565766823b30edbef81b5abf2a09f1d5dd010","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"gc","version":"8.2.6-1","description":"A garbage collector for C and C++","architecture":"x86_64","url":"https://www.hboehm.info/gc/","licenses":["LicenseRef-GC","MIT"],"groups":[],"provides":[],"depends_on":["gcc-libs"],"required_by":["asymptote","bigloo","crystal","guile","guile2.2","inkscape","libhomfly","neko","nix","poke","shards","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"234.72 KiB","installed_size":"771.88 KiB","packager":"Frederik Schwan ","build_date":"Sun 04 Feb 2024 06:30:33 PM +08","md5_sum":"903a28bfd90dcf6e2b41b76e989934af","sha_256_sum":"6210a1e7e00d3162f175f9ab318a3da928495210b1ea411dcb66bf5e1f382daf","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc","version":"14.2.1+r32+geccf707e5ce-1","description":"The GNU Compiler Collection - C and C++ frontends","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-multilib"],"depends_on":["gcc-libs=14.2.1+r32+geccf707e5ce-1","binutils>=2.28","libmpc","zstd","libisl.so=23-64"],"optional_deps":[{"name":"lib32-gcc-libs","description":"for generating code for 32-bit ABI"}],"required_by":["base-devel","clang","clang-git","clang14","clang17","dkms","dmd","gcc-ada","gcc-d","gcc-fortran","gcc-go","gcc-m2","gcc-objc","gcc-rust","gcovr","ghc","home-assistant","imd-git","intelbacklight-git","ispin","kde-development-environment-meta","ldc","lib32-clang","lib32-clang-git","libgccjit","libreoffice-fresh-sdk","libreoffice-still-sdk","lto-dump","nim","posix-c-development","rust","sh4d0wup","vala","varnish","virtualbox-host-dkms","vital-synth"],"optional_for":["bauh","choosenim","clion","codelite","codelite-unstable","dmd","node-gyp","qmk","spamassassin","xorg-xrdb"],"conflicts_with":[],"replaces":["gcc-multilib"],"download_size":"51.20 MiB","installed_size":"202.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"029e59b707bf7e35f98c7f0d46031f7e78f6e66251b7220980a1fd65081e7858","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-ada","version":"14.2.1+r32+geccf707e5ce-1","description":"Ada front-end for GCC (GNAT)","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-ada-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-ada-multilib"],"download_size":"29.60 MiB","installed_size":"150.71 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"83ca73da52a5deb60718edc2a9b2c61b3bc828d58d49c68214da9e24d8082001","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-d","version":"14.2.1+r32+geccf707e5ce-1","description":"D frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gdc"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":["orbiton"],"conflicts_with":[],"replaces":["gdc"],"download_size":"19.90 MiB","installed_size":"117.79 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0e9c6e1b7067f0080c784605e0e89c6b96d50d46aefb747f37251dbb996544e4","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-fortran","version":"14.2.1+r32+geccf707e5ce-1","description":"Fortran front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-fortran-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["wsjtx"],"optional_for":["hiprand","magma-cuda","magma-hip","openmpi","phoronix-test-suite","r","rocrand","root","root-cuda"],"conflicts_with":[],"replaces":["gcc-fortran-multilib"],"download_size":"13.54 MiB","installed_size":"44.26 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"20b27847342207fd0b652724dd8ed0c503cf0e66492d65671b1420e94c79c635","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-go","version":"14.2.1+r32+geccf707e5ce-1","description":"Go front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["go=1.17","gcc-go-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["gopls"],"optional_for":["liteide","nixpacks"],"conflicts_with":["go"],"replaces":["gcc-go-multilib"],"download_size":"33.00 MiB","installed_size":"189.53 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"7fee2490ceff374d2d254b187ac824b5be32e0dec6a26442b0d94309f2f7f080","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-libs","version":"14.2.1+r32+geccf707e5ce-1","description":"Runtime libraries shipped by GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-libs-multilib","libgo.so=23-64","libgfortran.so=5-64","libgphobos.so=5-64","libubsan.so=1-64","libasan.so=8-64","libtsan.so=2-64","liblsan.so=0-64"],"depends_on":["glibc>=2.27"],"required_by":["3cpio","4ti2","7-zip","86box","86box-git","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acme-redirect","add-determinism","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","advancecomp","aeolus","afdko","afl++","age-plugin-yubikey","agg-2.6-git","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","airshipper","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alligator","alsa-tools","alsa-utils","amarok","amb-plugins","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-build-tools","angelfish","angle-grinder","antimicrox","antlr4-runtime","anydesk-bin","aom","apcupsd","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-repro-status","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-ide","arianna","ark","arrpc","arti","artikulate","artyfx","asciinema-agg","aspell","asplib","assimp","astyle","asusctl","asymptote","at51","atac","atomicparsley","attica","atuin","audacity","audaspace","audex","audiocd-kio","audiofile","audiotube","augeas","aura","aura-git","avisynthplus","avogadrolibs","avogadrolibs-qt5","avr-gcc","aws-crt-cpp","aws-sdk-cpp","ayatana-indicator-datetime","b3sum","babashka-bin","bacon","baloo","baloo-widgets","bandwhich","base","bat","battop","bbpager","bcachefs-tools","bcc","bchoppr","bear","benchmark","bespokesynth","biblesync","bigsh0t","bingrep","binocle","biodiff","biome","bitcoin-daemon","bitcoin-qt","bitcoin-tx","blackbox","blas","blas64","blender","blendr","blinken","bliss","blockbench-bin","blop.lv2","bluedevil","bluez-qt","bob","boinctui","bolt-launcher","bomber","bore","boringtun","botan","bottom","bovo","box2d","boxxy","bpf-linker","bpftop","bpftrace","breeze","breeze5","breezy","brial","brickadia-launcher","brillo","broot","bsequencer","bshapr","bslizr","btop","bubblewrap","bubblewrap-suid","buddy","bugstalker","buho","build2","bupstash","bustle","c++utilities","c-xsc","calendarsupport","calf","caligula","calindori","calligra","cantor","capnproto","caps","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-about","cargo-asm","cargo-audit","cargo-auditable","cargo-binstall","cargo-bloat","cargo-bundle-licenses","cargo-c","cargo-cyclonedx","cargo-deb","cargo-deny","cargo-depgraph","cargo-expand","cargo-flamegraph","cargo-generate-rpm","cargo-hack","cargo-insta","cargo-license","cargo-llvm-cov","cargo-make","cargo-msrv","cargo-ndk","cargo-nextest","cargo-outdated","cargo-pgrx","cargo-public-api","cargo-release","cargo-run-bin","cargo-semver-checks","cargo-show-asm","cargo-shuttle","cargo-sort","cargo-supply-chain","cargo-sweep","cargo-tarpaulin","cargo-tauri","cargo-update","cargo-wizard","cargo-zigbuild","cargo2junit","carla","carla-git","casync","cauchy","cbindgen","ccache","ccls","cdrdao","cef-minimal-obs-bin","cemu-git","cervisia","chatgpt-desktop-bin","check-broken-packages-pacman-hook-git","check-sieve","chess-tui","chiaki","choose","chromaprint","chromium-widevine","citra-git","clamav","clazy","clblast","clipcat","clipgrab","clpeak","clthreads","clucene","clxclient","cm256cc","cmake","cmt","cobalt","cocogitto","codon-bin","coeurl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-mp","coin-or-osi","colord-kde","comgr","committed","communicator","compiler-rt","compiler-rt-git","compiler-rt14","compiler-rt17","composable-kernel","composefs","conky","connman","conserve-git","coolercontrol","coordgen","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","coxeter","cpp-hocon","cppdap","cppunit","crab-hole","crawl-ncurses","crawl-tiles","cri-o","criu","cross","crowdsec","cryfs","crypto++","cryptominisat","csound","csound-plugins","csoundqt","csvlens","ctemplate","ctrtool","cubeb","cudd","cups","cxxbridge","czkawka-cli","czkawka-gui","d-spy","d2","daktilo","darkstat","darts","db","db5.3","dbus-c++","ddrescue","debuginfod","deepin-album","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-clone","deepin-compressor","deepin-device-formatter","deepin-dock","deepin-draw","deepin-editor","deepin-file-manager","deepin-font-manager","deepin-image-editor","deepin-image-viewer","deepin-kwin","deepin-launchpad","deepin-music","deepin-network-core","deepin-pdfium","deepin-picker","deepin-polkit-agent","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-reader","deepin-screen-recorder","deepin-screensaver","deepin-session","deepin-session-shell","deepin-session-ui","deepin-system-monitor","deepin-terminal","deepin-util-dfm","deepin-voice-note","deepin-widgets","deepin-wloutput-daemon","deltachat-rpc-server","deno","deskreen","dexed-clap","dexed-standalone","dexed-vst3","dfrs","diesel-cli","difftastic","digikam","din","discimagecreator-git","discord-chat-exporter-cli","discord-game-sdk","discover","diskus","disorderfs","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","djvulibre","dleyna","dmtcp","dnsdist","dog","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dosbox","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","draco","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dssi","dtk6core","dtk6declarative","dtk6gui","dtk6widget","dtkcore","dtkdeclarative","dtkgui","dtkwidget","dua-cli","ducker","dummyhttp","dump_syms","dust","dvd+rw-tools","dvgrab","dvisvgm","dwarffortress","dwayland","dysk","e-antic","easytag","ebou","ebumeter","ecasound","eclib","edid-decode-git","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elisa","ell","embree","emby-theater","emptyepsilon","emulsion","enblend-enfuse","endless-sky","eog","epiphany","eq10q","erdtree","espflash","espup","eva","evcxr_repl","eventviews","evince","evolution-data-server","evolution-ews","exempi","exiv2","eza","fabla","facter","falkon","fastd","faust","fcgi","fcitx5-qt","fclones","fd","felix-rs","ferium","ferium-gui","fflas-ffpack","ffmpegthumbs","fftw","fiery","fil-plugins","file-roller","filelight","fillets-ng","findomain","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","flac","flatbuffers","flatpak","flatpak-builder","flatpak-kcm","flawz","flightcore","flip-link","flips","fltk","fluidsynth","flxmlrpc","fmt","fnm","fomp.lv2","fplll","fprintd","fractal","fragments","frameworkintegration","francis","freerdp","freewheeling","frei0r-plugins","ft2-clone","furnace","futuresql","fwupd","g2reverb","gambas3-gb-db-sqlite3","gambas3-gb-image-effect","gambas3-gb-xml","gamescope","gamescope-git","gammaray","gap-packages","gc","gcc","gcdmaster","gdb","gdcm","gdm","gdm-prime","gedit","geekbench","geeqie","gegl","genact","gengetopt","genxrdpattern","geoclue","geonkick-lv2","geonkick-standalone","geonkick-vst3","geos","geph4-client","gerbera","gettext","gfan","gflags","gfold","ghostwriter","giac","giada","gigedit","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","gir-to-d","git-bug","git-cinnabar","git-cliff","git-delta","git-evtag","git-grab","git-smash","git-warp-time","gitg","gitlab-exporter","gitoxide","gitu","gitui","givaro","gjs","glibmm-2.68","glslang","glu","glycin","gmic","gmp","gmp-ecm","gn","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-builder","gnome-calendar","gnome-calls","gnome-color-manager","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-initial-setup","gnome-maps","gnome-multi-writer","gnome-online-accounts","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-software","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnustep-base","gnutls","goattracker","goldendict-webengine-pr-git","google-glog","google-webdesigner","gpaste","gperf","gperftools","gpgme","gptfdisk","gqrx","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","grcov","greetd","greetd-agreety","greetd-regreet","greetd-tuigreet","grex","groff","grub-customizer","gsoap","gst-plugin-libcamera","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-good","gstreamer","gtest","gtk4","gtksourceviewmm","gtranslator","guestfs-tools","guichan","guile1.8","guitarix","gupnp-tools","gvfs","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gwenview","gxplugins.lv2","hacksaw","halp","handbrake","handbrake-cli","handbrake-nvenc-cli","hardened_malloc","haruna","haskell-tidal","haskell-tidal-link","havn","hawkeye","hck","heaptrack","heh","heimdall","heimdall-grimler-git","helix","helvum","hepmc","hex","hexpatch","hexyl","highway","highway-git","himalaya","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hm","hplip","hq","hsa-amd-aqlprofile-bin","hsa-rocr","ht-editor","htmlq","hugo","huniq-git","hunspell","hurl","hydrogen","hyperfine","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","iaito","icon-library","icu","icu60","icu69","id3lib","id3v2","iempluginsuite-standalone","iempluginsuite-vst3","igraph","igrep","iir1","imagemagick","imagescan","imath","imgui","impala","incidenceeditor","include-what-you-use","incron","index-fm","infamousplugins","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","intel-compute-runtime","intel-gmmlib","intel-graphics-compiler","intel-media-driver","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","iperf","iptstate","isoimagewriter","ispc","itinerary","itk-snap-bin","iverilog-git","iwd","j4-dmenu-desktop","jack2","jack2-dbus","jack_delay","jackett","jacktrip","jalv","japa","jbig2enc-git","jc303-clap","jc303-lv2","jc303-vst3","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jless","jnoisemeter","john","joshuto-git","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","js91","jsoncpp","jsonrpc-glib","juce","jujutsu","juk","just","jwt-cli","jwt-ui","k3b","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kakoune","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kbt","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","kernelshark","kexi","keymapper-git","keysmith","keystone","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmousetool","kmouth","kmplot","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","koko","kolf","kollision","kolourpaint","kommit","kompare","kondo","kondo-ui","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kubetui","kubie","kubrick","kunitconversion","kup","kuserfeedback","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","kyotocabinet","labplot","ladspa","lan-mouse","lantern-bin","lapack","lapack64","lapce","lapce-git","laszip","laszip2","latte-integrale","layer-shell-qt","lazyjj","lcalc","ldproxy","leatherman","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","leftwm-theme-git","legba","leocad","lftp","lib3mf","libabigail","libabw","libaccounts-qt","libajantv2","libakonadi","libappimage","libayatana-appindicator","libb2","libbacktrace-git","libblockdev-crypto","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-swap","libbraiding","libbs2b","libc++","libc++abi","libcaca","libcamera","libcamera-ipa","libcamera-tools","libcap","libcdio","libcdr","libchardet","libcmis","libconfig","libcoverart","libcupsfilters","libcutl","libdatachannel","libde265","libdex","libdovi","libe-book","libebml","libei","libelf","libelfin","libemf","libepubgen","libetebase","libetonyek","libfabric","libfbclient","libffado","libfilezilla","libfprint","libfpx","libfreehand","libftdi-compat","libgdm","libgdm-prime","libgexiv2","libgig","libgit2","libgme","libgooglepinyin","libgravatar","libguestfs","libgweather-4","libheif","libical","libilbc","libimagequant","libindi","libinih","libixion","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libkscreen","libksieve","libksysguard","libktorrent","libliquidsfz","liblsp-r3d-glx-lib","libmalcontent","libmanette","libmediainfo","libmemcached-awesome","libmfx","libmodplug","libmp4v2","libmspub","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmythes","libnautilus-extension","libnitrokey","libnl","libnm","libnm-iwd","libnpupnp","libnumbertext","libodfgen","libolm","libopenmpt","libopenshot","libopenshot-audio","liborcus","liborigin","libosinfo","libpagemaker","libpeas-2","libphobos","libphonenumber","libpipewire","libplacebo","libplasma","libplist","libplist-git","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libppd","libproxy","libpst","libptytty","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libquotient","libqxp","libraw","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-bsnes","libretro-bsnes-hd","libretro-dolphin","libretro-mesen","libretro-mesen-git","libretro-mesen-s","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-pcsx2","libretro-ppsspp","librevenge","librewolf","librime","librsvg","librustls","libsbsms","libseexpr2","libsemigroups","libshumate","libsidplayfp","libsigc++","libsigc++-3.0","libsoxr","libspectmorph","libspelling","libstaroffice","libstdc++5","libtiff","libtiff4","libultrahdr","libultrahdr-git","libunrar","libupnpp","libusbmuxd","libusbmuxd-git","libva-mesa-driver","libvdpau-va-gl","libvisio","libvoikko","libvolk","libvpl","libvpx","libwhereami","libwireplumber","libwpd","libwpe","libwpg","libwps","libxcomp","libxisf","libxml++-5.0","libxsd-frontend","libyuv","libzen","libzmf","lidia","lilypond","linbox","lincity-ng","linuxsampler","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","live-media","lld","lld17","lldb","lldb-mi","llvm-julia","llvm-julia-libs","llvm-libs","llvm-libs-git","llvm14-libs","llvm17-libs","lmms","log4cplus","log4cpp","lokalize","looking-glass-git","looking-glass-host-git","loupe","lsd","lshw","lskat","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lua-language-server","luajit","luau","lucky-commit","ludusavi","luppp","lurk","lxqt-config","lychee","lzip","lzlib","m4ri","mac","maeparser","mailcommon","mailimporter","malcontent","maliit-framework","mame","mame-tools","mangohud","mangohud-git","marble","marble-common","marble-maps","marble-qt","marisa","markdownpart","marknote","markuplinkchecker","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","mastodon-twitter-sync","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","maxcso","maxcso-git","mbox-importer","mbuffer","mcp-plugins","mcqd","md-tui","mda.lv2","mdbook","mdcat","mediaelch","meilisearch","menyoki","merkuro","mesa","mesa-vdpau","messagelib","milkytracker","milou","mimetreeparser","minecraft-launcher","minisat","miniserve","minitube","minuet","miopen-hip","mirro-rs","mixxx","mjpegtools","mkvtoolnix-cli","mlt","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","monolith","moon","mosquitto","mpd","mpdecimal","mpgtx","mpvqt","mqttui","mscp","msgraph","msolve","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","munt-daemon","muparser","muparserx","muse","musescore","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","mystiq","naiveproxy","nautilus","navidrome","nccl","ncmpc","ncmpcpp","ncspot","ncurses","ncurses5-compat-libs","neochat","neovide","neovide-git","netavark","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","nethogs","nethsm-cli","netpbm","netplan","netscanner","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","ngspice","nickel","nickel-language-server","ninja","niri","nix","nix-init","nixpacks","nload","nlopt","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-suppression-for-voice","nomacs","nomad","normaliz","notcurses","nspluginwrapper","nsync","ntk","ntl","nudelta","nurl","nushell","nuspell","nut","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-rtspserver","obs-studio-tytan652","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","ogmtools","oha","oil","okteta","okular","okularpart5","onednn","onefetch","onetbb","onnx","openal","openal-git","openapi-tui","openblas","openblas-lapack","openblas64","opencl-amd","opencl-clover-mesa","opencl-rusticl-mesa","opencv","opencv-cuda","openexr","openh264","openjade","openmpi","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openscad","opensips","opentimelineio","openvkl","openzwave","opnplug-lv2","opnplug-standalone","opnplug-vst","oscpack","osinfo-db-tools","ospray","osquery","ostree","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owncloud-client","oxc-language-server","oxipng","oxlint","oxygen","oxygen5","oxyromon","p7zip","p8-platform","packagekit-qt5","packagekit-qt6","pacman-bintrans","pacman-bintrans-tools","padthv1-lv2","padthv1-standalone","palapeli","pamixer","pangomm-2.48","papilo","paprefs","par2cmdline","pari","parley","parsec-bin","partitionmanager","pastel","patchelf","pavucontrol","pbzip2","pcloudcc-git","pcre","pd-sfizz","pepper-flash","performous","pesign","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-imagick","php-legacy-imagick","physx","picmi","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pipe-rename","pipewire","pipewire-audio","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-zeroconf","piping-server","pixi","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","plymouth-kcm","podman","podman-desktop","poedit","poketex","polari","polkit-kde-agent","polkit-qt5","polkit-qt6","polly","polly-git","polyclipping","polymake","polyphone","pop-bin","pop-launcher","poppler","poppler-glib","poppler-qt5","poppler-qt6","portaudio","portsmf","postgresql","power-profiles-daemon","powerdevil","powerdns-recursor","powershell-bin","powertop","poxml","ppl","ppsspp","presage","presenterm","primecount","primesieve","print-manager","prismlauncher","prison","prjxray-tools-git","procinfo-ng","procs","protobuf","protobuf-21","proton-ge-custom","protonmail-bridge","proxmox-backup-client","proxyboi","ps7_libpicoipp","pstoedit","ptex","ptyxis","pueue","pugixml","pulseaudio-qt","purpose","pwninit","pyflow","pymol","pyside6","pystring","pythia8","python-awscrt","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-cramjam","python-cvxpy","python-cylp","python-debugpy","python-fastnumbers","python-fpylll","python-iminuit","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-materialyoucolor-git","python-mitmproxy-rs","python-ml-dtypes","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-pendulum","python-pikepdf","python-pivy","python-pplpy","python-primecountpy","python-pyarrow","python-pybullet","python-pycapnp","python-pycrdt","python-pycuda","python-pydantic-core","python-pykcs11","python-pymupdf","python-pynormaliz","python-pyopencl","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-webengine","python-pysequoia","python-pythia8","python-qdldl","python-rapidfuzz","python-regress","python-rpds-py","python-rtmidi","python-scipy","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-ulid-transform","python-vigra","python-watchfiles","python-xapian","python-y-py","python-zita-audiotools","python-zita-jacktools","qalculate-gtk","qalculate-qt","qastools","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcad","qcoro-qt5","qcoro-qt6","qd","qemu-arch-extra-git","qemu-audio-dbus","qemu-audio-jack","qemu-audio-pipewire","qemu-block-curl","qemu-block-iscsi","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-display-qxl","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-opengl","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegencpp-cmake","qrtool","qrupdate","qsampler","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtkeychain-qt5","qtkeychain-qt6","qtractor","qucsator-git","quiche","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","radare2","radeon-profile-git","rage-encryption","ragel","rate-mirrors","rathole","rattler-build","rauc","rav1e","rbutil","rbw","rccl","rdfind","re2","re2c","reactphysics3d","reapack","reaper","rebels-in-the-sky","recastnavigation","regexxer","release-plz","remmina","repgrep","repro-env","reproc","retro-gtk","retroarch","rev-plugins","rhit","rhythmbox","rink","rio","ripgrep","riseup-vpn","rkcommon","rkward","rlog","roc-toolkit","rocalution","rocblas","rocfft","rockchip-mpp","rocm-dbgapi","rocm-gdb","rocm-llvm","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rog-control-center","ropr","rosegarden","rpg-cli","rpi-imager","rq","rqbit","rqbit-desktop","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rtaudio","rtmidi","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","rucola","ruff","runescape-launcher","rust","rust-analyzer","rust-bindgen","rust-kanban","rust-script","rustc-demangle","rustic","rustlings","rustow-git","rustscan","rustypaste","rustypaste-cli","rye","ryujinx","rz-cutter","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","samply","sane","satty","sc3-plugins","sccache","scip","sd","sdcc","sddm","sddm-git","sddm-kcm","selene","sentry-cli","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serie","serpl","serproid","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sg-323-clap","sg-323-vst3","sh4d0wup","shaderc","shadowsocks-rust","shapelib","shared-mime-info","sheldon","shiboken6","shotgun","shy","sidplay2-libs","sig","signal-desktop","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","simple-mtpfs","simpleitk","simutrans","simutrans-extended-git","singular","sirocco","skanlite","skanpage","skladnik","slack-electron","sleuthkit","slim","slowhttptest","slumber","smartdns","smartmontools","smb4k","smplayer","snappy","snapshot","soapyaudio","solid","songrec","sonic","sonic-visualiser","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sorcer","sound-gambit","soundtouch","sowing","sox","spatialindex","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","speex","speexdsp","spiped","spirv-cross","spirv-tools","splix","spotify-tui","spytrap-adb","sqlc","sqlx-cli","squashfs-tools","srs","srt","ssdeep","ssh-openpgp-auth","sshd-openpgp-auth","sshx","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","steam","steam-boilr-gui","stellarsolver","step","stk","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stylua","subversion","suil","suitesparse","suitesparse-graphblas","sundials","sunpinyin","supercollider","supergfxctl","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","sweeper","swiftshader-git","swig","switchboard-plug-user-accounts","sws","swww","symengine","sympol","syndication","syndicationd","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysprof","system76-firmware","system76-scheduler","systemc","systemctl-tui","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","tabiew","taglib","taglib1","tangler","taplo-cli","tbtools","tealdeer","teamspeak3-server","tecla","telly-skout","tere","termscp","tesseract","texlab","texlive-bin","texmaker","thin-provisioning-tools","threadweaver","thrift","thunderbird","tickrs","tiny","tinyobjloader","tinyxml2","tlsh","tokei","tokodon","tokodon-git","toml-bombadil","tomlplusplus","tone-bin","topcom","topgrade","tor","totem-pl-parser","tracexec","tracker3","tracker3-miners","tracktion-waveform","tradingview","tree-sitter-cli","trippy","tropy-bin","ttfautohint","ttyper","tui-journal","turbo","twitch-tui","typos","typst","typst-lsp","uchardet","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","umbrello","umu-launcher","unarchiver","uncrustify","unittestpp","unrar","updlockfiles","upower","usbguard","uutils-coreutils","uv","v4l-utils","vale","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vaultwarden","vbindiff","vco-plugins","vcpkg","vdpauinfo","vector","vector-blf","veracrypt","vid.stab","vigra","virtiofsd","virtualbox","virtualbox-kvm","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","viu","vivid","vkbasalt","vlc","vlc-luajit","vmaf","vmpk","vmware-horizon-client","voacapl","volta","vosk-api","vte3","vte4","vtk","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-validation-layers","vulkan-virtio","vvave","wabt","wacomtablet","wah-plugins","wasm-component-ld","wasmer","wasmtime","watchbind","watchexec","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webrtc-audio-processing","webrtc-audio-processing-1","websocat","wezterm","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","wiki-tui","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wireguard-vanity-address","wireplumber","wireshark-qt","wiresmith","wishbone-utils","wl-clip-persist","wl-clipboard-rs","wldash","wluma","woff2","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","worker-build","wp-desktop","wpewebkit","wpmeta","wstunnel","wvdial","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x265","x42-plugins-lv2","x42-plugins-standalone","xapian-core","xcolor","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdvdfs","xemu-git","xerces-c","xfsdump","xh","xmonk.lv2","xplc","xplr","xsd","xsettingsd","xsv","xwaylandvideobridge","yabridge","yabridgectl","yakuake","yaml-cpp","yazi","yazi-git","yoshimi-lv2","yoshimi-standalone","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenith","zenity","zeromq","zerotier-one","zfp","zimg","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zola","zopfli","zoxide","zstd","zxing-cpp","zydis","zynaddsubfx"],"optional_for":["gcin","spglib"],"conflicts_with":[],"replaces":["gcc-libs-multilib","libgphobos"],"download_size":"35.04 MiB","installed_size":"143.44 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"465482ee79fa656038ec60e1d8868c3fd69420e948468c4714031944befef0a5","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-m2","version":"14.2.1+r32+geccf707e5ce-1","description":"Modula-2 frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"13.59 MiB","installed_size":"49.01 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"d9bc49af683cc2e8f79a3464a6ecbc34bfe42a183b684cc3ab58342b33fab12a","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-objc","version":"14.2.1+r32+geccf707e5ce-1","description":"Objective-C front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-objc-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-objc-multilib"],"download_size":"25.62 MiB","installed_size":"85.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0cdd5e43a3c9305b92ea26fb44b96ba17853a9ec5449d005dfa762420b62b9a2","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-rust","version":"14.2.1+r32+geccf707e5ce-1","description":"Rust frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"14.07 MiB","installed_size":"51.45 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"9e06bf9329654391c2be8c724c61e23a228f7277951aff0bd9f5cb549d313e28","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gdbm","version":"1.24-1","description":"GNU database library","architecture":"x86_64","url":"https://www.gnu.org/software/gdbm/gdbm.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["libgdbm_compat.so=4-64","libgdbm.so=6-64"],"depends_on":["glibc","sh","readline","libreadline.so=8-64"],"required_by":["avahi","cyrus-sasl","exim","libsasl","man-db","modem-manager-gui","mutt","neomutt","openipmi","perl","php-legacy","pypy","pypy3","python","python39","ruby","ruby2.7","skktools","xkbsel","zsh"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":"247.12 KiB","installed_size":"719.59 KiB","packager":"David Runge ","build_date":"Thu 04 Jul 2024 10:47:39 PM +08","md5_sum":null,"sha_256_sum":"2712f2747f887ff19ad4151143e506e80254a0a0db0e8b968adb6634da7800ab","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gettext","version":"0.22.5-1","description":"GNU internationalization library","architecture":"x86_64","url":"https://www.gnu.org/software/gettext/","licenses":["GPL-2.0-only","LGPL-2.0-only","GFDL-1.2-only","GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","acl","sh","libunistring","libxml2"],"optional_deps":[{"name":"git","description":"for autopoint infrastructure updates"}],"required_by":["atril","base","base-devel","bison","cataclysm-dda","criterion","deepin-gettext-tools","engrampa","eom","exiv2","fsv3","gdm-settings","gdm-settings-git","gnome-shell-extension-arc-menu-git","grub","grub-improved-luks2-git","grub-silent","gtranslator","kde-development-environment-meta","kdesdk-thumbnailers","lib32-gettext","libmatekbd","libmatemixer","libmateweather","marco","mate-backgrounds","mate-calc","mate-common","mate-control-center","mate-icon-theme","mate-media","mate-netbook","mate-notification-daemon","mate-panel","mate-polkit","mate-power-manager","mate-screensaver","mate-sensors-applet","mate-session-manager","mate-settings-daemon","mate-system-monitor","mate-terminal","mate-user-guide","mate-user-share","mate-utils","mozo","notion","oversteer","pacman","pacman-git","perl-libintl-perl","perl-locale-gettext","pluma","po4a","poke","poxml","proton-ge-custom","pspp","quilt","t-prot","wine","wine-ge-custom","wine-stable","wine-staging","wine-staging-wow64","wine-staging-wow64-git","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wine-wow64","wine-wow64-git"],"optional_for":["diffoscope","fcitx","libvirt","motion"],"conflicts_with":[],"replaces":[],"download_size":"2.14 MiB","installed_size":"7.68 MiB","packager":"Tobias Powalowski ","build_date":"Wed 08 May 2024 06:42:49 PM +08","md5_sum":null,"sha_256_sum":"fa858cd8217d2089dd734b0ac6a9d526b7766ed0220cfad5320f91692f4d5d16","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"glib2","version":"2.80.5-1","description":"Low level core library","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libglib-2.0.so=0-64","libgio-2.0.so=0-64","libgirepository-2.0.so=0-64","libgmodule-2.0.so=0-64","libgobject-2.0.so=0-64","libgthread-2.0.so=0-64"],"depends_on":["bash","glibc","libffi","libsysprof-capture","pcre2","util-linux-libs","zlib","libffi.so=8-64","libmount.so=1-64"],"optional_deps":[{"name":"dconf","description":"GSettings storage backend"},{"name":"glib2-devel","description":"development tools"},{"name":"gvfs","description":"most gio functionality"}],"required_by":["64gram-desktop","86box","86box-git","abiword","accerciser","accountsservice","aisleriot","almanah","alsa-scarlett-gui","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","anydesk-bin","anyrun-git","app-icon-preview","appmenu-glib-translator-git","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","arch-update","ardour","ardour-git","arduino-ide","asunder","at-spi2-core","atomix","audacious","audacity","audio-recorder","autotrace","avahi","avldrums.lv2","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","babeltrace","babeltrace2","bemenu-wayland","bemenu-x11","birdfont","blanket","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brltty","budgie-session","bumblebee","bustle","cairo","calf","callaudiod","capnet-assist","castget","cdemu-client","cdemu-daemon","cef-minimal-obs-bin","cemu-git","chatgpt-desktop-bin","chromium-widevine","cinnamon-menus","clapper","colord-gtk","colord-gtk4","conky","conmon","connman","connman-git","connman-gtk","consolekit","contractor","contractor-git","cosmic-files","cosmic-files-git","cosmic-store","cosmic-store-git","cups-browsed","cups-pk-helper","curlftpfs","curtail","czkawka-gui","d-spy","datagrip","datagrip-jre","dataspell","dataspell-jre","dbmail","dbus-c++","dbus-glib","dconf","ddcutil","ddcutil-git","dee","deepin-api","deepin-appearance","deepin-camera","deepin-compressor","deepin-daemon","deepin-dock","deepin-file-manager","deepin-launchpad","deepin-session","deepin-session-ui","deepin-terminal","deepin-util-dfm","deepin-voice-note","deja-dup","deluge-gtk","deskreen","desktop-file-utils","devede","digikam","dino","dino-git","discover","displaycal","dleyna","droidcam","dsniff","dtk6gui","dtkgui","dunst","duperemove","dwarffortress","easytag","ebou","efl","emacs","emacs-nativecomp","emacs-wayland","emby-theater","enchant","eog","eolie","epiphany","etherape","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","fcitx5-gtk","ffmpeg","ffmpeg-full","ffmpeg-obs","file-roller","firefox","firefox-developer-edition","firefox-esr","firewalld","flat-remix-gnome","flatpak","flatpak-builder","flatpak-kcm","flips","fluidsynth","forkgram","fprintd","fractal","fragments","freeciv","freerdp","fs-uae","fsv3","fuseiso","fwupd","gala","gala-git","gambas3-gb-net-smtp","gamehub","gammastep","gammu","gcab","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdk-pixbuf2","gdm","gdm-prime","geary","gedit","gedit-plugins","geeqie","gegl","geoclue","geocode-glib-common","gfeeds","ghostscript","gigedit","giggle","gimp","gimp-plugin-gmic","girara","gitg","gjs","glib-networking","glib-perl","glib2-devel","glibd","glibmm","glibmm-2.68","glycin","glyr","gmime3","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-firmware","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-logs","gnome-mahjongg","gnome-maps","gnome-menus","gnome-mplayer","gnome-multi-writer","gnome-music","gnome-notes","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-extension-desktop-icons-ng","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnome-tweaks","gnome-usage","gnome-user-share","gnote","gnuplot","gobject-introspection","goffice","goland","goland-jre","gom","goobox","goocanvas","google-webdesigner","gpaste","gpgme","granite","granite7","graphene","greetd-regreet","gromit-mpx","grub-customizer","gsound","gspell","gssdp","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtk-sharp-3","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtk4-git","gtkglext","gtksourceview5","gtksourceviewmm","gtranslator","gts","gtuber","guestfs-tools","guitarix","gupnp","gupnp-av","gupnp-dlna","gupnp-igd","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gxml","harfbuzz","harfbuzz-cairo","harfbuzz-utils","haskell-gi","haskell-gi-base","haskell-gi-gio","haskell-gi-glib","haskell-gi-gmodule","haskell-gi-gobject","haskell-gio","haskell-glib","helvum","hexchat","hexter","hotdoc","hyprland","hyprland-git","hyprlock","ibus","ibus-typing-booster","icon-library","iio-sensor-proxy","imagemagick","imagemagick-full-git","imagescan","inkscape","irqbalance","irssi","itk-snap-bin","jack_mixer","jalv","jami-qt","jetbrains-toolbox","jgmenu","jnettop","json-glib","jsonrpc-glib","kamoso","kde-gtk-config","kexi","klavaro","klipperscreen","kondo-ui","kooha","kotatogram-desktop","kotatogram-desktop-git","lan-mouse","lantern-bin","lasem","lensfun","lensfun-git","lib2geom","lib32-glib2","libaccounts-glib","libaccounts-qt","libadwaita","libadwaita-demos","libappimage","libappindicator-gtk2","libappindicator-gtk3","libaxc","libayatana-appindicator","libayatana-indicator","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libcacard","libcalfbox-lss","libcheese","libcheese-git","libclapper","libclapper-gtk","libcloudproviders","libcolord","libdbusmenu-glib","libdex","libdnf","libdsme","libedataserverui4","libfm-extra","libfprint","libgbinder","libgda6","libgda6-mysql","libgda6-postgres","libgda6-sqlcipher","libgdiplus","libgdm","libgdm-plymouth-prime","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgee","libgepub","libgexiv2","libgirepository","libgit2-glib","libglib-testing","libglibutil","libgmobile","libgnome-keyring","libgnt","libgoa","libgrss","libgtop","libgudev","libguestfs","libgusb","libgweather-4","libgxps","libhandy","libibus","libical","libidl2","libinfinity","libinsane","libinstpatch","liblangtag","libldm","liblqr","libmalcontent","libmanette","libmatemixer","libmbim","libmediaart","libmediainfo","libmirage","libmm-glib","libmodulemd","libmpd","libmypaint","libnautilus-extension","libnice","libnids","libnm","libnm-iwd","libnotify","libomemo","libosinfo","libpackagekit-glib","libpamac-aur","libpamac-flatpak","libpanel","libpeas-2","libpinyin","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libproxy","libqrtr-glib","libquvi","libratbag","librda","libreoffice-fresh","libreoffice-still","librepo","librest","librewolf","librsvg","libsearpc","libsecret","libshumate","libsigrokdecode","libslirp","libsmf","libsoup","libsoup3","libspectmorph","libspectrum","libspeechd","libspelling","libwacom","libwacom-surface","libwebsockets","libwireplumber","libwireplumber-git","libwnck","libxfce4util","libxfce4windowing","libxklavier","libxmlb","libxmlbird","light-locker","lightdm","lightdm-gtk-greeter-settings","lightdm-pantheon-greeter","lilypond","loginized","logiops","looking-glass-host-git","loudmouth","loupe","lsp-plugins-gst","lua-lgi","lua51-lgi","lua53-lgi","lutris","lutris-git","lxqt-archiver","malcontent","maliit-framework","mate-menus","mc","mcabber","mdbtools","mednaffe","megatools","meld","metacity","mintlocale","mintstick","mixxx","mmsd-git","modemmanager","moserial","mpv-mpris","msgraph","mtpfs","mtr-gtk","mullvad-browser-bin","munt-smf2wav","muse","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","nautilus","nautilus-image-converter","nautilus-share","nbd","neard","netbird-ui","netplan","networkmanager","networkmanager-iwd","networkmanager-openvpn","newsflash","niri","nm-cloud-setup","nm-iwd-cloud-setup","notion","nwg-icon-picker","nwg-look","nwg-panel","obs-gstreamer","obs-studio-tytan652","ocrfeeder","ofono","opencv","opencv-cuda","opencv2","openipmi","opensc","openscad","orca","osinfo-db-tools","ostree","pacrunner","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-code","pantheon-files","pantheon-geoclue2-agent","pantheon-mail","pantheon-music","pantheon-notifications","pantheon-onboarding","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-screenshot","pantheon-settings-daemon","pantheon-shortcut-overlay","pantheon-tasks","pantheon-terminal","pantheon-videos","paperwork","paprefs","passim","pavucontrol","pdf2svg","pdfarranger","pebbles-git","perf","performous","phoc","phodav","phpstorm","phpstorm-jre","pinentry","pipewire","pipewire-audio","pipewire-pulse","pitivi","plank","plasma-nm","plasma-pa","playerctl","plymouth","poedit","polari","polkit","polkit-consolekit","polkit-qt5","polkit-qt6","pop-bin","pop-gtk-theme-git","poppler-glib","power-profiles-daemon","pqiv","pragha","preload","profanity","profanity-gtk","protonmail-bridge-core","ptyxis","pulseaudio-equalizer-ladspa","puzzles","py3status","pycharm-community-eap","pycharm-community-edition","python-bluepy","python-dasbus","python-dbus","python-dbus-fast","python-dbusmock","python-dleyna","python-gobject","python-manimpango","python-volume_key","pyzy","qalculate-gtk","qemu-arch-extra-git","qemu-audio-dbus","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-gtk","qemu-ui-sdl","qemu-ui-spice-app","qemu-user","qemu-vhost-user-gpu","qt6-base","qt6-multimedia-gstreamer","qt6-webengine","qtcreator","qtkeychain-qt5","qtkeychain-qt6","quickdocs","qxmpp-qt5","qxmpp-qt6","r","rauc","redshift","regexxer","remmina","retro-gtk","rhythmbox","rnote","rofi-emoji","rofi-wayland","rqbit-desktop","rspamd","runescape-launcher","rygel","sane","satty","sdcv","seadrive-daemon","seahorse-nautilus","secrets","sensors-applet","setbfree-lv2","setbfree-standalone","sfizz-lv2","sfizz-vst3","share-preview","shared-mime-info","signal-desktop","signal-desktop-beta","signon-ui","simple-scan","skktools","slirp4netns","snapshot","snes9x-gtk","sofia-sip","solaar","songrec","spectmorph-tools","spice","spice-gtk","spice-vdagent","spot-client","sshfs","startdde","steam-native-runtime","stlink","strawberry","strawberry-full-git","strawberry-git","sublime-music-git","sushi","sway-git","swaybg-git","swayimg","swaylock-git","swaync","swell-foop","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","switcheroo-control","swtpm","syslog-ng","sysprof","system-config-printer","tartube","tblock-gui","tecla","telegram-desktop","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","template-glib","text-engine","themix-theme-materia-git","themix-theme-oomox-git","thunderbird","tio","totem-pl-parser","touchegg","tpm2-abrmd","tracker3","tracker3-miners","tracktion-waveform","tradingview","transmageddon","transmission-remote-gtk","tropy-bin","tuba","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ukui-menus","upower","uresourced","usbguard","usbip","usbredir","vala","vala-panel-appmenu-jayatana-git","vala-panel-appmenu-registrar","vala-panel-appmenu-registrar-git","valabind","vbam-wx","vinagre","vital-synth","vlc","vlc-luajit","vmware-horizon-client","vmware-horizon-mmr","vmware-horizon-rtav","vmware-horizon-smartcard","vmware-horizon-tsdr","vmware-horizon-usb","volume_key","vte3","vte4","wavebox-beta","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webstorm","webstorm-jre","webwatcher-git","weston","wezterm","wingpanel","wingpanel-indicator-a11y","wingpanel-indicator-bluetooth","wingpanel-indicator-datetime","wingpanel-indicator-keyboard","wingpanel-indicator-network","wingpanel-indicator-nightlight","wingpanel-indicator-notifications","wingpanel-indicator-power","wingpanel-indicator-session","wingpanel-indicator-sound","wired","wireplumber","wireshark-cli","wmctrl","wofi","wpebackend-fdo","wpewebkit","wv","wxwidgets-common","wxwidgets-gtk3","x42-plugins-lv2","x42-plugins-standalone","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xemu-git","xfce4-dev-tools","xfce4-docklike-plugin","xpipe","xscreensaver","xss-lock","zenity","zoom"],"optional_for":["clevis","fastfetch","glusterfs","intel-oneapi-basekit","libpulse","mlt","plasma-desktop","suil","visual-studio-code-bin","visual-studio-code-insiders-bin","xnviewmp"],"conflicts_with":[],"replaces":[],"download_size":"4.86 MiB","installed_size":"36.75 MiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"45b56f3a1bba361b5175f7b4ca5c986c8d8169bd8f93b3ac2ad0adb677c2e21a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-devel","version":"2.80.5-1","description":"Low level core library - development files","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glib2","glibc","libelf","python","python-packaging"],"required_by":["ayatana-indicator-power","ayatana-indicator-session","aylurs-gtk-shell-git","gdm-settings","gdm-settings-git"],"optional_for":["glib2"],"conflicts_with":[],"replaces":[],"download_size":"157.58 KiB","installed_size":"1211.66 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"1c4ad5b09612421b6b8974dcbda5877c2a94daa42fbec88554e61443d9c80fc2","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-docs","version":"2.80.5-1","description":"Low level core library - documentation","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later","LicenseRef-Public-Domain"],"groups":[],"provides":[],"depends_on":[],"required_by":["gtk-doc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"3.20 MiB","installed_size":"63.35 MiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"334e9e6c408dcf5477358426232c09c99fa83d52a5912671e40c6aa0b71d9075","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glibc","version":"2.40+r16+gaa533d58ff-2","description":"GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["linux-api-headers>=4.10","tzdata","filesystem"],"optional_deps":[{"name":"gd","description":"for memusagestat"},{"name":"perl","description":"for mtrace"}],"required_by":["3cpio","4ti2","7-zip","7-zip-full","86box","86box-git","a2jmidid","a52dec","aalib","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acl","acpi","acpica","add-determinism","adguardhome","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","adms-git","adns","advancecomp","advcpmv","aeolus","aerc","afdko","afl++","age","age-plugin-tkey","age-plugin-tpm","age-plugin-yubikey","aha","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","aisleriot","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alertmanager","ali","alicloud-vault","aliyun-cli","alligator","almanah","alsa-lib","alsa-oss","alsa-plugins","alsa-scarlett-gui","alsa-tools","alsa-utils","amarok","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","aml","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-cmdline-tools-latest","angband","angelfish","angle-grinder","anime-games-launcher-bin","antimicrox","anydesk-bin","aom","apk-tools","apko","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-rebuild-order","arch-repro-status","archinstall","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-cli","arduino-ctags","arduino-fwuploader","arduino-ide","arduino-language-server","argocd","argon2","argtable","arianna","aribb25","arj","ark","arrpc","arti","artikulate","artyfx","ascii","astyle","asunder","asusctl","asymptote","at-spi2-core","at51","atomix","attica","attr","atuin","aubio","audacity","audaspace","audex","audio-recorder","audiocd-kio","audiotube","audit","augustus","aura","aura-git","avldrums.lv2","avogadrolibs","avogadrolibs-qt5","avr-binutils","aws-c-auth","aws-c-cal","aws-c-common","aws-c-compression","aws-c-event-stream","aws-c-http","aws-c-io","aws-c-mqtt","aws-c-s3","aws-c-sdkutils","aws-crt-cpp","aws-sdk-cpp","aws-vault","axel","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","b43-fwcutter","babeld","babeltrace2","babl","babl-git","backuppc","bacon","baidupcs-go","baloo","baloo-widgets","bandwhich","banner","barcode","base","bash","bat","bcc","bcg729","bchoppr","bchunk","bear","bearssl","beep","bemenu","bemenu-ncurses","bemenu-wayland","bemenu-x11","benzene","bespokesynth","bettercap","bfs","bftpd","bibtool","bibutils","bind","binutils","biome","bird","birdfont","bison","bitcoin-daemon","bitcoin-qt","bitcoin-tx","black-hole-solver","blas","blas64","blender","blinken","blisp","bliss","blockbench-bin","blop","blop.lv2","blosc","blosc2","bluedevil","bluez","bluez-cups","bluez-deprecated-tools","bluez-hid2hci","bluez-libs","bluez-mesh","bluez-obex","bluez-qt","bluez-utils","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","bolt-launcher","bomber","bootconfig","bootiso","botan","bovo","bpf","bpf-linker","bpftrace","breeze","breeze-icons","breeze-plymouth","breeze5","breezy","brial","brickadia-launcher","bridge-utils","brltty","brook","brotli","browserpass","bsequencer","bshapr","bslizr","btop","btrfs-progs","bubblewrap","bubblewrap-suid","buckygen","buf","buho","build2","bully","bup","bustle","byacc","bzip2","bzip3","c-ares","c-xsc","cabextract","caddy","cage","cage-git","cairo","calendarsupport","calf","calindori","calligra","canto-curses","cantor","capnproto","capstone","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-audit","cargo-c","cargo-cyclonedx","cargo-deb","cargo-flamegraph","cargo-license","cargo-outdated","cargo-release","cargo-semver-checks","cargo-tarpaulin","carla","carla-git","cartridge-cli","casync","catdoc","catimg","cauchy","cbindgen","cblas","cblas64","ccache","ccd2iso","ccls","cddlib","cdemu-daemon","cdparanoia","cdrdao","cdrtools","cef-minimal-obs-bin","cemu-git","cern-vdt","cervisia","cfitsio","cfssl","charm","chatgpt-desktop-bin","chewing-editor","chezmoi","chitose","chmlib","choosenim","choria-io","chromaprint","chromium-widevine","chrony","chrootuid","chrpath","cilium-cli","citra-git","cjdns","cjson","ckermit","cksfv","clamav","clapper","clash","clazy","clblast","clipgrab","cliphist","cliquer","cloudflare-warp-bin","cloudflared","clthreads","clucene","clxclient","cm256cc","cmake","cmark","cmark-gfm","cmocka","cmt","cni-plugins","cobalt","cockroachdb-bin","codon-bin","coeurl","coin-or-asl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-csdp","coin-or-mp","coin-or-osi","colord-gtk","colord-gtk4","colord-kde","comgr","committed","communicator","compface","composable-kernel","composefs","compsize","confuse","conky","conmon","connman","conntrack-tools","consul","consul-template","container-diff","convertlit","coolercontrol","coordgen","coreutils","coreutils-hybrid-git","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","cowsql","coxeter","cpio","cpp-hocon","cppdap","cppunit","cpufetch","cpupower","cracklib","crane","crawl-ncurses","crawl-tiles","cri-o","crictl","critest","criu","croc","croc-git","crowdsec","cryfs","cryptominisat","csound","csound-plugins","csoundqt","ctags","ctop","ctrtool","cubeb","cue","cuetools","cunit","cups","cups-browsed","cups-filters","cups-pdf","cups-pk-helper","curl-rustls","curlie","cutter","cxxbridge","cycfx2prog","cyrus-sasl","cyrus-sasl-gssapi","cyrus-sasl-ldap","cyrus-sasl-sql","cython","czkawka-cli","czkawka-gui","d-spy","d2","dagger","darling-bin","dart","dart-sass","dasel","dash","dateutils","dav1d","davs2","dbmail","dbmate","dbus-c++","dbus-glib","ddrescue","debugedit","debuginfod","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-compressor","deepin-file-manager","deepin-launchpad","deepin-music","deepin-network-core","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-session","deepin-session-shell","deepin-session-ui","deepin-terminal","deepin-widgets","deepin-wloutput-daemon","deja-dup","deltachat-rpc-server","deskreen","desync","detox","device-mapper","dexed-clap","dexed-standalone","dexed-vst3","dfc","dfrs","dfu-programmer","dhclient","dhcp","dhcpcd","dhcping","dictd","diesel-cli","diffstat","difftastic","diffutils","digikam","din","ding-libs","direnv","discimagecreator-git","discord-canary-electron-bin","discord-chat-exporter-cli","discount","discover","distorm","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","distro-info","dive","djvulibre","dleyna","dma","dmenu","dmidecode","dmtcp","dnscrypt-proxy","dnsmasq","dnssec-tools","docbook2x","docker","docker-machine","doctl","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dolt","dontpanic","doomretro","dos2unix","dosfstools","dotconf","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","droidcam","drone","drone-cli","drone-oss","drone-runner-docker","drone-runner-exec","drone-runner-ssh","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dsniff","dsq","dssi","dtc","dte","dtk6core","dtk6gui","dtk6widget","dtkcore","dtkwidget","dua-cli","duf","duktape","dump_syms","dumpasn1","dune","duplicacy","dust","dvd+rw-tools","dvgrab","dvisvgm","dwayland","e-antic","earlyoom","easy-pdk","easyjson","easytag","easytether-bin","ebook-tools","ebou","ebumeter","ecasound","eclib","ecm-tools","ecos","ed","edid-decode-git","editline","editorconfig-checker","editorconfig-core-c","efibootmgr","efitools","efivar","egl-wayland","eksctl","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elinks","elisa","ell","elvish","embree","emby-ffmpeg","emby-theater","emptyepsilon","enblend-enfuse","encpipe","endless-sky","enet","enscript","entr","eog","epiphany","eq10q","erdtree","erfa","erofs-utils","esbuild","espeakup","espflash","espup","eteroj.lv2","etherape","ethtool","ettercap","ettercap-gtk","eventviews","evilginx","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","evtest","exempi","exfat-utils","exfatprogs","exim","exiv2","expat","expressvpn","extundelete","eza","faac","faad2","fabla","facter","fakeroot","falkon","fastfetch","fatresize","fatsort","faust","fbset","fcitx5-qt","fcrackzip","fdkaac","fdupes","ffcall","fflas-ffpack","ffmpeg","ffmpeg-obs","ffmpegthumbs","fftw","fftw-openmpi","fiery","fig2dev","figlet","file","file-roller","filelight","findnewest","findutils","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","fish-git","flatpak","flatpak-builder","flatpak-kcm","flex","flint","flip-link","flips","flite","flite1","flterm","fltk","fluidsynth","fluxcd","fomp.lv2","foomatic-db-engine","foremost","forgejo","fortune-mod","fossil","fping","fplll","fprintd","fq","fractal","fragments","frameworkintegration","francis","freecell-solver","freeciv","freeglut","freerdp","freerdp2","freetds","freewheeling","frei0r-plugins","fribidi","fricas","frotz-dumb","fsv3","ft2-clone","ftjam","fulcio","furnace","fuse2","fuse3","futuresql","fwupd","fx","fxload","fzy","gala","gamemode","gamescope","gamescope-git","gammaray","gammastep","gap","gap-packages","gavl","gawk","gcc-libs","gcc13-libs","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdb","gdbm","gdcm","gdk-pixbuf2","gdm","gdm-prime","gdu","geary","gedit","gedit-plugins","geeqie","gegl","gen2shp","genxrdpattern","geoclue","geoipupdate","geonkick-lv2","geonkick-standalone","geonkick-vst3","geph4-client","gf2x","gfan","gfold","ghostscript","ghostwriter","ghq","giac","giada","gif2png","giflib","gigedit","giggle","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","girara","git-cinnabar","git-cliff","git-credential-gopass","git-delta","git-evtag","git-smash","git-warp-time","gitg","github-cli","gitlab-gitaly","gitlab-runner","gitleaks","gitoxide","gitui","givaro","gjs","glab","glew","glew1.10","glewlwyd","glib-networking","glib2","glib2-devel","glibc-locales","glibmm-2.68","glider","glow","glpk","glu","glycin","gmic","gmime3","gmp","gmp-ecm","gmsynth.lv2","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-mahjongg","gnome-maps","gnome-mplayer","gnome-multi-writer","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnu-netcat","gnugo","gnupg","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnutls","go-ethereum","go-licenses","go-swagger","go-task","go-tools","go-yq","goaurrpc","gobject-introspection","gocr","gocryptfs","godot-mono","goffice","goimapnotify","gojq","goldendict-webengine-pr-git","gom","gomuks","goobox","goocanvas","google-glog","google-webdesigner","gopass-hibp","gopass-jsonapi","gopass-summon-provider","gopsuinfo","goreleaser","gost","gotop","gotosocial","gox","gpac","gpart","gpaste","gperf","gperftools","gpgme","gpsmanshp","gputils","gqrx","grafana","grafana-agent","grafana-agentctl","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","greetd","greetd-regreet","grep","gron","grub-customizer","gsl","gsm","gsocket","gsound","gssproxy","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtest","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtksourceview5","gtksourceviewmm","gtranslator","gtuber","guestfs-tools","guile1.8","guitarix","gum","gumbo-parser","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gvim","gwenview","gxplugins.lv2","gzip","halibut","harfbuzz","harfbuzz-cairo","harfbuzz-icu","harfbuzz-utils","haruna","harvid","hashcash","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","hatari","haveged","hck","hcloud","hcxdumptool","hdapsd","hdparm","headscale","heaptrack","heimdall","heimdall-grimler-git","helix","helm","helmfile","helvum","hepmc","hexter","hey","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hiredis","hivex","hoel","hostapd","hostess","hotdoc","hound","hplip","hsa-amd-aqlprofile-bin","hsa-rocr","hsakmt-roct","hspell","htmlcxx","http-parser","httptunnel","hugo","hunspell","hurl","hut","hwloc","hydra","hydrogen","hyperv","hyphen","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","i3blocks","i3lock","iaito","iat","icon-library","icu","id3lib","id3v2","iddawc","idle3-tools","iempluginsuite-standalone","iempluginsuite-vst3","igraph","ijs","imagemagick","imagescan","imaginary","imake","imath","imd-git","iml","incidenceeditor","include-what-you-use","indent","index-fm","inetutils","infamousplugins","iniparser","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","insync","intel-metee","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","intel-undervolt","ioping","iotop-c","iperf","iperf3","ipp-usb","iproute2","ipset","iptstate","ipvsadm","irqbalance","irssi","isatapd","isoimagewriter","ispc","istio","itcl3","itinerary","itk-snap-bin","iucode-tool","iwd","j4-dmenu-desktop","jack-example-tools","jack-stdio","jack2","jack2-dbus","jack_delay","jack_mixer","jack_utils","jackett","jackmeter","jackminimix","jacktrip","jalv","jami-daemon","jansson","japa","jasper","java-rxtx","jbig2dec","jbigkit","jc303-clap","jc303-lv2","jc303-vst3","jconvolver","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jdupes","jellyfin-ffmpeg","jemalloc","jhead","jitterentropy","jnoisemeter","jo","joshuto-git","jpegoptim","jq","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","json-c","json-glib","jsonrpc-glib","juce","judy","jujutsu","juk","julius","jxrlib","k3b","k9s","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbd","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcptun","kcpuid","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","keepalived","kernelshark","kexi","keysmith","keyutils","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","klystrack-plus","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmod","kmousetool","kmouth","kmplot","knative-client","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","ko","koko","kolf","kollision","kolourpaint","kommit","kompare","kompose","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krb5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kube-apiserver","kube-controller-manager","kube-linter","kube-proxy","kube-scheduler","kubeadm","kubeconform","kubectl","kubectl-ingress-nginx","kubectx","kubelet","kubeseal","kubo","kubrick","kunitconversion","kup","kuserfeedback","kustomize","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwallet-pam","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","l-smash","labplot","ladspa","lantern-bin","lapack","lapack64","lapacke","lapacke64","lasem","latte-integrale","layer-shell-qt","lazygit","lbzip2","lcalc","ld-lsb","ldproxy","lean4-git","leatherman","legba","lego","lemon","lensfun-git","leocad","less","lf","lf-git","lftp","lhasa","lib32-glibc","lib32-glibc-eac","lib32-glibc-eac-roco","lib32-opencore-amr","lib3mf","libabigail","libabw","libaccounts-glib","libaccounts-qt","libad9361","libadwaita","libadwaita-demos","libaec","libaio","libajantv2","libakonadi","libao","libappimage","libappindicator-gtk2","libappindicator-gtk3","libass","libassuan","libasyncns","libatasmart","libatomic_ops","libavc1394","libavif","libayatana-appindicator","libayatana-indicator","libb2","libb64","libbaseencode","libblastrampoline","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libbluray","libbpf","libbraiding","libbsd","libburn","libc++","libc++abi","libcaca","libcacard","libcalfbox-lss","libcamera","libcamera-ipa","libcamera-tools","libcap","libcap-ng","libcbor","libcdaudio","libcddb","libcdio-paranoia","libcdr","libcerf","libcgif","libck","libclapper","libclapper-gtk","libcli","libcmis","libconfig","libcoverart","libcpuid","libcue","libcups","libcupsfilters","libcutl","libcyaml","libdaemon","libdatachannel","libdatrie","libdbi","libdc1394","libdca","libde265","libdeflate","libdex","libdispatch","libdisplay-info","libdmtx","libdovi","libdrm","libdv","libdvbpsi","libdvdcss","libdvdnav","libdvdread","libe-book","libebur128","libedataserverui4","libedit","libei","libelf","libepoxy","libepubgen","libetebase","libetonyek","libetpan","libev","libevdev","libewf","libexif","libexttextcat","libfabric","libfdk-aac","libffado","libffi","libffi7","libfido2","libfilezilla","libfilteraudio","libfixposix","libfontenc","libforensic1394","libfprint","libfreeaptx","libfreehand","libfreexl","libgcrypt","libgcrypt15","libgda6","libgda6-mysql","libgda6-postgres","libgdm","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgexiv2","libgfshare","libgig","libgirepository","libgit2","libgit2-glib","libgme","libgoa","libgoom2","libgpg-error","libgravatar","libgssglue","libgtop","libguestfs","libgweather-4","libheif","libhomfly","libhx","libical","libice","libiconv","libid3tag","libidn","libidn11","libiio","libimobiledevice","libimobiledevice-git","libimobiledevice-glue","libindi","libinih","libinput","libinsane","libinstpatch","libiptcdata","libirman","libiscsi","libixion","libjodycode","libjpeg-turbo","libjpeg6-turbo","libjuice","libkate","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeccak","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libklvanc-git","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libksba","libkscreen","libksieve","libksysguard","libktorrent","liblangtag","liblc3","libldac","libliftoff","libliftoff-git","libliquidsfz","liblo","liblockfile","liblouis","liblqr","liblscp","liblsp-r3d-glx-lib","libltc","liblzf","libmad","libmalcontent","libmanette","libmatio","libmaxminddb","libmcrypt","libmd","libmediaart","libmediainfo","libmesode","libmicrodns","libmikmod","libmirage","libmms","libmng","libmnl","libmpc","libmpcdec","libmpdclient","libmpeg2","libmspack","libmspub","libmsym","libmtp","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmypaint","libmythes","libnatpmp","libnautilus-extension","libnbd","libndp","libnet","libnfnetlink","libnfs","libnghttp2","libnghttp3","libngtcp2","libnitrokey","libnl","libnm","libnm-iwd","libnova","libnpupnp","libnsl","libnumbertext","libnvidia-container","libodfgen","libogg","libomemo-c","libomxil-bellagio","libopenmpt","libopenshot","libopenshot-audio","libopusenc","liborcus","liborigin","libosinfo","libotr","libp11-kit","libpagemaker","libpaper","libpcap","libpciaccess","libpeas-2","libpg_query","libpgm","libphonenumber","libpillowfight","libpipeline","libpipewire","libplacebo","libplasma","libplist","libplist-git","libpng12","libportal","libportal-qt5","libportal-qt6","libppd","libprocps","libproxy","libpwquality","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libqb","libquotient","libqxp","libraqm","libraw","libraw1394","librda","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreplaygain","libressl","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-blastem","libretro-dolphin","libretro-kronos","libretro-mame","libretro-mame2016","libretro-mesen-git","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-opera-git","libretro-pcsx2","libretro-picodrive","libretro-play","libretro-ppsspp","libretro-sameboy","libretro-stella2014-git","libretro-yabause","librevenge","librewolf","librime","librsvg","librtmp0","librustls","libsamplerate","libsasl","libsbsms","libseccomp","libsecp256k1","libsemigroups","libsepol","libserialport","libshumate","libsidplayfp","libsignal-protocol-c","libsigsegv","libsm","libsmbios","libsndfile","libsodium","libsoup3","libspecbleach","libspectmorph","libspectre","libspelling","libspf2","libspiro","libspnav","libspng","libssh","libstaroffice","libstemmer","libstrophe","libsynctex","libtasn1","libtatsu-git","libthai","libtheora","libtiff","libtiff5","libtirpc","libtommath","libtool","libtraceevent","libtracefs","libtsm","libuecc","libultrahdr","libumem-git","libunibreak","libunistring","libunrar","libunwind","libupnp","libupnpp","liburcu","libusb","libusbmuxd","libusbmuxd-git","libusbsio","libutempter","libuv","libuvc","libva-mesa-driver","libvdpau-va-gl","libverto","libvisio","libvpx","libvpx1.3","libvterm","libvterm-0.1","libwacom","libwacom-surface","libwebp","libwebsockets","libwhereami","libwhich","libwireplumber","libwlocate","libwmf","libwnck","libwpd","libwpg","libwps","libx11","libx86","libxau","libxaw","libxcb","libxcb-git","libxcomposite","libxcrypt","libxcursor","libxcvt","libxcvt-git","libxdamage","libxdg-basedir","libxdmcp","libxext","libxfixes","libxfont2","libxft","libxi","libxinerama","libxisf","libxkbcommon","libxkbcommon-x11","libxkbfile","libxklavier","libxml++-5.0","libxml2","libxmp","libxmu","libxp","libxpm","libxpresent","libxrandr","libxrender","libxres","libxsd-frontend","libxshmfence","libxslt","libxss","libxt","libxtst","libxv","libxvmc","libxxf86vm","libyaml","libytnef","libzen","libzmf","lidia","light-locker","lightdm-pantheon-greeter","lilv","lilypond","limine","linbox","lincity-ng","link-grammar","linux-atm","linuxsampler","linuxtv-dvb-apps","liquid-dsp","liquid-dsp-sse4.1","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","lksctp-tools","lldb-mi","lldpd","llvm-julia","llvm-julia-libs","lm_sensors","lmdb","lmms","lockfile-progs","logcli","lokalize","loki","loki-canary","looking-glass-git","looking-glass-host-git","lorcon","loupe","lout","lowdown","lprint","lpsolve","lrcalc","lrs","lskat","lsof","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lttng-ust2.12","lua-lgi","lua51-lgi","lua53-lgi","luametatex","luau","luppp","lv2file","lv2lint","lxqt-config","lxsplit","ly","lynx","lz4","lzo","m17n-db","m4","m4ri","m4rie","mac","macchanger","macfanctld","maeparser","mailcommon","mailimporter","make","malcontent","maliit-framework","mame","mame-tools","man-db","mandown","marble","marble-common","marble-maps","marble-qt","markdownpart","marknote","masscan","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","mattermost","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","mawk","maxcso","maxcso-git","mbedtls","mbedtls2","mbelib","mbox-importer","mbpfan-git","mbuffer","mc","mcpp","mcqd","md4c","mda.lv2","mdadm","mdf2iso","mediaelch","mednaffe","meek","melange","memcached","memtester","mencoder","mephisto.lv2","merkuro","mesa","mesa-demos","mesa-utils","mesa-vdpau","meshbird","messagelib","metacity","metalog","mgard","mhash","microsocks","midi_matrix.lv2","mihomo","milkytracker","miller","milou","mimalloc","mimetreeparser","mimir","mingw-w64-tools","minieap","miniflux","minikube","minio","minio-client","minitube","miniupnpc","minizip","minizip-ng","minuet","miopen-hip","mixxx","mjpegtools","mkcert","mkinitcpio-busybox","mkinitcpio-nfs-utils","mkvtoolnix-cli","mlocate","mlt","mmctl","mmsrip","mod_dnssd","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","mongodb-tools","moony.lv2","moserial","mosquitto","mp3guessenc-beta","mpc","mpd","mpdecimal","mpfi","mpfr","mplayer","mpv","mpvqt","mscp","msgpack-c","msgraph","msolve","msr-tools","mtdev","mtools","mtr","mtr-gtk","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","mupdf","mupdf-gl","mupdf-tools","muse","musepack-tools","musescore","mutt","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mxml","mympd","mysql-workbench","mystiq","naiveproxy","nano","nanomsg","nanosvg","nasm","nautilus","nautilus-image-converter","nautilus-share","nauty","navidrome","nawk","nbtscan","nccl","ncmpc","ncmpcpp","ncompress","ncspot","ncurses","ncurses5-compat-libs","ndisc6","neard","neatvnc","nebula","neochat","neomutt","neon","neovide","neovide-git","net-tools","netavark","netbird","netbird-management","netbird-signal","netbird-ui","netbrake","nethsm-cli","nethsm-pkcs11","netpbm","netperf","netplan","netsniff-ng","nettle","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","nfsidmap","nginx","nginx-mainline","nginx-mod-njs","nginx-prometheus-exporter","nickel","nickel-language-server","niri","nix","nixpacks","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-repellent","noise-suppression-for-voice","nomacs","nomad","nomad-driver-nspawn","normaliz","notcurses","npth","nrg2iso","nrpe","nspr","nspr-hg","nss","nss-mdns","nsxiv","ntk","ntl","numactl","nushell","nuspell","nut","nvidia-cg-toolkit","nvidia-container-toolkit","nwg-look","nyancat","nyxt","oath-toolkit","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-gstreamer","obs-plugin-looking-glass-git","obs-rtspserver","obs-studio-tytan652","ocaml-augeas","ocaml-csexp","ocaml-intrinsics-kernel","ocaml-pp","ocaml-stdio","ocl-icd","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","oha","oidentd","oil","okteta","okular","okularpart5","onnx","opencl-clover-mesa","opencl-rusticl-mesa","opencore-amr","opencv","opencv-cuda","opendht","openexr","openfec","openfortivpn","openjade","openjpeg2","openlibm","openmpi","openntpd","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openpmix","openscad","opensearch-cli","opensmtpd-filter-rspamd","opensmtpd-filter-senderscore","opensnitch","openssh","openssl","openssl-1.0","openssl-1.1","opentimelineio","opentofu","openucc","openucx","openvkl","openzwave","opera-beta-ffmpeg-codecs","operator-sdk","opnplug-lv2","opnplug-standalone","opnplug-vst","optipng","opus","orc","orcania","oscpack","osinfo-db-tools","ospray","osquery","ostree","osv-scanner","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owl-lisp","owncloud-client","oxygen","oxygen5","oxyromon","p11-kit","p2pool","pack-cli","packagekit-qt5","packagekit-qt6","packer","packwiz-git","pacman","pacman-bintrans","pacman-bintrans-tools","pacman-git","pacoloco","pacquery","pacutils","padthv1-lv2","padthv1-standalone","pahole","palapeli","palp","pam","pam_mount","pam_wrapper","pamixer","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-files","pantheon-geoclue2-agent","pantheon-music","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-settings-daemon","pantheon-videos","paperkey","papilo","pappl","paprefs","pari","parley","partitionmanager","passt","patch","patchmatrix","pavucontrol","pax","pciutils","pcre","pcre2","pcsc-perl","pd","pd-lua","pd-sfizz","pdfcrack","pdnsd","peco","perf","performous","perl","perl-crypt-des","perl-file-fcntllock","perl-io-tty","perl-sub-prototype","perl-term-readkey","pesign","pgbouncer","pgpdump","phodav","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-igbinary","php-imagick","php-legacy-igbinary","php-legacy-imagick","php-legacy-redis","php-redis","picard","picmi","picocom","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pinentry","pingu","pint","pipe-rename","pipectl","pipewire","pipewire-audio","pipewire-ffado","pipewire-jack","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-v4l2","pipewire-x11-bell","pipewire-zeroconf","pitivi","pixiewps","pixman","pkgconf","planarity","plank","plantri","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","playerctl","plfit","plumber","plymouth","plymouth-kcm","podman","podman-desktop","poedit","polari","polkit","polkit-kde-agent","polkit-qt5","polkit-qt6","polly-git","polymake","polyphone","pop-bin","pop-launcher","popeye","poppler","poppler-glib","poppler-qt5","poppler-qt6","popt","portaudio","portmidi","portsmf","posix","postfix","postfix-cdb","postfix-ldap","postfix-lmdb","postfix-mongodb","postfix-mysql","postfix-pcre","postfix-pgsql","postfix-sqlite","postgresql","postgresql-libs","potrace","power-profiles-daemon","powerdevil","powerline","powershell-bin","poxml","ppl","ppp","ppsspp","pqiv","premake","presage","primecount","primesieve","print-manager","prismlauncher","prison","processing","procinfo-ng","procps-ng","procs","profanity","profanity-gtk","proftpd","prometheus","prometheus-bird-exporter","prometheus-blackbox-exporter","prometheus-elasticsearch-exporter","prometheus-ipmi-exporter","prometheus-json-exporter","prometheus-memcached-exporter","prometheus-mysqld-exporter","prometheus-node-exporter","prometheus-nut-exporter","prometheus-postgres-exporter","prometheus-smartctl-exporter","prometheus-smokeping-prober","prometheus-snmp-exporter","prometheus-ssl-exporter","prometheus-systemd-exporter","prometheus-unbound-exporter","prometheus-varnish-exporter","promtail","protobuf","protobuf-21","protonmail-bridge","protonmail-bridge-core","proxychains-ng","proxytunnel","prrte","pt2-clone","ptyxis","pulseaudio-qt","pulumi","pup","purpose","puzzles","pv","pwgen","pwninit","pwru","pyside6","pythia8","python-aioquic","python-asyncpg","python-aubio","python-audit","python-autobahn","python-awscrt","python-axolotl-curve25519","python-blosc2","python-capng","python-cbor2","python-ciso8601","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-coverage","python-cramjam","python-crc32c","python-crcmod","python-cvxopt","python-cvxpy","python-cwcwidth","python-cylp","python-cypari2","python-cysignals","python-cytoolz","python-datrie","python-dbus","python-dbus-fast","python-debugpy","python-ecos","python-evdev","python-falcon","python-fastbencode","python-fastnumbers","python-fastparquet","python-fpylll","python-gammu","python-gmpy2","python-gobject","python-gpgme","python-gssapi","python-igraph","python-iminuit","python-iwlib","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-lxc","python-markupsafe","python-materialyoucolor-git","python-miniupnpc","python-mitmproxy-rs","python-ml-dtypes","python-multidict","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-osqp","python-patiencediff","python-pendulum","python-pikepdf","python-pillow","python-pillowfight","python-pivy","python-pplpy","python-primecountpy","python-psutil","python-psycopg2","python-pyalsa","python-pyarrow","python-pybluez","python-pycapnp","python-pycosat","python-pycrdt","python-pycuda","python-pycups","python-pycurl","python-pydantic-core","python-pyerfa","python-pygame","python-pygit2","python-pykcs11","python-pyliblo","python-pylorcon2","python-pymongo","python-pymupdf","python-pynacl","python-pynormaliz","python-pyopencl","python-pyqt5-sip","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-sip","python-pyqt6-webengine","python-pyrsistent","python-pyscipopt","python-pysequoia","python-pytables","python-pythia8","python-pywayland","python-pywlroots","python-qdldl","python-qrencode","python-rapidfuzz","python-rcssmin","python-reflink","python-regress","python-rjsmin","python-rpds-py","python-rtmidi","python-scipy","python-scrypt","python-scs","python-simplejson","python-sqlalchemy","python-sqlalchemy1.4","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-tornado","python-tpm2-pytss","python-ulid-transform","python-urwid","python-uvloop","python-vigra","python-volume_key","python-watchfiles","python-webrtcvad","python-xapian","python-xkbcommon","python-xmlsec","python-y-py","python-yaml","python-yara","python-yarl","python-zita-audiotools","python-zita-jacktools","python-zope-interface","python-zope-proxy","python-zope-security","python-zopfli","qalculate-gtk","qalculate-qt","qastools","qbe","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcoro-qt5","qcoro-qt6","qd","qemu-audio-alsa","qemu-audio-dbus","qemu-audio-jack","qemu-audio-oss","qemu-audio-pa","qemu-audio-pipewire","qemu-audio-sdl","qemu-audio-spice","qemu-block-curl","qemu-block-dmg","qemu-block-gluster","qemu-block-gluster-git","qemu-block-iscsi","qemu-block-iscsi-git","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-chardev-spice","qemu-common","qemu-guest-agent","qemu-hw-display-qxl","qemu-hw-display-virtio-gpu","qemu-hw-display-virtio-gpu-gl","qemu-hw-usb-host","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-egl-headless","qemu-ui-gtk","qemu-ui-opengl","qemu-ui-sdl","qemu-ui-spice-app","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qhull","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qprint","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegen-cmake","qrcodegencpp-cmake","qrupdate","qsampler","qsopt-ex","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtile","qtkeychain-qt5","qtkeychain-qt6","qtractor","quota-tools","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","r8168-dkms","r8168-lts","radamsa","radare2","radeon-profile-git","radeontop","radvd","rage-encryption","rankwidth","raptor","rasqal","rauc","rav1e","rbutil","rbw","rccl","rclone","rclone-git","rcs","rdfind","rdma-core","readline","readstat","reapack","reaper","reaver","recastnavigation","recode","redland","redland-storage-mysql","redland-storage-postgresql","redland-storage-sqlite","redland-storage-virtuoso","redshift","redshift-minimal","regexxer","rekor","release-cli","remake","remmina","reprepro","repro-env","repro-get","reproc","reptyr","restic","restic-git","retro-gtk","retroarch","retry","retsnoop","rev-plugins","revive","rgbds","rhash","rhonabwy","rhythmbox","rio","river","rizin","rkcommon","rkward","rlwrap","rnnoise","roc-toolkit","rocalution","rocblas","rocfft","rocm-dbgapi","rocm-gdb","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rofi-wayland","rog-control-center","rootlesskit","ropr","rosegarden","roswell","rpcbind","rpcsvc-proto","rpi-imager","rq","rqbit","rqbit-desktop","rqlite","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rt-tests","rtaudio","rtl-sdr","rtl-sdr-git","rtmidi","rtmpdump","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","ruby-erb","ruby-pg","ruby-racc","ruby-rugged","ruby-thin","ruff","run-parts","runescape-launcher","rust","rustc-demangle","rustic","rustow-git","rygel","rz-ghidra","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","sane","sane-airscan","satty","sbc","sbsigntools","sc3-plugins","scaleway-cli","scanmem","scc","sccache","schedtool","scip","scponly","scrcpy","scrypt","sddm","sddm-git","sddm-kcm","sdl12-compat-git","sdl2","sdparm","seadrive-daemon","seahorse-nautilus","sed","selene","senpai","sensors-applet","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serd","serie","setbfree-lv2","setbfree-standalone","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sfsexp","sg-323-clap","sg-323-vst3","sg3_utils","sh4d0wup","shaderc","shadow","shadowsocks-rust","shadowsocks-v2ray-plugin","shared-mime-info","shared_meataxe","sharutils","sheldon","sherlock.lv2","shfmt","shfs-utils","shiboken6","shine","shntool","shuffle","signal-desktop","signify","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","sile","simple-scan","singular","sip4","sipcalc","sirocco","skaffold","skanlite","skanpage","skate","skladnik","slack-electron","slack-term","sleuthkit","slirp4netns","slowhttptest","slurm-llnl","smb4k","smplayer","snappy","snapshot","snd","sniffnet","soapyaudio","socat","sofia-sip","soft-serve","softmaker-office-2024-bin","soju","solid","songrec","sonic-visualiser","sonivox","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sops","sorcer","sord","sound-gambit","sowing","spandsp","spawn-fcgi","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","spglib","spin","spire-agent","spire-server","spot-client","spytrap-adb","sqlc","sqlite","sqlite-analyzer","sqlite-tcl","squashfs-tools","squashfuse","sratom","srrdb-terminal-client","srs-state-threads","ssh-openpgp-auth","ssh-tpm-agent","sshd-openpgp-auth","sshx","sslh","sslscan","sslsplit","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","startdde","startup-notification","staticcheck","stdoutisatty","steam","stellarsolver","step","step-ca","step-cli","stern","stk","stlink","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stumpwm","subversion","sudo","sudo-git","suil","suitesparse","suitesparse-graphblas","sundials","supercollider","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","svt-av1","svt-av1-git","svt-hevc","svt-vp9","sway-git","swaybg-git","swayidle-git","swaylock-git","sweeper","swell-foop","swh-plugins","swig","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","sws","swww","symengine","symlinks","symmetrica","sympol","sympow","syncthing","syncthing-discosrv","syncthing-relaysrv","syndication","synology-drive","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysfsutils","syslog-ng","sysprof","system-config-printer","system76-firmware","system76-scheduler","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","t1utils","tabiew","tachyon","taglib","taglib1","tailscale","talhelper","talkfilters","talloc","talosctl","tangler","tanka","tar","tbtools","tcc","tcpdump","tcplay","tcsh","tdb","tea","teams","teamspeak3-server","tecla","tekton-cli","telegraf","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","telly-skout","tempo","termshark","terraform","terragrunt","testu01","texlab","texlive-bin","texmaker","text-engine","tflint","tgpt","thc-ipv6","threadweaver","thunderbird","tidy","time","timescaledb-tune","timidity++","tiny","tinycdb","tinycompress","tinyproxy","tinyssh","tinyxml2","tio","tlsh","tmon","tnftp","tokodon","tokodon-git","tomlplusplus","toolame","topcom","tor","totem-pl-parser","tpm2-pkcs11","tpm2-tools","trace-cmd","traceroute","tracker3","tracker3-miners","tracktion-waveform","tradingview","traefik","tre","tree","tree-sitter-git","trivy","tropy-bin","trurl","tslib","ttfautohint","tty-clock","tuba","tup","turbo","turbostat","twolame","typst","typst-lsp","uavs3d-git","ucl","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ulfius","umbrello","umoci","umu-launcher","umurmur","unarj","unbound","unibilium","unicorn","unixodbc","unrar","unrar-free","unrtf","up","updlockfiles","upower","upterm","usbguard","usbip","usbutils","util-linux","util-linux-libs","uutils-coreutils","uv","uwsgi","uwsgi-plugin-cgi","uwsgi-plugin-lua51","uwsgi-plugin-mono","uwsgi-plugin-php","uwsgi-plugin-php-legacy","uwsgi-plugin-psgi","uwsgi-plugin-pypy","uwsgi-plugin-python","uwsgi-plugin-rack","uwsgi-plugin-webdav","uwsgi-plugin-zabbix","uwufetch","v2ray","vala","valabind","vale","valgrind","vals","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vault","vaultwarden","vcpkg","vde2","vector-blf","vegeta","veracrypt","verdict","vhs","vid.stab","vifm","vigra","vim","vimiv","vinagre","vinegar","vinegar-git","virtiofsd","virtualbox","virtualbox-guest-utils","virtualbox-guest-utils-nox","virtualbox-kvm","visitors","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","vivaldi-ffmpeg-codecs","vlang-git","vlc","vlc-luajit","vm.lv2","vmpk","vo-amrwbenc","volta","volume_key","vpnc","vscodium","vscodium-git","vsftpd","vte-common","vte3","vte4","vtk","vulkan-icd-loader","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","vultr-cli","vvave","wabt","wacomtablet","wakatime","wasm-component-ld","watchexec","wavemon","wavpack","waybar","wayland","wayland-chromium","wayland-git","wayland-utils","waylock","wayvnc","wcslib","webhook","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","websocat","weston","wezterm","wgcf","wget","which","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","whowatch","wiiuse","wildmidi","winbox","wireguard-vanity-address","wireplumber","wireproxy","wireshark-cli","wireshark-qt","wiresmith","wishbone-utils","wit","wl-clip-persist","wl-mirror","wldash","wlr-randr","wlroots-git","wluma","wob","wofi","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","wolfssl","woodpecker-agent","woodpecker-cli","woodpecker-server","worker-build","workerd","wpa_supplicant","wpewebkit","wrangler","wstunnel","wv","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x264","x42-plugins-lv2","x42-plugins-standalone","x86_energy_perf_policy","xapian-core","xavs2","xaw3d","xcb-util","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-renderutil","xcb-util-wm","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdg-desktop-portal-wlr","xemu-git","xevd","xeve","xf86-input-elographics","xf86-input-evdev","xf86-input-libinput","xf86-input-libinput-git","xf86-input-void","xf86-input-wacom","xf86-video-amdgpu","xf86-video-ati","xf86-video-dummy","xf86-video-fbdev","xf86-video-intel","xf86-video-nouveau","xf86-video-qxl","xf86-video-sisusb","xf86-video-vesa","xf86-video-vmware","xf86-video-voodoo","xfsdump","xjadeo","xmlsec","xmonad-dbus","xmonad-utils","xmonk.lv2","xmrig","xmrig-donateless","xorg-appres","xorg-bdftopcf","xorg-font-util","xorg-fonttosfnt","xorg-iceauth","xorg-mkfontscale","xorg-server","xorg-server-xephyr","xorg-server-xnest","xorg-server-xvfb","xorg-sessreg","xorg-x11perf","xorg-xauth","xorg-xbiff","xorg-xclipboard","xorg-xconsole","xorg-xdm","xorg-xedit","xorg-xev","xorg-xeyes","xorg-xfontsel","xorg-xkbcomp","xorg-xkbutils","xorg-xload","xorg-xlsfonts","xorg-xman","xorg-xmessage","xorg-xpr","xorg-xprop","xorg-xrdb","xorg-xrefresh","xorg-xwayland","xorg-xwd","xorgxrdp","xscreensaver","xsd","xss-lock","xsv","xtmsplit","xtrlock","xvidcore","xvkbd","xwax","xwaylandvideobridge","xxhash","yabridge","yabridgectl","yaegi","yajl","yakuake","yamdi","yaml-cpp","yamlfmt","yara","yasm","yder","ydotool","yggdrasil","yoshimi-lv2","yoshimi-standalone","yubico-piv-tool","yubikey-touch-detector","yyjson","yyjson-git","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenity","zeromq","zfp","zh-autoconvert","zimg","ziproxy","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zix","zk","zlib","zlib-ng","zmap","zopfli","zoxide","zps","zrepl-git","zsa-wally-cli","zsh-theme-powerlevel10k-git","zstd","zsync","zxing-cpp","zycore-c","zynaddsubfx","zzuf"],"optional_for":["tzdata"],"conflicts_with":[],"replaces":[],"download_size":"9.88 MiB","installed_size":"47.64 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"c87c0e71fd03472918dc052b5833d5568ab62866e8259d28ab453ffc4bcf8291","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"glibc-locales","version":"2.40+r16+gaa533d58ff-2","description":"Pregenerated locales for GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc=2.40+r16+gaa533d58ff"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"11.68 MiB","installed_size":"220.94 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"7d6e57f5a634f5002ced415fef3435efe7b91855cc6ab9f9b4c620f041eb2170","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gmp","version":"6.3.0-2","description":"A free library for arbitrary precision arithmetic","architecture":"x86_64","url":"https://gmplib.org/","licenses":["GPL-2.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc"],"required_by":["4ti2","afpfs-ng","bigloo","blender","cddlib","cgal","clasp-cl-git","cln","coreutils","coreutils-hybrid-git","cryptominisat","dnsmasq","e-antic","ecl","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","epiphany","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","flint","fplll","gambas3-gb-gmp","gap","gfan","ghc-libs","giac","givaro","glpk","gmp-ecm","gnuradio","gnustep-base","gnutls","guile","guile1.8","guile2.2","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","igraph","iml","jellyfin-ffmpeg","john","kcalc","latte-integrale","lean4-git","lib32-gmp","libisl","libktorrent","libmpc","libpoly","libqalculate","libtomcrypt","lidia","looking-glass-git","lrs","maude","maxima-sbcl","miktex","minetest-git","minetest-server-git","mlton","mpfi","mpfr","msolve","nettle","nftables","normaliz","ntl","ocaml-zarith","openpgp-ca","openpgp-ca-restd","openscad","papilo","pari","polymake","polyml","ppl","python-fpylll","python-gmpy2","python-johnnycanencrypt","python-pplpy","python-pycryptodome","python-pysequoia","python-symengine","qsopt-ex","rocm-gdb","ruby","ruby2.7","sagemath","scip","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","sh4d0wup","singular","snd","soplex","ssh-openpgp-auth","sshd-openpgp-auth","stress-ng","strongswan","suitesparse","symengine","sympol","texlive-bin","topcom","xmap-git","xmonad-utils","yices","zmap"],"optional_for":["crystal"],"conflicts_with":[],"replaces":[],"download_size":"442.87 KiB","installed_size":"1036.67 KiB","packager":"Antonio Rojas ","build_date":"Wed 17 Apr 2024 06:01:38 PM +08","md5_sum":null,"sha_256_sum":"286c23ed38d46f803a19d06ca46dc67d96805f7805f7b9818cf9c0ca65a69326","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"gnupg","version":"2.4.5-4","description":"Complete and free implementation of the OpenPGP standard","architecture":"x86_64","url":"https://www.gnupg.org/","licenses":["BSD-2-Clause","BSD-3-Clause","BSD-4-Clause","CC0-1.0","GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.1-or-later","LGPL-3.0-or-later OR GPL-2.0-or-later","MIT","Unicode-TOU"],"groups":[],"provides":[],"depends_on":["glibc","gnutls","libgcrypt","libgpg-error","libksba","libldap","libusb","pinentry","sh","sqlite","tpm2-tss","zlib","bzip2","libbz2.so=1.0-64","libassuan","libassuan.so=9-64","npth","libnpth.so=0-64","readline","libreadline.so=8-64"],"optional_deps":[{"name":"pcsclite","description":"for using scdaemon not with the gnupg internal card driver"}],"required_by":["archlinux-repro","browserpass","debian-archive-keyring","debian-ports-archive-keyring","distrobuilder","duplicity","gpgit","gpgme","grub2-signing-extension","jetring","nitrocli","pacman","pacman-git","pass","perl-gnupg-interface","playonlinux","python-gnupg","python-gnupginterface","python-ipalib","repose","thunderbird","tomb-git","torbrowser-launcher","ubuntu-keyring","visual-studio-code-bin","visual-studio-code-insiders-bin"],"optional_for":["archiso","archiso-git","debootstrap","diffoscope","in-toto","keepass-plugin-keeagent","mkinitcpio-archiso","mkosi","mkosi-git","notmuch","s3cmd","yadm","yubikey-touch-detector"],"conflicts_with":[],"replaces":[],"download_size":"2.69 MiB","installed_size":"9.69 MiB","packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:31:38 AM +08","md5_sum":null,"sha_256_sum":"36a028db83e02c22de6ec8d32608ec08d88ca9b4a60edfeac7656b81d3114052","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gnutls","version":"3.8.7-1","description":"A library which provides a secure layer over a reliable transport layer","architecture":"x86_64","url":"https://www.gnutls.org/","licenses":["GPL-3.0-or-later AND LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc","gcc-libs","gmp","libtasn1","zlib","nettle","libp11-kit","libidn2","zstd","libidn2.so=0-64","libunistring","brotli"],"optional_deps":[{"name":"tpm2-tss","description":"support for TPM2 wrapped keys"}],"required_by":["apt","aria2","ario","chrony","claws-mail","connman","connman-git","criu","cups","dnsdist","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","emby-ffmpeg","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","fwupd","gcr-4","glewlwyd","glib-networking","gloox","gnome-control-center","gnupg","gnustep-base","gsasl","gtk-vnc","gwenhywfar","haskell-gnutls","hefur","jami-daemon","jellyfin-ffmpeg","knot","knot-resolver","lftp","lib32-gnutls","libcamera","libcups","libcurl-gnutls","libetpan","libfilezilla","libgadu","libinfinity","libjcat","libmicrohttpd","libnbd","libnice","libpamac-aur","libpamac-flatpak","librelp","librtmp0","libvirt","libvncserver","libzip","loudmouth","mailutils","mpop","nbd","neatvnc","neomutt","nullmailer","openconnect","opendht","pamac-aur","pamac-flatpak","passim","pkcs11-helper","powerdns","ptyxis","qemu-arch-extra-git","qemu-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-user","qpdf","radcli","rhonabwy","rpi-imager","rtmpdump","samba","sane-airscan","smbclient","squid","swtpm","task","taskd","tigervnc","ulfius","valent-git","vlc","vlc-git","vlc-luajit","vte3","vte4","weechat","wget","wget2","wine-staging-wow64","wine-staging-wow64-git","wine-wow64","wine-wow64-git","wireshark-cli","xfce4-mailwatch-plugin","xmlsec","yaz","zeromq"],"optional_for":["anope","inspircd","proton-ge-custom","rsyslog","systemd","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git"],"conflicts_with":[],"replaces":[],"download_size":"2.74 MiB","installed_size":"5.54 MiB","packager":"Andreas Radke ","build_date":"Fri 16 Aug 2024 02:36:43 AM +08","md5_sum":null,"sha_256_sum":"d165671649ec7a3dde47f8c5fd2273f46498edecd69c11c3ebd994f005c7a302","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"gpgme","version":"1.23.2-6","description":"A C wrapper library for GnuPG","architecture":"x86_64","url":"https://www.gnupg.org/related_software/gpgme/","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later","LGPL-2.1-or-later","MIT"],"groups":[],"provides":["libgpgme.so=11-64","libgpgmepp.so=6-64"],"depends_on":["gcc-libs","glib2","glibc","libassuan","libgpg-error","gnupg>=2"],"required_by":["akonadi-calendar","almanah","balsa","claws-mail","cri-o","dino","dino-git","firefox-extension-mailvelope","flatpak","fwknop","geany-plugins","gitg","gmime3","gpg-crypter","gpg-tui","himalaya","isoimagewriter","kdepim-addons","kget","kleopatra","kmail","kmymoney","kwallet","kwallet5","libcryptui","libdnf","libjcat","libkleo","libreoffice-fresh","libreoffice-still","librepo","mailcommon","mcabber","merkuro","messagelib","mimetreeparser","mutt","neomutt","ostree","pacman","pacman-git","plasma-pass","podman","poppler","profanity","profanity-gtk","python-gpgme","qgpgme-qt6","reprepro","ripasso","ruby-gpgme","samba","seahorse","seahorse-nautilus","skopeo","volume_key","wget2"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"477.27 KiB","installed_size":"1487.32 KiB","packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:26:09 AM +08","md5_sum":null,"sha_256_sum":"c9e4bb089881eb1ab1c4d73b2f42ebca4878126603e6e730d30277e285d06e68","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gpm","version":"1.20.7.r38.ge82d1a6-6","description":"A mouse server for the console and xterm","architecture":"x86_64","url":"https://www.nico.schottelius.org/software/gpm/","licenses":["GPL"],"groups":[],"provides":["libgpm.so=2-64"],"depends_on":["bash","procps-ng"],"required_by":["aalib","brltty","dosemu","elinks","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","gvim","lib32-gpm","libnewt","links","mc","notcurses","vim","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"135.74 KiB","installed_size":"393.39 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:19:03 AM +08","md5_sum":null,"sha_256_sum":"95b97f61aacc075e85465a7d5e1c99d1b249b4eba63081a170482cdc8791f799","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"grep","version":"3.11-1","description":"A string search utility","architecture":"x86_64","url":"https://www.gnu.org/software/grep/","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","pcre2"],"required_by":["aconfmgr-git","ani-cli","arch-install-scripts","base","base-devel","bashtop","bootiso","checksec","devtools","dracut","easy-rsa","git","grml-zsh-config","gsocket","gzip","keycloak","mkinitcpio","pacman","pacman-git","posix","quickemu","redis","tdrop","themix-export-spotify-git","themix-icons-gnome-colors-git","themix-theme-materia-git","themix-theme-oomox-git","ugit","usbctl","valkey","wikiman","ytfzf-git"],"optional_for":["pciutils"],"conflicts_with":[],"replaces":[],"download_size":"233.57 KiB","installed_size":"889.96 KiB","packager":"Sébastien Luttringer ","build_date":"Mon 15 May 2023 07:06:38 AM +08","md5_sum":"838cdf1eac9d7734eaa113e8248a4e88","sha_256_sum":"aeb2d51c03190e24d4c021b43bbdb41aef69a28dff314743aade26e288e07a48","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"groff","version":"1.23.0-7","description":"GNU troff text-formatting system","architecture":"x86_64","url":"https://www.gnu.org/software/groff/groff.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["perl","gcc-libs"],"optional_deps":[{"name":"netpbm","description":"for use together with man -H command interaction in browsers"},{"name":"psutils","description":"for use together with man -H command interaction in browsers"},{"name":"libxaw","description":"for gxditview"},{"name":"perl-file-homedir","description":"for use with glilypond"}],"required_by":["base-devel","man-db"],"optional_for":["cgit","cgit-aurweb","haskell-pandoc","linuxdoc-tools","pandoc-bin"],"conflicts_with":[],"replaces":[],"download_size":"2.26 MiB","installed_size":"8.84 MiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:19:27 PM +08","md5_sum":null,"sha_256_sum":"374fef7746a4d372ef2da8773769ee6c669382ac79bd73aedc8bafebaf366ffe","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"grub","version":"2:2.12-2","description":"GNU GRand Unified Bootloader (2)","architecture":"x86_64","url":"https://www.gnu.org/software/grub/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"depends_on":["sh","xz","gettext","device-mapper"],"optional_deps":[{"name":"freetype2","description":"For grub-mkfont usage"},{"name":"fuse3","description":"For grub-mount usage"},{"name":"dosfstools","description":"For grub-mkrescue FAT FS and EFI support"},{"name":"lzop","description":"For grub-mkrescue LZO support"},{"name":"efibootmgr","description":"For grub-install EFI support"},{"name":"libisoburn","description":"Provides xorriso for generating grub rescue iso using grub-mkrescue"},{"name":"os-prober","description":"To detect other OSes when generating grub.cfg in BIOS systems"},{"name":"mtools","description":"For grub-mkrescue FAT FS support"}],"required_by":["breeze-grub","dracula-grub-theme-git","grub-btrfs","grub-customizer","grub-theme-stylish-color-1080p-git","grub-theme-stylish-color-2k-git","grub-theme-stylish-color-4k-git","grub-theme-stylish-color-ultrawide-git","grub-theme-stylish-color-ultrawide2k-git","grub-theme-stylish-white-1080p-git","grub-theme-stylish-white-2k-git","grub-theme-stylish-white-4k-git","grub-theme-stylish-white-ultrawide-git","grub-theme-stylish-white-ultrawide2k-git","grub-theme-stylish-whitesur-1080p-git","grub-theme-stylish-whitesur-2k-git","grub-theme-stylish-whitesur-4k-git","grub-theme-stylish-whitesur-ultrawide-git","grub-theme-stylish-whitesur-ultrawide2k-git","grub-theme-tela-color-1080p-git","grub-theme-tela-color-2k-git","grub-theme-tela-color-4k-git","grub-theme-tela-color-ultrawide-git","grub-theme-tela-color-ultrawide2k-git","grub-theme-tela-white-1080p-git","grub-theme-tela-white-2k-git","grub-theme-tela-white-4k-git","grub-theme-tela-white-ultrawide-git","grub-theme-tela-white-ultrawide2k-git","grub-theme-tela-whitesur-1080p-git","grub-theme-tela-whitesur-2k-git","grub-theme-tela-whitesur-4k-git","grub-theme-tela-whitesur-ultrawide-git","grub-theme-tela-whitesur-ultrawide2k-git","grub-theme-vimix","grub-theme-vimix-color-1080p-git","grub-theme-vimix-color-2k-git","grub-theme-vimix-color-4k-git","grub-theme-vimix-color-ultrawide-git","grub-theme-vimix-color-ultrawide2k-git","grub-theme-vimix-white-1080p-git","grub-theme-vimix-white-2k-git","grub-theme-vimix-white-4k-git","grub-theme-vimix-white-ultrawide-git","grub-theme-vimix-white-ultrawide2k-git","grub-theme-vimix-whitesur-1080p-git","grub-theme-vimix-whitesur-2k-git","grub-theme-vimix-whitesur-4k-git","grub-theme-vimix-whitesur-ultrawide-git","grub-theme-vimix-whitesur-ultrawide2k-git","grub-theme-whitesur-color-1080p-git","grub-theme-whitesur-color-2k-git","grub-theme-whitesur-color-4k-git","grub-theme-whitesur-white-1080p-git","grub-theme-whitesur-white-2k-git","grub-theme-whitesur-white-4k-git","grub-theme-whitesur-whitesur-1080p-git","grub-theme-whitesur-whitesur-2k-git","grub-theme-whitesur-whitesur-4k-git","grub2-signing-extension","libguestfs","penguins-eggs","update-grub","woeusb","woeusb-ng"],"optional_for":["archiso","archiso-git","memtest86-efi","mkosi-git","rauc"],"conflicts_with":["grub-common","grub-bios","grub-emu","grub-efi-x86_64","grub-legacy"],"replaces":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"download_size":"6.84 MiB","installed_size":"33.67 MiB","packager":"Christian Hesse ","build_date":"Sun 17 Mar 2024 03:09:18 AM +08","md5_sum":"39513e40e6eb9647f8b34a61a9c84d64","sha_256_sum":"2b751fb81000bb31802939a571e10aa165c88988efdc82dc1bfcbf26309be949","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gssproxy","version":"0.9.2-1","description":"GSSAPI Proxy","architecture":"x86_64","url":"https://github.com/gssapi/gssproxy","licenses":["custom: MIT"],"groups":[],"provides":[],"depends_on":["libverto-module-base","popt","ding-libs","systemd-libs","krb5","glibc"],"required_by":["nfs-utils"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"96.91 KiB","installed_size":"250.52 KiB","packager":"Andreas Radke ","build_date":"Fri 20 Oct 2023 03:19:23 AM +08","md5_sum":"e39782f173878afa516f65fad4927553","sha_256_sum":"77b87d1b00e33b3550e780b8a137422240e8b2575166fbf7937efa3c36adae05","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"guile","version":"3.0.10-1","description":"Portable, embeddable Scheme implementation written in C","architecture":"x86_64","url":"https://www.gnu.org/software/guile/","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["gmp","ncurses","libunistring","gc","libffi","libxcrypt"],"required_by":["aarch64-linux-gnu-gdb","aisleriot","arm-none-eabi-gdb","autogen","avr-gdb","crash","gdb","gdb-common","gnucash","lm32-elf-gdb","make","or1k-elf-gdb","ppc64le-elf-gdb","remake","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sh2-elf-gdb","slib","xbindkeys","zrythm"],"optional_for":["graphviz","weechat"],"conflicts_with":[],"replaces":[],"download_size":"8.31 MiB","installed_size":"54.73 MiB","packager":"Frederik Schwan ","build_date":"Mon 24 Jun 2024 04:16:00 PM +08","md5_sum":null,"sha_256_sum":"bf4d1b474045a88c7ad97b1ce56e8dd5786e5a10de02a8d33dc8f041edc8d01d","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gzip","version":"1.13-4","description":"GNU compression utility","architecture":"x86_64","url":"https://www.gnu.org/software/gzip/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","bash","coreutils","sed","grep"],"optional_deps":[{"name":"less","description":"zless support"},{"name":"util-linux","description":"zmore support"},{"name":"diffutils","description":"zdiff/zcmp support"}],"required_by":["amavisd-new","arch-wiki-lite","base","base-devel","clonezilla","engrampa","hwdetect","logrotate","nethack","posix-xsi","quilt","texinfo"],"optional_for":["atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","man-db","mkinitcpio","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":"82.37 KiB","installed_size":"155.36 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:42:51 PM +08","md5_sum":null,"sha_256_sum":"0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a","signatures":"6D42BDD116E0068F","extended_data":null}] diff --git a/tests/fixtures/generic/pacman--packages.out b/tests/fixtures/generic/pacman--packages.out new file mode 100644 index 000000000..d5bd8f6e1 --- /dev/null +++ b/tests/fixtures/generic/pacman--packages.out @@ -0,0 +1,2010 @@ +Repository : core +Name : acl +Version : 2.3.2-1 +Description : Access control list utilities, libraries and headers +Architecture : x86_64 +URL : https://savannah.nongnu.org/projects/acl +Licenses : LGPL +Groups : None +Provides : xfsacl libacl.so=1-64 +Depends On : glibc +Optional Deps : None +Required By : advcpmv bfs borg borg2 bup casync cdrtools clifm-git coreutils coreutils-hybrid-git cups emacs emacs-nativecomp emacs-nox emacs-wayland gettext incus incus-tools kio krusader lib32-acl libarchive libisofs logrotate lxd proftpd proxmox-backup-client rsync rsync-reflink sed shadow snapper spice-gtk systemd tar udisks2 udisks2-btrfs udisks2-lvm2 vim vis xfsdump +Optional For : diffoscope mkosi mkosi-git +Conflicts With : xfsacl +Replaces : xfsacl +Download Size : 137.78 KiB +Installed Size : 329.98 KiB +Packager : Christian Hesse +Build Date : Wed 24 Jan 2024 04:57:20 PM +08 +MD5 Sum : 33d329308c838e76498e4eac7e603291 +SHA-256 Sum : cbfb71e8ba9aca9e51cbdfd77d0ec51371eb865a9a098c77e2c6046962e6ae0a +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : amd-ucode +Version : 20240809.59460076-1 +Description : Microcode update image for AMD CPUs +Architecture : any +URL : https://gitlab.com/kernel-firmware/linux-firmware +Licenses : custom +Groups : None +Provides : None +Depends On : None +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 59.22 KiB +Installed Size : 158.98 KiB +Packager : Tobias Powalowski +Build Date : Mon 12 Aug 2024 02:43:48 AM +08 +MD5 Sum : None +SHA-256 Sum : c04893e8d8defdc2ccfa29c09b2599906291a12b5e470aff9e4a80e43bece68e +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : archlinux-keyring +Version : 20240709-1 +Description : Arch Linux PGP keyring +Architecture : any +URL : https://gitlab.archlinux.org/archlinux/archlinux-keyring/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : pacman +Optional Deps : None +Required By : base base-devel chaotic-keyring +Optional For : mkosi-git +Conflicts With : None +Replaces : None +Download Size : 1198.18 KiB +Installed Size : 1709.20 KiB +Packager : Christian Hesse +Build Date : Wed 10 Jul 2024 05:31:37 AM +08 +MD5 Sum : None +SHA-256 Sum : a6f573fc97fc21b55504a4d75d010257792847a5b87f19edff4ffb662f6f53a2 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : argon2 +Version : 20190702-6 +Description : A password-hashing function (reference C implementation) +Architecture : x86_64 +URL : https://github.com/P-H-C/phc-winner-argon2 +Licenses : Apache custom:CC0 +Groups : None +Provides : libargon2.so=1-64 +Depends On : glibc +Optional Deps : None +Required By : cryptsetup keepassxc opendht php php-legacy python-argon2-cffi-bindings unrealircd znc +Optional For : keepass tomb-git +Conflicts With : None +Replaces : None +Download Size : 33.33 KiB +Installed Size : 106.02 KiB +Packager : Christian Hesse +Build Date : Wed 24 Jul 2024 12:53:38 AM +08 +MD5 Sum : None +SHA-256 Sum : 467da2efdcef1bab8403ece5895794539b983ea7de664105a2dc821c68e8ba13 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : attr +Version : 2.5.2-1 +Description : Extended attribute support library for ACL support +Architecture : x86_64 +URL : https://savannah.nongnu.org/projects/attr +Licenses : LGPL +Groups : None +Provides : xfsattr libattr.so=1-64 +Depends On : glibc +Optional Deps : None +Required By : advcpmv bcachefs-tools-git coreutils coreutils-hybrid-git glusterfs lib32-attr patch proton-ge-custom shadow shake toybox wine-ge-custom wine-staging wine-tkg-fsync-git wine-tkg-staging-fsync-git xfsdump +Optional For : None +Conflicts With : xfsattr +Replaces : xfsattr +Download Size : 68.41 KiB +Installed Size : 216.00 KiB +Packager : Christian Hesse +Build Date : Sun 14 Jan 2024 10:58:15 PM +08 +MD5 Sum : 50de36b6ebed40dd90f6c42cfb698b53 +SHA-256 Sum : 83bcd58b066492f1242be41fa3f5750586d9eb7d8424a776e9fd6a8c5a496948 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : audit +Version : 4.0.2-2 +Description : Userspace components of the audit framework +Architecture : x86_64 +URL : https://people.redhat.com/sgrubb/audit +Licenses : GPL-2.0-or-later LGPL-2.0-or-later +Groups : None +Provides : libaudit.so=1-64 libauparse.so=0-64 +Depends On : glibc krb5 libkrb5.so=3-64 libgssapi_krb5.so=2-64 libcap-ng libcap-ng.so=0-64 +Optional Deps : libldap: for audispd-zos-remote + sh: for augenrules +Required By : apparmor aravis dbus dbus-broker gdm gdm-prime ksystemlog networkmanager networkmanager-iwd osquery pam perf python-audit shadow systemd trace-cmd usbguard +Optional For : clevis +Conflicts With : None +Replaces : None +Download Size : 395.15 KiB +Installed Size : 1053.22 KiB +Packager : David Runge +Build Date : Wed 04 Sep 2024 03:56:53 PM +08 +MD5 Sum : None +SHA-256 Sum : 9933298fff9e3866509e25091e02e25533f0a3d27b9964b35503c2ad3f58c47a +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : autoconf +Version : 2.72-1 +Description : A GNU tool for automatically configuring source code +Architecture : any +URL : https://www.gnu.org/software/autoconf +Licenses : GPL2 GPL3 custom +Groups : None +Provides : None +Depends On : awk m4 diffutils perl sh +Optional Deps : None +Required By : argbash autoconf-archive base-devel mate-common +Optional For : asdf-vm bauh +Conflicts With : None +Replaces : None +Download Size : 650.53 KiB +Installed Size : 2277.08 KiB +Packager : Antonio Rojas +Build Date : Sat 23 Dec 2023 08:16:19 AM +08 +MD5 Sum : cc7e1d210723d19fac4db93d89c77336 +SHA-256 Sum : 44afcc89c89548bede040ae09e66ece236dc99202458bc22866bc3d490df4345 +Signatures : 7A4E76095D8A52E4 +Extended Data : None + +Repository : core +Name : automake +Version : 1.17-1 +Description : A GNU tool for automatically creating Makefiles +Architecture : any +URL : https://www.gnu.org/software/automake +Licenses : GPL +Groups : None +Provides : None +Depends On : perl bash +Optional Deps : None +Required By : base-devel mate-common +Optional For : asdf-vm autoconf-archive bauh +Conflicts With : None +Replaces : None +Download Size : 626.63 KiB +Installed Size : 1654.66 KiB +Packager : Lukas Fleischer +Build Date : Sat 20 Jul 2024 05:26:35 PM +08 +MD5 Sum : None +SHA-256 Sum : 71f691855fb6d1edc61e365f40c6dfd704d2af27a9a2828e753eb92cf2e03c9d +Signatures : A91764759326B440 +Extended Data : None + +Repository : core +Name : b43-fwcutter +Version : 019-5 +Description : firmware extractor for the b43 kernel module +Architecture : x86_64 +URL : https://wireless.wiki.kernel.org/en/users/Drivers/b43 +Licenses : GPL-2.0-only +Groups : None +Provides : None +Depends On : glibc +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 17.07 KiB +Installed Size : 44.78 KiB +Packager : Tobias Powalowski +Build Date : Mon 01 Jul 2024 06:49:54 PM +08 +MD5 Sum : None +SHA-256 Sum : 8d8dc6f758afafdae33498321f0d14d82dff166d9dde58414f855491535fb396 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : base +Version : 3-2 +Description : Minimal package set to define a basic Arch Linux installation +Architecture : any +URL : https://www.archlinux.org +Licenses : GPL +Groups : None +Provides : None +Depends On : filesystem gcc-libs glibc bash coreutils file findutils gawk grep procps-ng sed tar gettext pciutils psmisc shadow util-linux bzip2 gzip xz licenses pacman archlinux-keyring systemd systemd-sysvcompat iputils iproute2 +Optional Deps : linux: bare metal support +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 2.31 KiB +Installed Size : 0.00 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Sun 08 Oct 2023 09:15:41 AM +08 +MD5 Sum : 9fde97a64c7825c959d498235cede216 +SHA-256 Sum : 25da12f0347e4bef6c215dcd32b6495beb86010a8c7e40828167b95f56639061 +Signatures : 3B94A80E50A477C7 +Extended Data : None + +Repository : core +Name : base-devel +Version : 1-2 +Description : Basic tools to build Arch Linux packages +Architecture : any +URL : https://www.archlinux.org +Licenses : GPL +Groups : None +Provides : None +Depends On : archlinux-keyring autoconf automake binutils bison debugedit fakeroot file findutils flex gawk gcc gettext grep groff gzip libtool m4 make pacman patch pkgconf sed sudo texinfo which +Optional Deps : None +Required By : multilib-devel +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 2.05 KiB +Installed Size : 0.00 KiB +Packager : Antonio Rojas +Build Date : Sat 07 Sep 2024 03:08:35 AM +08 +MD5 Sum : None +SHA-256 Sum : 412a2effe23751e1c11b2fa68155f1a29ecea5d9dc8ea8cef4e87b7b429d3201 +Signatures : 7A4E76095D8A52E4 +Extended Data : None + +Repository : core +Name : bash +Version : 5.2.032-2 +Description : The GNU Bourne Again shell +Architecture : x86_64 +URL : https://www.gnu.org/software/bash/bash.html +Licenses : GPL-3.0-or-later +Groups : None +Provides : sh +Depends On : readline libreadline.so=8-64 glibc ncurses +Optional Deps : bash-completion: for tab completion +Required By : 4ti2 9base acme.sh aconfmgr-git acpid adljack afl++ alpine-chroot-install alvr ammonite ananicy android-ndk android-sdk-build-tools ankama-launcher ant antiword antlr4 anything-sync-daemon apparmor apt arch-install-scripts arch-update arch-wiki-lite archiso archiso-git archivetools archlinux-contrib archlinux-java-run ardour ardour-git arduino-ide ark asus-kbd-backlight at-spi2-core atop audio-convert aurutils autoconf autoconf-git automake base bash-completion bashburn bashrun bashtop bat-extras bats bats-assert bats-file bats-support bcachefs-tools bcc-tools bees betterlockscreen bind bison blender blesh bogofilter-db bogofilter-kyotocabinet bogofilter-lmdb bogofilter-sqlite booster booster-git bootiso briar-desktop brickadia-launcher bup bzip2 bzip3 ca-certificates-utils cairo carla cfs-zen-tweaks chaotic-neofetch-git checksec cjdns clamav clazy clevis cloud-guest-utils cloud-image-utils cloud-init cmake-extras-git codon-bin cosmic-session cpupower cronie crowdsec cscope cups-filters db db5.3 debtap deepin-kwin dejagnu deltachat-desktop devtools dhclient dhcpcd dialog dictd diffutils digikam discord-chat-exporter-cli distrobox djvulibre dkms dmenu dmtcp doas-sudo-shim dracut drawio-desktop dtc e2fsprogs easy-rsa ebook-tools ecl ed elfutils emovix epsxe epubcheck etc-update exim fakechroot fakeroot fastjet faust ffcast fflas-ffpack fftw fig2dev figlet findutils fio firefox firefox-developer-edition firefox-esr firrtl flatpak flex fltk foomatic-db-engine freecell-solver freedm-git freedoom-git freetype2 fricas fwupd fzf gap gap-packages gawk gdbm gdm gdm-prime gedit geeqie geogebra geos gettext ghidra givaro glib2 gnome-common gnome-flashback gnome-session gnome-settings-daemon gnome-shell gnome-subtitles gnuchess gnupg godot-mono-git gpgit gpm gradle gradle-doc gradle-src gradle7 gradle7-doc gradle7-src grails grub gsl gsocket gtk-sharp-3 gtk-update-icon-cache gtk4 gzip haskell-dataenc haskell-extensible-exceptions haskell-filemanip haskell-hashtables haskell-hosc haskell-microspec hblock hdapsd hdf5 hdf5-openmpi heaptrack hepmc hepmc2 hip-runtime-amd hipify-clang hivex hotdoc hplip httrack hunspell hwdetect hydra hyprshot i3lock-fancy-git ibus-typing-booster icons-in-terminal-git icu icu69 ifplugd ijs imagescan incron intel-oneapi-common intel-oneapi-dpcpp-cpp intel-oneapi-dpcpp-debugger intel-oneapi-mkl intel-oneapi-mkl-sycl intel-oneapi-openmp intel-oneapi-tbb intellij-idea-community-edition ipman iptables iptables-nft ipvsadm irpf ispell iverilog-git jadx java-runtime-common jellyfin-server jenv jmol jpeg-archive jruby js115 js128 js91 jython kafka kakasi kde-cli-tools kde-dev-scripts kde-gtk-config kdepim-addons kdevelop keychain keycloak keyutils kinfocenter klipperscreen kmix kommit konsole konversation krb5 kubetail kwallet-pam lantern-bin laptop-detect lftp lib32-libltdl libassuan libcamera libchardet libcups libdca libeatmydata libgpg-error libguestfs libiodbc libksba libmbim libmikmod libnet liboggz libpcap libpng libreoffice-fresh libreoffice-fresh-sdk libreoffice-still libreoffice-still-sdk librewolf libteam libtool libusb-compat libxml2 libxslt lightdm-gtk-greeter-settings linbox lksctp-tools lm_sensors lmms lsb-release ltex-ls-bin lua-language-server lua-luarepl lua51-luarepl lua52-luarepl lua53-luarepl lvm2 lxc lynis m4 mame man-db maven mbedtls mc mcfly mediathekview mellite meson mill minicom miniupnpc minq-ananicy-git mjpegtools mk-configure mkinitcpio mkinitcpio-archiso mkinitcpio-systemd-tool mkosi mono mtools mullvad-browser-bin mumble-server mysql mysql-clients ncurses5-compat-libs neofetch neofetch-git neovim-symlinks netpbm nfs-utils nikto nim nm-cloud-setup nm-iwd-cloud-setup nnn nnn-nerd nomachine npth nspr nspr-hg nss nss-hg nuget nvidia-prime openapi-diff openapi-generator openresolv openzwave os-prober os-prober-btrfs osquery ostree p7zip pacman pacman-git pacman-offline pahole pakka pantheon-files papirus-folders pari pass pastel-docs pax-utils paxtest pcre pd pdftk perf pesign pipewire-jack pipewire-module-xrdp pipewire-v4l2 pkgconf plantuml plantuml-server plasma-sdk plasma-workspace play.it plymouth plymouth-git pm-utils podman-docker ponysay pop-launcher pop-launcher-git posix postfix postgresql pps-tools preload prettyping processing profile-cleaner profile-sync-daemon pulseaudio-control pulseaudio-equalizer-ladspa pycharm-community-edition pyenv pythia8 python-playwright qemu-guest-agent qtcreator quarto-cli-bin quilt r radare2 rasqal rauc rcs rdma-core redland redo-sh refind reflector-simple remmina river rizin rkhunter rocm-clang-ocl rocm-gdb roswell rp-pppoe rpmextract rtirq ruby-build rust sane sbt schedtoold screenfetch sdcc sddm sddm-git sdedit sdparm serproid sgml-common shattered-pixel-dungeon shunit2 singular smali smartmontools solr source-highlight sowing speakup-utils spirv-tools sqlcl sqlmap ssacli ssh-tools steam steam-native-runtime steamcmd steamtinkerlaunch stumpwm-contrib-git subversion switchboard-plug-security-privacy sympow syslog-ng system-config-printer systemd taglib taglib1 termv-git testssl.sh texinfo texlive-bin tgt toolbox tor tracker3 tradingview translate-shell translate-toolkit transmageddon tropy-bin txt2man ufetch-git ugit umu-launcher unifetch unzip usbctl uuid vala valabind ventoy-bin vis vkd3d-proton-mingw-git vlc vlc-luajit vnstat voacapl vpnc wcurl wezterm which wireguard-tools wireless-regdb wl-mirror wqy-zenhei wv wxwidgets-gtk3 wxwidgets-qt5 x2goserver xapian-core xdg-user-dirs xdg-utils xdm-archlinux xfsprogs xmlsec xonotic-data xorg-server xorg-server-xvfb xorg-x11perf xorg-xdm xorg-xpr xosd xssstate xsudo-git xwax xz yabridge yodl yosys z zaproxy zramswap +Optional For : a2jmidid alsa-oss alsa-utils audit btrbk ecasound gcin hatari ipxe kernelshark leftwm leftwm-git leftwm-nonsystemd leftwm-nonsystemd-git libkkc lokalize mdadm mumble mympd ncurses niri nvm openssh passt pcre2 rt-tests skim tzdata unbound usbutils vim-csound vim-runtime wit +Conflicts With : None +Replaces : None +Download Size : 1859.23 KiB +Installed Size : 9419.19 KiB +Packager : Tobias Powalowski +Build Date : Tue 27 Aug 2024 01:59:54 PM +08 +MD5 Sum : None +SHA-256 Sum : a067b212c273e1102ee9f85b916ed354760937d886b67d20b246253b2d2bbd6b +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : binutils +Version : 2.43+r4+g7999dae6961-1 +Description : A set of programs to assemble and manipulate binary and object files +Architecture : x86_64 +URL : https://www.gnu.org/software/binutils/ +Licenses : GPL-2.0-or-later GPL-3.0-or-later LGPL-2.0-or-later LGPL-3.0-or-later GFDL-1.3 FSFAP +Groups : None +Provides : libctf.so=0-64 libgprofng.so=0-64 libsframe.so=1-64 +Depends On : glibc jansson libelf zlib zstd +Optional Deps : debuginfod: for debuginfod server/client functionality +Required By : 0ad base-devel bootiso bpf bpftrace checksec debtap devtools dracut-hook-uefi flatpak-builder fpc gcc gcc13 gdb-dashboard gsocket imd-git kcov libabigail looking-glass-git looking-glass-host-git mkinitcpio namcap openucx peda perf posix posix-software-development rebuild-detector rmlint sbctl systemd-ukify systemd-ukify-git vmware-horizon-client +Optional For : bauh crash diffoscope dracut hotspot inxi xarchiver xarchiver-gtk2 +Conflicts With : binutils-multilib +Replaces : binutils-multilib +Download Size : 7.65 MiB +Installed Size : 41.28 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:32:39 AM +08 +MD5 Sum : None +SHA-256 Sum : 6702f58e662908cbd5a86d554363348c2ab5c2e5e594f9d07d5627d16fda57b7 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : bison +Version : 3.8.2-6 +Description : The GNU general-purpose parser generator +Architecture : x86_64 +URL : https://www.gnu.org/software/bison/bison.html +Licenses : GPL3 +Groups : None +Provides : None +Depends On : glibc m4 sh gettext +Optional Deps : None +Required By : base-devel posix-c-development +Optional For : bauh +Conflicts With : None +Replaces : None +Download Size : 772.49 KiB +Installed Size : 2598.64 KiB +Packager : Leonidas Spyropoulos +Build Date : Sat 24 Jun 2023 06:03:51 PM +08 +MD5 Sum : 41fc9c90033977614d66eadc7361d455 +SHA-256 Sum : 91de470c3a723f3cbf615abc9fc6fbd3075aaf5a978820db6550eae151a0afbd +Signatures : 59E43E106B247368 +Extended Data : None + +Repository : core +Name : brotli +Version : 1.1.0-2 +Description : Generic-purpose lossless compression algorithm +Architecture : x86_64 +URL : https://github.com/google/brotli +Licenses : MIT +Groups : None +Provides : libbrotlicommon.so=1-64 libbrotlidec.so=1-64 libbrotlienc.so=1-64 +Depends On : glibc +Optional Deps : None +Required By : android-tools arrow chromium cpp-httplib-compiled curl curl-rustls dvisvgm dwarfs electron23 electron30 electron31 electron32 elinks exiv2 freetype2 gnutls godot godot-mono lib32-brotli libjxl libjxl-git libsoup libsoup3 links lynx nginx-mainline-mod-brotli nginx-mod-brotli nix nodejs nodejs-lts-hydrogen nodejs-lts-iron peazip perl-io-compress-brotli podman-desktop python-brotlicffi qt6-base suyu-dev-qt6-git tracktion-waveform ungoogled-chromium wget2 wireshark-cli woff2 +Optional For : apache engrampa lighttpd +Conflicts With : None +Replaces : None +Download Size : 384.67 KiB +Installed Size : 996.63 KiB +Packager : Jelle van der Waa +Build Date : Thu 04 Apr 2024 02:47:23 AM +08 +MD5 Sum : None +SHA-256 Sum : 2f7ce0251b13c348ddaa16b03b25cd2c27a110b54402d8a0494811f44af0f2a6 +Signatures : C06086337C50773E +Extended Data : None + +Repository : core +Name : brotli-testdata +Version : 1.1.0-2 +Description : Generic-purpose lossless compression algorithm - test data +Architecture : x86_64 +URL : https://github.com/google/brotli +Licenses : MIT +Groups : None +Provides : None +Depends On : None +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 6.13 MiB +Installed Size : 14.76 MiB +Packager : Jelle van der Waa +Build Date : Thu 04 Apr 2024 02:47:23 AM +08 +MD5 Sum : None +SHA-256 Sum : 10007017b62e5a0d465e1a180662fcc3ecd2a335ce7870409676e55722ada693 +Signatures : C06086337C50773E +Extended Data : None + +Repository : core +Name : btrfs-progs +Version : 6.10.1-2 +Description : Btrfs filesystem utilities +Architecture : x86_64 +URL : https://btrfs.readthedocs.io +Licenses : GPL-2.0-only +Groups : None +Provides : btrfs-progs-unstable +Depends On : glibc util-linux-libs lzo zlib zstd libgcrypt systemd-libs +Optional Deps : python: libbtrfsutil python bindings + e2fsprogs: btrfs-convert +Required By : archinstall btrbk btrfs-assistant btrfs-assistant-git btrfs-snapshots-git btrfsmaintenance buttermanager distrobuilder grub-btrfs libblockdev-btrfs libguestfs refind-btrfs rusnapshot-git snap-pac snap-sync snapper udisks2-btrfs +Optional For : cri-o devtools docker dracut gparted incus incus-tools libblockdev-fs lxd mkosi mkosi-git podman schroot timeshift udisks2 +Conflicts With : btrfs-progs-unstable +Replaces : btrfs-progs-unstable +Download Size : 1213.13 KiB +Installed Size : 6661.96 KiB +Packager : Tobias Powalowski +Build Date : Tue 27 Aug 2024 08:52:23 PM +08 +MD5 Sum : None +SHA-256 Sum : 3e6ffcac374877c8a1b449429a2458d14b0a53ab6eb5aaafab10392a011fd833 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : bzip2 +Version : 1.0.8-6 +Description : A high-quality data compression program +Architecture : x86_64 +URL : https://sourceware.org/bzip2/ +Licenses : BSD +Groups : None +Provides : libbz2.so=1.0-64 +Depends On : glibc sh +Optional Deps : None +Required By : adios2 amavisd-new apt arrow base boost-libs botan cargo-dist cargo-make cargo-pgrx cargo-tauri clamav clonezilla coin-or-coinutils czkawka-cli czkawka-gui dolphin-emu dolphin-emu-avx-git dolphin-emu-git dolphin-emu-primehack-git dolphin-emu-tool doomseeker dovecot dpkg dra elinks emby-ffmpeg espup ext4magic fbreader felix-rs ffmpeg ffmpeg-full ffmpeg-obs ffmpeg4.4 file flightcore fnm fox freeciv freetype2 fsarchiver gambas3-gb-compress gimp git-cinnabar gnupg goldendict-webengine-pr-git goxlr-utility graphicsmagick grass gst-plugins-bad gst-plugins-good gtkwave gtkwave-gtk3-tcl handbrake handbrake-cli handbrake-nvenc-cli haskell-bz2 haskell-bzlib httplz imagemagick imagemagick-full-git imlib2 irrlicht irrlicht-docs iverilog iverilog-git jellyfin-ffmpeg karchive karchive5 krokiet lib32-bzip2 libarchive libelf libewf libgringotts libgsf libmirage libosmium libretro-dolphin libretro-play libsolv libunarr libzip links ludusavi lynx mairix mariadb mariadb-lts maturin miktex miniserve minizip-ng miopen-hip mpd munge netcdf nix-init openpgp-ca openpgp-ca-restd ouch pacman-bintrans pacman-bintrans-tools partimage pbzip2 pcre pcre2 perl-compress-bzip2 pgpdump pixi pyflow pypy pypy3 python python-cramjam python-johnnycanencrypt python-osmium python-pysequoia python-pytables python39 qemu-block-dmg qemu-git qemu-headless-git qsopt-ex quilt r rage-encryption rattler-build rbutil reprepro rocksdb routino rye sentry-cli sequoia-chameleon-gnupg sequoia-sop sequoia-sq sh4d0wup simutrans slade sonic-visualiser ssh-openpgp-auth sshd-openpgp-auth tarsnap thunderbird tracktion-waveform ugrep unarchiver unzip wasm-pack wget2 wit yelp zeroc-ice zip +Optional For : 3cpio android-ndk atool binwalk cgit cgit-aurweb diffoscope dracut mkinitcpio unp xarchiver xarchiver-gtk2 +Conflicts With : None +Replaces : None +Download Size : 58.38 KiB +Installed Size : 145.00 KiB +Packager : Christian Hesse +Build Date : Mon 18 Mar 2024 06:29:13 AM +08 +MD5 Sum : 93dc36daf50abe23faeafbfb3c8c828f +SHA-256 Sum : 8779003d659c441b952095c19907603a738c1366f25cc51be3fd139fa4e95748 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : ca-certificates +Version : 20240618-1 +Description : Common CA certificates - default providers +Architecture : any +URL : https://src.fedoraproject.org/rpms/ca-certificates +Licenses : GPL-2.0-or-later +Groups : None +Provides : None +Depends On : ca-certificates-mozilla +Optional Deps : None +Required By : arch-audit aria2 certbot cloud-image-utils curl curl-rustls ffsend-bin gitlab-runner godot godot-mono google-webdesigner inadyn lib32-neon mono neon netbird-management perl-lwp-protocol-https perl-mozilla-ca python-certifi python-httplib2 python-requests qca-qt5 qca-qt6 system76-firmware wget2 +Optional For : lib32-openssl libpurple libressl mkosi-git neomutt openssl openssl-1.0 surf-git trojan wget +Conflicts With : ca-certificates-cacert<=20140824-4 +Replaces : ca-certificates-cacert<=20140824-4 +Download Size : 2.08 KiB +Installed Size : 0.00 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Wed 19 Jun 2024 02:36:40 AM +08 +MD5 Sum : None +SHA-256 Sum : 982005bd5ecc998c05f561b57bb58b4457407779727e3c3d59e926d34a8b0712 +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : ca-certificates-mozilla +Version : 3.104-1 +Description : Mozilla's set of trusted CA certificates +Architecture : x86_64 +URL : https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS +Licenses : MPL-2.0 +Groups : None +Provides : None +Depends On : ca-certificates-utils>=20181109-3 +Optional Deps : None +Required By : ca-certificates +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 387.42 KiB +Installed Size : 1069.00 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Sat 31 Aug 2024 07:36:20 AM +08 +MD5 Sum : None +SHA-256 Sum : 37e07a5d347ff9c68157bec8729c4c50f6fa538bbdb612e03166cf59ce8ca3ff +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : ca-certificates-utils +Version : 20240618-1 +Description : Common CA certificates (utilities) +Architecture : any +URL : https://src.fedoraproject.org/rpms/ca-certificates +Licenses : GPL-2.0-or-later +Groups : None +Provides : ca-certificates ca-certificates-java +Depends On : bash coreutils findutils p11-kit +Optional Deps : None +Required By : arch-audit aria2 ca-certificates-icp_br ca-certificates-mozilla certbot cloud-image-utils curl curl-rustls ffsend-bin gitlab-runner godot godot-mono google-webdesigner inadyn jdk jdk-openjdk jdk11-openjdk jdk17-openjdk jdk21-openjdk jre jre-openjdk jre-openjdk-headless jre11-openjdk jre11-openjdk-headless jre17-openjdk jre17-openjdk-headless jre21-openjdk jre21-openjdk-headless jre8 jre8-openjdk-headless lib32-neon mono neon netbird-management perl-lwp-protocol-https perl-mozilla-ca python-certifi python-httplib2 python-requests qca-qt5 qca-qt6 system76-firmware wget2 +Optional For : lib32-openssl libpurple libressl mkosi-git neomutt openssl openssl-1.0 surf-git trojan wget +Conflicts With : ca-certificates-java +Replaces : ca-certificates-java +Download Size : 10.81 KiB +Installed Size : 13.63 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Wed 19 Jun 2024 02:36:40 AM +08 +MD5 Sum : None +SHA-256 Sum : aabd5b2b7030716ccdd465d607e734e851fe4a01adf8293a3968fe22eb89ce9b +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : coreutils +Version : 9.5-2 +Description : The basic file, shell and text manipulation utilities of the GNU operating system +Architecture : x86_64 +URL : https://www.gnu.org/software/coreutils/ +Licenses : GPL-3.0-or-later GFDL-1.3-or-later +Groups : None +Provides : None +Depends On : acl attr glibc gmp libcap openssl +Optional Deps : None +Required By : afl-utils alpine-chroot-install ant arch-install-scripts archinstall base bashtop bats bootiso ca-certificates-utils checksec devtools diffoscope dkms dmenu dracut garuda-update gradle gradle-doc gradle-src gradle7 gradle7-doc gradle7-src grml-zsh-config gsocket gzip hwdetect i3lock-fancy-git inxi java-runtime-common keycloak linux linux-cachyos linux-cachyos-bore linux-cachyos-lts linux-clear linux-hardened linux-lqx linux-lts linux-lts515 linux-mainline linux-mainline-x64v3 linux-nitrous linux-rt linux-rt-lts linux-vfio linux-vfio-lts linux-vfio-x64v3 linux-xanmod-edge-x64v3 linux-xanmod-lts linux-xanmod-rt linux-xanmod-x64v2 linux-zen linux-znver2 linux-znver3 linux-znver4 luarocks mariadb mariadb-lts minieap mintstick mkinitcpio netctl p11-kit pacman pacman-git perf perl-libintl-perl posix posix-xsi quickemu rpmextract tblock-gui tdrop testssl.sh usbctl util-linux wikiman xsudo-git zshdb +Optional For : usbutils +Conflicts With : None +Replaces : None +Download Size : 2.75 MiB +Installed Size : 15.87 MiB +Packager : Tobias Powalowski +Build Date : Fri 30 Aug 2024 07:57:19 PM +08 +MD5 Sum : None +SHA-256 Sum : 6038dfa8f09380d65d3df7119b19dde96ab20f983b95b1056861aae1fef947b5 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : cracklib +Version : 2.10.2-1 +Description : Password Checking Library +Architecture : x86_64 +URL : https://github.com/cracklib/cracklib +Licenses : GPL-2.0-or-later +Groups : None +Provides : None +Depends On : glibc zlib +Optional Deps : None +Required By : 389-ds-base deepin-pw-check lib32-cracklib libpwquality +Optional For : mariadb mariadb-lts xkcdpass +Conflicts With : None +Replaces : None +Download Size : 275.46 KiB +Installed Size : 925.81 KiB +Packager : Tobias Powalowski +Build Date : Tue 06 Aug 2024 02:39:50 PM +08 +MD5 Sum : None +SHA-256 Sum : 692c691ea08066bac8ae2423dd6f332a3e1bb040f9ae615e206d5ad13df98175 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : cryptsetup +Version : 2.7.5-1 +Description : Userspace setup tool for transparent encryption of block devices using dm-crypt +Architecture : x86_64 +URL : https://gitlab.com/cryptsetup/cryptsetup/ +Licenses : GPL +Groups : None +Provides : libcryptsetup.so=12-64 +Depends On : device-mapper libdevmapper.so=1.02-64 openssl popt util-linux-libs libuuid.so=1-64 json-c libjson-c.so=5-64 argon2 libargon2.so +Optional Deps : None +Required By : archinstall deepin-file-manager libblockdev-crypto luksmeta mkinitcpio-utils osquery pam_mount stratisd systemd tomb-git volume_key yubikey-full-disk-encryption zulucrypt +Optional For : clevis dracut hwdetect mkinitcpio-systemd-tool mkosi-git rauc +Conflicts With : mkinitcpio<38-1 +Replaces : None +Download Size : 753.85 KiB +Installed Size : 2997.09 KiB +Packager : Christian Hesse +Build Date : Tue 03 Sep 2024 06:09:57 PM +08 +MD5 Sum : None +SHA-256 Sum : 7f603f586ccb21d946408ffe2f6011a3b0025e3051dfa70dbedb02a8a96476f3 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : curl +Version : 8.9.1-2 +Description : command line tool and library for transferring data with URLs +Architecture : x86_64 +URL : https://curl.se/ +Licenses : MIT +Groups : None +Provides : libcurl.so=4-64 +Depends On : ca-certificates brotli libbrotlidec.so=1-64 krb5 libgssapi_krb5.so=2-64 libidn2 libidn2.so=0-64 libnghttp2 libnghttp2.so=14-64 libnghttp3 libnghttp3.so=9-64 libpsl libpsl.so=5-64 libssh2 libssh2.so=1-64 zlib libz.so=1-64 zstd libzstd.so=1-64 openssl libcrypto.so=3-64 libssl.so=3-64 +Optional Deps : None +Required By : 0ad across ani-cli appstream appstream-glib arch-update archlinux-repro ardour ardour-git ario asdf-vm asymptote audacious-plugins aura aura-git auracle-git aurutils aws-sdk-cpp barrier-headless betterdiscordctl-git boinc boinc-nox bootiso btfs cairo-dock cargo-c cargo-clone cargo-crev cargo-geiger cargo-generate cargo-outdated cargo-shuttle cargo-tarpaulin cargo-udeps castget casync cclive cemu-git cfitsio choosenim clamav clamav-unofficial-sigs cmake cmake-git coeurl conky cryfs csound curlftpfs curlie ddclient ddnet dehydrated devtools dolphin-emu dolphin-emu-avx-git dolphin-emu-git dolphin-emu-primehack-git dolphin-emu-tool dovecot dtools dub efl element elinks emulationstation espflash espup ettercap ettercap-gtk exiv2 facter fbreader fcitx-cloudpinyin fcitx5-chinese-addons feh fisher flashplugin flatpak flatpak-builder flickcurl freeciv freeipa-client freeoffice ftl-sdk fwupd gambas3-gb-net-curl gammu gdal gerbera giac git git-cinnabar github-desktop gitlab-runner glyr gmic gmt gnome-notes gpredict gst-plugins-bad guitarix hblock hcxtools hlsdl html-xml-utils hurl hw-probe icaclient imhex jp2a kcov kicad kicad-git klavaro kodi kodi-git kodi-gles kodi-stable-git lastpass-cli leatherman lib32-curl libclastfm libcmis libcurl-compat libcurl-gnutls libdatovka libelf libgphoto2 libindi libkiwix libkolabxml liblphobos libmediainfo libmodsecurity libnpupnp liboauth libofa libofx libproxy libqalculate libquvi librdkafka libreoffice-dev-bin libreoffice-fresh libreoffice-still librepo libresprite-git libreswan libsixel libupnpp libxmlrpc llvm-libs lnav lokinet luarocks lutris lutris-git lv2lint lxpanel lxpanel-gtk3 manaplus mcpelauncher-linux-git megaglest megatools mesonlsp micromamba minetest minetest-git minetest-server minetest-server-git moc-pulse mongodb mpd mpdscribble musikcube mysql-workbench ncmpcpp netcdf netcdf-cxx netcdf-fortran netcdf-fortran-openmpi netcdf-openmpi netsurf networkmanager networkmanager-iwd newsboat nheko-git nix nix-init nm-cloud-setup nm-iwd-cloud-setup nspluginwrapper ob-xd-lv2 ob-xd-standalone ob-xd-vst3 obs-backgroundremoval obs-streamfx-unstable obs-studio obs-studio-git obs-studio-stable obs-studio-tytan652 octave odamex-git odr-dabmux-git onlyoffice-bin openrct2 opl-synth osbuild osdlyrics ostree p2pool pacman pacman-git pacredir pacrunner pakka passenger path-of-building-community-git percona-server phoenicis-playonlinux php php-legacy pianobar pkgfile pokerth polybar polybar-git poppler powerdns powerdns-recursor profanity profanity-gtk proj psensor python-pycurl python-tensorflow python-tensorflow-cuda python-tensorflow-opt python-tensorflow-opt-cuda qemu-block-curl qemu-git qemu-headless-git qemu-tools qmmp r raptor rauc reapack release-plz remmina rhonabwy rink rng-tools roswell rpcs3-git rpi-imager rtorrent ruby-patron rust rustup rustup-git s3fs-fuse sabnzbd sane scummvm scummvm-git seadrive-daemon sentry-native sheldon siril-git slurm-llnl smooth softmaker-office-2024-bin soundwire speedtest++ spring springlobby srb2kart sssd steam steam-native-runtime strongswan sunshine supertux supertuxkart sword sysdig syslog-ng tensorflow tensorflow-cuda tensorflow-opt tensorflow-opt-cuda termv-git tesseract tinyemu toxic tpm2-tools tpm2-tss transmission-cli transmission-gtk transmission-qt transmission-remote-gtk trurl typst-lsp uget ulfius umu-launcher unrealircd vagrant vcpkg viking virtualbox virtualbox-kvm vorbis-tools warsow wasm-pack wcurl weechat wpscan wxwidgets-common xerces-c xfce4-screenshooter xine-ui xonotic xrootd xtrabackup ytfzf ytfzf-git yubico-c yubico-c-client zabbix-agent zabbix-agent2 zabbix-proxy zabbix-server zapret-common-git zellij +Optional For : apache bashtop claws-mail clevis curlew deadbeef deadbeef-git fio freeradius gap-packages gcin gimp-git gpgit inxi ispin mariadb mariadb-lts mkinitcpio-archiso mkosi-git monitoring-plugins nextcloud opensips pciutils surf-git systemd tor-router translate-shell vicious wps-office wps-office-cn xmms2 +Conflicts With : None +Replaces : None +Download Size : 1112.47 KiB +Installed Size : 1916.32 KiB +Packager : Leonidas Spyropoulos +Build Date : Mon 05 Aug 2024 03:53:07 PM +08 +MD5 Sum : None +SHA-256 Sum : 816d521855ba751ad814499e4fc68a00d49182a1e622307e5d33a873f0fbc0a4 +Signatures : 244740D17C7FD0EC +Extended Data : None + +Repository : core +Name : dash +Version : 0.5.12-1 +Description : POSIX compliant shell that aims to be as small as possible +Architecture : x86_64 +URL : http://gondor.apana.org.au/~herbert/dash/ +Licenses : BSD +Groups : None +Provides : None +Depends On : glibc libedit libedit.so=0-64 +Optional Deps : None +Required By : dashbinsh +Optional For : dracut +Conflicts With : None +Replaces : None +Download Size : 82.51 KiB +Installed Size : 153.90 KiB +Packager : Levente Polyak +Build Date : Sat 25 Feb 2023 12:34:46 AM +08 +MD5 Sum : 0368b51e48997a1b3e23faca23101eaa +SHA-256 Sum : 28622213069475e022656a627bff1891e8ee986d7b539eb4f3af620a8c7e27f4 +Signatures : FC1B547C8D8172C8 +Extended Data : None + +Repository : core +Name : db +Version : 6.2.32-1 +Description : The Berkeley DB embedded database system +Architecture : x86_64 +URL : https://www.oracle.com/technology/software/products/berkeley-db/index.html +Licenses : AGPL3 +Groups : None +Provides : None +Depends On : gcc-libs sh +Optional Deps : None +Required By : apt isync opendkim python-bsddb +Optional For : apr-util +Conflicts With : None +Replaces : None +Download Size : 1360.35 KiB +Installed Size : 7336.65 KiB +Packager : Frederik Schwan +Build Date : Sun 11 Dec 2022 02:39:34 AM +08 +MD5 Sum : dac58b30bebd81ea97e54b23eb6a2d74 +SHA-256 Sum : a0013dbb897620edca8736676b7b2ee4b854ef9479a1555f69557cac58187581 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : db5.3 +Version : 5.3.28-5 +Description : The Berkeley DB embedded database system v5.3 +Architecture : x86_64 +URL : https://www.oracle.com/technology/software/products/berkeley-db/index.html +Licenses : custom:sleepycat +Groups : None +Provides : None +Depends On : gcc-libs sh +Optional Deps : None +Required By : 389-ds-base bitcoin-daemon bitcoin-qt bitcoin-tx bogofilter bogofilter-db inn jack2 jnettop perl perl-berkeleydb reprepro swi-prolog +Optional For : bogofilter-kyotocabinet bogofilter-lmdb bogofilter-sqlite iproute2 +Conflicts With : None +Replaces : None +Download Size : 1212.97 KiB +Installed Size : 6609.88 KiB +Packager : Frederik Schwan +Build Date : Wed 01 May 2024 11:27:30 PM +08 +MD5 Sum : None +SHA-256 Sum : edb56c7d84c438b387a53ee414daff2611f62e4804ec8f2995e17b34437c0a4c +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : dbus +Version : 1.14.10-2 +Description : Freedesktop.org message bus system +Architecture : x86_64 +URL : https://wiki.freedesktop.org/www/Software/dbus/ +Licenses : AFL-2.1 OR GPL-2.0-or-later +Groups : None +Provides : libdbus libdbus-1.so=3-64 +Depends On : audit libcap-ng expat systemd-libs libaudit.so=1-64 libcap-ng.so=0-64 libexpat.so=1-64 libsystemd.so=0-64 +Optional Deps : None +Required By : a2jmidid aida-x-clap aida-x-lv2 aida-x-standalone aida-x-vst aida-x-vst3 android-emulator ardour ardour-git at-spi2-core avahi awesome awesome-git blockbench-bin bluez bluez-cups bluez-deprecated-tools bluez-obex bluez-utils bolt-launcher brickadia-launcher brltty cardinal-clap cardinal-lv2 cardinal-standalone cardinal-vst cardinal-vst3 cdemu-daemon cef-minimal-obs-bin chromium cloudflare-warp-bin colord compiz-core compiz-gtk connman connman-git consolekit corectrl cosmic-applets cosmic-applets-git cups darling-bin dbus-broker-units dbus-c++ dbus-daemon-units dbus-glib deskreen displaycal dnsmasq dropbox dunst efl emacs emacs-nativecomp emacs-ng emacs-nox emacs-wayland emby-theater eruption fcitx filezilla firedragon firefox firefox-developer-edition firefox-esr firefox-nightly firefox-wayland-hg flatpak fluidsynth fnott fprintd fyi gambas3-gb-dbus gamemode gnome-mplayer gnome-online-accounts gogglesmm gpu-screen-recorder-git hplip imhex jack2 jack2-dbus kdeconnect keymapper-git kitty kitty-git kitty-shell-integration lib32-dbus libcupsfilters libdecor libglib-testing libgnome-keyring libnih libnvme libpcap libpulse libreoffice-fresh libreoffice-still librewolf libteam libvirt-dbus light-locker malcontent mangohud mangohud-git mmsd-git modrinth-app-git mozillavpn mozillavpn-git mpd mullvad-browser-bin mullvad-vpn-cli ncspot neard obs-studio-tytan652 ofono osquery pacrunner pantheon-default-settings pantheon-settings-daemon perl-net-dbus picom picom-git pipewire pipewire-audio pipewire-jack-client pipewire-media-session pipewire-pulse pop-bin pop-launcher pop-launcher-git pycharm-community-eap python-dasbus python-dbus python-dbus-fast python-dbus-next qt6-base qt6-webengine quota-tools reboot-arch-btw rescrobbled-git retroarch rtkit runst signal-desktop signal-desktop-beta slurm-llnl snapper songrec sonyheadphonesclient-bin spice-vdagent spotify-player spotifyd steam steam-native-runtime stratisd strawberry-full-git strawberry-git subversion swaylock-fprintd-git switchboard-plug-power system76-firmware system76-power systemd telepathy-glib telepathy-mission-control termius termscp termusic thunderbird thunderbird-beta tiny toastify tradingview udisks2 umu-launcher ungoogled-chromium vita3k-avx-git vita3k-git vlc vlc-luajit wesnoth weston wezterm-git widelands wingpanel-indicator-notifications wired wldash wluma wpa_supplicant x2goserver xdg-dbus-proxy xorg-server xorg-server-git zam-plugins-clap zam-plugins-lv2 zam-plugins-standalone zam-plugins-vst zam-plugins-vst3 zbar zoom +Optional For : alsa-plugins claws-mail deadbeef deadbeef-git fastfetch picom picom-git utox +Conflicts With : libdbus +Replaces : libdbus +Download Size : 304.86 KiB +Installed Size : 910.57 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Fri 05 Jan 2024 11:13:33 PM +08 +MD5 Sum : c08fa536e28863e35a9591196876faf7 +SHA-256 Sum : 28b519535496a8c8b7885fb2d4c089ca98e34250dfc468aad2267c639026f219 +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : dbus-broker +Version : 36-4 +Description : Linux D-Bus Message Broker +Architecture : x86_64 +URL : https://github.com/bus1/dbus-broker/wiki +Licenses : Apache-2.0 +Groups : None +Provides : None +Depends On : audit libcap-ng expat systemd-libs libaudit.so=1-64 libcap-ng.so=0-64 libexpat.so=1-64 libsystemd.so=0-64 +Optional Deps : None +Required By : dbus-broker-units +Optional For : at-spi2-core +Conflicts With : None +Replaces : None +Download Size : 144.96 KiB +Installed Size : 353.90 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Tue 23 Jul 2024 03:09:50 AM +08 +MD5 Sum : None +SHA-256 Sum : 557a742031b10e6d8b76ce2bb98298dbb001ac76b68ee003417f6fceb9ae65bd +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : dbus-broker-units +Version : 36-4 +Description : Linux D-Bus Message Broker - Service units +Architecture : x86_64 +URL : https://github.com/bus1/dbus-broker/wiki +Licenses : Apache-2.0 +Groups : None +Provides : dbus-units +Depends On : dbus dbus-broker +Optional Deps : None +Required By : dbus-units systemd +Optional For : None +Conflicts With : dbus-daemon-units +Replaces : None +Download Size : 2.38 KiB +Installed Size : 0.00 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Tue 23 Jul 2024 03:09:50 AM +08 +MD5 Sum : None +SHA-256 Sum : bb97bd8f943e581a6c02be0aea368c2faa035f709406bffed77e807e96882e2f +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : dbus-daemon-units +Version : 1.14.10-2 +Description : Freedesktop.org message bus system - Service units +Architecture : x86_64 +URL : https://wiki.freedesktop.org/www/Software/dbus/ +Licenses : AFL-2.1 OR GPL-2.0-or-later +Groups : None +Provides : dbus-units +Depends On : dbus +Optional Deps : None +Required By : systemd +Optional For : None +Conflicts With : dbus-broker-units +Replaces : None +Download Size : 2.87 KiB +Installed Size : 0.80 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Fri 05 Jan 2024 11:13:33 PM +08 +MD5 Sum : 79259a029b856b6958749db1a3d0f192 +SHA-256 Sum : 61e184d5fae5ec13073525c6f17c2a630b6892dc8847585d2e454e590dbe5919 +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : dbus-docs +Version : 1.14.10-2 +Description : Freedesktop.org message bus system - Documentation +Architecture : x86_64 +URL : https://wiki.freedesktop.org/www/Software/dbus/ +Licenses : AFL-2.1 OR GPL-2.0-or-later +Groups : None +Provides : None +Depends On : None +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 1329.87 KiB +Installed Size : 21471.26 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Fri 05 Jan 2024 11:13:33 PM +08 +MD5 Sum : 1e71d48059b0d86d21a3af48ce4e8191 +SHA-256 Sum : faed9464ab5a4bfb63ea9a585025a7e0b9fc7d41433a7a75c96ae3d6cd4d3ae1 +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : dbus-units +Version : 36-4 +Description : D-Bus service units (default provider) +Architecture : x86_64 +URL : https://github.com/bus1/dbus-broker/wiki +Licenses : CC0-1.0 +Groups : None +Provides : None +Depends On : dbus-broker-units +Optional Deps : None +Required By : systemd +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 2.14 KiB +Installed Size : 0.00 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Tue 23 Jul 2024 03:09:50 AM +08 +MD5 Sum : None +SHA-256 Sum : eb7a93b615db7183fde62723f8ccb94094ceaab53782cbd63c159ae30ac5ce8a +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : debugedit +Version : 5.0-6 +Description : Tool to mangle source locations in .debug files +Architecture : x86_64 +URL : https://sourceware.org/debugedit/ +Licenses : GPL-3.0-or-later GPL-2.0-or-later LGPL-2.0-or-later +Groups : None +Provides : None +Depends On : glibc libelf +Optional Deps : None +Required By : base-devel flatpak-builder zotero-bin +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 44.01 KiB +Installed Size : 105.24 KiB +Packager : Morten Linderud +Build Date : Sat 04 May 2024 12:15:41 AM +08 +MD5 Sum : None +SHA-256 Sum : dfd548598504d5e1f12296dc49bbbc43976702fdf2700cdd93404e3b4a1992c4 +Signatures : 9C02FF419FECBE16 +Extended Data : None + +Repository : core +Name : debuginfod +Version : 0.191-4 +Description : Handle ELF object files and DWARF debugging information (debuginfod) +Architecture : x86_64 +URL : https://sourceware.org/elfutils/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : gcc-libs glibc libarchive libarchive.so=13-64 libelf=0.191 libmicrohttpd libmicrohttpd.so=12-64 sqlite libsqlite3.so=0-64 +Optional Deps : elfutils=0.191: for translations +Required By : pwndbg valgrind +Optional For : binutils delve +Conflicts With : None +Replaces : None +Download Size : 135.62 KiB +Installed Size : 339.33 KiB +Packager : Frederik Schwan +Build Date : Tue 23 Jul 2024 01:43:16 AM +08 +MD5 Sum : None +SHA-256 Sum : 337ddacd32f8dcc2f8dcd69232d4c9091ce5617f334d483e5216496dca6e1e4b +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : device-mapper +Version : 2.03.26-1 +Description : Device mapper userspace library and tools +Architecture : x86_64 +URL : http://sourceware.org/dm/ +Licenses : GPL2 LGPL2.1 +Groups : None +Provides : libdevmapper.so=1.02-64 libdevmapper-event.so=1.02-64 +Depends On : glibc systemd-libs libudev.so=1-64 +Optional Deps : None +Required By : cri-o cryptsetup dmraid docker grub grub-improved-luks2-git grub-silent libblockdev-dm libblockdev-lvm libblockdev-mpath libldm lvm2 mkinitcpio-archiso multipath-tools nfs-utils osquery parted podman skopeo tcplay veracrypt xfsprogs +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 277.59 KiB +Installed Size : 756.56 KiB +Packager : Christian Hesse +Build Date : Sun 25 Aug 2024 03:20:53 AM +08 +MD5 Sum : None +SHA-256 Sum : 6ed7fd89d8824cb83f95c7ec55c00485865e836ed30a5c55cc6425c5234b5585 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : dialog +Version : 1:1.3_20240619-2 +Description : A tool to display dialog boxes from shell scripts +Architecture : x86_64 +URL : https://invisible-island.net/dialog/ +Licenses : LGPL2.1 +Groups : None +Provides : libdialog.so=15-64 +Depends On : sh ncurses +Optional Deps : None +Required By : python-pythondialog +Optional For : arch-wiki-lite etc-update gammu netctl texlive-binextra +Conflicts With : None +Replaces : None +Download Size : 199.41 KiB +Installed Size : 463.88 KiB +Packager : Evangelos Foutras +Build Date : Mon 01 Jul 2024 02:03:02 AM +08 +MD5 Sum : None +SHA-256 Sum : fc0e81648bd6c38e1ff32db8b5c21ad33bfc8a345d30b0a9be4dcef768c8f6dd +Signatures : 51E8B148A9999C34 +Extended Data : None + +Repository : core +Name : diffutils +Version : 3.10-1 +Description : Utility programs used for creating patch files +Architecture : x86_64 +URL : https://www.gnu.org/software/diffutils +Licenses : GPL3 +Groups : None +Provides : None +Depends On : glibc bash +Optional Deps : None +Required By : aconfmgr-git arch-update archlinux-repro autoconf btrfs-assistant btrfs-assistant-git colordiff dehydrated devtools diffoscope etckeeper mediawiki mkinitcpio pacdiff-pacman-hook-git pkgdiff posix quilt rcs steam umu-launcher usbctl +Optional For : gzip khard pace pacman-contrib qmk terraform +Conflicts With : None +Replaces : None +Download Size : 344.62 KiB +Installed Size : 1518.90 KiB +Packager : Sébastien Luttringer +Build Date : Wed 24 May 2023 03:47:08 AM +08 +MD5 Sum : bd4ad1c815ab296ddeadef8ec6e859a1 +SHA-256 Sum : 88e4705cd3d078c250b6ce94ccdabc48da1a093aa64c0fb0cb832c6ce4797e2d +Signatures : E5BB298470AD4E41 +Extended Data : None + +Repository : core +Name : ding-libs +Version : 0.6.2-2 +Description : "DING is not GNU" helper libraries for SSSD and FreeIPA +Architecture : x86_64 +URL : https://github.com/SSSD/ding-libs +Licenses : GPL-3.0-or-later LGPL-3.0-or-later +Groups : None +Provides : None +Depends On : glibc +Optional Deps : None +Required By : gssproxy sscg sssd +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 124.80 KiB +Installed Size : 656.41 KiB +Packager : Andreas Radke +Build Date : Sun 17 Mar 2024 04:54:54 PM +08 +MD5 Sum : 4e62db1a524ead54b52b59c12c12e0f9 +SHA-256 Sum : e72c72725452ec0287383e847e039777eed504ef1707f09101d795b429c50846 +Signatures : 94657AB20F2A092B +Extended Data : None + +Repository : core +Name : dmraid +Version : 1.0.0.rc16.3-15 +Description : Device mapper RAID interface +Architecture : x86_64 +URL : https://people.redhat.com/~heinzm/sw/dmraid/ +Licenses : GPL-2.0-only +Groups : None +Provides : None +Depends On : device-mapper>=2.0.54 +Optional Deps : None +Required By : None +Optional For : dracut +Conflicts With : mkinitcpio<0.7 +Replaces : None +Download Size : 121.92 KiB +Installed Size : 314.03 KiB +Packager : Tobias Powalowski +Build Date : Mon 01 Jul 2024 06:51:09 PM +08 +MD5 Sum : None +SHA-256 Sum : e9a661652d8e4076d2164b77c88f94ebd93dcf16dd66714513621b40e4de86b9 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : dnssec-anchors +Version : 20190629-4 +Description : DNSSEC trust anchors for the root zone +Architecture : any +URL : https://data.iana.org/root-anchors/ +Licenses : custom:none +Groups : None +Provides : None +Depends On : None +Optional Deps : None +Required By : bind knot-resolver ldns unbound +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 3.07 KiB +Installed Size : 0.79 KiB +Packager : Jelle van der Waa +Build Date : Thu 04 Jul 2024 04:15:16 AM +08 +MD5 Sum : None +SHA-256 Sum : 648ab7c4ac43421e6f8026128f84fdefcc5ebc0d171d6c723441e4d12c69048e +Signatures : C06086337C50773E +Extended Data : None + +Repository : core +Name : dosfstools +Version : 4.2-5 +Description : DOS filesystem utilities +Architecture : x86_64 +URL : https://github.com/dosfstools/dosfstools +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : glibc +Optional Deps : None +Required By : archinstall archiso archiso-git bootiso clonezilla distrobuilder libguestfs mintstick penguins-eggs refind ventoy-bin woeusb woeusb-ng +Optional For : gparted grub grub-improved-luks2-git grub-silent kpmcore libblockdev-fs mkosi-git rauc rpi-imager sedutil syslinux udisks2 +Conflicts With : None +Replaces : None +Download Size : 135.52 KiB +Installed Size : 409.22 KiB +Packager : Jelle van der Waa +Build Date : Sun 25 Aug 2024 02:52:04 AM +08 +MD5 Sum : None +SHA-256 Sum : 03a7d8bd939a80418d9744afad00c22b91c4b411bdf9662744647c383a0ec503 +Signatures : C06086337C50773E +Extended Data : None + +Repository : core +Name : e2fsprogs +Version : 1.47.1-4 +Description : Ext2/3/4 filesystem utilities +Architecture : x86_64 +URL : http://e2fsprogs.sourceforge.net +Licenses : GPL LGPL MIT +Groups : None +Provides : libcom_err.so=2-64 libe2p.so=2-64 libext2fs.so=2-64 libss.so=2-64 +Depends On : sh util-linux-libs +Optional Deps : lvm2: for e2scrub + util-linux: for e2scrub + smtp-forwarder: for e2scrub_fail script +Required By : apptainer archinstall archiso archiso-git bind bootiso deepin-clone distrobuilder ext4magic extundelete freerdp fsarchiver fuse-ext2-git fuse2fs krb5 lib32-e2fsprogs libblockdev-fs mc mintstick nfs-utils osbuild quota-tools schroot supermin termius tomb-git +Optional For : btrfs-progs diffoscope dracut kpmcore mkosi-git pjproject rauc udisks2 +Conflicts With : None +Replaces : None +Download Size : 1264.47 KiB +Installed Size : 5322.71 KiB +Packager : Christian Hesse +Build Date : Fri 24 May 2024 08:44:51 PM +08 +MD5 Sum : None +SHA-256 Sum : f72a32b7c97ab2dafff65d466d1b91243bf74b55fd5e975584ab4d6299ea13b9 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : efibootmgr +Version : 18-3 +Description : Linux user-space application to modify the EFI Boot Manager +Architecture : x86_64 +URL : https://github.com/rhboot/efibootmgr +Licenses : GPL-2.0-or-later +Groups : None +Provides : None +Depends On : glibc popt efivar libefiboot.so=1-64 libefivar.so=1-64 +Optional Deps : None +Required By : grub-silent refind system76-firmware +Optional For : grub grub-improved-luks2-git hw-probe memtest86-efi rauc syslinux +Conflicts With : None +Replaces : None +Download Size : 30.09 KiB +Installed Size : 83.71 KiB +Packager : David Runge +Build Date : Wed 13 Mar 2024 05:47:21 PM +08 +MD5 Sum : b28be257dd69d2c324267ccad6b1bab4 +SHA-256 Sum : 6c8024c4b0abbdc3ff87a582ca1730448ef462015d3d0e97249d988f59c66c65 +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : efivar +Version : 39-1 +Description : Tools and libraries to work with EFI variables +Architecture : x86_64 +URL : https://github.com/rhboot/efivar +Licenses : LGPL-2.1-or-later +Groups : None +Provides : libefiboot.so=1-64 libefisec.so=1-64 libefivar.so=1-64 +Depends On : glibc +Optional Deps : None +Required By : dbxtool efibooteditor efibooteditor-qt5 efibootmgr mokutil pesign +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 144.70 KiB +Installed Size : 541.61 KiB +Packager : David Runge +Build Date : Thu 01 Feb 2024 05:57:25 PM +08 +MD5 Sum : 06ab87bfdac70ba57b6626951a6f9000 +SHA-256 Sum : 16422088da42f1ac562851d06ce86ad659f0775c86d9b1f54fa5a7067f9d636a +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : elfutils +Version : 0.191-4 +Description : Handle ELF object files and DWARF debugging information (utilities) +Architecture : x86_64 +URL : https://sourceware.org/elfutils/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : gcc-libs glibc libarchive libarchive.so=13-64 libelf=0.191 sh +Optional Deps : None +Required By : avrdude babeltrace flatpak-builder hotspot kcov libabigail libdwarf ltrace namcap perf pwninit rpm-tools systemtap-git +Optional For : debuginfod dracut +Conflicts With : None +Replaces : None +Download Size : 583.84 KiB +Installed Size : 3576.72 KiB +Packager : Frederik Schwan +Build Date : Tue 23 Jul 2024 01:43:16 AM +08 +MD5 Sum : None +SHA-256 Sum : ecd122522f2abfa532173b36897db0986e586a33198e2b0862e5205b3d382c22 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : expat +Version : 2.6.3-2 +Description : An XML parser library +Architecture : x86_64 +URL : https://libexpat.github.io/ +Licenses : MIT +Groups : None +Provides : libexpat.so=1-64 +Depends On : glibc +Optional Deps : None +Required By : aarch64-linux-gnu-gdb android-emulator apr-util arm-none-eabi-gdb audacity augustus avahi avr-gdb blender blockbench-bin boca boinctui bolt-launcher brltty calf cef-minimal-obs-bin clasp-cl-git cmake dbus dbus-broker dbus-glib deskreen digikam dovecot ejabberd elinks emby-ffmpeg emby-theater exempi exiv2 fontconfig fpc gdal gdb git insight-toolkit jack2-dbus lapce lapce-git lftp lib32-expat libcomps libdatovka libdom libmesode libnpupnp libofa libosmium libreoffice-fresh libreoffice-still libsolv libstrophe libupnpp libva-mesa-driver libwmf lm32-elf-gdb lua-expat lua51-expat lua52-expat lua53-expat mame mesa mesa-tkg-git mesa-vdpau miktex mpd mysql-workbench neon neovide nominatim obs-studio-tytan652 oculante opencl-clover-mesa opencl-rusticl-mesa or1k-elf-gdb osm2pgsql paraview perl-xml-parser polkit polkit-consolekit pop-bin ppc64le-elf-gdb profanity profanity-gtk pypy pypy3 python python-astropy python-osmium python39 qgis qt6-webengine rfdump riscv32-elf-gdb riscv64-elf-gdb riscv64-linux-gnu-gdb rocm-gdb sdbus-cpp sdbus-cpp-doc sh2-elf-gdb signal-desktop signal-desktop-beta skia-sharp snapcast subversion termius tradingview vmware-horizon-client vulkan-intel vulkan-nouveau vulkan-radeon vulkan-swrast vulkan-virtio wayland wayland-chromium wayland-git wxwidgets-common zeroc-ice +Optional For : dbus-c++ unbound +Conflicts With : None +Replaces : None +Download Size : 113.25 KiB +Installed Size : 426.08 KiB +Packager : David Runge +Build Date : Thu 05 Sep 2024 01:19:42 AM +08 +MD5 Sum : None +SHA-256 Sum : 6487b7be759572043cf59b7999883be027025c74f003fbca1b5203f1236b181f +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : fakeroot +Version : 1.36-1 +Description : Tool for simulating superuser privileges +Architecture : x86_64 +URL : https://tracker.debian.org/pkg/fakeroot +Licenses : GPL +Groups : None +Provides : None +Depends On : glibc filesystem sed util-linux sh +Optional Deps : None +Required By : anydesk-bin apptainer base-devel debtap devtools gnome-shell-extension-arch-update lib32-fakeroot reprotest +Optional For : bauh i3status-rust i3status-rust-git pacman-contrib pacseek +Conflicts With : None +Replaces : None +Download Size : 76.42 KiB +Installed Size : 141.27 KiB +Packager : Christian Hesse +Build Date : Fri 16 Aug 2024 01:17:43 AM +08 +MD5 Sum : None +SHA-256 Sum : 7bdd5f7580b20ab1574346c673a1d1a1c25aa9a902ef3b9e77944345a934e558 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : file +Version : 5.45-1 +Description : File type identification utility +Architecture : x86_64 +URL : https://www.darwinsys.com/file/ +Licenses : custom +Groups : None +Provides : libmagic.so=1-64 +Depends On : glibc zlib xz bzip2 libseccomp libseccomp.so=2-64 zstd libzstd.so=1-64 +Optional Deps : None +Required By : android-file-transfer atool base base-devel bootiso cardinal-clap cardinal-lv2 cardinal-standalone cardinal-vst cardinal-vst3 carla carla-git checksec clifm-git ext4magic feh file-roller gerbera haskell-magic hyprlock-git hyprpaper hyprpaper-git imhex keepalived libmodulemd lyx moc-pulse mpd-notification nano osquery pleroma-bin posix python-magic radare2 radare2-git ristretto rizin rpm-tools rspamd sox subversion util-linux vifm viking vis xdg-utils yara zathura zim-tools +Optional For : inxi libextractor ranger-git +Conflicts With : None +Replaces : None +Download Size : 395.80 KiB +Installed Size : 8534.61 KiB +Packager : Sébastien Luttringer +Build Date : Fri 28 Jul 2023 05:23:09 AM +08 +MD5 Sum : 5e1deb413f19678a56204e3d5e4b3f8a +SHA-256 Sum : 3ad37e246e893cdf59ae3af862d083c52087c47d3e6210996075ce77d41c5a1a +Signatures : E5BB298470AD4E41 +Extended Data : None + +Repository : core +Name : filesystem +Version : 2024.04.07-1 +Description : Base Arch Linux files +Architecture : any +URL : https://archlinux.org +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : iana-etc +Optional Deps : None +Required By : base dracut fakeroot glibc glibc-eac glibc-eac-roco mkinitcpio nethack plymouth +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 14.02 KiB +Installed Size : 22.33 KiB +Packager : David Runge +Build Date : Mon 08 Apr 2024 02:02:30 AM +08 +MD5 Sum : None +SHA-256 Sum : 07acb29650aeaee633edd337af5bfa9c3b3309c9f198e5bad145bd4bbdacc40a +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : findutils +Version : 4.10.0-2 +Description : GNU utilities to locate files +Architecture : x86_64 +URL : https://www.gnu.org/software/findutils/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : glibc sh +Optional Deps : None +Required By : anything-sync-daemon base base-devel bash-complete-alias bootiso ca-certificates-utils checksec devtools dracut gradle gradle-doc gradle-src gradle7 gradle7-doc gradle7-src java-runtime-common metals mkinitcpio penguins-eggs posix profile-cleaner profile-sync-daemon quilt rosenpass themix-icons-archdroid-git themix-icons-gnome-colors-git themix-icons-numix-git themix-icons-papirus-git themix-icons-suru-plus-aspromauros-git themix-icons-suru-plus-git themix-theme-materia-git themix-theme-oomox-git wikiman +Optional For : pacman-contrib +Conflicts With : None +Replaces : None +Download Size : 473.38 KiB +Installed Size : 1747.66 KiB +Packager : Tobias Powalowski +Build Date : Wed 28 Aug 2024 03:52:07 PM +08 +MD5 Sum : None +SHA-256 Sum : ba960db631b9e379076d24c336a190f7a9cdbafa2c928544fdb8a819d253d37d +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : flex +Version : 2.6.4-5 +Description : A tool for generating text-scanning programs +Architecture : x86_64 +URL : https://github.com/westes/flex +Licenses : custom +Groups : None +Provides : None +Depends On : glibc m4 sh +Optional Deps : None +Required By : at base-devel ccid lib32-flex ming posix-c-development splint +Optional For : bauh linux-atm +Conflicts With : None +Replaces : None +Download Size : 307.55 KiB +Installed Size : 955.65 KiB +Packager : David Runge +Build Date : Sat 18 Mar 2023 07:32:09 AM +08 +MD5 Sum : e9c3f6267b26aefea45af135185a98e2 +SHA-256 Sum : 9fdee0b311ce967927006f523e537670d1be94deee52e0115902cf6087c59e25 +Signatures : 139B09DA5BF0D338 +Extended Data : None + +Repository : core +Name : fuse2fs +Version : 1.47.1-4 +Description : Ext2/3/4 filesystem driver for FUSE +Architecture : x86_64 +URL : http://e2fsprogs.sourceforge.net +Licenses : GPL LGPL MIT +Groups : None +Provides : None +Depends On : fuse3 e2fsprogs +Optional Deps : None +Required By : apptainer +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 29.32 KiB +Installed Size : 71.58 KiB +Packager : Christian Hesse +Build Date : Fri 24 May 2024 08:44:51 PM +08 +MD5 Sum : None +SHA-256 Sum : 52c213add64f11e3e7adc87985dbe67ebef9b8b7379fe24ee3123b4188f990c0 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : gawk +Version : 5.3.0-2 +Description : GNU version of awk +Architecture : x86_64 +URL : https://www.gnu.org/software/gawk/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : awk +Depends On : sh glibc mpfr +Optional Deps : None +Required By : aconfmgr-git aerc arch-install-scripts autoconf autoconf-git base base-devel bashtop bootiso cfs-zen-tweaks chaotic-neofetch-git check checksec devtools dkms doas-sudo-shim dracut esh fricas garuda-update green-recorder green-recorder-git i3lock-fancy-git lynis mk-configure mkinitcpio pacman pacman-git pkgdiff posix prettyping quilt rofi-pass rosenpass sofia-sip syslog-ng tdrop termv-git translate-shell tuned txt2man ugit wikiman xschem yadm +Optional For : blesh-git geeqie geeqie-git khal mc texmacs vim-runtime +Conflicts With : None +Replaces : None +Download Size : 1323.54 KiB +Installed Size : 3401.80 KiB +Packager : Tobias Powalowski +Build Date : Wed 28 Aug 2024 04:51:08 PM +08 +MD5 Sum : None +SHA-256 Sum : 474af00363e5e3ac13e06d2b79e565766823b30edbef81b5abf2a09f1d5dd010 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : gc +Version : 8.2.6-1 +Description : A garbage collector for C and C++ +Architecture : x86_64 +URL : https://www.hboehm.info/gc/ +Licenses : LicenseRef-GC MIT +Groups : None +Provides : None +Depends On : gcc-libs +Optional Deps : None +Required By : asymptote bigloo crystal guile guile2.2 inkscape libhomfly neko nix poke shards w3m +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 234.72 KiB +Installed Size : 771.88 KiB +Packager : Frederik Schwan +Build Date : Sun 04 Feb 2024 06:30:33 PM +08 +MD5 Sum : 903a28bfd90dcf6e2b41b76e989934af +SHA-256 Sum : 6210a1e7e00d3162f175f9ab318a3da928495210b1ea411dcb66bf5e1f382daf +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc +Version : 14.2.1+r32+geccf707e5ce-1 +Description : The GNU Compiler Collection - C and C++ frontends +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : gcc-multilib +Depends On : gcc-libs=14.2.1+r32+geccf707e5ce-1 binutils>=2.28 libmpc zstd libisl.so=23-64 +Optional Deps : lib32-gcc-libs: for generating code for 32-bit ABI +Required By : base-devel clang clang-git clang14 clang17 dkms dmd gcc-ada gcc-d gcc-fortran gcc-go gcc-m2 gcc-objc gcc-rust gcovr ghc home-assistant imd-git intelbacklight-git ispin kde-development-environment-meta ldc lib32-clang lib32-clang-git libgccjit libreoffice-fresh-sdk libreoffice-still-sdk lto-dump nim posix-c-development rust sh4d0wup vala varnish virtualbox-host-dkms vital-synth +Optional For : bauh choosenim clion codelite codelite-unstable dmd node-gyp qmk spamassassin xorg-xrdb +Conflicts With : None +Replaces : gcc-multilib +Download Size : 51.20 MiB +Installed Size : 202.28 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 029e59b707bf7e35f98c7f0d46031f7e78f6e66251b7220980a1fd65081e7858 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-ada +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Ada front-end for GCC (GNAT) +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : gcc-ada-multilib +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : gcc-ada-multilib +Download Size : 29.60 MiB +Installed Size : 150.71 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 83ca73da52a5deb60718edc2a9b2c61b3bc828d58d49c68214da9e24d8082001 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-d +Version : 14.2.1+r32+geccf707e5ce-1 +Description : D frontend for GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : gdc +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : None +Optional For : orbiton +Conflicts With : None +Replaces : gdc +Download Size : 19.90 MiB +Installed Size : 117.79 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 0e9c6e1b7067f0080c784605e0e89c6b96d50d46aefb747f37251dbb996544e4 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-fortran +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Fortran front-end for GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : gcc-fortran-multilib +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : wsjtx +Optional For : hiprand magma-cuda magma-hip openmpi phoronix-test-suite r rocrand root root-cuda +Conflicts With : None +Replaces : gcc-fortran-multilib +Download Size : 13.54 MiB +Installed Size : 44.26 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 20b27847342207fd0b652724dd8ed0c503cf0e66492d65671b1420e94c79c635 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-go +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Go front-end for GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : go=1.17 gcc-go-multilib +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : gopls +Optional For : liteide nixpacks +Conflicts With : go +Replaces : gcc-go-multilib +Download Size : 33.00 MiB +Installed Size : 189.53 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 7fee2490ceff374d2d254b187ac824b5be32e0dec6a26442b0d94309f2f7f080 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-libs +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Runtime libraries shipped by GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : gcc-libs-multilib libgo.so=23-64 libgfortran.so=5-64 libgphobos.so=5-64 libubsan.so=1-64 libasan.so=8-64 libtsan.so=2-64 liblsan.so=0-64 +Depends On : glibc>=2.27 +Optional Deps : None +Required By : 3cpio 4ti2 7-zip 86box 86box-git aardvark-dns abiword abseil-cpp accessibility-inspector accounts-qml-module accountsservice acme-redirect add-determinism adios2 adljack adlplug-lv2 adlplug-standalone adlplug-vst advancecomp aeolus afdko afl++ age-plugin-yubikey agg-2.6-git aichat aida-x-clap aida-x-lv2 aida-x-standalone aida-x-vst aida-x-vst3 aircrack-ng airshipper ajantv2-tools akonadi akonadi-calendar akonadi-calendar-tools akonadi-contacts akonadi-import-wizard akonadi-mime akonadi-notes akonadi-search akonadiconsole akregator alligator alsa-tools alsa-utils amarok amb-plugins ambix-lv2 ambix-standalone ambix-vst amdvlk ams amsynth-dssi amsynth-lv2 amsynth-standalone amsynth-vst analitza android-emulator android-ndk android-sdk-build-tools angelfish angle-grinder antimicrox antlr4-runtime anydesk-bin aom apcupsd app-icon-preview apparmor appstream appstream-generator appstream-glib appstream-qt appstream-qt5 apt aquamarine aquamarine-git arca arch-audit arch-repro-status archlinux-userland-fs-cmp ardour ardour-git arduino-ide arianna ark arrpc arti artikulate artyfx asciinema-agg aspell asplib assimp astyle asusctl asymptote at51 atac atomicparsley attica atuin audacity audaspace audex audiocd-kio audiofile audiotube augeas aura aura-git avisynthplus avogadrolibs avogadrolibs-qt5 avr-gcc aws-crt-cpp aws-sdk-cpp ayatana-indicator-datetime b3sum babashka-bin bacon baloo baloo-widgets bandwhich base bat battop bbpager bcachefs-tools bcc bchoppr bear benchmark bespokesynth biblesync bigsh0t bingrep binocle biodiff biome bitcoin-daemon bitcoin-qt bitcoin-tx blackbox blas blas64 blender blendr blinken bliss blockbench-bin blop.lv2 bluedevil bluez-qt bob boinctui bolt-launcher bomber bore boringtun botan bottom bovo box2d boxxy bpf-linker bpftop bpftrace breeze breeze5 breezy brial brickadia-launcher brillo broot bsequencer bshapr bslizr btop bubblewrap bubblewrap-suid buddy bugstalker buho build2 bupstash bustle c++utilities c-xsc calendarsupport calf caligula calindori calligra cantor capnproto caps cardinal-clap cardinal-lv2 cardinal-standalone cardinal-vst cardinal-vst3 cargo-about cargo-asm cargo-audit cargo-auditable cargo-binstall cargo-bloat cargo-bundle-licenses cargo-c cargo-cyclonedx cargo-deb cargo-deny cargo-depgraph cargo-expand cargo-flamegraph cargo-generate-rpm cargo-hack cargo-insta cargo-license cargo-llvm-cov cargo-make cargo-msrv cargo-ndk cargo-nextest cargo-outdated cargo-pgrx cargo-public-api cargo-release cargo-run-bin cargo-semver-checks cargo-show-asm cargo-shuttle cargo-sort cargo-supply-chain cargo-sweep cargo-tarpaulin cargo-tauri cargo-update cargo-wizard cargo-zigbuild cargo2junit carla carla-git casync cauchy cbindgen ccache ccls cdrdao cef-minimal-obs-bin cemu-git cervisia chatgpt-desktop-bin check-broken-packages-pacman-hook-git check-sieve chess-tui chiaki choose chromaprint chromium-widevine citra-git clamav clazy clblast clipcat clipgrab clpeak clthreads clucene clxclient cm256cc cmake cmt cobalt cocogitto codon-bin coeurl coin-or-cbc coin-or-cgl coin-or-clp coin-or-coinutils coin-or-mp coin-or-osi colord-kde comgr committed communicator compiler-rt compiler-rt-git compiler-rt14 compiler-rt17 composable-kernel composefs conky connman conserve-git coolercontrol coordgen cosmic-app-library cosmic-applets cosmic-bg cosmic-comp cosmic-files cosmic-greeter cosmic-launcher cosmic-notifications cosmic-osd cosmic-panel cosmic-randr cosmic-screenshot cosmic-session cosmic-settings cosmic-settings-daemon cosmic-store cosmic-terminal cosmic-text-editor cosmic-workspaces cotp coxeter cpp-hocon cppdap cppunit crab-hole crawl-ncurses crawl-tiles cri-o criu cross crowdsec cryfs crypto++ cryptominisat csound csound-plugins csoundqt csvlens ctemplate ctrtool cubeb cudd cups cxxbridge czkawka-cli czkawka-gui d-spy d2 daktilo darkstat darts db db5.3 dbus-c++ ddrescue debuginfod deepin-album deepin-appearance deepin-application-manager deepin-calculator deepin-calendar deepin-camera deepin-clone deepin-compressor deepin-device-formatter deepin-dock deepin-draw deepin-editor deepin-file-manager deepin-font-manager deepin-image-editor deepin-image-viewer deepin-kwin deepin-launchpad deepin-music deepin-network-core deepin-pdfium deepin-picker deepin-polkit-agent deepin-printer deepin-qt5integration deepin-qt5platform-plugins deepin-qt6integration deepin-qt6platform-plugins deepin-reader deepin-screen-recorder deepin-screensaver deepin-session deepin-session-shell deepin-session-ui deepin-system-monitor deepin-terminal deepin-util-dfm deepin-voice-note deepin-widgets deepin-wloutput-daemon deltachat-rpc-server deno deskreen dexed-clap dexed-standalone dexed-vst3 dfrs diesel-cli difftastic digikam din discimagecreator-git discord-chat-exporter-cli discord-game-sdk discover diskus disorderfs distrho-ports-lv2 distrho-ports-vst distrho-ports-vst3 djvulibre dleyna dmtcp dnsdist dog dolphin dolphin-emu dolphin-emu-avx-git dolphin-emu-git dolphin-emu-primehack-git dolphin-emu-tool dolphin-plugins dosbox dotnet-host dotnet-host-bin dotnet-runtime dotnet-runtime-6.0 dotnet-runtime-7.0 dotnet-runtime-bin dotnet-sdk dotnet-sdk-6.0 dotnet-sdk-7.0 dotnet-sdk-bin double-conversion doxygen dpf-plugins-clap dpf-plugins-dssi dpf-plugins-ladspa dpf-plugins-lv2 dpf-plugins-standalone dpf-plugins-vst dpf-plugins-vst3 dpkg draco dragon dragonfly-reverb-clap dragonfly-reverb-lv2 dragonfly-reverb-standalone dragonfly-reverb-vst dragonfly-reverb-vst3 drkonqi drumgizmo-lv2 drumgizmo-standalone drumkv1-lv2 drumkv1-standalone drumstick dssi dtk6core dtk6declarative dtk6gui dtk6widget dtkcore dtkdeclarative dtkgui dtkwidget dua-cli ducker dummyhttp dump_syms dust dvd+rw-tools dvgrab dvisvgm dwarffortress dwayland dysk e-antic easytag ebou ebumeter ecasound eclib edid-decode-git electron23 electron27 electron28 electron29 electron30 electron31 electron32 element elephantdsp-roomreverb-clap elephantdsp-roomreverb-lv2 elephantdsp-roomreverb-vst3 elf2uf2-rs elfutils elfx86exts elisa ell embree emby-theater emptyepsilon emulsion enblend-enfuse endless-sky eog epiphany eq10q erdtree espflash espup eva evcxr_repl eventviews evince evolution-data-server evolution-ews exempi exiv2 eza fabla facter falkon fastd faust fcgi fcitx5-qt fclones fd felix-rs ferium ferium-gui fflas-ffpack ffmpegthumbs fftw fiery fil-plugins file-roller filelight fillets-ng findomain firecracker firefox firefox-developer-edition firefox-esr fish flac flatbuffers flatpak flatpak-builder flatpak-kcm flawz flightcore flip-link flips fltk fluidsynth flxmlrpc fmt fnm fomp.lv2 fplll fprintd fractal fragments frameworkintegration francis freerdp freewheeling frei0r-plugins ft2-clone furnace futuresql fwupd g2reverb gambas3-gb-db-sqlite3 gambas3-gb-image-effect gambas3-gb-xml gamescope gamescope-git gammaray gap-packages gc gcc gcdmaster gdb gdcm gdm gdm-prime gedit geekbench geeqie gegl genact gengetopt genxrdpattern geoclue geonkick-lv2 geonkick-standalone geonkick-vst3 geos geph4-client gerbera gettext gfan gflags gfold ghostwriter giac giada gigedit gimp gimp-plugin-gmic ginkgo-hpc ginkgo-hpc-cuda ginkgo-hpc-hip gir-to-d git-bug git-cinnabar git-cliff git-delta git-evtag git-grab git-smash git-warp-time gitg gitlab-exporter gitoxide gitu gitui givaro gjs glibmm-2.68 glslang glu glycin gmic gmp gmp-ecm gn gnome-autoar gnome-bluetooth-3.0 gnome-boxes gnome-builder gnome-calendar gnome-calls gnome-color-manager gnome-console gnome-contacts gnome-control-center gnome-desktop gnome-desktop-4 gnome-disk-utility gnome-flashback gnome-initial-setup gnome-maps gnome-multi-writer gnome-online-accounts gnome-podcasts gnome-recipes gnome-remote-desktop gnome-session gnome-settings-daemon gnome-shell gnome-software gnome-sudoku gnome-system-monitor gnome-terminal gnome-terminal-transparency gnome-text-editor gnome-tour gnote gnuplot gnuradio gnuradio-iqbal gnuradio-osmosdr gnustep-base gnutls goattracker goldendict-webengine-pr-git google-glog google-webdesigner gpaste gperf gperftools gpgme gptfdisk gqrx granatier grantlee grantlee-editor grantleetheme graphite grass grcov greetd greetd-agreety greetd-regreet greetd-tuigreet grex groff grub-customizer gsoap gst-plugin-libcamera gst-plugin-onnx gst-plugin-opencv gst-plugin-pipewire gst-plugin-qml6 gst-plugin-qmlgl gst-plugin-qsv gst-plugin-wpe gst-plugins-bad gst-plugins-bad-libs gst-plugins-good gstreamer gtest gtk4 gtksourceviewmm gtranslator guestfs-tools guichan guile1.8 guitarix gupnp-tools gvfs gvfs-nfs gvfs-onedrive gvfs-smb gvfs-wsdd gwenview gxplugins.lv2 hacksaw halp handbrake handbrake-cli handbrake-nvenc-cli hardened_malloc haruna haskell-tidal haskell-tidal-link havn hawkeye hck heaptrack heh heimdall heimdall-grimler-git helix helvum hepmc hex hexpatch hexyl highway highway-git himalaya hip-runtime-amd hipblas hipblaslt hipfft hipify-clang hiprand hipsolver hipsparse hm hplip hq hsa-amd-aqlprofile-bin hsa-rocr ht-editor htmlq hugo huniq-git hunspell hurl hydrogen hyperfine hyprcursor hypridle hyprland hyprland-git hyprlang hyprlang-git hyprlock hyprpaper hyprpicker-git iaito icon-library icu icu60 icu69 id3lib id3v2 iempluginsuite-standalone iempluginsuite-vst3 igraph igrep iir1 imagemagick imagescan imath imgui impala incidenceeditor include-what-you-use incron index-fm infamousplugins inkscape input-leap-git input-leap-headless-git insight-toolkit intel-compute-runtime intel-gmmlib intel-graphics-compiler intel-media-driver intel-npu-driver-bin intel-oneapi-compiler-shared intel-oneapi-compiler-shared-runtime intel-oneapi-compiler-shared-runtime-libs intel-oneapi-dpcpp-cpp intel-oneapi-dpcpp-debugger intel-oneapi-mkl intel-oneapi-mkl-sycl intel-oneapi-openmp intel-oneapi-tbb intel-oneapi-tcm iperf iptstate isoimagewriter ispc itinerary itk-snap-bin iverilog-git iwd j4-dmenu-desktop jack2 jack2-dbus jack_delay jackett jacktrip jalv japa jbig2enc-git jc303-clap jc303-lv2 jc303-vst3 jdk-openjdk jdk11-openjdk jdk17-openjdk jdk21-openjdk jless jnoisemeter john joshuto-git jre-openjdk jre-openjdk-headless jre11-openjdk jre11-openjdk-headless jre17-openjdk jre17-openjdk-headless jre21-openjdk jre21-openjdk-headless jruby js115 js128 js80p js91 jsoncpp jsonrpc-glib juce jujutsu juk just jwt-cli jwt-ui k3b kaccounts-integration kaccounts-providers kactivitymanagerd kaddressbook kaffeine kaidan kakoune kalarm kalgebra kalk kalm kalzium kamera kamoso kanagram kapman kapptemplate karchive karchive5 kasts kate katomic kauth kbackup kbibtex kblackbox kblocks kbookmarks kbounce kbreakout kbruch kbt kcachegrind kcalc kcalendarcore kcalutils kcharselect kclock kcmutils kcodecs kcolorchooser kcolorpicker kcolorpicker-qt5 kcolorscheme kcompletion kconfig kconfigwidgets kcontacts kcoreaddons kcrash kcron kdav kdb kdbg kdbusaddons kddockwidgets-qt6 kde-cdemu-manager kde-cli-tools kde-dev-utils kde-gtk-config kde-inotify-survey kdebugsettings kdeclarative kdeconnect kdecoration kded kdegraphics-mobipocket kdegraphics-thumbnailers kdenetwork-filesharing kdenlive kdepim-addons kdepim-runtime kdeplasma-addons kdesdk-kio kdesdk-thumbnailers kdesu kdevelop kdevelop-pg-qt kdevelop-php kdevelop-python kdf kdiagram kdialog kdiamond kdiff3 kdiskmark kdnssd kdoctools kdsingleapplication kdsoap-qt5 kdsoap-qt6 kdsoap-ws-discovery-client keditbookmarks kernelshark kexi keymapper-git keysmith keystone kfilemetadata kfind kfourinline kgamma kgeography kget kglobalaccel kglobalacceld kgoldrunner kgpg kgraphviewer kguiaddons khangman khealthcertificate khelpcenter kholidays ki18n kiconthemes kidentitymanagement kidletime kig kigo kile killbots kimageannotator kimageannotator-qt5 kimageformats kimagemapeditor kimap kinfocenter kio kio-admin kio-extras kio-fuse kio-gdrive kio-zeroconf kio5-extras kirigami kirigami-addons kirigami-addons5 kirigami-gallery kiriki kismet kitemmodels kitemviews kiten kitinerary kjobwidgets kjots kjournald kjumpingcube klassy-git klassy-qt5-git kldap kleopatra klettres klickety klines kmag kmahjongg kmail kmail-account-wizard kmailtransport kmbox kmenuedit kmidimon kmime kmines kmix kmousetool kmouth kmplot knavalbattle knetwalk knewstuff knights knotifications knotifyconfig koko kolf kollision kolourpaint kommit kompare kondo kondo-ui kongress konqueror konquest konsole konsolepart5 kontact kontactinterface kontrast konversation kopeninghours korganizer kosmindoormap kpackage kparts kpat kpeople kpimtextedit kpipewire kpkpass kplotting kpmcore kproperty kpty kpublictransport kqtquickcharts kquickcharts kquickimageeditor kquickimageeditor5 krdc krdp krecorder krename kreport kreversi krfb krita krita-plugin-gmic krokiet kronometer kruler krunner krusader ksanecore ksanecore5 kscreen kscreenlocker kseexpr kservice kshisen kshutdown ksirk ksmtp ksnakeduel kspaceduel ksquares ksshaskpass kstars kstatusnotifieritem ksudoku ksvg ksysguard6-git ksystemlog ksystemstats kteatime ktextaddons ktextaddons5 ktexteditor ktexttemplate ktextwidgets ktimer ktimetracker ktnef ktorrent ktouch ktrip ktuberling kturtle kubetui kubie kubrick kunitconversion kup kuserfeedback kvantum kvantum-git kvantum-qt5 kvantum-qt5-git kwallet kwalletmanager kwave kwayland kwayland-integration kweather kweathercore kwidgetsaddons kwin kwindowsystem kwordquiz kwrited kxmlgui kyotocabinet labplot ladspa lan-mouse lantern-bin lapack lapack64 lapce lapce-git laszip laszip2 latte-integrale layer-shell-qt lazyjj lcalc ldproxy leatherman leftwm leftwm-git leftwm-nonsystemd leftwm-nonsystemd-git leftwm-theme-git legba leocad lftp lib3mf libabigail libabw libaccounts-qt libajantv2 libakonadi libappimage libayatana-appindicator libb2 libbacktrace-git libblockdev-crypto libblockdev-fs libblockdev-loop libblockdev-lvm libblockdev-mdraid libblockdev-swap libbraiding libbs2b libc++ libc++abi libcaca libcamera libcamera-ipa libcamera-tools libcap libcdio libcdr libchardet libcmis libconfig libcoverart libcupsfilters libcutl libdatachannel libde265 libdex libdovi libe-book libebml libei libelf libelfin libemf libepubgen libetebase libetonyek libfabric libfbclient libffado libfilezilla libfprint libfpx libfreehand libftdi-compat libgdm libgdm-prime libgexiv2 libgig libgit2 libgme libgooglepinyin libgravatar libguestfs libgweather-4 libheif libical libilbc libimagequant libindi libinih libixion libkcddb libkcompactdisc libkdcraw libkdcraw5 libkdegames libkdepim libkeduvocdocument libkexiv2 libkexiv2-qt5 libkeyfinder libkgapi libkleo libkmahjongg libkolabxml libkomparediff2 libksane libksane5 libkscreen libksieve libksysguard libktorrent libliquidsfz liblsp-r3d-glx-lib libmalcontent libmanette libmediainfo libmemcached-awesome libmfx libmodplug libmp4v2 libmspub libmupdf libmusicbrainz5 libmusicxml libmwaw libmythes libnautilus-extension libnitrokey libnl libnm libnm-iwd libnpupnp libnumbertext libodfgen libolm libopenmpt libopenshot libopenshot-audio liborcus liborigin libosinfo libpagemaker libpeas-2 libphobos libphonenumber libpipewire libplacebo libplasma libplist libplist-git libportal libportal-gtk3 libportal-gtk4 libportal-qt5 libportal-qt6 libppd libproxy libpst libptytty libqaccessibilityclient-qt5 libqaccessibilityclient-qt6 libqalculate libquotient libqxp libraw librdkafka libre-graph-api libreoffice-fresh libreoffice-fresh-sdk libreoffice-still libreoffice-still-sdk libretro-beetle-pce libretro-beetle-pce-fast libretro-beetle-supergrafx libretro-bsnes libretro-bsnes-hd libretro-dolphin libretro-mesen libretro-mesen-git libretro-mesen-s libretro-mupen64plus-next libretro-mupen64plus-next-git libretro-pcsx2 libretro-ppsspp librevenge librewolf librime librsvg librustls libsbsms libseexpr2 libsemigroups libshumate libsidplayfp libsigc++ libsigc++-3.0 libsoxr libspectmorph libspelling libstaroffice libstdc++5 libtiff libtiff4 libultrahdr libultrahdr-git libunrar libupnpp libusbmuxd libusbmuxd-git libva-mesa-driver libvdpau-va-gl libvisio libvoikko libvolk libvpl libvpx libwhereami libwireplumber libwpd libwpe libwpg libwps libxcomp libxisf libxml++-5.0 libxsd-frontend libyuv libzen libzmf lidia lilypond linbox lincity-ng linuxsampler liquidsfz-lv2 liquidsfz-standalone liquidshell litehtml live-media lld lld17 lldb lldb-mi llvm-julia llvm-julia-libs llvm-libs llvm-libs-git llvm14-libs llvm17-libs lmms log4cplus log4cpp lokalize looking-glass-git looking-glass-host-git loupe lsd lshw lskat lsp-plugins-clap lsp-plugins-gst lsp-plugins-ladspa lsp-plugins-lv2 lsp-plugins-standalone lsp-plugins-vst lsp-plugins-vst3 lua-language-server luajit luau lucky-commit ludusavi luppp lurk lxqt-config lychee lzip lzlib m4ri mac maeparser mailcommon mailimporter malcontent maliit-framework mame mame-tools mangohud mangohud-git marble marble-common marble-maps marble-qt marisa markdownpart marknote markuplinkchecker massif-visualizer master_me-clap master_me-ladspa master_me-lv2 master_me-standalone master_me-vst master_me-vst3 masterpdfeditor-free mastodon-twitter-sync materialx matrix-appservice-irc matrix-synapse matterbridge maturin maui-agenda maui-clip maui-nota maui-pix maui-shelf maui-station mauikit mauikit-accounts mauikit-archiver mauikit-calendar mauikit-documents mauikit-filebrowsing mauikit-imagetools mauikit-terminal mauikit-texteditor mauiman maxcso maxcso-git mbox-importer mbuffer mcp-plugins mcqd md-tui mda.lv2 mdbook mdcat mediaelch meilisearch menyoki merkuro mesa mesa-vdpau messagelib milkytracker milou mimetreeparser minecraft-launcher minisat miniserve minitube minuet miopen-hip mirro-rs mixxx mjpegtools mkvtoolnix-cli mlt modemmanager-qt mold mold-git molequeue monero monero-gui mongodb monolith moon mosquitto mpd mpdecimal mpgtx mpvqt mqttui mscp msgraph msolve mtxclient mullvad-browser-bin multipath-tools mumble mumble-server munge munt-daemon muparser muparserx muse musescore mutter mutter-dynamic-buffering mutter-performance mutter-x11-scaling mysql-workbench mystiq naiveproxy nautilus navidrome nccl ncmpc ncmpcpp ncspot ncurses ncurses5-compat-libs neochat neovide neovide-git netavark netcdf-cxx netcdf-fortran netcdf-fortran-openmpi nethogs nethsm-cli netpbm netplan netscanner networkmanager networkmanager-iwd networkmanager-openvpn networkmanager-qt new-session-manager newsflash nfs-utils ngspice nickel nickel-language-server ninja niri nix nix-init nixpacks nload nlopt nm-cloud-setup nm-iwd-cloud-setup nmap noise-suppression-for-voice nomacs nomad normaliz notcurses nspluginwrapper nsync ntk ntl nudelta nurl nushell nuspell nut ob-xd-lv2 ob-xd-standalone ob-xd-vst3 obs-rtspserver obs-studio-tytan652 ocrad odin2-synthesizer-clap odin2-synthesizer-lv2 odin2-synthesizer-standalone odin2-synthesizer-vst3 odr-dabmux-git ogmtools oha oil okteta okular okularpart5 onednn onefetch onetbb onnx openal openal-git openapi-tui openblas openblas-lapack openblas64 opencl-amd opencl-clover-mesa opencl-rusticl-mesa opencv opencv-cuda openexr openh264 openjade openmpi openpgp-ca openpgp-ca-restd openpgp-card-ssh-agent openpgp-card-tool-git openpgp-card-tools openscad opensips opentimelineio openvkl openzwave opnplug-lv2 opnplug-standalone opnplug-vst oscpack osinfo-db-tools ospray osquery ostree ot-cryptid-clap ot-cryptid-standalone ot-cryptid-vst3 ot-keys-clap ot-keys-standalone ot-keys-vst3 ot-simian-clap ot-simian-standalone ot-simian-vst3 ot-urchin-clap ot-urchin-standalone ot-urchin-vst3 owncloud-client oxc-language-server oxipng oxlint oxygen oxygen5 oxyromon p7zip p8-platform packagekit-qt5 packagekit-qt6 pacman-bintrans pacman-bintrans-tools padthv1-lv2 padthv1-standalone palapeli pamixer pangomm-2.48 papilo paprefs par2cmdline pari parley parsec-bin partitionmanager pastel patchelf pavucontrol pbzip2 pcloudcc-git pcre pd-sfizz pepper-flash performous pesign phonon-qt5 phonon-qt5-vlc phonon-qt6 phonon-qt6-vlc php-imagick php-legacy-imagick physx picmi picom-git pim-data-exporter pim-sieve-editor pimcommon pipe-rename pipewire pipewire-audio pipewire-jack-client pipewire-libcamera pipewire-pulse pipewire-roc pipewire-zeroconf piping-server pixi plasma-activities plasma-activities-stats plasma-applet-window-buttons plasma-browser-integration plasma-desktop plasma-disks plasma-firewall plasma-integration plasma-nm plasma-pa plasma-pass plasma-sdk plasma-systemmonitor plasma-thunderbolt plasma-vault plasma-welcome plasma-workspace plasma5-integration plasma5support plasmatube plymouth-kcm podman podman-desktop poedit poketex polari polkit-kde-agent polkit-qt5 polkit-qt6 polly polly-git polyclipping polymake polyphone pop-bin pop-launcher poppler poppler-glib poppler-qt5 poppler-qt6 portaudio portsmf postgresql power-profiles-daemon powerdevil powerdns-recursor powershell-bin powertop poxml ppl ppsspp presage presenterm primecount primesieve print-manager prismlauncher prison prjxray-tools-git procinfo-ng procs protobuf protobuf-21 proton-ge-custom protonmail-bridge proxmox-backup-client proxyboi ps7_libpicoipp pstoedit ptex ptyxis pueue pugixml pulseaudio-qt purpose pwninit pyflow pymol pyside6 pystring pythia8 python-awscrt python-clarabel python-cmsis-pack-manager python-contourpy python-cramjam python-cvxpy python-cylp python-debugpy python-fastnumbers python-fpylll python-iminuit python-jiter python-johnnycanencrypt python-json-stream-rs-tokenizer python-jupymake python-levenshtein python-libcamera python-libcst python-llvmlite python-lupa python-materialyoucolor-git python-mitmproxy-rs python-ml-dtypes python-mupdf python-nh3 python-numba python-onnx python-orjson python-osmium python-pendulum python-pikepdf python-pivy python-pplpy python-primecountpy python-pyarrow python-pybullet python-pycapnp python-pycrdt python-pycuda python-pydantic-core python-pykcs11 python-pymupdf python-pynormaliz python-pyopencl python-pyqt6-3d python-pyqt6-charts python-pyqt6-datavisualization python-pyqt6-networkauth python-pyqt6-webengine python-pysequoia python-pythia8 python-qdldl python-rapidfuzz python-regress python-rpds-py python-rtmidi python-scipy python-symengine python-systemd python-tiktoken python-tlsh python-ulid-transform python-vigra python-watchfiles python-xapian python-y-py python-zita-audiotools python-zita-jacktools qalculate-gtk qalculate-qt qastools qbittorrent qbittorrent-enhanced qbittorrent-enhanced-qt5 qbittorrent-nox qbittorrent-qt5 qbs qca-qt5 qca-qt6 qcachegrind qcad qcoro-qt5 qcoro-qt6 qd qemu-arch-extra-git qemu-audio-dbus qemu-audio-jack qemu-audio-pipewire qemu-block-curl qemu-block-iscsi qemu-block-nfs qemu-block-ssh qemu-chardev-baum qemu-common qemu-git qemu-guest-agent qemu-guest-agent-git qemu-headless-arch-extra-git qemu-headless-git qemu-hw-display-qxl qemu-hw-usb-redirect qemu-hw-usb-smartcard qemu-img qemu-pr-helper qemu-system-aarch64 qemu-system-alpha qemu-system-arm qemu-system-avr qemu-system-cris qemu-system-hppa qemu-system-loongarch64 qemu-system-m68k qemu-system-microblaze qemu-system-mips qemu-system-nios2 qemu-system-or1k qemu-system-ppc qemu-system-riscv qemu-system-rx qemu-system-s390x qemu-system-sh4 qemu-system-sparc qemu-system-tricore qemu-system-x86 qemu-system-xtensa qemu-tools qemu-ui-curses qemu-ui-dbus qemu-ui-opengl qemu-ui-spice-core qemu-user qemu-vhost-user-gpu qgpgme-qt6 qjackctl qmc2 qmidiarp-lv2 qmidiarp-standalone qmidictl qmidinet qmidiroute qmlkonsole qpdf qpwgraph qqc2-breeze-style qqc2-desktop-style qqwing qrcodegencpp-cmake qrtool qrupdate qsampler qsynth qt-sudo qt5ct qt6-3d qt6-5compat qt6-base qt6-charts qt6-connectivity qt6-datavis3d qt6-declarative qt6-graphs qt6-grpc qt6-httpserver qt6-imageformats qt6-languageserver qt6-location qt6-lottie qt6-multimedia qt6-multimedia-ffmpeg qt6-multimedia-gstreamer qt6-networkauth qt6-positioning qt6-quick3d qt6-quick3dphysics qt6-quickeffectmaker qt6-quicktimeline qt6-remoteobjects qt6-scxml qt6-sensors qt6-serialbus qt6-serialport qt6-shadertools qt6-speech qt6-svg qt6-tools qt6-virtualkeyboard qt6-wayland qt6-webchannel qt6-webengine qt6-websockets qt6-webview qt6ct qtcreator qtkeychain-qt5 qtkeychain-qt6 qtractor qucsator-git quiche qxgedit qxlsx-qt5 qxlsx-qt6 qxmpp-qt5 qxmpp-qt6 r r2ghidra radare2 radeon-profile-git rage-encryption ragel rate-mirrors rathole rattler-build rauc rav1e rbutil rbw rccl rdfind re2 re2c reactphysics3d reapack reaper rebels-in-the-sky recastnavigation regexxer release-plz remmina repgrep repro-env reproc retro-gtk retroarch rev-plugins rhit rhythmbox rink rio ripgrep riseup-vpn rkcommon rkward rlog roc-toolkit rocalution rocblas rocfft rockchip-mpp rocm-dbgapi rocm-gdb rocm-llvm rocm-opencl-runtime rocm-smi-lib rocminfo rocrand rocs rocsolver rocsparse roctracer rofi-emoji rog-control-center ropr rosegarden rpg-cli rpi-imager rq rqbit rqbit-desktop rshijack rsibreak rsop rspamd rssguard rssguard-lite rtaudio rtmidi rtosc rubberband rubberband-ladspa rubberband-lv2 rubberband-vamp rubiks ruby rucola ruff runescape-launcher rust rust-analyzer rust-bindgen rust-kanban rust-script rustc-demangle rustic rustlings rustow-git rustscan rustypaste rustypaste-cli rye ryujinx rz-cutter s2n-tls sad sagemath samplv1-lv2 samplv1-standalone samply sane satty sc3-plugins sccache scip sd sdcc sddm sddm-git sddm-kcm selene sentry-cli sentry-native sequoia-chameleon-gnupg sequoia-keyring-linter sequoia-sop sequoia-sq sequoia-sqv sequoia-wot serie serpl serproid sfizz-lib sfizz-lv2 sfizz-standalone sfizz-vst3 sg-323-clap sg-323-vst3 sh4d0wup shaderc shadowsocks-rust shapelib shared-mime-info sheldon shiboken6 shotgun shy sidplay2-libs sig signal-desktop signon-kwallet-extension signon-plugin-oauth2 signon-ui signond simple-mtpfs simpleitk simutrans simutrans-extended-git singular sirocco skanlite skanpage skladnik slack-electron sleuthkit slim slowhttptest slumber smartdns smartmontools smb4k smplayer snappy snapshot soapyaudio solid songrec sonic sonic-visualiser sonnet sonobus sonyheadphonesclient-bin soplex sorcer sound-gambit soundtouch sowing sox spatialindex spectacle spectmorph-clap spectmorph-lv2 spectmorph-tools spectmorph-vst speedcrunch speex speexdsp spiped spirv-cross spirv-tools splix spotify-tui spytrap-adb sqlc sqlx-cli squashfs-tools srs srt ssdeep ssh-openpgp-auth sshd-openpgp-auth sshx ssr stalwart-cli stalwart-mail stalwart-mail-old-upgrade starship steam steam-boilr-gui stellarsolver step stk stochas-clap stochas-standalone stochas-vst3 strawberry strawberry-full-git strawberry-git strike stylua subversion suil suitesparse suitesparse-graphblas sundials sunpinyin supercollider supergfxctl surge-xt-clap surge-xt-standalone surge-xt-vst3 sushi suyu-dev-qt6-git svgpart sweeper swiftshader-git swig switchboard-plug-user-accounts sws swww symengine sympol syndication syndicationd syntax-highlighting synthv1-lv2 synthv1-standalone sysprof system76-firmware system76-scheduler systemc systemctl-tui systemd-libs systemd-libs-git systemdgenie systemfd systemsettings sz tabiew taglib taglib1 tangler taplo-cli tbtools tealdeer teamspeak3-server tecla telly-skout tere termscp tesseract texlab texlive-bin texmaker thin-provisioning-tools threadweaver thrift thunderbird tickrs tiny tinyobjloader tinyxml2 tlsh tokei tokodon tokodon-git toml-bombadil tomlplusplus tone-bin topcom topgrade tor totem-pl-parser tracexec tracker3 tracker3-miners tracktion-waveform tradingview tree-sitter-cli trippy tropy-bin ttfautohint ttyper tui-journal turbo twitch-tui typos typst typst-lsp uchardet udisks2 udisks2-btrfs udisks2-lvm2 ueberzugpp uhttpmock umbrello umu-launcher unarchiver uncrustify unittestpp unrar updlockfiles upower usbguard uutils-coreutils uv v4l-utils vale vamp-plugin-sdk vaporizer2-clap vaporizer2-lv2 vaporizer2-standalone vaporizer2-vst3 vapoursynth-plugin-bestsource vapoursynth-plugin-deblock vaultwarden vbindiff vco-plugins vcpkg vdpauinfo vector vector-blf veracrypt vid.stab vigra virtiofsd virtualbox virtualbox-kvm visual-studio-code-bin visual-studio-code-insiders-bin vital-synth viu vivid vkbasalt vlc vlc-luajit vmaf vmpk vmware-horizon-client voacapl volta vosk-api vte3 vte4 vtk vulkan-intel vulkan-mesa-layers vulkan-nouveau vulkan-radeon vulkan-swrast vulkan-validation-layers vulkan-virtio vvave wabt wacomtablet wah-plugins wasm-component-ld wasmer wasmtime watchbind watchexec waybar webkit2gtk webkit2gtk-4.1 webkit2gtk-imgpaste webkitgtk-6.0 webrtc-audio-processing webrtc-audio-processing-1 websocat wezterm whisper.cpp whisper.cpp-clblas whisper.cpp-cublas whisper.cpp-openvino wiki-tui wine wine-ge-custom wine-stable wine-staging wine-tkg-fsync-git wine-tkg-staging-fsync-git wireguard-vanity-address wireplumber wireshark-qt wiresmith wishbone-utils wl-clip-persist wl-clipboard-rs wldash wluma woff2 wolf-shaper-clap wolf-shaper-dssi wolf-shaper-lv2 wolf-shaper-standalone wolf-shaper-vst wolf-shaper-vst3 worker-build wp-desktop wpewebkit wpmeta wstunnel wvdial wxwidgets-common wxwidgets-gtk3 wxwidgets-qt5 x265 x42-plugins-lv2 x42-plugins-standalone xapian-core xcolor xcp xdg-dbus-proxy xdg-desktop-portal xdg-desktop-portal-cosmic xdg-desktop-portal-dde xdg-desktop-portal-gnome xdg-desktop-portal-gtk xdg-desktop-portal-hyprland xdg-desktop-portal-kde xdvdfs xemu-git xerces-c xfsdump xh xmonk.lv2 xplc xplr xsd xsettingsd xsv xwaylandvideobridge yabridge yabridgectl yakuake yaml-cpp yazi yazi-git yoshimi-lv2 yoshimi-standalone z3 zam-plugins-clap zam-plugins-ladspa zam-plugins-lv2 zam-plugins-standalone zam-plugins-vst zam-plugins-vst3 zanshin zarchive zbus_xmlgen zeal zeal-git zed zellij zenith zenity zeromq zerotier-one zfp zimg zita-ajbridge zita-alsa-pcmi zita-at1 zita-convolver zita-jclient zita-njbridge zita-resampler zola zopfli zoxide zstd zxing-cpp zydis zynaddsubfx +Optional For : gcin spglib +Conflicts With : None +Replaces : gcc-libs-multilib libgphobos +Download Size : 35.04 MiB +Installed Size : 143.44 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 465482ee79fa656038ec60e1d8868c3fd69420e948468c4714031944befef0a5 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-m2 +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Modula-2 frontend for GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : None +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 13.59 MiB +Installed Size : 49.01 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : d9bc49af683cc2e8f79a3464a6ecbc34bfe42a183b684cc3ab58342b33fab12a +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-objc +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Objective-C front-end for GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : gcc-objc-multilib +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : gcc-objc-multilib +Download Size : 25.62 MiB +Installed Size : 85.28 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 0cdd5e43a3c9305b92ea26fb44b96ba17853a9ec5449d005dfa762420b62b9a2 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gcc-rust +Version : 14.2.1+r32+geccf707e5ce-1 +Description : Rust frontend for GCC +Architecture : x86_64 +URL : https://gcc.gnu.org +Licenses : GPL-3.0-with-GCC-exception GFDL-1.3-or-later +Groups : None +Provides : None +Depends On : gcc=14.2.1+r32+geccf707e5ce-1 libisl.so=23-64 +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 14.07 MiB +Installed Size : 51.45 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:49:41 AM +08 +MD5 Sum : None +SHA-256 Sum : 9e06bf9329654391c2be8c724c61e23a228f7277951aff0bd9f5cb549d313e28 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gdbm +Version : 1.24-1 +Description : GNU database library +Architecture : x86_64 +URL : https://www.gnu.org/software/gdbm/gdbm.html +Licenses : GPL-3.0-or-later +Groups : None +Provides : libgdbm_compat.so=4-64 libgdbm.so=6-64 +Depends On : glibc sh readline libreadline.so=8-64 +Optional Deps : None +Required By : avahi cyrus-sasl exim libsasl man-db modem-manager-gui mutt neomutt openipmi perl php-legacy pypy pypy3 python python39 ruby ruby2.7 skktools xkbsel zsh +Optional For : apr-util +Conflicts With : None +Replaces : None +Download Size : 247.12 KiB +Installed Size : 719.59 KiB +Packager : David Runge +Build Date : Thu 04 Jul 2024 10:47:39 PM +08 +MD5 Sum : None +SHA-256 Sum : 2712f2747f887ff19ad4151143e506e80254a0a0db0e8b968adb6634da7800ab +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : gettext +Version : 0.22.5-1 +Description : GNU internationalization library +Architecture : x86_64 +URL : https://www.gnu.org/software/gettext/ +Licenses : GPL-2.0-only LGPL-2.0-only GFDL-1.2-only GPL-2.0-or-later +Groups : None +Provides : None +Depends On : gcc-libs acl sh libunistring libxml2 +Optional Deps : git: for autopoint infrastructure updates +Required By : atril base base-devel bison cataclysm-dda criterion deepin-gettext-tools engrampa eom exiv2 fsv3 gdm-settings gdm-settings-git gnome-shell-extension-arc-menu-git grub grub-improved-luks2-git grub-silent gtranslator kde-development-environment-meta kdesdk-thumbnailers lib32-gettext libmatekbd libmatemixer libmateweather marco mate-backgrounds mate-calc mate-common mate-control-center mate-icon-theme mate-media mate-netbook mate-notification-daemon mate-panel mate-polkit mate-power-manager mate-screensaver mate-sensors-applet mate-session-manager mate-settings-daemon mate-system-monitor mate-terminal mate-user-guide mate-user-share mate-utils mozo notion oversteer pacman pacman-git perl-libintl-perl perl-locale-gettext pluma po4a poke poxml proton-ge-custom pspp quilt t-prot wine wine-ge-custom wine-stable wine-staging wine-staging-wow64 wine-staging-wow64-git wine-tkg-fsync-git wine-tkg-staging-fsync-git wine-wow64 wine-wow64-git +Optional For : diffoscope fcitx libvirt motion +Conflicts With : None +Replaces : None +Download Size : 2.14 MiB +Installed Size : 7.68 MiB +Packager : Tobias Powalowski +Build Date : Wed 08 May 2024 06:42:49 PM +08 +MD5 Sum : None +SHA-256 Sum : fa858cd8217d2089dd734b0ac6a9d526b7766ed0220cfad5320f91692f4d5d16 +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : glib2 +Version : 2.80.5-1 +Description : Low level core library +Architecture : x86_64 +URL : https://gitlab.gnome.org/GNOME/glib +Licenses : LGPL-2.1-or-later +Groups : None +Provides : libglib-2.0.so=0-64 libgio-2.0.so=0-64 libgirepository-2.0.so=0-64 libgmodule-2.0.so=0-64 libgobject-2.0.so=0-64 libgthread-2.0.so=0-64 +Depends On : bash glibc libffi libsysprof-capture pcre2 util-linux-libs zlib libffi.so=8-64 libmount.so=1-64 +Optional Deps : dconf: GSettings storage backend + glib2-devel: development tools + gvfs: most gio functionality +Required By : 64gram-desktop 86box 86box-git abiword accerciser accountsservice aisleriot almanah alsa-scarlett-gui amsynth-dssi amsynth-lv2 amsynth-standalone amsynth-vst anydesk-bin anyrun-git app-icon-preview appmenu-glib-translator-git appstream appstream-generator appstream-glib appstream-qt appstream-qt5 arch-update ardour ardour-git arduino-ide asunder at-spi2-core atomix audacious audacity audio-recorder autotrace avahi avldrums.lv2 ayatana-ido ayatana-indicator-datetime ayatana-indicator-keyboard ayatana-indicator-notifications ayatana-indicator-power ayatana-indicator-session ayatana-indicator-sound aylurs-gtk-shell aylurs-gtk-shell-git babeltrace babeltrace2 bemenu-wayland bemenu-x11 birdfont blanket blockbench-bin bluez bluez-cups bluez-deprecated-tools bluez-obex bluez-utils bolt-launcher brltty budgie-session bumblebee bustle cairo calf callaudiod capnet-assist castget cdemu-client cdemu-daemon cef-minimal-obs-bin cemu-git chatgpt-desktop-bin chromium-widevine cinnamon-menus clapper colord-gtk colord-gtk4 conky conmon connman connman-git connman-gtk consolekit contractor contractor-git cosmic-files cosmic-files-git cosmic-store cosmic-store-git cups-browsed cups-pk-helper curlftpfs curtail czkawka-gui d-spy datagrip datagrip-jre dataspell dataspell-jre dbmail dbus-c++ dbus-glib dconf ddcutil ddcutil-git dee deepin-api deepin-appearance deepin-camera deepin-compressor deepin-daemon deepin-dock deepin-file-manager deepin-launchpad deepin-session deepin-session-ui deepin-terminal deepin-util-dfm deepin-voice-note deja-dup deluge-gtk deskreen desktop-file-utils devede digikam dino dino-git discover displaycal dleyna droidcam dsniff dtk6gui dtkgui dunst duperemove dwarffortress easytag ebou efl emacs emacs-nativecomp emacs-wayland emby-theater enchant eog eolie epiphany etherape evince evolution evolution-bogofilter evolution-data-server evolution-ews evolution-spamassassin fcitx5-gtk ffmpeg ffmpeg-full ffmpeg-obs file-roller firefox firefox-developer-edition firefox-esr firewalld flat-remix-gnome flatpak flatpak-builder flatpak-kcm flips fluidsynth forkgram fprintd fractal fragments freeciv freerdp fs-uae fsv3 fuseiso fwupd gala gala-git gambas3-gb-net-smtp gamehub gammastep gammu gcab gcdmaster gcin gcolor3 gcr gcr-4 gdk-pixbuf2 gdm gdm-prime geary gedit gedit-plugins geeqie gegl geoclue geocode-glib-common gfeeds ghostscript gigedit giggle gimp gimp-plugin-gmic girara gitg gjs glib-networking glib-perl glib2-devel glibd glibmm glibmm-2.68 glycin glyr gmime3 gnac gnome-applets gnome-autoar gnome-bluetooth-3.0 gnome-boxes gnome-break-timer gnome-builder gnome-calculator gnome-calendar gnome-calls gnome-characters gnome-color-manager gnome-connections gnome-console gnome-contacts gnome-control-center gnome-desktop gnome-desktop-4 gnome-disk-utility gnome-firmware gnome-flashback gnome-games gnome-initial-setup gnome-keyring gnome-latex gnome-logs gnome-mahjongg gnome-maps gnome-menus gnome-mplayer gnome-multi-writer gnome-music gnome-notes gnome-online-accounts gnome-panel gnome-podcasts gnome-recipes gnome-remote-desktop gnome-session gnome-settings-daemon gnome-shell gnome-shell-extension-desktop-icons-ng gnome-shell-pomodoro gnome-software gnome-subtitles gnome-sudoku gnome-system-monitor gnome-terminal gnome-terminal-transparency gnome-text-editor gnome-tour gnome-tweaks gnome-usage gnome-user-share gnote gnuplot gobject-introspection goffice goland goland-jre gom goobox goocanvas google-webdesigner gpaste gpgme granite granite7 graphene greetd-regreet gromit-mpx grub-customizer gsound gspell gssdp gst-devtools gst-devtools-libs gst-editing-services gst-libav gst-plugin-gtk gst-plugin-libcamera gst-plugin-msdk gst-plugin-onnx gst-plugin-opencv gst-plugin-pipewire gst-plugin-qml6 gst-plugin-qmlgl gst-plugin-qsv gst-plugin-va gst-plugin-wpe gst-plugins-bad gst-plugins-bad-libs gst-plugins-base gst-plugins-base-libs gst-plugins-good gst-plugins-ugly gst-python gst-rtsp-server gstreamer gstreamer-vaapi gtk-sharp-3 gtk-update-icon-cache gtk2 gtk3 gtk3-demos gtk4 gtk4-demos gtk4-git gtkglext gtksourceview5 gtksourceviewmm gtranslator gts gtuber guestfs-tools guitarix gupnp gupnp-av gupnp-dlna gupnp-igd gupnp-tools gutenprint gvfs gvfs-afc gvfs-dnssd gvfs-goa gvfs-google gvfs-gphoto2 gvfs-mtp gvfs-nfs gvfs-onedrive gvfs-smb gvfs-wsdd gxml harfbuzz harfbuzz-cairo harfbuzz-utils haskell-gi haskell-gi-base haskell-gi-gio haskell-gi-glib haskell-gi-gmodule haskell-gi-gobject haskell-gio haskell-glib helvum hexchat hexter hotdoc hyprland hyprland-git hyprlock ibus ibus-typing-booster icon-library iio-sensor-proxy imagemagick imagemagick-full-git imagescan inkscape irqbalance irssi itk-snap-bin jack_mixer jalv jami-qt jetbrains-toolbox jgmenu jnettop json-glib jsonrpc-glib kamoso kde-gtk-config kexi klavaro klipperscreen kondo-ui kooha kotatogram-desktop kotatogram-desktop-git lan-mouse lantern-bin lasem lensfun lensfun-git lib2geom lib32-glib2 libaccounts-glib libaccounts-qt libadwaita libadwaita-demos libappimage libappindicator-gtk2 libappindicator-gtk3 libaxc libayatana-appindicator libayatana-indicator libblockdev libblockdev-btrfs libblockdev-crypto libblockdev-dm libblockdev-fs libblockdev-loop libblockdev-lvm libblockdev-mdraid libblockdev-mpath libblockdev-nvdimm libblockdev-nvme libblockdev-part libblockdev-swap libcacard libcalfbox-lss libcheese libcheese-git libclapper libclapper-gtk libcloudproviders libcolord libdbusmenu-glib libdex libdnf libdsme libedataserverui4 libfm-extra libfprint libgbinder libgda6 libgda6-mysql libgda6-postgres libgda6-sqlcipher libgdiplus libgdm libgdm-plymouth-prime libgdm-prime libgedit-amtk libgedit-gfls libgedit-gtksourceview libgedit-tepl libgee libgepub libgexiv2 libgirepository libgit2-glib libglib-testing libglibutil libgmobile libgnome-keyring libgnt libgoa libgrss libgtop libgudev libguestfs libgusb libgweather-4 libgxps libhandy libibus libical libidl2 libinfinity libinsane libinstpatch liblangtag libldm liblqr libmalcontent libmanette libmatemixer libmbim libmediaart libmediainfo libmirage libmm-glib libmodulemd libmpd libmypaint libnautilus-extension libnice libnids libnm libnm-iwd libnotify libomemo libosinfo libpackagekit-glib libpamac-aur libpamac-flatpak libpanel libpeas-2 libpinyin libportal libportal-gtk3 libportal-gtk4 libportal-qt5 libportal-qt6 libproxy libqrtr-glib libquvi libratbag librda libreoffice-fresh libreoffice-still librepo librest librewolf librsvg libsearpc libsecret libshumate libsigrokdecode libslirp libsmf libsoup libsoup3 libspectmorph libspectrum libspeechd libspelling libwacom libwacom-surface libwebsockets libwireplumber libwireplumber-git libwnck libxfce4util libxfce4windowing libxklavier libxmlb libxmlbird light-locker lightdm lightdm-gtk-greeter-settings lightdm-pantheon-greeter lilypond loginized logiops looking-glass-host-git loudmouth loupe lsp-plugins-gst lua-lgi lua51-lgi lua53-lgi lutris lutris-git lxqt-archiver malcontent maliit-framework mate-menus mc mcabber mdbtools mednaffe megatools meld metacity mintlocale mintstick mixxx mmsd-git modemmanager moserial mpv-mpris msgraph mtpfs mtr-gtk mullvad-browser-bin munt-smf2wav muse mutter mutter-dynamic-buffering mutter-performance mutter-x11-scaling mysql-workbench nautilus nautilus-image-converter nautilus-share nbd neard netbird-ui netplan networkmanager networkmanager-iwd networkmanager-openvpn newsflash niri nm-cloud-setup nm-iwd-cloud-setup notion nwg-icon-picker nwg-look nwg-panel obs-gstreamer obs-studio-tytan652 ocrfeeder ofono opencv opencv-cuda opencv2 openipmi opensc openscad orca osinfo-db-tools ostree pacrunner pango pangomm-2.48 pantheon-applications-menu pantheon-calculator pantheon-calendar pantheon-camera pantheon-code pantheon-files pantheon-geoclue2-agent pantheon-mail pantheon-music pantheon-notifications pantheon-onboarding pantheon-photos pantheon-polkit-agent pantheon-print pantheon-screenshot pantheon-settings-daemon pantheon-shortcut-overlay pantheon-tasks pantheon-terminal pantheon-videos paperwork paprefs passim pavucontrol pdf2svg pdfarranger pebbles-git perf performous phoc phodav phpstorm phpstorm-jre pinentry pipewire pipewire-audio pipewire-pulse pitivi plank plasma-nm plasma-pa playerctl plymouth poedit polari polkit polkit-consolekit polkit-qt5 polkit-qt6 pop-bin pop-gtk-theme-git poppler-glib power-profiles-daemon pqiv pragha preload profanity profanity-gtk protonmail-bridge-core ptyxis pulseaudio-equalizer-ladspa puzzles py3status pycharm-community-eap pycharm-community-edition python-bluepy python-dasbus python-dbus python-dbus-fast python-dbusmock python-dleyna python-gobject python-manimpango python-volume_key pyzy qalculate-gtk qemu-arch-extra-git qemu-audio-dbus qemu-common qemu-git qemu-guest-agent qemu-guest-agent-git qemu-headless-arch-extra-git qemu-headless-git qemu-hw-usb-smartcard qemu-img qemu-pr-helper qemu-system-aarch64 qemu-system-alpha qemu-system-arm qemu-system-avr qemu-system-cris qemu-system-hppa qemu-system-loongarch64 qemu-system-m68k qemu-system-microblaze qemu-system-mips qemu-system-nios2 qemu-system-or1k qemu-system-ppc qemu-system-riscv qemu-system-rx qemu-system-s390x qemu-system-sh4 qemu-system-sparc qemu-system-tricore qemu-system-x86 qemu-system-xtensa qemu-tools qemu-ui-curses qemu-ui-dbus qemu-ui-gtk qemu-ui-sdl qemu-ui-spice-app qemu-user qemu-vhost-user-gpu qt6-base qt6-multimedia-gstreamer qt6-webengine qtcreator qtkeychain-qt5 qtkeychain-qt6 quickdocs qxmpp-qt5 qxmpp-qt6 r rauc redshift regexxer remmina retro-gtk rhythmbox rnote rofi-emoji rofi-wayland rqbit-desktop rspamd runescape-launcher rygel sane satty sdcv seadrive-daemon seahorse-nautilus secrets sensors-applet setbfree-lv2 setbfree-standalone sfizz-lv2 sfizz-vst3 share-preview shared-mime-info signal-desktop signal-desktop-beta signon-ui simple-scan skktools slirp4netns snapshot snes9x-gtk sofia-sip solaar songrec spectmorph-tools spice spice-gtk spice-vdagent spot-client sshfs startdde steam-native-runtime stlink strawberry strawberry-full-git strawberry-git sublime-music-git sushi sway-git swaybg-git swayimg swaylock-git swaync swell-foop switchboard switchboard-plug-about switchboard-plug-applications switchboard-plug-bluetooth switchboard-plug-datetime switchboard-plug-desktop switchboard-plug-display switchboard-plug-keyboard switchboard-plug-locale switchboard-plug-mouse-touchpad switchboard-plug-network switchboard-plug-notifications switchboard-plug-online-accounts switchboard-plug-parental-controls switchboard-plug-power switchboard-plug-printers switchboard-plug-security-privacy switchboard-plug-sharing switchboard-plug-sound switchboard-plug-user-accounts switchboard-plug-wacom switcheroo-control swtpm syslog-ng sysprof system-config-printer tartube tblock-gui tecla telegram-desktop telepathy-glib telepathy-idle telepathy-logger telepathy-mission-control template-glib text-engine themix-theme-materia-git themix-theme-oomox-git thunderbird tio totem-pl-parser touchegg tpm2-abrmd tracker3 tracker3-miners tracktion-waveform tradingview transmageddon transmission-remote-gtk tropy-bin tuba udisks2 udisks2-btrfs udisks2-lvm2 ueberzugpp uhttpmock ukui-menus upower uresourced usbguard usbip usbredir vala vala-panel-appmenu-jayatana-git vala-panel-appmenu-registrar vala-panel-appmenu-registrar-git valabind vbam-wx vinagre vital-synth vlc vlc-luajit vmware-horizon-client vmware-horizon-mmr vmware-horizon-rtav vmware-horizon-smartcard vmware-horizon-tsdr vmware-horizon-usb volume_key vte3 vte4 wavebox-beta waybar webkit2gtk webkit2gtk-4.1 webkit2gtk-imgpaste webkitgtk-6.0 webstorm webstorm-jre webwatcher-git weston wezterm wingpanel wingpanel-indicator-a11y wingpanel-indicator-bluetooth wingpanel-indicator-datetime wingpanel-indicator-keyboard wingpanel-indicator-network wingpanel-indicator-nightlight wingpanel-indicator-notifications wingpanel-indicator-power wingpanel-indicator-session wingpanel-indicator-sound wired wireplumber wireshark-cli wmctrl wofi wpebackend-fdo wpewebkit wv wxwidgets-common wxwidgets-gtk3 x42-plugins-lv2 x42-plugins-standalone xdg-dbus-proxy xdg-desktop-portal xdg-desktop-portal-gnome xdg-desktop-portal-gtk xemu-git xfce4-dev-tools xfce4-docklike-plugin xpipe xscreensaver xss-lock zenity zoom +Optional For : clevis fastfetch glusterfs intel-oneapi-basekit libpulse mlt plasma-desktop suil visual-studio-code-bin visual-studio-code-insiders-bin xnviewmp +Conflicts With : None +Replaces : None +Download Size : 4.86 MiB +Installed Size : 36.75 MiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Mon 26 Aug 2024 06:39:57 PM +08 +MD5 Sum : None +SHA-256 Sum : 45b56f3a1bba361b5175f7b4ca5c986c8d8169bd8f93b3ac2ad0adb677c2e21a +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : glib2-devel +Version : 2.80.5-1 +Description : Low level core library - development files +Architecture : x86_64 +URL : https://gitlab.gnome.org/GNOME/glib +Licenses : LGPL-2.1-or-later +Groups : None +Provides : None +Depends On : glib2 glibc libelf python python-packaging +Optional Deps : None +Required By : ayatana-indicator-power ayatana-indicator-session aylurs-gtk-shell-git gdm-settings gdm-settings-git +Optional For : glib2 +Conflicts With : None +Replaces : None +Download Size : 157.58 KiB +Installed Size : 1211.66 KiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Mon 26 Aug 2024 06:39:57 PM +08 +MD5 Sum : None +SHA-256 Sum : 1c4ad5b09612421b6b8974dcbda5877c2a94daa42fbec88554e61443d9c80fc2 +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : glib2-docs +Version : 2.80.5-1 +Description : Low level core library - documentation +Architecture : x86_64 +URL : https://gitlab.gnome.org/GNOME/glib +Licenses : LGPL-2.1-or-later LicenseRef-Public-Domain +Groups : None +Provides : None +Depends On : None +Optional Deps : None +Required By : gtk-doc +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 3.20 MiB +Installed Size : 63.35 MiB +Packager : Jan Alexander Steffens (heftig) +Build Date : Mon 26 Aug 2024 06:39:57 PM +08 +MD5 Sum : None +SHA-256 Sum : 334e9e6c408dcf5477358426232c09c99fa83d52a5912671e40c6aa0b71d9075 +Signatures : B8AC08600F108CDF +Extended Data : None + +Repository : core +Name : glibc +Version : 2.40+r16+gaa533d58ff-2 +Description : GNU C Library +Architecture : x86_64 +URL : https://www.gnu.org/software/libc +Licenses : GPL-2.0-or-later LGPL-2.1-or-later +Groups : None +Provides : None +Depends On : linux-api-headers>=4.10 tzdata filesystem +Optional Deps : gd: for memusagestat + perl: for mtrace +Required By : 3cpio 4ti2 7-zip 7-zip-full 86box 86box-git a2jmidid a52dec aalib aardvark-dns abiword abseil-cpp accessibility-inspector accounts-qml-module accountsservice acl acpi acpica add-determinism adguardhome adios2 adljack adlplug-lv2 adlplug-standalone adlplug-vst adms-git adns advancecomp advcpmv aeolus aerc afdko afl++ age age-plugin-tkey age-plugin-tpm age-plugin-yubikey aha aichat aida-x-clap aida-x-lv2 aida-x-standalone aida-x-vst aida-x-vst3 aircrack-ng aisleriot ajantv2-tools akonadi akonadi-calendar akonadi-calendar-tools akonadi-contacts akonadi-import-wizard akonadi-mime akonadi-notes akonadi-search akonadiconsole akregator alertmanager ali alicloud-vault aliyun-cli alligator almanah alsa-lib alsa-oss alsa-plugins alsa-scarlett-gui alsa-tools alsa-utils amarok ambix-lv2 ambix-standalone ambix-vst amdvlk aml ams amsynth-dssi amsynth-lv2 amsynth-standalone amsynth-vst analitza android-emulator android-ndk android-sdk-cmdline-tools-latest angband angelfish angle-grinder anime-games-launcher-bin antimicrox anydesk-bin aom apk-tools apko app-icon-preview apparmor appstream appstream-generator appstream-glib appstream-qt appstream-qt5 apt aquamarine aquamarine-git arca arch-audit arch-rebuild-order arch-repro-status archinstall archlinux-userland-fs-cmp ardour ardour-git arduino-cli arduino-ctags arduino-fwuploader arduino-ide arduino-language-server argocd argon2 argtable arianna aribb25 arj ark arrpc arti artikulate artyfx ascii astyle asunder asusctl asymptote at-spi2-core at51 atomix attica attr atuin aubio audacity audaspace audex audio-recorder audiocd-kio audiotube audit augustus aura aura-git avldrums.lv2 avogadrolibs avogadrolibs-qt5 avr-binutils aws-c-auth aws-c-cal aws-c-common aws-c-compression aws-c-event-stream aws-c-http aws-c-io aws-c-mqtt aws-c-s3 aws-c-sdkutils aws-crt-cpp aws-sdk-cpp aws-vault axel ayatana-ido ayatana-indicator-datetime ayatana-indicator-keyboard ayatana-indicator-notifications ayatana-indicator-power ayatana-indicator-session ayatana-indicator-sound aylurs-gtk-shell aylurs-gtk-shell-git b43-fwcutter babeld babeltrace2 babl babl-git backuppc bacon baidupcs-go baloo baloo-widgets bandwhich banner barcode base bash bat bcc bcg729 bchoppr bchunk bear bearssl beep bemenu bemenu-ncurses bemenu-wayland bemenu-x11 benzene bespokesynth bettercap bfs bftpd bibtool bibutils bind binutils biome bird birdfont bison bitcoin-daemon bitcoin-qt bitcoin-tx black-hole-solver blas blas64 blender blinken blisp bliss blockbench-bin blop blop.lv2 blosc blosc2 bluedevil bluez bluez-cups bluez-deprecated-tools bluez-hid2hci bluez-libs bluez-mesh bluez-obex bluez-qt bluez-utils bogofilter-db bogofilter-kyotocabinet bogofilter-lmdb bogofilter-sqlite bolt-launcher bomber bootconfig bootiso botan bovo bpf bpf-linker bpftrace breeze breeze-icons breeze-plymouth breeze5 breezy brial brickadia-launcher bridge-utils brltty brook brotli browserpass bsequencer bshapr bslizr btop btrfs-progs bubblewrap bubblewrap-suid buckygen buf buho build2 bully bup bustle byacc bzip2 bzip3 c-ares c-xsc cabextract caddy cage cage-git cairo calendarsupport calf calindori calligra canto-curses cantor capnproto capstone cardinal-clap cardinal-lv2 cardinal-standalone cardinal-vst cardinal-vst3 cargo-audit cargo-c cargo-cyclonedx cargo-deb cargo-flamegraph cargo-license cargo-outdated cargo-release cargo-semver-checks cargo-tarpaulin carla carla-git cartridge-cli casync catdoc catimg cauchy cbindgen cblas cblas64 ccache ccd2iso ccls cddlib cdemu-daemon cdparanoia cdrdao cdrtools cef-minimal-obs-bin cemu-git cern-vdt cervisia cfitsio cfssl charm chatgpt-desktop-bin chewing-editor chezmoi chitose chmlib choosenim choria-io chromaprint chromium-widevine chrony chrootuid chrpath cilium-cli citra-git cjdns cjson ckermit cksfv clamav clapper clash clazy clblast clipgrab cliphist cliquer cloudflare-warp-bin cloudflared clthreads clucene clxclient cm256cc cmake cmark cmark-gfm cmocka cmt cni-plugins cobalt cockroachdb-bin codon-bin coeurl coin-or-asl coin-or-cbc coin-or-cgl coin-or-clp coin-or-coinutils coin-or-csdp coin-or-mp coin-or-osi colord-gtk colord-gtk4 colord-kde comgr committed communicator compface composable-kernel composefs compsize confuse conky conmon connman conntrack-tools consul consul-template container-diff convertlit coolercontrol coordgen coreutils coreutils-hybrid-git cosmic-app-library cosmic-applets cosmic-bg cosmic-comp cosmic-files cosmic-greeter cosmic-launcher cosmic-notifications cosmic-osd cosmic-panel cosmic-randr cosmic-screenshot cosmic-session cosmic-settings cosmic-settings-daemon cosmic-store cosmic-terminal cosmic-text-editor cosmic-workspaces cotp cowsql coxeter cpio cpp-hocon cppdap cppunit cpufetch cpupower cracklib crane crawl-ncurses crawl-tiles cri-o crictl critest criu croc croc-git crowdsec cryfs cryptominisat csound csound-plugins csoundqt ctags ctop ctrtool cubeb cue cuetools cunit cups cups-browsed cups-filters cups-pdf cups-pk-helper curl-rustls curlie cutter cxxbridge cycfx2prog cyrus-sasl cyrus-sasl-gssapi cyrus-sasl-ldap cyrus-sasl-sql cython czkawka-cli czkawka-gui d-spy d2 dagger darling-bin dart dart-sass dasel dash dateutils dav1d davs2 dbmail dbmate dbus-c++ dbus-glib ddrescue debugedit debuginfod deepin-appearance deepin-application-manager deepin-calculator deepin-calendar deepin-camera deepin-compressor deepin-file-manager deepin-launchpad deepin-music deepin-network-core deepin-printer deepin-qt5integration deepin-qt5platform-plugins deepin-qt6integration deepin-qt6platform-plugins deepin-session deepin-session-shell deepin-session-ui deepin-terminal deepin-widgets deepin-wloutput-daemon deja-dup deltachat-rpc-server deskreen desync detox device-mapper dexed-clap dexed-standalone dexed-vst3 dfc dfrs dfu-programmer dhclient dhcp dhcpcd dhcping dictd diesel-cli diffstat difftastic diffutils digikam din ding-libs direnv discimagecreator-git discord-canary-electron-bin discord-chat-exporter-cli discount discover distorm distrho-ports-lv2 distrho-ports-vst distrho-ports-vst3 distro-info dive djvulibre dleyna dma dmenu dmidecode dmtcp dnscrypt-proxy dnsmasq dnssec-tools docbook2x docker docker-machine doctl dolphin dolphin-emu dolphin-emu-avx-git dolphin-emu-git dolphin-emu-primehack-git dolphin-emu-tool dolphin-plugins dolt dontpanic doomretro dos2unix dosfstools dotconf dotnet-host dotnet-host-bin dotnet-runtime dotnet-runtime-6.0 dotnet-runtime-7.0 dotnet-runtime-bin dotnet-sdk dotnet-sdk-6.0 dotnet-sdk-7.0 dotnet-sdk-bin double-conversion doxygen dpf-plugins-clap dpf-plugins-dssi dpf-plugins-ladspa dpf-plugins-lv2 dpf-plugins-standalone dpf-plugins-vst dpf-plugins-vst3 dpkg dragon dragonfly-reverb-clap dragonfly-reverb-lv2 dragonfly-reverb-standalone dragonfly-reverb-vst dragonfly-reverb-vst3 drkonqi droidcam drone drone-cli drone-oss drone-runner-docker drone-runner-exec drone-runner-ssh drumgizmo-lv2 drumgizmo-standalone drumkv1-lv2 drumkv1-standalone drumstick dsniff dsq dssi dtc dte dtk6core dtk6gui dtk6widget dtkcore dtkwidget dua-cli duf duktape dump_syms dumpasn1 dune duplicacy dust dvd+rw-tools dvgrab dvisvgm dwayland e-antic earlyoom easy-pdk easyjson easytag easytether-bin ebook-tools ebou ebumeter ecasound eclib ecm-tools ecos ed edid-decode-git editline editorconfig-checker editorconfig-core-c efibootmgr efitools efivar egl-wayland eksctl electron23 electron27 electron28 electron29 electron30 electron31 electron32 element elephantdsp-roomreverb-clap elephantdsp-roomreverb-lv2 elephantdsp-roomreverb-vst3 elf2uf2-rs elfutils elfx86exts elinks elisa ell elvish embree emby-ffmpeg emby-theater emptyepsilon enblend-enfuse encpipe endless-sky enet enscript entr eog epiphany eq10q erdtree erfa erofs-utils esbuild espeakup espflash espup eteroj.lv2 etherape ethtool ettercap ettercap-gtk eventviews evilginx evince evolution evolution-bogofilter evolution-data-server evolution-ews evolution-spamassassin evtest exempi exfat-utils exfatprogs exim exiv2 expat expressvpn extundelete eza faac faad2 fabla facter fakeroot falkon fastfetch fatresize fatsort faust fbset fcitx5-qt fcrackzip fdkaac fdupes ffcall fflas-ffpack ffmpeg ffmpeg-obs ffmpegthumbs fftw fftw-openmpi fiery fig2dev figlet file file-roller filelight findnewest findutils firecracker firefox firefox-developer-edition firefox-esr fish fish-git flatpak flatpak-builder flatpak-kcm flex flint flip-link flips flite flite1 flterm fltk fluidsynth fluxcd fomp.lv2 foomatic-db-engine foremost forgejo fortune-mod fossil fping fplll fprintd fq fractal fragments frameworkintegration francis freecell-solver freeciv freeglut freerdp freerdp2 freetds freewheeling frei0r-plugins fribidi fricas frotz-dumb fsv3 ft2-clone ftjam fulcio furnace fuse2 fuse3 futuresql fwupd fx fxload fzy gala gamemode gamescope gamescope-git gammaray gammastep gap gap-packages gavl gawk gcc-libs gcc13-libs gcdmaster gcin gcolor3 gcr gcr-4 gdb gdbm gdcm gdk-pixbuf2 gdm gdm-prime gdu geary gedit gedit-plugins geeqie gegl gen2shp genxrdpattern geoclue geoipupdate geonkick-lv2 geonkick-standalone geonkick-vst3 geph4-client gf2x gfan gfold ghostscript ghostwriter ghq giac giada gif2png giflib gigedit giggle gimp gimp-plugin-gmic ginkgo-hpc ginkgo-hpc-cuda ginkgo-hpc-hip girara git-cinnabar git-cliff git-credential-gopass git-delta git-evtag git-smash git-warp-time gitg github-cli gitlab-gitaly gitlab-runner gitleaks gitoxide gitui givaro gjs glab glew glew1.10 glewlwyd glib-networking glib2 glib2-devel glibc-locales glibmm-2.68 glider glow glpk glu glycin gmic gmime3 gmp gmp-ecm gmsynth.lv2 gnac gnome-applets gnome-autoar gnome-bluetooth-3.0 gnome-boxes gnome-break-timer gnome-builder gnome-calculator gnome-calendar gnome-calls gnome-characters gnome-color-manager gnome-connections gnome-console gnome-contacts gnome-control-center gnome-desktop gnome-desktop-4 gnome-disk-utility gnome-flashback gnome-games gnome-initial-setup gnome-keyring gnome-latex gnome-mahjongg gnome-maps gnome-mplayer gnome-multi-writer gnome-online-accounts gnome-panel gnome-podcasts gnome-recipes gnome-remote-desktop gnome-session gnome-settings-daemon gnome-shell gnome-shell-pomodoro gnome-software gnome-subtitles gnome-sudoku gnome-system-monitor gnome-terminal gnome-terminal-transparency gnome-text-editor gnome-tour gnote gnu-netcat gnugo gnupg gnuplot gnuradio gnuradio-iqbal gnuradio-osmosdr gnutls go-ethereum go-licenses go-swagger go-task go-tools go-yq goaurrpc gobject-introspection gocr gocryptfs godot-mono goffice goimapnotify gojq goldendict-webengine-pr-git gom gomuks goobox goocanvas google-glog google-webdesigner gopass-hibp gopass-jsonapi gopass-summon-provider gopsuinfo goreleaser gost gotop gotosocial gox gpac gpart gpaste gperf gperftools gpgme gpsmanshp gputils gqrx grafana grafana-agent grafana-agentctl granatier grantlee grantlee-editor grantleetheme graphite grass greetd greetd-regreet grep gron grub-customizer gsl gsm gsocket gsound gssproxy gst-devtools gst-devtools-libs gst-editing-services gst-libav gst-plugin-gtk gst-plugin-libcamera gst-plugin-msdk gst-plugin-onnx gst-plugin-opencv gst-plugin-pipewire gst-plugin-qml6 gst-plugin-qmlgl gst-plugin-qsv gst-plugin-va gst-plugin-wpe gst-plugins-bad gst-plugins-bad-libs gst-plugins-base gst-plugins-base-libs gst-plugins-good gst-plugins-ugly gst-python gst-rtsp-server gstreamer gstreamer-vaapi gtest gtk-update-icon-cache gtk2 gtk3 gtk3-demos gtk4 gtk4-demos gtksourceview5 gtksourceviewmm gtranslator gtuber guestfs-tools guile1.8 guitarix gum gumbo-parser gupnp-tools gutenprint gvfs gvfs-afc gvfs-dnssd gvfs-goa gvfs-google gvfs-gphoto2 gvfs-mtp gvfs-nfs gvfs-onedrive gvfs-smb gvfs-wsdd gvim gwenview gxplugins.lv2 gzip halibut harfbuzz harfbuzz-cairo harfbuzz-icu harfbuzz-utils haruna harvid hashcash haskell-alsa-core haskell-alsa-mixer haskell-hosc haskell-microspec haskell-tidal haskell-tidal-link hatari haveged hck hcloud hcxdumptool hdapsd hdparm headscale heaptrack heimdall heimdall-grimler-git helix helm helmfile helvum hepmc hexter hey hip-runtime-amd hipblas hipblaslt hipfft hipify-clang hiprand hipsolver hipsparse hiredis hivex hoel hostapd hostess hotdoc hound hplip hsa-amd-aqlprofile-bin hsa-rocr hsakmt-roct hspell htmlcxx http-parser httptunnel hugo hunspell hurl hut hwloc hydra hydrogen hyperv hyphen hyprcursor hypridle hyprland hyprland-git hyprlang hyprlang-git hyprlock hyprpaper hyprpicker-git i3blocks i3lock iaito iat icon-library icu id3lib id3v2 iddawc idle3-tools iempluginsuite-standalone iempluginsuite-vst3 igraph ijs imagemagick imagescan imaginary imake imath imd-git iml incidenceeditor include-what-you-use indent index-fm inetutils infamousplugins iniparser inkscape input-leap-git input-leap-headless-git insight-toolkit insync intel-metee intel-npu-driver-bin intel-oneapi-compiler-shared intel-oneapi-compiler-shared-runtime intel-oneapi-compiler-shared-runtime-libs intel-oneapi-dpcpp-cpp intel-oneapi-dpcpp-debugger intel-oneapi-mkl intel-oneapi-mkl-sycl intel-oneapi-openmp intel-oneapi-tbb intel-oneapi-tcm intel-undervolt ioping iotop-c iperf iperf3 ipp-usb iproute2 ipset iptstate ipvsadm irqbalance irssi isatapd isoimagewriter ispc istio itcl3 itinerary itk-snap-bin iucode-tool iwd j4-dmenu-desktop jack-example-tools jack-stdio jack2 jack2-dbus jack_delay jack_mixer jack_utils jackett jackmeter jackminimix jacktrip jalv jami-daemon jansson japa jasper java-rxtx jbig2dec jbigkit jc303-clap jc303-lv2 jc303-vst3 jconvolver jdk-openjdk jdk11-openjdk jdk17-openjdk jdk21-openjdk jdupes jellyfin-ffmpeg jemalloc jhead jitterentropy jnoisemeter jo joshuto-git jpegoptim jq jre-openjdk jre-openjdk-headless jre11-openjdk jre11-openjdk-headless jre17-openjdk jre17-openjdk-headless jre21-openjdk jre21-openjdk-headless jruby js115 js128 js80p json-c json-glib jsonrpc-glib juce judy jujutsu juk julius jxrlib k3b k9s kaccounts-integration kaccounts-providers kactivitymanagerd kaddressbook kaffeine kaidan kalarm kalgebra kalk kalm kalzium kamera kamoso kanagram kapman kapptemplate karchive karchive5 kasts kate katomic kauth kbackup kbd kbibtex kblackbox kblocks kbookmarks kbounce kbreakout kbruch kcachegrind kcalc kcalendarcore kcalutils kcharselect kclock kcmutils kcodecs kcolorchooser kcolorpicker kcolorpicker-qt5 kcolorscheme kcompletion kconfig kconfigwidgets kcontacts kcoreaddons kcptun kcpuid kcrash kcron kdav kdb kdbg kdbusaddons kddockwidgets-qt6 kde-cdemu-manager kde-cli-tools kde-dev-utils kde-gtk-config kde-inotify-survey kdebugsettings kdeclarative kdeconnect kdecoration kded kdegraphics-mobipocket kdegraphics-thumbnailers kdenetwork-filesharing kdenlive kdepim-addons kdepim-runtime kdeplasma-addons kdesdk-kio kdesdk-thumbnailers kdesu kdevelop kdevelop-pg-qt kdevelop-php kdevelop-python kdf kdiagram kdialog kdiamond kdiff3 kdiskmark kdnssd kdoctools kdsingleapplication kdsoap-qt5 kdsoap-qt6 kdsoap-ws-discovery-client keditbookmarks keepalived kernelshark kexi keysmith keyutils kfilemetadata kfind kfourinline kgamma kgeography kget kglobalaccel kglobalacceld kgoldrunner kgpg kgraphviewer kguiaddons khangman khealthcertificate khelpcenter kholidays ki18n kiconthemes kidentitymanagement kidletime kig kigo kile killbots kimageannotator kimageannotator-qt5 kimageformats kimagemapeditor kimap kinfocenter kio kio-admin kio-extras kio-fuse kio-gdrive kio-zeroconf kio5-extras kirigami kirigami-addons kirigami-addons5 kirigami-gallery kiriki kismet kitemmodels kitemviews kiten kitinerary kjobwidgets kjots kjournald kjumpingcube klassy-git klassy-qt5-git kldap kleopatra klettres klickety klines klystrack-plus kmag kmahjongg kmail kmail-account-wizard kmailtransport kmbox kmenuedit kmidimon kmime kmines kmix kmod kmousetool kmouth kmplot knative-client knavalbattle knetwalk knewstuff knights knotifications knotifyconfig ko koko kolf kollision kolourpaint kommit kompare kompose kongress konqueror konquest konsole konsolepart5 kontact kontactinterface kontrast konversation kopeninghours korganizer kosmindoormap kpackage kparts kpat kpeople kpimtextedit kpipewire kpkpass kplotting kpmcore kproperty kpty kpublictransport kqtquickcharts kquickcharts kquickimageeditor kquickimageeditor5 krb5 krdc krdp krecorder krename kreport kreversi krfb krita krita-plugin-gmic krokiet kronometer kruler krunner krusader ksanecore ksanecore5 kscreen kscreenlocker kseexpr kservice kshisen kshutdown ksirk ksmtp ksnakeduel kspaceduel ksquares ksshaskpass kstars kstatusnotifieritem ksudoku ksvg ksysguard6-git ksystemlog ksystemstats kteatime ktextaddons ktextaddons5 ktexteditor ktexttemplate ktextwidgets ktimer ktimetracker ktnef ktorrent ktouch ktrip ktuberling kturtle kube-apiserver kube-controller-manager kube-linter kube-proxy kube-scheduler kubeadm kubeconform kubectl kubectl-ingress-nginx kubectx kubelet kubeseal kubo kubrick kunitconversion kup kuserfeedback kustomize kvantum kvantum-git kvantum-qt5 kvantum-qt5-git kwallet kwallet-pam kwalletmanager kwave kwayland kwayland-integration kweather kweathercore kwidgetsaddons kwin kwindowsystem kwordquiz kwrited kxmlgui l-smash labplot ladspa lantern-bin lapack lapack64 lapacke lapacke64 lasem latte-integrale layer-shell-qt lazygit lbzip2 lcalc ld-lsb ldproxy lean4-git leatherman legba lego lemon lensfun-git leocad less lf lf-git lftp lhasa lib32-glibc lib32-glibc-eac lib32-glibc-eac-roco lib32-opencore-amr lib3mf libabigail libabw libaccounts-glib libaccounts-qt libad9361 libadwaita libadwaita-demos libaec libaio libajantv2 libakonadi libao libappimage libappindicator-gtk2 libappindicator-gtk3 libass libassuan libasyncns libatasmart libatomic_ops libavc1394 libavif libayatana-appindicator libayatana-indicator libb2 libb64 libbaseencode libblastrampoline libblockdev libblockdev-btrfs libblockdev-crypto libblockdev-dm libblockdev-fs libblockdev-loop libblockdev-lvm libblockdev-mdraid libblockdev-mpath libblockdev-nvdimm libblockdev-nvme libblockdev-part libblockdev-swap libbluray libbpf libbraiding libbsd libburn libc++ libc++abi libcaca libcacard libcalfbox-lss libcamera libcamera-ipa libcamera-tools libcap libcap-ng libcbor libcdaudio libcddb libcdio-paranoia libcdr libcerf libcgif libck libclapper libclapper-gtk libcli libcmis libconfig libcoverart libcpuid libcue libcups libcupsfilters libcutl libcyaml libdaemon libdatachannel libdatrie libdbi libdc1394 libdca libde265 libdeflate libdex libdispatch libdisplay-info libdmtx libdovi libdrm libdv libdvbpsi libdvdcss libdvdnav libdvdread libe-book libebur128 libedataserverui4 libedit libei libelf libepoxy libepubgen libetebase libetonyek libetpan libev libevdev libewf libexif libexttextcat libfabric libfdk-aac libffado libffi libffi7 libfido2 libfilezilla libfilteraudio libfixposix libfontenc libforensic1394 libfprint libfreeaptx libfreehand libfreexl libgcrypt libgcrypt15 libgda6 libgda6-mysql libgda6-postgres libgdm libgdm-prime libgedit-amtk libgedit-gfls libgedit-gtksourceview libgedit-tepl libgexiv2 libgfshare libgig libgirepository libgit2 libgit2-glib libgme libgoa libgoom2 libgpg-error libgravatar libgssglue libgtop libguestfs libgweather-4 libheif libhomfly libhx libical libice libiconv libid3tag libidn libidn11 libiio libimobiledevice libimobiledevice-git libimobiledevice-glue libindi libinih libinput libinsane libinstpatch libiptcdata libirman libiscsi libixion libjodycode libjpeg-turbo libjpeg6-turbo libjuice libkate libkcddb libkcompactdisc libkdcraw libkdcraw5 libkdegames libkdepim libkeccak libkeduvocdocument libkexiv2 libkexiv2-qt5 libkeyfinder libkgapi libkleo libklvanc-git libkmahjongg libkolabxml libkomparediff2 libksane libksane5 libksba libkscreen libksieve libksysguard libktorrent liblangtag liblc3 libldac libliftoff libliftoff-git libliquidsfz liblo liblockfile liblouis liblqr liblscp liblsp-r3d-glx-lib libltc liblzf libmad libmalcontent libmanette libmatio libmaxminddb libmcrypt libmd libmediaart libmediainfo libmesode libmicrodns libmikmod libmirage libmms libmng libmnl libmpc libmpcdec libmpdclient libmpeg2 libmspack libmspub libmsym libmtp libmupdf libmusicbrainz5 libmusicxml libmwaw libmypaint libmythes libnatpmp libnautilus-extension libnbd libndp libnet libnfnetlink libnfs libnghttp2 libnghttp3 libngtcp2 libnitrokey libnl libnm libnm-iwd libnova libnpupnp libnsl libnumbertext libnvidia-container libodfgen libogg libomemo-c libomxil-bellagio libopenmpt libopenshot libopenshot-audio libopusenc liborcus liborigin libosinfo libotr libp11-kit libpagemaker libpaper libpcap libpciaccess libpeas-2 libpg_query libpgm libphonenumber libpillowfight libpipeline libpipewire libplacebo libplasma libplist libplist-git libpng12 libportal libportal-qt5 libportal-qt6 libppd libprocps libproxy libpwquality libqaccessibilityclient-qt5 libqaccessibilityclient-qt6 libqalculate libqb libquotient libqxp libraqm libraw libraw1394 librda librdkafka libre-graph-api libreoffice-fresh libreoffice-fresh-sdk libreoffice-still libreplaygain libressl libretro-beetle-pce libretro-beetle-pce-fast libretro-beetle-supergrafx libretro-blastem libretro-dolphin libretro-kronos libretro-mame libretro-mame2016 libretro-mesen-git libretro-mupen64plus-next libretro-mupen64plus-next-git libretro-opera-git libretro-pcsx2 libretro-picodrive libretro-play libretro-ppsspp libretro-sameboy libretro-stella2014-git libretro-yabause librevenge librewolf librime librsvg librtmp0 librustls libsamplerate libsasl libsbsms libseccomp libsecp256k1 libsemigroups libsepol libserialport libshumate libsidplayfp libsignal-protocol-c libsigsegv libsm libsmbios libsndfile libsodium libsoup3 libspecbleach libspectmorph libspectre libspelling libspf2 libspiro libspnav libspng libssh libstaroffice libstemmer libstrophe libsynctex libtasn1 libtatsu-git libthai libtheora libtiff libtiff5 libtirpc libtommath libtool libtraceevent libtracefs libtsm libuecc libultrahdr libumem-git libunibreak libunistring libunrar libunwind libupnp libupnpp liburcu libusb libusbmuxd libusbmuxd-git libusbsio libutempter libuv libuvc libva-mesa-driver libvdpau-va-gl libverto libvisio libvpx libvpx1.3 libvterm libvterm-0.1 libwacom libwacom-surface libwebp libwebsockets libwhereami libwhich libwireplumber libwlocate libwmf libwnck libwpd libwpg libwps libx11 libx86 libxau libxaw libxcb libxcb-git libxcomposite libxcrypt libxcursor libxcvt libxcvt-git libxdamage libxdg-basedir libxdmcp libxext libxfixes libxfont2 libxft libxi libxinerama libxisf libxkbcommon libxkbcommon-x11 libxkbfile libxklavier libxml++-5.0 libxml2 libxmp libxmu libxp libxpm libxpresent libxrandr libxrender libxres libxsd-frontend libxshmfence libxslt libxss libxt libxtst libxv libxvmc libxxf86vm libyaml libytnef libzen libzmf lidia light-locker lightdm-pantheon-greeter lilv lilypond limine linbox lincity-ng link-grammar linux-atm linuxsampler linuxtv-dvb-apps liquid-dsp liquid-dsp-sse4.1 liquidsfz-lv2 liquidsfz-standalone liquidshell litehtml lksctp-tools lldb-mi lldpd llvm-julia llvm-julia-libs lm_sensors lmdb lmms lockfile-progs logcli lokalize loki loki-canary looking-glass-git looking-glass-host-git lorcon loupe lout lowdown lprint lpsolve lrcalc lrs lskat lsof lsp-plugins-clap lsp-plugins-gst lsp-plugins-ladspa lsp-plugins-lv2 lsp-plugins-standalone lsp-plugins-vst lsp-plugins-vst3 lttng-ust2.12 lua-lgi lua51-lgi lua53-lgi luametatex luau luppp lv2file lv2lint lxqt-config lxsplit ly lynx lz4 lzo m17n-db m4 m4ri m4rie mac macchanger macfanctld maeparser mailcommon mailimporter make malcontent maliit-framework mame mame-tools man-db mandown marble marble-common marble-maps marble-qt markdownpart marknote masscan massif-visualizer master_me-clap master_me-ladspa master_me-lv2 master_me-standalone master_me-vst master_me-vst3 masterpdfeditor-free materialx matrix-appservice-irc matrix-synapse matterbridge mattermost maturin maui-agenda maui-clip maui-nota maui-pix maui-shelf maui-station mauikit mauikit-accounts mauikit-archiver mauikit-calendar mauikit-documents mauikit-filebrowsing mauikit-imagetools mauikit-terminal mauikit-texteditor mauiman mawk maxcso maxcso-git mbedtls mbedtls2 mbelib mbox-importer mbpfan-git mbuffer mc mcpp mcqd md4c mda.lv2 mdadm mdf2iso mediaelch mednaffe meek melange memcached memtester mencoder mephisto.lv2 merkuro mesa mesa-demos mesa-utils mesa-vdpau meshbird messagelib metacity metalog mgard mhash microsocks midi_matrix.lv2 mihomo milkytracker miller milou mimalloc mimetreeparser mimir mingw-w64-tools minieap miniflux minikube minio minio-client minitube miniupnpc minizip minizip-ng minuet miopen-hip mixxx mjpegtools mkcert mkinitcpio-busybox mkinitcpio-nfs-utils mkvtoolnix-cli mlocate mlt mmctl mmsrip mod_dnssd modemmanager-qt mold mold-git molequeue monero monero-gui mongodb mongodb-tools moony.lv2 moserial mosquitto mp3guessenc-beta mpc mpd mpdecimal mpfi mpfr mplayer mpv mpvqt mscp msgpack-c msgraph msolve msr-tools mtdev mtools mtr mtr-gtk mtxclient mullvad-browser-bin multipath-tools mumble mumble-server munge mupdf mupdf-gl mupdf-tools muse musepack-tools musescore mutt mutter mutter-dynamic-buffering mutter-performance mutter-x11-scaling mxml mympd mysql-workbench mystiq naiveproxy nano nanomsg nanosvg nasm nautilus nautilus-image-converter nautilus-share nauty navidrome nawk nbtscan nccl ncmpc ncmpcpp ncompress ncspot ncurses ncurses5-compat-libs ndisc6 neard neatvnc nebula neochat neomutt neon neovide neovide-git net-tools netavark netbird netbird-management netbird-signal netbird-ui netbrake nethsm-cli nethsm-pkcs11 netpbm netperf netplan netsniff-ng nettle networkmanager networkmanager-iwd networkmanager-openvpn networkmanager-qt new-session-manager newsflash nfs-utils nfsidmap nginx nginx-mainline nginx-mod-njs nginx-prometheus-exporter nickel nickel-language-server niri nix nixpacks nm-cloud-setup nm-iwd-cloud-setup nmap noise-repellent noise-suppression-for-voice nomacs nomad nomad-driver-nspawn normaliz notcurses npth nrg2iso nrpe nspr nspr-hg nss nss-mdns nsxiv ntk ntl numactl nushell nuspell nut nvidia-cg-toolkit nvidia-container-toolkit nwg-look nyancat nyxt oath-toolkit ob-xd-lv2 ob-xd-standalone ob-xd-vst3 obs-gstreamer obs-plugin-looking-glass-git obs-rtspserver obs-studio-tytan652 ocaml-augeas ocaml-csexp ocaml-intrinsics-kernel ocaml-pp ocaml-stdio ocl-icd ocrad odin2-synthesizer-clap odin2-synthesizer-lv2 odin2-synthesizer-standalone odin2-synthesizer-vst3 odr-dabmux-git oha oidentd oil okteta okular okularpart5 onnx opencl-clover-mesa opencl-rusticl-mesa opencore-amr opencv opencv-cuda opendht openexr openfec openfortivpn openjade openjpeg2 openlibm openmpi openntpd openpgp-ca openpgp-ca-restd openpgp-card-ssh-agent openpgp-card-tool-git openpgp-card-tools openpmix openscad opensearch-cli opensmtpd-filter-rspamd opensmtpd-filter-senderscore opensnitch openssh openssl openssl-1.0 openssl-1.1 opentimelineio opentofu openucc openucx openvkl openzwave opera-beta-ffmpeg-codecs operator-sdk opnplug-lv2 opnplug-standalone opnplug-vst optipng opus orc orcania oscpack osinfo-db-tools ospray osquery ostree osv-scanner ot-cryptid-clap ot-cryptid-standalone ot-cryptid-vst3 ot-keys-clap ot-keys-standalone ot-keys-vst3 ot-simian-clap ot-simian-standalone ot-simian-vst3 ot-urchin-clap ot-urchin-standalone ot-urchin-vst3 owl-lisp owncloud-client oxygen oxygen5 oxyromon p11-kit p2pool pack-cli packagekit-qt5 packagekit-qt6 packer packwiz-git pacman pacman-bintrans pacman-bintrans-tools pacman-git pacoloco pacquery pacutils padthv1-lv2 padthv1-standalone pahole palapeli palp pam pam_mount pam_wrapper pamixer pango pangomm-2.48 pantheon-applications-menu pantheon-calculator pantheon-calendar pantheon-camera pantheon-files pantheon-geoclue2-agent pantheon-music pantheon-photos pantheon-polkit-agent pantheon-print pantheon-settings-daemon pantheon-videos paperkey papilo pappl paprefs pari parley partitionmanager passt patch patchmatrix pavucontrol pax pciutils pcre pcre2 pcsc-perl pd pd-lua pd-sfizz pdfcrack pdnsd peco perf performous perl perl-crypt-des perl-file-fcntllock perl-io-tty perl-sub-prototype perl-term-readkey pesign pgbouncer pgpdump phodav phonon-qt5 phonon-qt5-vlc phonon-qt6 phonon-qt6-vlc php-igbinary php-imagick php-legacy-igbinary php-legacy-imagick php-legacy-redis php-redis picard picmi picocom picom-git pim-data-exporter pim-sieve-editor pimcommon pinentry pingu pint pipe-rename pipectl pipewire pipewire-audio pipewire-ffado pipewire-jack pipewire-jack-client pipewire-libcamera pipewire-pulse pipewire-roc pipewire-v4l2 pipewire-x11-bell pipewire-zeroconf pitivi pixiewps pixman pkgconf planarity plank plantri plasma-activities plasma-activities-stats plasma-applet-window-buttons plasma-browser-integration plasma-desktop plasma-disks plasma-firewall plasma-integration plasma-nm plasma-pa plasma-pass plasma-sdk plasma-systemmonitor plasma-thunderbolt plasma-vault plasma-welcome plasma-workspace plasma5-integration plasma5support plasmatube playerctl plfit plumber plymouth plymouth-kcm podman podman-desktop poedit polari polkit polkit-kde-agent polkit-qt5 polkit-qt6 polly-git polymake polyphone pop-bin pop-launcher popeye poppler poppler-glib poppler-qt5 poppler-qt6 popt portaudio portmidi portsmf posix postfix postfix-cdb postfix-ldap postfix-lmdb postfix-mongodb postfix-mysql postfix-pcre postfix-pgsql postfix-sqlite postgresql postgresql-libs potrace power-profiles-daemon powerdevil powerline powershell-bin poxml ppl ppp ppsspp pqiv premake presage primecount primesieve print-manager prismlauncher prison processing procinfo-ng procps-ng procs profanity profanity-gtk proftpd prometheus prometheus-bird-exporter prometheus-blackbox-exporter prometheus-elasticsearch-exporter prometheus-ipmi-exporter prometheus-json-exporter prometheus-memcached-exporter prometheus-mysqld-exporter prometheus-node-exporter prometheus-nut-exporter prometheus-postgres-exporter prometheus-smartctl-exporter prometheus-smokeping-prober prometheus-snmp-exporter prometheus-ssl-exporter prometheus-systemd-exporter prometheus-unbound-exporter prometheus-varnish-exporter promtail protobuf protobuf-21 protonmail-bridge protonmail-bridge-core proxychains-ng proxytunnel prrte pt2-clone ptyxis pulseaudio-qt pulumi pup purpose puzzles pv pwgen pwninit pwru pyside6 pythia8 python-aioquic python-asyncpg python-aubio python-audit python-autobahn python-awscrt python-axolotl-curve25519 python-blosc2 python-capng python-cbor2 python-ciso8601 python-clarabel python-cmsis-pack-manager python-contourpy python-coverage python-cramjam python-crc32c python-crcmod python-cvxopt python-cvxpy python-cwcwidth python-cylp python-cypari2 python-cysignals python-cytoolz python-datrie python-dbus python-dbus-fast python-debugpy python-ecos python-evdev python-falcon python-fastbencode python-fastnumbers python-fastparquet python-fpylll python-gammu python-gmpy2 python-gobject python-gpgme python-gssapi python-igraph python-iminuit python-iwlib python-jiter python-johnnycanencrypt python-json-stream-rs-tokenizer python-jupymake python-levenshtein python-libcamera python-libcst python-llvmlite python-lupa python-lxc python-markupsafe python-materialyoucolor-git python-miniupnpc python-mitmproxy-rs python-ml-dtypes python-multidict python-mupdf python-nh3 python-numba python-onnx python-orjson python-osmium python-osqp python-patiencediff python-pendulum python-pikepdf python-pillow python-pillowfight python-pivy python-pplpy python-primecountpy python-psutil python-psycopg2 python-pyalsa python-pyarrow python-pybluez python-pycapnp python-pycosat python-pycrdt python-pycuda python-pycups python-pycurl python-pydantic-core python-pyerfa python-pygame python-pygit2 python-pykcs11 python-pyliblo python-pylorcon2 python-pymongo python-pymupdf python-pynacl python-pynormaliz python-pyopencl python-pyqt5-sip python-pyqt6-3d python-pyqt6-charts python-pyqt6-datavisualization python-pyqt6-networkauth python-pyqt6-sip python-pyqt6-webengine python-pyrsistent python-pyscipopt python-pysequoia python-pytables python-pythia8 python-pywayland python-pywlroots python-qdldl python-qrencode python-rapidfuzz python-rcssmin python-reflink python-regress python-rjsmin python-rpds-py python-rtmidi python-scipy python-scrypt python-scs python-simplejson python-sqlalchemy python-sqlalchemy1.4 python-symengine python-systemd python-tiktoken python-tlsh python-tornado python-tpm2-pytss python-ulid-transform python-urwid python-uvloop python-vigra python-volume_key python-watchfiles python-webrtcvad python-xapian python-xkbcommon python-xmlsec python-y-py python-yaml python-yara python-yarl python-zita-audiotools python-zita-jacktools python-zope-interface python-zope-proxy python-zope-security python-zopfli qalculate-gtk qalculate-qt qastools qbe qbittorrent qbittorrent-enhanced qbittorrent-enhanced-qt5 qbittorrent-nox qbittorrent-qt5 qbs qca-qt5 qca-qt6 qcachegrind qcoro-qt5 qcoro-qt6 qd qemu-audio-alsa qemu-audio-dbus qemu-audio-jack qemu-audio-oss qemu-audio-pa qemu-audio-pipewire qemu-audio-sdl qemu-audio-spice qemu-block-curl qemu-block-dmg qemu-block-gluster qemu-block-gluster-git qemu-block-iscsi qemu-block-iscsi-git qemu-block-nfs qemu-block-ssh qemu-chardev-baum qemu-chardev-spice qemu-common qemu-guest-agent qemu-hw-display-qxl qemu-hw-display-virtio-gpu qemu-hw-display-virtio-gpu-gl qemu-hw-usb-host qemu-hw-usb-redirect qemu-hw-usb-smartcard qemu-img qemu-pr-helper qemu-system-aarch64 qemu-system-alpha qemu-system-arm qemu-system-avr qemu-system-cris qemu-system-hppa qemu-system-loongarch64 qemu-system-m68k qemu-system-microblaze qemu-system-mips qemu-system-nios2 qemu-system-or1k qemu-system-ppc qemu-system-riscv qemu-system-rx qemu-system-s390x qemu-system-sh4 qemu-system-sparc qemu-system-tricore qemu-system-x86 qemu-system-xtensa qemu-tools qemu-ui-curses qemu-ui-dbus qemu-ui-egl-headless qemu-ui-gtk qemu-ui-opengl qemu-ui-sdl qemu-ui-spice-app qemu-ui-spice-core qemu-user qemu-vhost-user-gpu qgpgme-qt6 qhull qjackctl qmc2 qmidiarp-lv2 qmidiarp-standalone qmidictl qmidinet qmidiroute qmlkonsole qpdf qprint qpwgraph qqc2-breeze-style qqc2-desktop-style qqwing qrcodegen-cmake qrcodegencpp-cmake qrupdate qsampler qsopt-ex qsynth qt-sudo qt5ct qt6-3d qt6-5compat qt6-base qt6-charts qt6-connectivity qt6-datavis3d qt6-declarative qt6-graphs qt6-grpc qt6-httpserver qt6-imageformats qt6-languageserver qt6-location qt6-lottie qt6-multimedia qt6-multimedia-ffmpeg qt6-multimedia-gstreamer qt6-networkauth qt6-positioning qt6-quick3d qt6-quick3dphysics qt6-quickeffectmaker qt6-quicktimeline qt6-remoteobjects qt6-scxml qt6-sensors qt6-serialbus qt6-serialport qt6-shadertools qt6-speech qt6-svg qt6-tools qt6-virtualkeyboard qt6-wayland qt6-webchannel qt6-webengine qt6-websockets qt6-webview qt6ct qtcreator qtile qtkeychain-qt5 qtkeychain-qt6 qtractor quota-tools qxgedit qxlsx-qt5 qxlsx-qt6 qxmpp-qt5 qxmpp-qt6 r r2ghidra r8168-dkms r8168-lts radamsa radare2 radeon-profile-git radeontop radvd rage-encryption rankwidth raptor rasqal rauc rav1e rbutil rbw rccl rclone rclone-git rcs rdfind rdma-core readline readstat reapack reaper reaver recastnavigation recode redland redland-storage-mysql redland-storage-postgresql redland-storage-sqlite redland-storage-virtuoso redshift redshift-minimal regexxer rekor release-cli remake remmina reprepro repro-env repro-get reproc reptyr restic restic-git retro-gtk retroarch retry retsnoop rev-plugins revive rgbds rhash rhonabwy rhythmbox rio river rizin rkcommon rkward rlwrap rnnoise roc-toolkit rocalution rocblas rocfft rocm-dbgapi rocm-gdb rocm-opencl-runtime rocm-smi-lib rocminfo rocrand rocs rocsolver rocsparse roctracer rofi-emoji rofi-wayland rog-control-center rootlesskit ropr rosegarden roswell rpcbind rpcsvc-proto rpi-imager rq rqbit rqbit-desktop rqlite rshijack rsibreak rsop rspamd rssguard rssguard-lite rt-tests rtaudio rtl-sdr rtl-sdr-git rtmidi rtmpdump rtosc rubberband rubberband-ladspa rubberband-lv2 rubberband-vamp rubiks ruby ruby-erb ruby-pg ruby-racc ruby-rugged ruby-thin ruff run-parts runescape-launcher rust rustc-demangle rustic rustow-git rygel rz-ghidra s2n-tls sad sagemath samplv1-lv2 samplv1-standalone sane sane-airscan satty sbc sbsigntools sc3-plugins scaleway-cli scanmem scc sccache schedtool scip scponly scrcpy scrypt sddm sddm-git sddm-kcm sdl12-compat-git sdl2 sdparm seadrive-daemon seahorse-nautilus sed selene senpai sensors-applet sentry-native sequoia-chameleon-gnupg sequoia-keyring-linter sequoia-sop sequoia-sq sequoia-sqv sequoia-wot serd serie setbfree-lv2 setbfree-standalone sfizz-lib sfizz-lv2 sfizz-standalone sfizz-vst3 sfsexp sg-323-clap sg-323-vst3 sg3_utils sh4d0wup shaderc shadow shadowsocks-rust shadowsocks-v2ray-plugin shared-mime-info shared_meataxe sharutils sheldon sherlock.lv2 shfmt shfs-utils shiboken6 shine shntool shuffle signal-desktop signify signon-kwallet-extension signon-plugin-oauth2 signon-ui signond sile simple-scan singular sip4 sipcalc sirocco skaffold skanlite skanpage skate skladnik slack-electron slack-term sleuthkit slirp4netns slowhttptest slurm-llnl smb4k smplayer snappy snapshot snd sniffnet soapyaudio socat sofia-sip soft-serve softmaker-office-2024-bin soju solid songrec sonic-visualiser sonivox sonnet sonobus sonyheadphonesclient-bin soplex sops sorcer sord sound-gambit sowing spandsp spawn-fcgi spectacle spectmorph-clap spectmorph-lv2 spectmorph-tools spectmorph-vst speedcrunch spglib spin spire-agent spire-server spot-client spytrap-adb sqlc sqlite sqlite-analyzer sqlite-tcl squashfs-tools squashfuse sratom srrdb-terminal-client srs-state-threads ssh-openpgp-auth ssh-tpm-agent sshd-openpgp-auth sshx sslh sslscan sslsplit ssr stalwart-cli stalwart-mail stalwart-mail-old-upgrade starship startdde startup-notification staticcheck stdoutisatty steam stellarsolver step step-ca step-cli stern stk stlink stochas-clap stochas-standalone stochas-vst3 strawberry strawberry-full-git strawberry-git strike stumpwm subversion sudo sudo-git suil suitesparse suitesparse-graphblas sundials supercollider surge-xt-clap surge-xt-standalone surge-xt-vst3 sushi suyu-dev-qt6-git svgpart svt-av1 svt-av1-git svt-hevc svt-vp9 sway-git swaybg-git swayidle-git swaylock-git sweeper swell-foop swh-plugins swig switchboard switchboard-plug-about switchboard-plug-applications switchboard-plug-bluetooth switchboard-plug-datetime switchboard-plug-desktop switchboard-plug-display switchboard-plug-keyboard switchboard-plug-locale switchboard-plug-mouse-touchpad switchboard-plug-network switchboard-plug-notifications switchboard-plug-online-accounts switchboard-plug-parental-controls switchboard-plug-power switchboard-plug-printers switchboard-plug-security-privacy switchboard-plug-sharing switchboard-plug-sound switchboard-plug-user-accounts switchboard-plug-wacom sws swww symengine symlinks symmetrica sympol sympow syncthing syncthing-discosrv syncthing-relaysrv syndication synology-drive syntax-highlighting synthv1-lv2 synthv1-standalone sysfsutils syslog-ng sysprof system-config-printer system76-firmware system76-scheduler systemd-libs systemd-libs-git systemdgenie systemfd systemsettings sz t1utils tabiew tachyon taglib taglib1 tailscale talhelper talkfilters talloc talosctl tangler tanka tar tbtools tcc tcpdump tcplay tcsh tdb tea teams teamspeak3-server tecla tekton-cli telegraf telepathy-glib telepathy-idle telepathy-logger telepathy-mission-control telly-skout tempo termshark terraform terragrunt testu01 texlab texlive-bin texmaker text-engine tflint tgpt thc-ipv6 threadweaver thunderbird tidy time timescaledb-tune timidity++ tiny tinycdb tinycompress tinyproxy tinyssh tinyxml2 tio tlsh tmon tnftp tokodon tokodon-git tomlplusplus toolame topcom tor totem-pl-parser tpm2-pkcs11 tpm2-tools trace-cmd traceroute tracker3 tracker3-miners tracktion-waveform tradingview traefik tre tree tree-sitter-git trivy tropy-bin trurl tslib ttfautohint tty-clock tuba tup turbo turbostat twolame typst typst-lsp uavs3d-git ucl udisks2 udisks2-btrfs udisks2-lvm2 ueberzugpp uhttpmock ulfius umbrello umoci umu-launcher umurmur unarj unbound unibilium unicorn unixodbc unrar unrar-free unrtf up updlockfiles upower upterm usbguard usbip usbutils util-linux util-linux-libs uutils-coreutils uv uwsgi uwsgi-plugin-cgi uwsgi-plugin-lua51 uwsgi-plugin-mono uwsgi-plugin-php uwsgi-plugin-php-legacy uwsgi-plugin-psgi uwsgi-plugin-pypy uwsgi-plugin-python uwsgi-plugin-rack uwsgi-plugin-webdav uwsgi-plugin-zabbix uwufetch v2ray vala valabind vale valgrind vals vamp-plugin-sdk vaporizer2-clap vaporizer2-lv2 vaporizer2-standalone vaporizer2-vst3 vapoursynth-plugin-bestsource vapoursynth-plugin-deblock vault vaultwarden vcpkg vde2 vector-blf vegeta veracrypt verdict vhs vid.stab vifm vigra vim vimiv vinagre vinegar vinegar-git virtiofsd virtualbox virtualbox-guest-utils virtualbox-guest-utils-nox virtualbox-kvm visitors visual-studio-code-bin visual-studio-code-insiders-bin vital-synth vivaldi-ffmpeg-codecs vlang-git vlc vlc-luajit vm.lv2 vmpk vo-amrwbenc volta volume_key vpnc vscodium vscodium-git vsftpd vte-common vte3 vte4 vtk vulkan-icd-loader vulkan-intel vulkan-mesa-layers vulkan-nouveau vulkan-radeon vulkan-swrast vulkan-virtio vultr-cli vvave wabt wacomtablet wakatime wasm-component-ld watchexec wavemon wavpack waybar wayland wayland-chromium wayland-git wayland-utils waylock wayvnc wcslib webhook webkit2gtk webkit2gtk-4.1 webkit2gtk-imgpaste webkitgtk-6.0 websocat weston wezterm wgcf wget which whisper.cpp whisper.cpp-clblas whisper.cpp-cublas whisper.cpp-openvino whowatch wiiuse wildmidi winbox wireguard-vanity-address wireplumber wireproxy wireshark-cli wireshark-qt wiresmith wishbone-utils wit wl-clip-persist wl-mirror wldash wlr-randr wlroots-git wluma wob wofi wolf-shaper-clap wolf-shaper-dssi wolf-shaper-lv2 wolf-shaper-standalone wolf-shaper-vst wolf-shaper-vst3 wolfssl woodpecker-agent woodpecker-cli woodpecker-server worker-build workerd wpa_supplicant wpewebkit wrangler wstunnel wv wxwidgets-common wxwidgets-gtk3 wxwidgets-qt5 x264 x42-plugins-lv2 x42-plugins-standalone x86_energy_perf_policy xapian-core xavs2 xaw3d xcb-util xcb-util-cursor xcb-util-image xcb-util-keysyms xcb-util-renderutil xcb-util-wm xcp xdg-dbus-proxy xdg-desktop-portal xdg-desktop-portal-cosmic xdg-desktop-portal-dde xdg-desktop-portal-gnome xdg-desktop-portal-gtk xdg-desktop-portal-hyprland xdg-desktop-portal-kde xdg-desktop-portal-wlr xemu-git xevd xeve xf86-input-elographics xf86-input-evdev xf86-input-libinput xf86-input-libinput-git xf86-input-void xf86-input-wacom xf86-video-amdgpu xf86-video-ati xf86-video-dummy xf86-video-fbdev xf86-video-intel xf86-video-nouveau xf86-video-qxl xf86-video-sisusb xf86-video-vesa xf86-video-vmware xf86-video-voodoo xfsdump xjadeo xmlsec xmonad-dbus xmonad-utils xmonk.lv2 xmrig xmrig-donateless xorg-appres xorg-bdftopcf xorg-font-util xorg-fonttosfnt xorg-iceauth xorg-mkfontscale xorg-server xorg-server-xephyr xorg-server-xnest xorg-server-xvfb xorg-sessreg xorg-x11perf xorg-xauth xorg-xbiff xorg-xclipboard xorg-xconsole xorg-xdm xorg-xedit xorg-xev xorg-xeyes xorg-xfontsel xorg-xkbcomp xorg-xkbutils xorg-xload xorg-xlsfonts xorg-xman xorg-xmessage xorg-xpr xorg-xprop xorg-xrdb xorg-xrefresh xorg-xwayland xorg-xwd xorgxrdp xscreensaver xsd xss-lock xsv xtmsplit xtrlock xvidcore xvkbd xwax xwaylandvideobridge xxhash yabridge yabridgectl yaegi yajl yakuake yamdi yaml-cpp yamlfmt yara yasm yder ydotool yggdrasil yoshimi-lv2 yoshimi-standalone yubico-piv-tool yubikey-touch-detector yyjson yyjson-git z3 zam-plugins-clap zam-plugins-ladspa zam-plugins-lv2 zam-plugins-standalone zam-plugins-vst zam-plugins-vst3 zanshin zarchive zbus_xmlgen zeal zeal-git zed zellij zenity zeromq zfp zh-autoconvert zimg ziproxy zita-ajbridge zita-alsa-pcmi zita-at1 zita-convolver zita-jclient zita-njbridge zita-resampler zix zk zlib zlib-ng zmap zopfli zoxide zps zrepl-git zsa-wally-cli zsh-theme-powerlevel10k-git zstd zsync zxing-cpp zycore-c zynaddsubfx zzuf +Optional For : tzdata +Conflicts With : None +Replaces : None +Download Size : 9.88 MiB +Installed Size : 47.64 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:00:52 AM +08 +MD5 Sum : None +SHA-256 Sum : c87c0e71fd03472918dc052b5833d5568ab62866e8259d28ab453ffc4bcf8291 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : glibc-locales +Version : 2.40+r16+gaa533d58ff-2 +Description : Pregenerated locales for GNU C Library +Architecture : x86_64 +URL : https://www.gnu.org/software/libc +Licenses : GPL-2.0-or-later LGPL-2.1-or-later +Groups : None +Provides : None +Depends On : glibc=2.40+r16+gaa533d58ff +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 11.68 MiB +Installed Size : 220.94 MiB +Packager : Frederik Schwan +Build Date : Tue 06 Aug 2024 04:00:52 AM +08 +MD5 Sum : None +SHA-256 Sum : 7d6e57f5a634f5002ced415fef3435efe7b91855cc6ab9f9b4c620f041eb2170 +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gmp +Version : 6.3.0-2 +Description : A free library for arbitrary precision arithmetic +Architecture : x86_64 +URL : https://gmplib.org/ +Licenses : GPL-2.0-or-later LGPL-3.0-or-later +Groups : None +Provides : None +Depends On : gcc-libs glibc +Optional Deps : None +Required By : 4ti2 afpfs-ng bigloo blender cddlib cgal clasp-cl-git cln coreutils coreutils-hybrid-git cryptominisat dnsmasq e-antic ecl emacs emacs-nativecomp emacs-nox emacs-wayland epiphany ffmpeg ffmpeg-full ffmpeg-obs ffmpeg4.4 flint fplll gambas3-gb-gmp gap gfan ghc-libs giac givaro glpk gmp-ecm gnuradio gnustep-base gnutls guile guile1.8 guile2.2 haskell-alsa-core haskell-alsa-mixer haskell-hosc haskell-microspec haskell-tidal haskell-tidal-link igraph iml jellyfin-ffmpeg john kcalc latte-integrale lean4-git lib32-gmp libisl libktorrent libmpc libpoly libqalculate libtomcrypt lidia looking-glass-git lrs maude maxima-sbcl miktex minetest-git minetest-server-git mlton mpfi mpfr msolve nettle nftables normaliz ntl ocaml-zarith openpgp-ca openpgp-ca-restd openscad papilo pari polymake polyml ppl python-fpylll python-gmpy2 python-johnnycanencrypt python-pplpy python-pycryptodome python-pysequoia python-symengine qsopt-ex rocm-gdb ruby ruby2.7 sagemath scip sequoia-keyring-linter sequoia-sop sequoia-sq sequoia-sqv sequoia-wot sh4d0wup singular snd soplex ssh-openpgp-auth sshd-openpgp-auth stress-ng strongswan suitesparse symengine sympol texlive-bin topcom xmap-git xmonad-utils yices zmap +Optional For : crystal +Conflicts With : None +Replaces : None +Download Size : 442.87 KiB +Installed Size : 1036.67 KiB +Packager : Antonio Rojas +Build Date : Wed 17 Apr 2024 06:01:38 PM +08 +MD5 Sum : None +SHA-256 Sum : 286c23ed38d46f803a19d06ca46dc67d96805f7805f7b9818cf9c0ca65a69326 +Signatures : 7A4E76095D8A52E4 +Extended Data : None + +Repository : core +Name : gnupg +Version : 2.4.5-4 +Description : Complete and free implementation of the OpenPGP standard +Architecture : x86_64 +URL : https://www.gnupg.org/ +Licenses : BSD-2-Clause BSD-3-Clause BSD-4-Clause CC0-1.0 GPL-2.0-or-later GPL-3.0-or-later LGPL-2.1-or-later LGPL-3.0-or-later OR GPL-2.0-or-later MIT Unicode-TOU +Groups : None +Provides : None +Depends On : glibc gnutls libgcrypt libgpg-error libksba libldap libusb pinentry sh sqlite tpm2-tss zlib bzip2 libbz2.so=1.0-64 libassuan libassuan.so=9-64 npth libnpth.so=0-64 readline libreadline.so=8-64 +Optional Deps : pcsclite: for using scdaemon not with the gnupg internal card driver +Required By : archlinux-repro browserpass debian-archive-keyring debian-ports-archive-keyring distrobuilder duplicity gpgit gpgme grub2-signing-extension jetring nitrocli pacman pacman-git pass perl-gnupg-interface playonlinux python-gnupg python-gnupginterface python-ipalib repose thunderbird tomb-git torbrowser-launcher ubuntu-keyring visual-studio-code-bin visual-studio-code-insiders-bin +Optional For : archiso archiso-git debootstrap diffoscope in-toto keepass-plugin-keeagent mkinitcpio-archiso mkosi mkosi-git notmuch s3cmd yadm yubikey-touch-detector +Conflicts With : None +Replaces : None +Download Size : 2.69 MiB +Installed Size : 9.69 MiB +Packager : David Runge +Build Date : Thu 18 Jul 2024 05:31:38 AM +08 +MD5 Sum : None +SHA-256 Sum : 36a028db83e02c22de6ec8d32608ec08d88ca9b4a60edfeac7656b81d3114052 +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : gnutls +Version : 3.8.7-1 +Description : A library which provides a secure layer over a reliable transport layer +Architecture : x86_64 +URL : https://www.gnutls.org/ +Licenses : GPL-3.0-or-later AND LGPL-2.1-or-later +Groups : None +Provides : None +Depends On : glibc gcc-libs gmp libtasn1 zlib nettle libp11-kit libidn2 zstd libidn2.so=0-64 libunistring brotli +Optional Deps : tpm2-tss: support for TPM2 wrapped keys +Required By : apt aria2 ario chrony claws-mail connman connman-git criu cups dnsdist emacs emacs-nativecomp emacs-ng emacs-ng-git emacs-nox emacs-wayland emby-ffmpeg ffmpeg ffmpeg-full ffmpeg-obs ffmpeg4.4 fwupd gcr-4 glewlwyd glib-networking gloox gnome-control-center gnupg gnustep-base gsasl gtk-vnc gwenhywfar haskell-gnutls hefur jami-daemon jellyfin-ffmpeg knot knot-resolver lftp lib32-gnutls libcamera libcups libcurl-gnutls libetpan libfilezilla libgadu libinfinity libjcat libmicrohttpd libnbd libnice libpamac-aur libpamac-flatpak librelp librtmp0 libvirt libvncserver libzip loudmouth mailutils mpop nbd neatvnc neomutt nullmailer openconnect opendht pamac-aur pamac-flatpak passim pkcs11-helper powerdns ptyxis qemu-arch-extra-git qemu-git qemu-headless-arch-extra-git qemu-headless-git qemu-img qemu-pr-helper qemu-system-aarch64 qemu-system-alpha qemu-system-arm qemu-system-avr qemu-system-cris qemu-system-hppa qemu-system-loongarch64 qemu-system-m68k qemu-system-microblaze qemu-system-mips qemu-system-nios2 qemu-system-or1k qemu-system-ppc qemu-system-riscv qemu-system-rx qemu-system-s390x qemu-system-sh4 qemu-system-sparc qemu-system-tricore qemu-system-x86 qemu-system-xtensa qemu-user qpdf radcli rhonabwy rpi-imager rtmpdump samba sane-airscan smbclient squid swtpm task taskd tigervnc ulfius valent-git vlc vlc-git vlc-luajit vte3 vte4 weechat wget wget2 wine-staging-wow64 wine-staging-wow64-git wine-wow64 wine-wow64-git wireshark-cli xfce4-mailwatch-plugin xmlsec yaz zeromq +Optional For : anope inspircd proton-ge-custom rsyslog systemd wine wine-ge-custom wine-stable wine-staging wine-tkg-fsync-git wine-tkg-staging-fsync-git +Conflicts With : None +Replaces : None +Download Size : 2.74 MiB +Installed Size : 5.54 MiB +Packager : Andreas Radke +Build Date : Fri 16 Aug 2024 02:36:43 AM +08 +MD5 Sum : None +SHA-256 Sum : d165671649ec7a3dde47f8c5fd2273f46498edecd69c11c3ebd994f005c7a302 +Signatures : 94657AB20F2A092B +Extended Data : None + +Repository : core +Name : gpgme +Version : 1.23.2-6 +Description : A C wrapper library for GnuPG +Architecture : x86_64 +URL : https://www.gnupg.org/related_software/gpgme/ +Licenses : GPL-2.0-or-later LGPL-2.0-or-later LGPL-2.1-or-later MIT +Groups : None +Provides : libgpgme.so=11-64 libgpgmepp.so=6-64 +Depends On : gcc-libs glib2 glibc libassuan libgpg-error gnupg>=2 +Optional Deps : None +Required By : akonadi-calendar almanah balsa claws-mail cri-o dino dino-git firefox-extension-mailvelope flatpak fwknop geany-plugins gitg gmime3 gpg-crypter gpg-tui himalaya isoimagewriter kdepim-addons kget kleopatra kmail kmymoney kwallet kwallet5 libcryptui libdnf libjcat libkleo libreoffice-fresh libreoffice-still librepo mailcommon mcabber merkuro messagelib mimetreeparser mutt neomutt ostree pacman pacman-git plasma-pass podman poppler profanity profanity-gtk python-gpgme qgpgme-qt6 reprepro ripasso ruby-gpgme samba seahorse seahorse-nautilus skopeo volume_key wget2 +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 477.27 KiB +Installed Size : 1487.32 KiB +Packager : David Runge +Build Date : Thu 18 Jul 2024 05:26:09 AM +08 +MD5 Sum : None +SHA-256 Sum : c9e4bb089881eb1ab1c4d73b2f42ebca4878126603e6e730d30277e285d06e68 +Signatures : 9B7A287D9A2EC608 +Extended Data : None + +Repository : core +Name : gpm +Version : 1.20.7.r38.ge82d1a6-6 +Description : A mouse server for the console and xterm +Architecture : x86_64 +URL : https://www.nico.schottelius.org/software/gpm/ +Licenses : GPL +Groups : None +Provides : libgpm.so=2-64 +Depends On : bash procps-ng +Optional Deps : None +Required By : aalib brltty dosemu elinks emacs emacs-nativecomp emacs-ng emacs-ng-git emacs-nox emacs-wayland gvim lib32-gpm libnewt links mc notcurses vim w3m +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 135.74 KiB +Installed Size : 393.39 KiB +Packager : Christian Hesse +Build Date : Wed 24 Jul 2024 02:19:03 AM +08 +MD5 Sum : None +SHA-256 Sum : 95b97f61aacc075e85465a7d5e1c99d1b249b4eba63081a170482cdc8791f799 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : grep +Version : 3.11-1 +Description : A string search utility +Architecture : x86_64 +URL : https://www.gnu.org/software/grep/ +Licenses : GPL3 +Groups : None +Provides : None +Depends On : glibc pcre2 +Optional Deps : None +Required By : aconfmgr-git ani-cli arch-install-scripts base base-devel bashtop bootiso checksec devtools dracut easy-rsa git grml-zsh-config gsocket gzip keycloak mkinitcpio pacman pacman-git posix quickemu redis tdrop themix-export-spotify-git themix-icons-gnome-colors-git themix-theme-materia-git themix-theme-oomox-git ugit usbctl valkey wikiman ytfzf-git +Optional For : pciutils +Conflicts With : None +Replaces : None +Download Size : 233.57 KiB +Installed Size : 889.96 KiB +Packager : Sébastien Luttringer +Build Date : Mon 15 May 2023 07:06:38 AM +08 +MD5 Sum : 838cdf1eac9d7734eaa113e8248a4e88 +SHA-256 Sum : aeb2d51c03190e24d4c021b43bbdb41aef69a28dff314743aade26e288e07a48 +Signatures : E5BB298470AD4E41 +Extended Data : None + +Repository : core +Name : groff +Version : 1.23.0-7 +Description : GNU troff text-formatting system +Architecture : x86_64 +URL : https://www.gnu.org/software/groff/groff.html +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : perl gcc-libs +Optional Deps : netpbm: for use together with man -H command interaction in browsers + psutils: for use together with man -H command interaction in browsers + libxaw: for gxditview + perl-file-homedir: for use with glilypond +Required By : base-devel man-db +Optional For : cgit cgit-aurweb haskell-pandoc linuxdoc-tools pandoc-bin +Conflicts With : None +Replaces : None +Download Size : 2.26 MiB +Installed Size : 8.84 MiB +Packager : Tobias Powalowski +Build Date : Wed 28 Aug 2024 04:19:27 PM +08 +MD5 Sum : None +SHA-256 Sum : 374fef7746a4d372ef2da8773769ee6c669382ac79bd73aedc8bafebaf366ffe +Signatures : 771DF6627EDF681F +Extended Data : None + +Repository : core +Name : grub +Version : 2:2.12-2 +Description : GNU GRand Unified Bootloader (2) +Architecture : x86_64 +URL : https://www.gnu.org/software/grub/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : grub-common grub-bios grub-emu grub-efi-x86_64 +Depends On : sh xz gettext device-mapper +Optional Deps : freetype2: For grub-mkfont usage + fuse3: For grub-mount usage + dosfstools: For grub-mkrescue FAT FS and EFI support + lzop: For grub-mkrescue LZO support + efibootmgr: For grub-install EFI support + libisoburn: Provides xorriso for generating grub rescue iso using grub-mkrescue + os-prober: To detect other OSes when generating grub.cfg in BIOS systems + mtools: For grub-mkrescue FAT FS support +Required By : breeze-grub dracula-grub-theme-git grub-btrfs grub-customizer grub-theme-stylish-color-1080p-git grub-theme-stylish-color-2k-git grub-theme-stylish-color-4k-git grub-theme-stylish-color-ultrawide-git grub-theme-stylish-color-ultrawide2k-git grub-theme-stylish-white-1080p-git grub-theme-stylish-white-2k-git grub-theme-stylish-white-4k-git grub-theme-stylish-white-ultrawide-git grub-theme-stylish-white-ultrawide2k-git grub-theme-stylish-whitesur-1080p-git grub-theme-stylish-whitesur-2k-git grub-theme-stylish-whitesur-4k-git grub-theme-stylish-whitesur-ultrawide-git grub-theme-stylish-whitesur-ultrawide2k-git grub-theme-tela-color-1080p-git grub-theme-tela-color-2k-git grub-theme-tela-color-4k-git grub-theme-tela-color-ultrawide-git grub-theme-tela-color-ultrawide2k-git grub-theme-tela-white-1080p-git grub-theme-tela-white-2k-git grub-theme-tela-white-4k-git grub-theme-tela-white-ultrawide-git grub-theme-tela-white-ultrawide2k-git grub-theme-tela-whitesur-1080p-git grub-theme-tela-whitesur-2k-git grub-theme-tela-whitesur-4k-git grub-theme-tela-whitesur-ultrawide-git grub-theme-tela-whitesur-ultrawide2k-git grub-theme-vimix grub-theme-vimix-color-1080p-git grub-theme-vimix-color-2k-git grub-theme-vimix-color-4k-git grub-theme-vimix-color-ultrawide-git grub-theme-vimix-color-ultrawide2k-git grub-theme-vimix-white-1080p-git grub-theme-vimix-white-2k-git grub-theme-vimix-white-4k-git grub-theme-vimix-white-ultrawide-git grub-theme-vimix-white-ultrawide2k-git grub-theme-vimix-whitesur-1080p-git grub-theme-vimix-whitesur-2k-git grub-theme-vimix-whitesur-4k-git grub-theme-vimix-whitesur-ultrawide-git grub-theme-vimix-whitesur-ultrawide2k-git grub-theme-whitesur-color-1080p-git grub-theme-whitesur-color-2k-git grub-theme-whitesur-color-4k-git grub-theme-whitesur-white-1080p-git grub-theme-whitesur-white-2k-git grub-theme-whitesur-white-4k-git grub-theme-whitesur-whitesur-1080p-git grub-theme-whitesur-whitesur-2k-git grub-theme-whitesur-whitesur-4k-git grub2-signing-extension libguestfs penguins-eggs update-grub woeusb woeusb-ng +Optional For : archiso archiso-git memtest86-efi mkosi-git rauc +Conflicts With : grub-common grub-bios grub-emu grub-efi-x86_64 grub-legacy +Replaces : grub-common grub-bios grub-emu grub-efi-x86_64 +Download Size : 6.84 MiB +Installed Size : 33.67 MiB +Packager : Christian Hesse +Build Date : Sun 17 Mar 2024 03:09:18 AM +08 +MD5 Sum : 39513e40e6eb9647f8b34a61a9c84d64 +SHA-256 Sum : 2b751fb81000bb31802939a571e10aa165c88988efdc82dc1bfcbf26309be949 +Signatures : 6D42BDD116E0068F +Extended Data : None + +Repository : core +Name : gssproxy +Version : 0.9.2-1 +Description : GSSAPI Proxy +Architecture : x86_64 +URL : https://github.com/gssapi/gssproxy +Licenses : custom: MIT +Groups : None +Provides : None +Depends On : libverto-module-base popt ding-libs systemd-libs krb5 glibc +Optional Deps : None +Required By : nfs-utils +Optional For : None +Conflicts With : None +Replaces : None +Download Size : 96.91 KiB +Installed Size : 250.52 KiB +Packager : Andreas Radke +Build Date : Fri 20 Oct 2023 03:19:23 AM +08 +MD5 Sum : e39782f173878afa516f65fad4927553 +SHA-256 Sum : 77b87d1b00e33b3550e780b8a137422240e8b2575166fbf7937efa3c36adae05 +Signatures : 94657AB20F2A092B +Extended Data : None + +Repository : core +Name : guile +Version : 3.0.10-1 +Description : Portable, embeddable Scheme implementation written in C +Architecture : x86_64 +URL : https://www.gnu.org/software/guile/ +Licenses : GPL +Groups : None +Provides : None +Depends On : gmp ncurses libunistring gc libffi libxcrypt +Optional Deps : None +Required By : aarch64-linux-gnu-gdb aisleriot arm-none-eabi-gdb autogen avr-gdb crash gdb gdb-common gnucash lm32-elf-gdb make or1k-elf-gdb ppc64le-elf-gdb remake riscv32-elf-gdb riscv64-elf-gdb riscv64-linux-gnu-gdb rocm-gdb sh2-elf-gdb slib xbindkeys zrythm +Optional For : graphviz weechat +Conflicts With : None +Replaces : None +Download Size : 8.31 MiB +Installed Size : 54.73 MiB +Packager : Frederik Schwan +Build Date : Mon 24 Jun 2024 04:16:00 PM +08 +MD5 Sum : None +SHA-256 Sum : bf4d1b474045a88c7ad97b1ce56e8dd5786e5a10de02a8d33dc8f041edc8d01d +Signatures : 9D4C5AA15426DA0A +Extended Data : None + +Repository : core +Name : gzip +Version : 1.13-4 +Description : GNU compression utility +Architecture : x86_64 +URL : https://www.gnu.org/software/gzip/ +Licenses : GPL-3.0-or-later +Groups : None +Provides : None +Depends On : glibc bash coreutils sed grep +Optional Deps : less: zless support + util-linux: zmore support + diffutils: zdiff/zcmp support +Required By : amavisd-new arch-wiki-lite base base-devel clonezilla engrampa hwdetect logrotate nethack posix-xsi quilt texinfo +Optional For : atool binwalk cgit cgit-aurweb diffoscope dracut man-db mkinitcpio xarchiver xarchiver-gtk2 +Conflicts With : None +Replaces : None +Download Size : 82.37 KiB +Installed Size : 155.36 KiB +Packager : Christian Hesse +Build Date : Wed 24 Jul 2024 02:42:51 PM +08 +MD5 Sum : None +SHA-256 Sum : 0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a +Signatures : 6D42BDD116E0068F +Extended Data : None \ No newline at end of file diff --git a/tests/fixtures/generic/pacman--qii-zstd.json b/tests/fixtures/generic/pacman--qii-zstd.json new file mode 100644 index 000000000..aca8b256d --- /dev/null +++ b/tests/fixtures/generic/pacman--qii-zstd.json @@ -0,0 +1 @@ +[{"name":"zstd","version":"1.5.6-1","description":"Zstandard - Fast real-time compression algorithm","architecture":"x86_64","url":"https://facebook.github.io/zstd/","licenses":["BSD-3-Clause","GPL-2.0-only"],"groups":[],"provides":["libzstd.so=1-64"],"depends_on":["glibc","gcc-libs","zlib","xz","lz4"],"required_by":["android-tools","appstream","avr-gcc","binutils","blender","blosc","boost-libs","btrfs-progs","cloudflare-warp-bin","comgr","curl","dolphin-emu","file","flatpak","gcc","gdal","gnutls","karchive","karchive5","kmod","lib32-zstd","libarchive","libelf","libtiff","libva-mesa-driver","libxmlb","libzip","lld","llvm-libs","mariadb-libs","mesa","mesa-vdpau","minizip-ng","mkinitcpio","mold","netcdf","opencl-clover-mesa","opencl-rusticl-mesa","openucx","postgresql","postgresql-libs","ppsspp","qemu-img","qemu-system-riscv","qemu-system-x86","qgis","qt6-base","qt6-tools","rsync","rustup","squashfs-tools","squashfuse","systemd-libs","tiled","vulkan-radeon","wireshark-cli"],"optional_for":["xarchiver"],"conflicts_with":[],"replaces":[],"installed_size":"1527.00 KiB","packager":"Levente Polyak ","build_date":"Sat 11 May 2024 06:14:19 AM +08","install_date":"Fri 24 May 2024 09:50:31 AM +08","install_reason":"Installed as a dependency for another package","install_script":"No","validated_by":["Signature"],"extended_data":"pkgtype=pkg"},{"name":"apparmor","version":"3.1.7-4","description":"Mandatory Access Control (MAC) using Linux Security Module (LSM)","architecture":"x86_64","url":"https://gitlab.com/apparmor/apparmor","licenses":["GPL-2.0-only","LGPL-2.0-only","LGPL-2.1-only"],"groups":[],"provides":["libapparmor.so=1-64"],"depends_on":["audit","bash","gcc-libs","glibc","pam","python"],"optional_deps":[{"name":"perl","description":"for perl bindings [installed]"},{"name":"python-notify2","description":"for aa-notify"},{"name":"python-psutil","description":"for aa-notify [installed]"},{"name":"ruby","description":"for ruby bindings"}],"required_by":["firejail"],"optional_for":["podman"],"conflicts_with":[],"replaces":[],"installed_size":"4.11 MiB","packager":"Antonio Rojas ","build_date":"Sun 01 Sep 2024 07:43:58 PM +08","install_date":"Thu 05 Sep 2024 06:01:08 AM +08","install_reason":"Explicitly installed","install_script":"No","validated_by":["Signature"],"backup_files":["/etc/apparmor/easyprof.conf [unmodified]","/etc/apparmor/logprof.conf [unmodified]","/etc/apparmor/notify.conf [unmodified]","/etc/apparmor/parser.conf [unmodified]","/etc/apparmor/severity.db [unmodified]","/etc/apparmor.d/abi/3.0 [unmodified]","/etc/apparmor.d/abi/kernel-5.4-outoftree-network [unmodified]","/etc/apparmor.d/abi/kernel-5.4-vanilla [unmodified]","/etc/apparmor.d/abstractions/X [unmodified]","/etc/apparmor.d/abstractions/apache2-common [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/change_profile [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/examine [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/find_mountpoint [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/introspect [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/is_enabled [unmodified]","/etc/apparmor.d/abstractions/aspell [unmodified]","/etc/apparmor.d/abstractions/audio [unmodified]","/etc/apparmor.d/abstractions/authentication [unmodified]","/etc/apparmor.d/abstractions/base [unmodified]","/etc/apparmor.d/abstractions/bash [unmodified]","/etc/apparmor.d/abstractions/consoles [unmodified]","/etc/apparmor.d/abstractions/crypto [unmodified]","/etc/apparmor.d/abstractions/cups-client [unmodified]","/etc/apparmor.d/abstractions/dbus [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-network-manager-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-session [unmodified]","/etc/apparmor.d/abstractions/dbus-session-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-strict [unmodified]","/etc/apparmor.d/abstractions/dconf [unmodified]","/etc/apparmor.d/abstractions/dovecot-common [unmodified]","/etc/apparmor.d/abstractions/dri-common [unmodified]","/etc/apparmor.d/abstractions/dri-enumerate [unmodified]","/etc/apparmor.d/abstractions/enchant [unmodified]","/etc/apparmor.d/abstractions/exo-open [unmodified]","/etc/apparmor.d/abstractions/fcitx [unmodified]","/etc/apparmor.d/abstractions/fcitx-strict [unmodified]","/etc/apparmor.d/abstractions/fonts [unmodified]","/etc/apparmor.d/abstractions/freedesktop.org [unmodified]","/etc/apparmor.d/abstractions/gio-open [unmodified]","/etc/apparmor.d/abstractions/gnome [unmodified]","/etc/apparmor.d/abstractions/gnupg [unmodified]","/etc/apparmor.d/abstractions/groff [unmodified]","/etc/apparmor.d/abstractions/gtk [unmodified]","/etc/apparmor.d/abstractions/gvfs-open [unmodified]","/etc/apparmor.d/abstractions/hosts_access [unmodified]","/etc/apparmor.d/abstractions/ibus [unmodified]","/etc/apparmor.d/abstractions/kde [unmodified]","/etc/apparmor.d/abstractions/kde-globals-write [unmodified]","/etc/apparmor.d/abstractions/kde-icon-cache-write [unmodified]","/etc/apparmor.d/abstractions/kde-language-write [unmodified]","/etc/apparmor.d/abstractions/kde-open5 [unmodified]","/etc/apparmor.d/abstractions/kerberosclient [unmodified]","/etc/apparmor.d/abstractions/ldapclient [unmodified]","/etc/apparmor.d/abstractions/libpam-systemd [unmodified]","/etc/apparmor.d/abstractions/likewise [unmodified]","/etc/apparmor.d/abstractions/mdns [unmodified]","/etc/apparmor.d/abstractions/mesa [unmodified]","/etc/apparmor.d/abstractions/mir [unmodified]","/etc/apparmor.d/abstractions/mozc [unmodified]","/etc/apparmor.d/abstractions/mysql [unmodified]","/etc/apparmor.d/abstractions/nameservice [unmodified]","/etc/apparmor.d/abstractions/nis [unmodified]","/etc/apparmor.d/abstractions/nss-systemd [unmodified]","/etc/apparmor.d/abstractions/nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl [unmodified]","/etc/apparmor.d/abstractions/opencl-common [unmodified]","/etc/apparmor.d/abstractions/opencl-intel [unmodified]","/etc/apparmor.d/abstractions/opencl-mesa [unmodified]","/etc/apparmor.d/abstractions/opencl-nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl-pocl [unmodified]","/etc/apparmor.d/abstractions/openssl [unmodified]","/etc/apparmor.d/abstractions/orbit2 [unmodified]","/etc/apparmor.d/abstractions/p11-kit [unmodified]","/etc/apparmor.d/abstractions/perl [unmodified]","/etc/apparmor.d/abstractions/php [unmodified]","/etc/apparmor.d/abstractions/php-worker [unmodified]","/etc/apparmor.d/abstractions/php5 [unmodified]","/etc/apparmor.d/abstractions/postfix-common [unmodified]","/etc/apparmor.d/abstractions/private-files [unmodified]","/etc/apparmor.d/abstractions/private-files-strict [unmodified]","/etc/apparmor.d/abstractions/python [unmodified]","/etc/apparmor.d/abstractions/qt5 [unmodified]","/etc/apparmor.d/abstractions/qt5-compose-cache-write [unmodified]","/etc/apparmor.d/abstractions/qt5-settings-write [unmodified]","/etc/apparmor.d/abstractions/recent-documents-write [unmodified]","/etc/apparmor.d/abstractions/ruby [unmodified]","/etc/apparmor.d/abstractions/samba [unmodified]","/etc/apparmor.d/abstractions/samba-rpcd [unmodified]","/etc/apparmor.d/abstractions/smbpass [unmodified]","/etc/apparmor.d/abstractions/snap_browsers [unmodified]","/etc/apparmor.d/abstractions/ssl_certs [unmodified]","/etc/apparmor.d/abstractions/ssl_keys [unmodified]","/etc/apparmor.d/abstractions/svn-repositories [unmodified]","/etc/apparmor.d/abstractions/trash [unmodified]","/etc/apparmor.d/abstractions/ubuntu-bittorrent-clients [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/java [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/kde [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/mailto [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/multimedia [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/productivity [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/text-editors [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration-xul [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/user-files [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-feed-readers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-gnome-terminal [unmodified]","/etc/apparmor.d/abstractions/ubuntu-helpers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-konsole [unmodified]","/etc/apparmor.d/abstractions/ubuntu-media-players [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-base [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-launcher [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-messaging [unmodified]","/etc/apparmor.d/abstractions/ubuntu-xterm [unmodified]","/etc/apparmor.d/abstractions/user-download [unmodified]","/etc/apparmor.d/abstractions/user-mail [unmodified]","/etc/apparmor.d/abstractions/user-manpages [unmodified]","/etc/apparmor.d/abstractions/user-tmp [unmodified]","/etc/apparmor.d/abstractions/user-write [unmodified]","/etc/apparmor.d/abstractions/video [unmodified]","/etc/apparmor.d/abstractions/vulkan [unmodified]","/etc/apparmor.d/abstractions/wayland [unmodified]","/etc/apparmor.d/abstractions/web-data [unmodified]","/etc/apparmor.d/abstractions/winbind [unmodified]","/etc/apparmor.d/abstractions/wutmp [unmodified]","/etc/apparmor.d/abstractions/xad [unmodified]","/etc/apparmor.d/abstractions/xdg-desktop [unmodified]","/etc/apparmor.d/abstractions/xdg-open [unmodified]","/etc/apparmor.d/apache2.d/phpsysinfo [unmodified]","/etc/apparmor.d/bin.ping [unmodified]","/etc/apparmor.d/local/README [unmodified]","/etc/apparmor.d/local/bin.ping [unmodified]","/etc/apparmor.d/local/lsb_release [unmodified]","/etc/apparmor.d/local/nvidia_modprobe [unmodified]","/etc/apparmor.d/local/php-fpm [unmodified]","/etc/apparmor.d/local/samba-bgqd [unmodified]","/etc/apparmor.d/local/samba-dcerpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd-classic [unmodified]","/etc/apparmor.d/local/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/local/sbin.klogd [unmodified]","/etc/apparmor.d/local/sbin.syslog-ng [unmodified]","/etc/apparmor.d/local/sbin.syslogd [unmodified]","/etc/apparmor.d/local/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/local/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/local/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/local/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/local/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/local/usr.sbin.identd [unmodified]","/etc/apparmor.d/local/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/local/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/local/usr.sbin.nscd [unmodified]","/etc/apparmor.d/local/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/local/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/local/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/local/zgrep [unmodified]","/etc/apparmor.d/lsb_release [unmodified]","/etc/apparmor.d/nvidia_modprobe [unmodified]","/etc/apparmor.d/php-fpm [unmodified]","/etc/apparmor.d/samba-bgqd [unmodified]","/etc/apparmor.d/samba-dcerpcd [unmodified]","/etc/apparmor.d/samba-rpcd [unmodified]","/etc/apparmor.d/samba-rpcd-classic [unmodified]","/etc/apparmor.d/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/sbin.klogd [unmodified]","/etc/apparmor.d/sbin.syslog-ng [unmodified]","/etc/apparmor.d/sbin.syslogd [unmodified]","/etc/apparmor.d/tunables/alias [unmodified]","/etc/apparmor.d/tunables/apparmorfs [unmodified]","/etc/apparmor.d/tunables/dovecot [unmodified]","/etc/apparmor.d/tunables/etc [unmodified]","/etc/apparmor.d/tunables/global [unmodified]","/etc/apparmor.d/tunables/home [unmodified]","/etc/apparmor.d/tunables/home.d/site.local [unmodified]","/etc/apparmor.d/tunables/kernelvars [unmodified]","/etc/apparmor.d/tunables/multiarch [unmodified]","/etc/apparmor.d/tunables/multiarch.d/site.local [unmodified]","/etc/apparmor.d/tunables/ntpd [unmodified]","/etc/apparmor.d/tunables/proc [unmodified]","/etc/apparmor.d/tunables/run [unmodified]","/etc/apparmor.d/tunables/securityfs [unmodified]","/etc/apparmor.d/tunables/share [unmodified]","/etc/apparmor.d/tunables/sys [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs.d/site.local [unmodified]","/etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/usr.sbin.identd [unmodified]","/etc/apparmor.d/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/usr.sbin.nscd [unmodified]","/etc/apparmor.d/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/usr.sbin.smbd [unmodified]","/etc/apparmor.d/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/zgrep [unmodified]"],"extended_data":"pkgtype=pkg"},{"name":"apulse","version":"0.1.13-1","description":"PulseAudio emulation for ALSA","architecture":"x86_64","url":"https://github.com/i-rinat/apulse","licenses":["custom:MIT"],"groups":[],"provides":[],"depends_on":["alsa-lib","glib2"],"optional_for":[],"conflicts_with":[],"replaces":[],"installed_size":"135.71 KiB","packager":"Unknown Packager","build_date":"Fri 05 Aug 2022 04:06:57 AM +08","install_date":"Fri 05 Aug 2022 04:07:04 AM +08","install_reason":"Explicitly installed","install_script":"Yes","validated_by":null,"extended_data":null}] diff --git a/tests/fixtures/generic/pacman--qii-zstd.out b/tests/fixtures/generic/pacman--qii-zstd.out new file mode 100644 index 000000000..b35107db6 --- /dev/null +++ b/tests/fixtures/generic/pacman--qii-zstd.out @@ -0,0 +1,334 @@ +Name : zstd +Version : 1.5.6-1 +Description : Zstandard - Fast real-time compression algorithm +Architecture : x86_64 +URL : https://facebook.github.io/zstd/ +Licenses : BSD-3-Clause GPL-2.0-only +Groups : None +Provides : libzstd.so=1-64 +Depends On : glibc gcc-libs zlib xz lz4 +Optional Deps : None +Required By : android-tools appstream avr-gcc binutils blender blosc + boost-libs btrfs-progs cloudflare-warp-bin comgr curl + dolphin-emu file flatpak gcc gdal gnutls karchive + karchive5 kmod lib32-zstd libarchive libelf libtiff + libva-mesa-driver libxmlb libzip lld llvm-libs mariadb-libs + mesa mesa-vdpau minizip-ng mkinitcpio mold netcdf + opencl-clover-mesa opencl-rusticl-mesa openucx postgresql + postgresql-libs ppsspp qemu-img qemu-system-riscv + qemu-system-x86 qgis qt6-base qt6-tools rsync rustup + squashfs-tools squashfuse systemd-libs tiled vulkan-radeon + wireshark-cli +Optional For : xarchiver +Conflicts With : None +Replaces : None +Installed Size : 1527.00 KiB +Packager : Levente Polyak +Build Date : Sat 11 May 2024 06:14:19 AM +08 +Install Date : Fri 24 May 2024 09:50:31 AM +08 +Install Reason : Installed as a dependency for another package +Install Script : No +Validated By : Signature +Backup Files : None +Extended Data : pkgtype=pkg + +Name : apparmor +Version : 3.1.7-4 +Description : Mandatory Access Control (MAC) using Linux Security Module (LSM) +Architecture : x86_64 +URL : https://gitlab.com/apparmor/apparmor +Licenses : GPL-2.0-only LGPL-2.0-only LGPL-2.1-only +Groups : None +Provides : libapparmor.so=1-64 +Depends On : audit bash gcc-libs glibc pam python +Optional Deps : perl: for perl bindings [installed] + python-notify2: for aa-notify + python-psutil: for aa-notify [installed] + ruby: for ruby bindings +Required By : firejail +Optional For : podman +Conflicts With : None +Replaces : None +Installed Size : 4.11 MiB +Packager : Antonio Rojas +Build Date : Sun 01 Sep 2024 07:43:58 PM +08 +Install Date : Thu 05 Sep 2024 06:01:08 AM +08 +Install Reason : Explicitly installed +Install Script : No +Validated By : Signature +Backup Files : /etc/apparmor/easyprof.conf [unmodified] + /etc/apparmor/logprof.conf [unmodified] + /etc/apparmor/notify.conf [unmodified] + /etc/apparmor/parser.conf [unmodified] + /etc/apparmor/severity.db [unmodified] + /etc/apparmor.d/abi/3.0 [unmodified] + /etc/apparmor.d/abi/kernel-5.4-outoftree-network [unmodified] + /etc/apparmor.d/abi/kernel-5.4-vanilla [unmodified] + /etc/apparmor.d/abstractions/X [unmodified] + /etc/apparmor.d/abstractions/apache2-common [unmodified] + /etc/apparmor.d/abstractions/apparmor_api/change_profile [unmodified] + /etc/apparmor.d/abstractions/apparmor_api/examine [unmodified] + /etc/apparmor.d/abstractions/apparmor_api/find_mountpoint [unmodified] + /etc/apparmor.d/abstractions/apparmor_api/introspect [unmodified] + /etc/apparmor.d/abstractions/apparmor_api/is_enabled [unmodified] + /etc/apparmor.d/abstractions/aspell [unmodified] + /etc/apparmor.d/abstractions/audio [unmodified] + /etc/apparmor.d/abstractions/authentication [unmodified] + /etc/apparmor.d/abstractions/base [unmodified] + /etc/apparmor.d/abstractions/bash [unmodified] + /etc/apparmor.d/abstractions/consoles [unmodified] + /etc/apparmor.d/abstractions/crypto [unmodified] + /etc/apparmor.d/abstractions/cups-client [unmodified] + /etc/apparmor.d/abstractions/dbus [unmodified] + /etc/apparmor.d/abstractions/dbus-accessibility [unmodified] + /etc/apparmor.d/abstractions/dbus-accessibility-strict [unmodified] + /etc/apparmor.d/abstractions/dbus-network-manager-strict [unmodified] + /etc/apparmor.d/abstractions/dbus-session [unmodified] + /etc/apparmor.d/abstractions/dbus-session-strict [unmodified] + /etc/apparmor.d/abstractions/dbus-strict [unmodified] + /etc/apparmor.d/abstractions/dconf [unmodified] + /etc/apparmor.d/abstractions/dovecot-common [unmodified] + /etc/apparmor.d/abstractions/dri-common [unmodified] + /etc/apparmor.d/abstractions/dri-enumerate [unmodified] + /etc/apparmor.d/abstractions/enchant [unmodified] + /etc/apparmor.d/abstractions/exo-open [unmodified] + /etc/apparmor.d/abstractions/fcitx [unmodified] + /etc/apparmor.d/abstractions/fcitx-strict [unmodified] + /etc/apparmor.d/abstractions/fonts [unmodified] + /etc/apparmor.d/abstractions/freedesktop.org [unmodified] + /etc/apparmor.d/abstractions/gio-open [unmodified] + /etc/apparmor.d/abstractions/gnome [unmodified] + /etc/apparmor.d/abstractions/gnupg [unmodified] + /etc/apparmor.d/abstractions/groff [unmodified] + /etc/apparmor.d/abstractions/gtk [unmodified] + /etc/apparmor.d/abstractions/gvfs-open [unmodified] + /etc/apparmor.d/abstractions/hosts_access [unmodified] + /etc/apparmor.d/abstractions/ibus [unmodified] + /etc/apparmor.d/abstractions/kde [unmodified] + /etc/apparmor.d/abstractions/kde-globals-write [unmodified] + /etc/apparmor.d/abstractions/kde-icon-cache-write [unmodified] + /etc/apparmor.d/abstractions/kde-language-write [unmodified] + /etc/apparmor.d/abstractions/kde-open5 [unmodified] + /etc/apparmor.d/abstractions/kerberosclient [unmodified] + /etc/apparmor.d/abstractions/ldapclient [unmodified] + /etc/apparmor.d/abstractions/libpam-systemd [unmodified] + /etc/apparmor.d/abstractions/likewise [unmodified] + /etc/apparmor.d/abstractions/mdns [unmodified] + /etc/apparmor.d/abstractions/mesa [unmodified] + /etc/apparmor.d/abstractions/mir [unmodified] + /etc/apparmor.d/abstractions/mozc [unmodified] + /etc/apparmor.d/abstractions/mysql [unmodified] + /etc/apparmor.d/abstractions/nameservice [unmodified] + /etc/apparmor.d/abstractions/nis [unmodified] + /etc/apparmor.d/abstractions/nss-systemd [unmodified] + /etc/apparmor.d/abstractions/nvidia [unmodified] + /etc/apparmor.d/abstractions/opencl [unmodified] + /etc/apparmor.d/abstractions/opencl-common [unmodified] + /etc/apparmor.d/abstractions/opencl-intel [unmodified] + /etc/apparmor.d/abstractions/opencl-mesa [unmodified] + /etc/apparmor.d/abstractions/opencl-nvidia [unmodified] + /etc/apparmor.d/abstractions/opencl-pocl [unmodified] + /etc/apparmor.d/abstractions/openssl [unmodified] + /etc/apparmor.d/abstractions/orbit2 [unmodified] + /etc/apparmor.d/abstractions/p11-kit [unmodified] + /etc/apparmor.d/abstractions/perl [unmodified] + /etc/apparmor.d/abstractions/php [unmodified] + /etc/apparmor.d/abstractions/php-worker [unmodified] + /etc/apparmor.d/abstractions/php5 [unmodified] + /etc/apparmor.d/abstractions/postfix-common [unmodified] + /etc/apparmor.d/abstractions/private-files [unmodified] + /etc/apparmor.d/abstractions/private-files-strict [unmodified] + /etc/apparmor.d/abstractions/python [unmodified] + /etc/apparmor.d/abstractions/qt5 [unmodified] + /etc/apparmor.d/abstractions/qt5-compose-cache-write [unmodified] + /etc/apparmor.d/abstractions/qt5-settings-write [unmodified] + /etc/apparmor.d/abstractions/recent-documents-write [unmodified] + /etc/apparmor.d/abstractions/ruby [unmodified] + /etc/apparmor.d/abstractions/samba [unmodified] + /etc/apparmor.d/abstractions/samba-rpcd [unmodified] + /etc/apparmor.d/abstractions/smbpass [unmodified] + /etc/apparmor.d/abstractions/snap_browsers [unmodified] + /etc/apparmor.d/abstractions/ssl_certs [unmodified] + /etc/apparmor.d/abstractions/ssl_keys [unmodified] + /etc/apparmor.d/abstractions/svn-repositories [unmodified] + /etc/apparmor.d/abstractions/trash [unmodified] + /etc/apparmor.d/abstractions/ubuntu-bittorrent-clients [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/java [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/kde [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/mailto [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/multimedia [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/productivity [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/text-editors [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration-xul [unmodified] + /etc/apparmor.d/abstractions/ubuntu-browsers.d/user-files [unmodified] + /etc/apparmor.d/abstractions/ubuntu-console-browsers [unmodified] + /etc/apparmor.d/abstractions/ubuntu-console-email [unmodified] + /etc/apparmor.d/abstractions/ubuntu-email [unmodified] + /etc/apparmor.d/abstractions/ubuntu-feed-readers [unmodified] + /etc/apparmor.d/abstractions/ubuntu-gnome-terminal [unmodified] + /etc/apparmor.d/abstractions/ubuntu-helpers [unmodified] + /etc/apparmor.d/abstractions/ubuntu-konsole [unmodified] + /etc/apparmor.d/abstractions/ubuntu-media-players [unmodified] + /etc/apparmor.d/abstractions/ubuntu-unity7-base [unmodified] + /etc/apparmor.d/abstractions/ubuntu-unity7-launcher [unmodified] + /etc/apparmor.d/abstractions/ubuntu-unity7-messaging [unmodified] + /etc/apparmor.d/abstractions/ubuntu-xterm [unmodified] + /etc/apparmor.d/abstractions/user-download [unmodified] + /etc/apparmor.d/abstractions/user-mail [unmodified] + /etc/apparmor.d/abstractions/user-manpages [unmodified] + /etc/apparmor.d/abstractions/user-tmp [unmodified] + /etc/apparmor.d/abstractions/user-write [unmodified] + /etc/apparmor.d/abstractions/video [unmodified] + /etc/apparmor.d/abstractions/vulkan [unmodified] + /etc/apparmor.d/abstractions/wayland [unmodified] + /etc/apparmor.d/abstractions/web-data [unmodified] + /etc/apparmor.d/abstractions/winbind [unmodified] + /etc/apparmor.d/abstractions/wutmp [unmodified] + /etc/apparmor.d/abstractions/xad [unmodified] + /etc/apparmor.d/abstractions/xdg-desktop [unmodified] + /etc/apparmor.d/abstractions/xdg-open [unmodified] + /etc/apparmor.d/apache2.d/phpsysinfo [unmodified] + /etc/apparmor.d/bin.ping [unmodified] + /etc/apparmor.d/local/README [unmodified] + /etc/apparmor.d/local/bin.ping [unmodified] + /etc/apparmor.d/local/lsb_release [unmodified] + /etc/apparmor.d/local/nvidia_modprobe [unmodified] + /etc/apparmor.d/local/php-fpm [unmodified] + /etc/apparmor.d/local/samba-bgqd [unmodified] + /etc/apparmor.d/local/samba-dcerpcd [unmodified] + /etc/apparmor.d/local/samba-rpcd [unmodified] + /etc/apparmor.d/local/samba-rpcd-classic [unmodified] + /etc/apparmor.d/local/samba-rpcd-spoolss [unmodified] + /etc/apparmor.d/local/sbin.klogd [unmodified] + /etc/apparmor.d/local/sbin.syslog-ng [unmodified] + /etc/apparmor.d/local/sbin.syslogd [unmodified] + /etc/apparmor.d/local/usr.lib.apache2.mpm-prefork.apache2 [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.anvil [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.auth [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.config [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.deliver [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.dict [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.director [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.doveadm-server [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.dovecot-auth [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.dovecot-lda [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.imap [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.imap-login [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.lmtp [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.log [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.managesieve [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.managesieve-login [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.pop3 [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.pop3-login [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.replicator [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.script-login [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.ssl-params [unmodified] + /etc/apparmor.d/local/usr.lib.dovecot.stats [unmodified] + /etc/apparmor.d/local/usr.sbin.apache2 [unmodified] + /etc/apparmor.d/local/usr.sbin.avahi-daemon [unmodified] + /etc/apparmor.d/local/usr.sbin.dnsmasq [unmodified] + /etc/apparmor.d/local/usr.sbin.dovecot [unmodified] + /etc/apparmor.d/local/usr.sbin.identd [unmodified] + /etc/apparmor.d/local/usr.sbin.mdnsd [unmodified] + /etc/apparmor.d/local/usr.sbin.nmbd [unmodified] + /etc/apparmor.d/local/usr.sbin.nscd [unmodified] + /etc/apparmor.d/local/usr.sbin.ntpd [unmodified] + /etc/apparmor.d/local/usr.sbin.smbd [unmodified] + /etc/apparmor.d/local/usr.sbin.smbldap-useradd [unmodified] + /etc/apparmor.d/local/usr.sbin.traceroute [unmodified] + /etc/apparmor.d/local/usr.sbin.winbindd [unmodified] + /etc/apparmor.d/local/zgrep [unmodified] + /etc/apparmor.d/lsb_release [unmodified] + /etc/apparmor.d/nvidia_modprobe [unmodified] + /etc/apparmor.d/php-fpm [unmodified] + /etc/apparmor.d/samba-bgqd [unmodified] + /etc/apparmor.d/samba-dcerpcd [unmodified] + /etc/apparmor.d/samba-rpcd [unmodified] + /etc/apparmor.d/samba-rpcd-classic [unmodified] + /etc/apparmor.d/samba-rpcd-spoolss [unmodified] + /etc/apparmor.d/sbin.klogd [unmodified] + /etc/apparmor.d/sbin.syslog-ng [unmodified] + /etc/apparmor.d/sbin.syslogd [unmodified] + /etc/apparmor.d/tunables/alias [unmodified] + /etc/apparmor.d/tunables/apparmorfs [unmodified] + /etc/apparmor.d/tunables/dovecot [unmodified] + /etc/apparmor.d/tunables/etc [unmodified] + /etc/apparmor.d/tunables/global [unmodified] + /etc/apparmor.d/tunables/home [unmodified] + /etc/apparmor.d/tunables/home.d/site.local [unmodified] + /etc/apparmor.d/tunables/kernelvars [unmodified] + /etc/apparmor.d/tunables/multiarch [unmodified] + /etc/apparmor.d/tunables/multiarch.d/site.local [unmodified] + /etc/apparmor.d/tunables/ntpd [unmodified] + /etc/apparmor.d/tunables/proc [unmodified] + /etc/apparmor.d/tunables/run [unmodified] + /etc/apparmor.d/tunables/securityfs [unmodified] + /etc/apparmor.d/tunables/share [unmodified] + /etc/apparmor.d/tunables/sys [unmodified] + /etc/apparmor.d/tunables/xdg-user-dirs [unmodified] + /etc/apparmor.d/tunables/xdg-user-dirs.d/site.local [unmodified] + /etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 [unmodified] + /etc/apparmor.d/usr.lib.dovecot.anvil [unmodified] + /etc/apparmor.d/usr.lib.dovecot.auth [unmodified] + /etc/apparmor.d/usr.lib.dovecot.config [unmodified] + /etc/apparmor.d/usr.lib.dovecot.deliver [unmodified] + /etc/apparmor.d/usr.lib.dovecot.dict [unmodified] + /etc/apparmor.d/usr.lib.dovecot.director [unmodified] + /etc/apparmor.d/usr.lib.dovecot.doveadm-server [unmodified] + /etc/apparmor.d/usr.lib.dovecot.dovecot-auth [unmodified] + /etc/apparmor.d/usr.lib.dovecot.dovecot-lda [unmodified] + /etc/apparmor.d/usr.lib.dovecot.imap [unmodified] + /etc/apparmor.d/usr.lib.dovecot.imap-login [unmodified] + /etc/apparmor.d/usr.lib.dovecot.lmtp [unmodified] + /etc/apparmor.d/usr.lib.dovecot.log [unmodified] + /etc/apparmor.d/usr.lib.dovecot.managesieve [unmodified] + /etc/apparmor.d/usr.lib.dovecot.managesieve-login [unmodified] + /etc/apparmor.d/usr.lib.dovecot.pop3 [unmodified] + /etc/apparmor.d/usr.lib.dovecot.pop3-login [unmodified] + /etc/apparmor.d/usr.lib.dovecot.replicator [unmodified] + /etc/apparmor.d/usr.lib.dovecot.script-login [unmodified] + /etc/apparmor.d/usr.lib.dovecot.ssl-params [unmodified] + /etc/apparmor.d/usr.lib.dovecot.stats [unmodified] + /etc/apparmor.d/usr.sbin.apache2 [unmodified] + /etc/apparmor.d/usr.sbin.avahi-daemon [unmodified] + /etc/apparmor.d/usr.sbin.dnsmasq [unmodified] + /etc/apparmor.d/usr.sbin.dovecot [unmodified] + /etc/apparmor.d/usr.sbin.identd [unmodified] + /etc/apparmor.d/usr.sbin.mdnsd [unmodified] + /etc/apparmor.d/usr.sbin.nmbd [unmodified] + /etc/apparmor.d/usr.sbin.nscd [unmodified] + /etc/apparmor.d/usr.sbin.ntpd [unmodified] + /etc/apparmor.d/usr.sbin.smbd [unmodified] + /etc/apparmor.d/usr.sbin.smbldap-useradd [unmodified] + /etc/apparmor.d/usr.sbin.traceroute [unmodified] + /etc/apparmor.d/usr.sbin.winbindd [unmodified] + /etc/apparmor.d/zgrep [unmodified] +Extended Data : pkgtype=pkg + +Name : apulse +Version : 0.1.13-1 +Description : PulseAudio emulation for ALSA +Architecture : x86_64 +URL : https://github.com/i-rinat/apulse +Licenses : custom:MIT +Groups : None +Provides : None +Depends On : alsa-lib glib2 +Optional Deps : None +Required By : None +Optional For : None +Conflicts With : None +Replaces : None +Installed Size : 135.71 KiB +Packager : Unknown Packager +Build Date : Fri 05 Aug 2022 04:06:57 AM +08 +Install Date : Fri 05 Aug 2022 04:07:04 AM +08 +Install Reason : Explicitly installed +Install Script : Yes +Validated By : None +Backup Files : None +Extended Data : None \ No newline at end of file diff --git a/tests/fixtures/generic/pacman--si-graphicsmagick.json b/tests/fixtures/generic/pacman--si-graphicsmagick.json new file mode 100644 index 000000000..174cd128c --- /dev/null +++ b/tests/fixtures/generic/pacman--si-graphicsmagick.json @@ -0,0 +1 @@ +[{"repository":"extra","name":"graphicsmagick","version":"1.3.43-1","description":"Image processing system","architecture":"x86_64","url":"http://www.graphicsmagick.org/","licenses":["MIT"],"groups":[],"provides":["Magick.so","libGraphicsMagickWand.so=2-64","libGraphicsMagick.so=3-64","libGraphicsMagick++-Q16.so"],"depends_on":["bzip2","freetype2","lcms2","libltdl","libpng","libsm","libtiff","libwebp","libxext","xz"],"optional_deps":[{"name":"jasper","description":"jp2 module"},{"name":"libwmf","description":"wmf module"},{"name":"libxml2","description":"msl, svg, url modules"},{"name":"ghostscript","description":"pdf, ps modules"},{"name":"libheif","description":"heic module"},{"name":"libjxl","description":"jpeg-xl module"}],"conflicts_with":[],"replaces":[],"download_size":"2.58 MiB","installed_size":"13.97 MiB","packager":"Caleb Maclennan ","build_date":"Sat 23 Mar 2024 09:55:47 PM CET","validated_by":["MD5 Sum","SHA-256 Sum","Signature"]}] diff --git a/tests/fixtures/generic/pacman--si-graphicsmagick.out b/tests/fixtures/generic/pacman--si-graphicsmagick.out new file mode 100644 index 000000000..800f07dc0 --- /dev/null +++ b/tests/fixtures/generic/pacman--si-graphicsmagick.out @@ -0,0 +1,23 @@ +Repository : extra +Name : graphicsmagick +Version : 1.3.43-1 +Description : Image processing system +Architecture : x86_64 +URL : http://www.graphicsmagick.org/ +Licenses : MIT +Groups : None +Provides : Magick.so libGraphicsMagickWand.so=2-64 libGraphicsMagick.so=3-64 libGraphicsMagick++-Q16.so +Depends On : bzip2 freetype2 lcms2 libltdl libpng libsm libtiff libwebp libxext xz +Optional Deps : jasper: jp2 module + libwmf: wmf module + libxml2: msl, svg, url modules + ghostscript: pdf, ps modules + libheif: heic module + libjxl: jpeg-xl module +Conflicts With : None +Replaces : None +Download Size : 2.58 MiB +Installed Size : 13.97 MiB +Packager : Caleb Maclennan +Build Date : Sat 23 Mar 2024 09:55:47 PM CET +Validated By : MD5 Sum SHA-256 Sum Signature diff --git a/tests/templates/.DS_Store b/tests/templates/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 Date: Sun, 24 Nov 2024 17:30:49 -0800 Subject: [PATCH 48/52] doc update --- CHANGELOG | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5b8b61356..f39054205 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,8 @@ jc changelog -20241120 v1.25.4 +20241124 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) +- Add `pacman` command parser - Add `wg show` command parser - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS From 0be6528afff2cbafbd5437956098184909340934 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 24 Nov 2024 18:13:08 -0800 Subject: [PATCH 49/52] convert size fields and fix issue for optional_deps without a description --- jc/parsers/pacman.py | 17 +++++++++++++---- tests/fixtures/generic/pacman--packages.json | 2 +- tests/fixtures/generic/pacman--packages.out | 7 ++++--- tests/fixtures/generic/pacman--qii-zstd.json | 2 +- .../generic/pacman--si-graphicsmagick.json | 2 +- tests/test_pacman.py | 1 + 6 files changed, 21 insertions(+), 10 deletions(-) diff --git a/jc/parsers/pacman.py b/jc/parsers/pacman.py index 49b734289..8fbeab8c6 100644 --- a/jc/parsers/pacman.py +++ b/jc/parsers/pacman.py @@ -57,8 +57,8 @@ "replaces": [ string ], - "download_size": string, - "installed_size": string, + "download_size": integer, # in bytes + "installed_size": integer, # in bytes "packager": string, "build_date": string, "validated_by": [ @@ -108,7 +108,7 @@ ], "conflicts_with": [], "replaces": [], - "installed_size": "1527.00 KiB", + "installed_size": "1563648", "packager": "Levente Polyak ", "build_date": "Sat 11 May 2024 06:14:19 AM +08", "install_date": "Fri 24 May 2024 09:50:31 AM +08", @@ -205,6 +205,8 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: name_description_fields = {'optional_deps'} + size_fields = {'download_size', 'installed_size'} + # initial split for field lists for item in proc_data: for key, val in item.items(): @@ -225,11 +227,18 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: if key in name_description_fields and isinstance(val, list): new_list = [] for name_desc in val: - n, d = name_desc.split(': ') + n, *d = name_desc.split(': ') + if d == []: + d = '' + else: + d = d[0] new_obj = {'name': n, 'description': d} new_list.append(new_obj) item[key] = new_list + if key in size_fields: + item[key] = jc.utils.convert_size_to_int(val) + return proc_data diff --git a/tests/fixtures/generic/pacman--packages.json b/tests/fixtures/generic/pacman--packages.json index 19c9d7389..2a9057770 100644 --- a/tests/fixtures/generic/pacman--packages.json +++ b/tests/fixtures/generic/pacman--packages.json @@ -1 +1 @@ -[{"repository":"core","name":"acl","version":"2.3.2-1","description":"Access control list utilities, libraries and headers","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/acl","licenses":["LGPL"],"groups":[],"provides":["xfsacl","libacl.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bfs","borg","borg2","bup","casync","cdrtools","clifm-git","coreutils","coreutils-hybrid-git","cups","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","gettext","incus","incus-tools","kio","krusader","lib32-acl","libarchive","libisofs","logrotate","lxd","proftpd","proxmox-backup-client","rsync","rsync-reflink","sed","shadow","snapper","spice-gtk","systemd","tar","udisks2","udisks2-btrfs","udisks2-lvm2","vim","vis","xfsdump"],"optional_for":["diffoscope","mkosi","mkosi-git"],"conflicts_with":["xfsacl"],"replaces":["xfsacl"],"download_size":"137.78 KiB","installed_size":"329.98 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jan 2024 04:57:20 PM +08","md5_sum":"33d329308c838e76498e4eac7e603291","sha_256_sum":"cbfb71e8ba9aca9e51cbdfd77d0ec51371eb865a9a098c77e2c6046962e6ae0a","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"amd-ucode","version":"20240809.59460076-1","description":"Microcode update image for AMD CPUs","architecture":"any","url":"https://gitlab.com/kernel-firmware/linux-firmware","licenses":["custom"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"59.22 KiB","installed_size":"158.98 KiB","packager":"Tobias Powalowski ","build_date":"Mon 12 Aug 2024 02:43:48 AM +08","md5_sum":null,"sha_256_sum":"c04893e8d8defdc2ccfa29c09b2599906291a12b5e470aff9e4a80e43bece68e","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"archlinux-keyring","version":"20240709-1","description":"Arch Linux PGP keyring","architecture":"any","url":"https://gitlab.archlinux.org/archlinux/archlinux-keyring/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["pacman"],"required_by":["base","base-devel","chaotic-keyring"],"optional_for":["mkosi-git"],"conflicts_with":[],"replaces":[],"download_size":"1198.18 KiB","installed_size":"1709.20 KiB","packager":"Christian Hesse ","build_date":"Wed 10 Jul 2024 05:31:37 AM +08","md5_sum":null,"sha_256_sum":"a6f573fc97fc21b55504a4d75d010257792847a5b87f19edff4ffb662f6f53a2","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"argon2","version":"20190702-6","description":"A password-hashing function (reference C implementation)","architecture":"x86_64","url":"https://github.com/P-H-C/phc-winner-argon2","licenses":["Apache","custom:CC0"],"groups":[],"provides":["libargon2.so=1-64"],"depends_on":["glibc"],"required_by":["cryptsetup","keepassxc","opendht","php","php-legacy","python-argon2-cffi-bindings","unrealircd","znc"],"optional_for":["keepass","tomb-git"],"conflicts_with":[],"replaces":[],"download_size":"33.33 KiB","installed_size":"106.02 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 12:53:38 AM +08","md5_sum":null,"sha_256_sum":"467da2efdcef1bab8403ece5895794539b983ea7de664105a2dc821c68e8ba13","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"attr","version":"2.5.2-1","description":"Extended attribute support library for ACL support","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/attr","licenses":["LGPL"],"groups":[],"provides":["xfsattr","libattr.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bcachefs-tools-git","coreutils","coreutils-hybrid-git","glusterfs","lib32-attr","patch","proton-ge-custom","shadow","shake","toybox","wine-ge-custom","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","xfsdump"],"optional_for":[],"conflicts_with":["xfsattr"],"replaces":["xfsattr"],"download_size":"68.41 KiB","installed_size":"216.00 KiB","packager":"Christian Hesse ","build_date":"Sun 14 Jan 2024 10:58:15 PM +08","md5_sum":"50de36b6ebed40dd90f6c42cfb698b53","sha_256_sum":"83bcd58b066492f1242be41fa3f5750586d9eb7d8424a776e9fd6a8c5a496948","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"audit","version":"4.0.2-2","description":"Userspace components of the audit framework","architecture":"x86_64","url":"https://people.redhat.com/sgrubb/audit","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":["libaudit.so=1-64","libauparse.so=0-64"],"depends_on":["glibc","krb5","libkrb5.so=3-64","libgssapi_krb5.so=2-64","libcap-ng","libcap-ng.so=0-64"],"optional_deps":[{"name":"libldap","description":"for audispd-zos-remote"},{"name":"sh","description":"for augenrules"}],"required_by":["apparmor","aravis","dbus","dbus-broker","gdm","gdm-prime","ksystemlog","networkmanager","networkmanager-iwd","osquery","pam","perf","python-audit","shadow","systemd","trace-cmd","usbguard"],"optional_for":["clevis"],"conflicts_with":[],"replaces":[],"download_size":"395.15 KiB","installed_size":"1053.22 KiB","packager":"David Runge ","build_date":"Wed 04 Sep 2024 03:56:53 PM +08","md5_sum":null,"sha_256_sum":"9933298fff9e3866509e25091e02e25533f0a3d27b9964b35503c2ad3f58c47a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"autoconf","version":"2.72-1","description":"A GNU tool for automatically configuring source code","architecture":"any","url":"https://www.gnu.org/software/autoconf","licenses":["GPL2","GPL3","custom"],"groups":[],"provides":[],"depends_on":["awk","m4","diffutils","perl","sh"],"required_by":["argbash","autoconf-archive","base-devel","mate-common"],"optional_for":["asdf-vm","bauh"],"conflicts_with":[],"replaces":[],"download_size":"650.53 KiB","installed_size":"2277.08 KiB","packager":"Antonio Rojas ","build_date":"Sat 23 Dec 2023 08:16:19 AM +08","md5_sum":"cc7e1d210723d19fac4db93d89c77336","sha_256_sum":"44afcc89c89548bede040ae09e66ece236dc99202458bc22866bc3d490df4345","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"automake","version":"1.17-1","description":"A GNU tool for automatically creating Makefiles","architecture":"any","url":"https://www.gnu.org/software/automake","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["perl","bash"],"required_by":["base-devel","mate-common"],"optional_for":["asdf-vm","autoconf-archive","bauh"],"conflicts_with":[],"replaces":[],"download_size":"626.63 KiB","installed_size":"1654.66 KiB","packager":"Lukas Fleischer ","build_date":"Sat 20 Jul 2024 05:26:35 PM +08","md5_sum":null,"sha_256_sum":"71f691855fb6d1edc61e365f40c6dfd704d2af27a9a2828e753eb92cf2e03c9d","signatures":"A91764759326B440","extended_data":null},{"repository":"core","name":"b43-fwcutter","version":"019-5","description":"firmware extractor for the b43 kernel module","architecture":"x86_64","url":"https://wireless.wiki.kernel.org/en/users/Drivers/b43","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["glibc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"17.07 KiB","installed_size":"44.78 KiB","packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:49:54 PM +08","md5_sum":null,"sha_256_sum":"8d8dc6f758afafdae33498321f0d14d82dff166d9dde58414f855491535fb396","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"base","version":"3-2","description":"Minimal package set to define a basic Arch Linux installation","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["filesystem","gcc-libs","glibc","bash","coreutils","file","findutils","gawk","grep","procps-ng","sed","tar","gettext","pciutils","psmisc","shadow","util-linux","bzip2","gzip","xz","licenses","pacman","archlinux-keyring","systemd","systemd-sysvcompat","iputils","iproute2"],"optional_deps":[{"name":"linux","description":"bare metal support"}],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.31 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Sun 08 Oct 2023 09:15:41 AM +08","md5_sum":"9fde97a64c7825c959d498235cede216","sha_256_sum":"25da12f0347e4bef6c215dcd32b6495beb86010a8c7e40828167b95f56639061","signatures":"3B94A80E50A477C7","extended_data":null},{"repository":"core","name":"base-devel","version":"1-2","description":"Basic tools to build Arch Linux packages","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["archlinux-keyring","autoconf","automake","binutils","bison","debugedit","fakeroot","file","findutils","flex","gawk","gcc","gettext","grep","groff","gzip","libtool","m4","make","pacman","patch","pkgconf","sed","sudo","texinfo","which"],"required_by":["multilib-devel"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.05 KiB","installed_size":"0.00 KiB","packager":"Antonio Rojas ","build_date":"Sat 07 Sep 2024 03:08:35 AM +08","md5_sum":null,"sha_256_sum":"412a2effe23751e1c11b2fa68155f1a29ecea5d9dc8ea8cef4e87b7b429d3201","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"bash","version":"5.2.032-2","description":"The GNU Bourne Again shell","architecture":"x86_64","url":"https://www.gnu.org/software/bash/bash.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["sh"],"depends_on":["readline","libreadline.so=8-64","glibc","ncurses"],"optional_deps":[{"name":"bash-completion","description":"for tab completion"}],"required_by":["4ti2","9base","acme.sh","aconfmgr-git","acpid","adljack","afl++","alpine-chroot-install","alvr","ammonite","ananicy","android-ndk","android-sdk-build-tools","ankama-launcher","ant","antiword","antlr4","anything-sync-daemon","apparmor","apt","arch-install-scripts","arch-update","arch-wiki-lite","archiso","archiso-git","archivetools","archlinux-contrib","archlinux-java-run","ardour","ardour-git","arduino-ide","ark","asus-kbd-backlight","at-spi2-core","atop","audio-convert","aurutils","autoconf","autoconf-git","automake","base","bash-completion","bashburn","bashrun","bashtop","bat-extras","bats","bats-assert","bats-file","bats-support","bcachefs-tools","bcc-tools","bees","betterlockscreen","bind","bison","blender","blesh","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","booster","booster-git","bootiso","briar-desktop","brickadia-launcher","bup","bzip2","bzip3","ca-certificates-utils","cairo","carla","cfs-zen-tweaks","chaotic-neofetch-git","checksec","cjdns","clamav","clazy","clevis","cloud-guest-utils","cloud-image-utils","cloud-init","cmake-extras-git","codon-bin","cosmic-session","cpupower","cronie","crowdsec","cscope","cups-filters","db","db5.3","debtap","deepin-kwin","dejagnu","deltachat-desktop","devtools","dhclient","dhcpcd","dialog","dictd","diffutils","digikam","discord-chat-exporter-cli","distrobox","djvulibre","dkms","dmenu","dmtcp","doas-sudo-shim","dracut","drawio-desktop","dtc","e2fsprogs","easy-rsa","ebook-tools","ecl","ed","elfutils","emovix","epsxe","epubcheck","etc-update","exim","fakechroot","fakeroot","fastjet","faust","ffcast","fflas-ffpack","fftw","fig2dev","figlet","findutils","fio","firefox","firefox-developer-edition","firefox-esr","firrtl","flatpak","flex","fltk","foomatic-db-engine","freecell-solver","freedm-git","freedoom-git","freetype2","fricas","fwupd","fzf","gap","gap-packages","gawk","gdbm","gdm","gdm-prime","gedit","geeqie","geogebra","geos","gettext","ghidra","givaro","glib2","gnome-common","gnome-flashback","gnome-session","gnome-settings-daemon","gnome-shell","gnome-subtitles","gnuchess","gnupg","godot-mono-git","gpgit","gpm","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grails","grub","gsl","gsocket","gtk-sharp-3","gtk-update-icon-cache","gtk4","gzip","haskell-dataenc","haskell-extensible-exceptions","haskell-filemanip","haskell-hashtables","haskell-hosc","haskell-microspec","hblock","hdapsd","hdf5","hdf5-openmpi","heaptrack","hepmc","hepmc2","hip-runtime-amd","hipify-clang","hivex","hotdoc","hplip","httrack","hunspell","hwdetect","hydra","hyprshot","i3lock-fancy-git","ibus-typing-booster","icons-in-terminal-git","icu","icu69","ifplugd","ijs","imagescan","incron","intel-oneapi-common","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intellij-idea-community-edition","ipman","iptables","iptables-nft","ipvsadm","irpf","ispell","iverilog-git","jadx","java-runtime-common","jellyfin-server","jenv","jmol","jpeg-archive","jruby","js115","js128","js91","jython","kafka","kakasi","kde-cli-tools","kde-dev-scripts","kde-gtk-config","kdepim-addons","kdevelop","keychain","keycloak","keyutils","kinfocenter","klipperscreen","kmix","kommit","konsole","konversation","krb5","kubetail","kwallet-pam","lantern-bin","laptop-detect","lftp","lib32-libltdl","libassuan","libcamera","libchardet","libcups","libdca","libeatmydata","libgpg-error","libguestfs","libiodbc","libksba","libmbim","libmikmod","libnet","liboggz","libpcap","libpng","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","librewolf","libteam","libtool","libusb-compat","libxml2","libxslt","lightdm-gtk-greeter-settings","linbox","lksctp-tools","lm_sensors","lmms","lsb-release","ltex-ls-bin","lua-language-server","lua-luarepl","lua51-luarepl","lua52-luarepl","lua53-luarepl","lvm2","lxc","lynis","m4","mame","man-db","maven","mbedtls","mc","mcfly","mediathekview","mellite","meson","mill","minicom","miniupnpc","minq-ananicy-git","mjpegtools","mk-configure","mkinitcpio","mkinitcpio-archiso","mkinitcpio-systemd-tool","mkosi","mono","mtools","mullvad-browser-bin","mumble-server","mysql","mysql-clients","ncurses5-compat-libs","neofetch","neofetch-git","neovim-symlinks","netpbm","nfs-utils","nikto","nim","nm-cloud-setup","nm-iwd-cloud-setup","nnn","nnn-nerd","nomachine","npth","nspr","nspr-hg","nss","nss-hg","nuget","nvidia-prime","openapi-diff","openapi-generator","openresolv","openzwave","os-prober","os-prober-btrfs","osquery","ostree","p7zip","pacman","pacman-git","pacman-offline","pahole","pakka","pantheon-files","papirus-folders","pari","pass","pastel-docs","pax-utils","paxtest","pcre","pd","pdftk","perf","pesign","pipewire-jack","pipewire-module-xrdp","pipewire-v4l2","pkgconf","plantuml","plantuml-server","plasma-sdk","plasma-workspace","play.it","plymouth","plymouth-git","pm-utils","podman-docker","ponysay","pop-launcher","pop-launcher-git","posix","postfix","postgresql","pps-tools","preload","prettyping","processing","profile-cleaner","profile-sync-daemon","pulseaudio-control","pulseaudio-equalizer-ladspa","pycharm-community-edition","pyenv","pythia8","python-playwright","qemu-guest-agent","qtcreator","quarto-cli-bin","quilt","r","radare2","rasqal","rauc","rcs","rdma-core","redland","redo-sh","refind","reflector-simple","remmina","river","rizin","rkhunter","rocm-clang-ocl","rocm-gdb","roswell","rp-pppoe","rpmextract","rtirq","ruby-build","rust","sane","sbt","schedtoold","screenfetch","sdcc","sddm","sddm-git","sdedit","sdparm","serproid","sgml-common","shattered-pixel-dungeon","shunit2","singular","smali","smartmontools","solr","source-highlight","sowing","speakup-utils","spirv-tools","sqlcl","sqlmap","ssacli","ssh-tools","steam","steam-native-runtime","steamcmd","steamtinkerlaunch","stumpwm-contrib-git","subversion","switchboard-plug-security-privacy","sympow","syslog-ng","system-config-printer","systemd","taglib","taglib1","termv-git","testssl.sh","texinfo","texlive-bin","tgt","toolbox","tor","tracker3","tradingview","translate-shell","translate-toolkit","transmageddon","tropy-bin","txt2man","ufetch-git","ugit","umu-launcher","unifetch","unzip","usbctl","uuid","vala","valabind","ventoy-bin","vis","vkd3d-proton-mingw-git","vlc","vlc-luajit","vnstat","voacapl","vpnc","wcurl","wezterm","which","wireguard-tools","wireless-regdb","wl-mirror","wqy-zenhei","wv","wxwidgets-gtk3","wxwidgets-qt5","x2goserver","xapian-core","xdg-user-dirs","xdg-utils","xdm-archlinux","xfsprogs","xmlsec","xonotic-data","xorg-server","xorg-server-xvfb","xorg-x11perf","xorg-xdm","xorg-xpr","xosd","xssstate","xsudo-git","xwax","xz","yabridge","yodl","yosys","z","zaproxy","zramswap"],"optional_for":["a2jmidid","alsa-oss","alsa-utils","audit","btrbk","ecasound","gcin","hatari","ipxe","kernelshark","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","libkkc","lokalize","mdadm","mumble","mympd","ncurses","niri","nvm","openssh","passt","pcre2","rt-tests","skim","tzdata","unbound","usbutils","vim-csound","vim-runtime","wit"],"conflicts_with":[],"replaces":[],"download_size":"1859.23 KiB","installed_size":"9419.19 KiB","packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 01:59:54 PM +08","md5_sum":null,"sha_256_sum":"a067b212c273e1102ee9f85b916ed354760937d886b67d20b246253b2d2bbd6b","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"binutils","version":"2.43+r4+g7999dae6961-1","description":"A set of programs to assemble and manipulate binary and object files","architecture":"x86_64","url":"https://www.gnu.org/software/binutils/","licenses":["GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.0-or-later","LGPL-3.0-or-later","GFDL-1.3","FSFAP"],"groups":[],"provides":["libctf.so=0-64","libgprofng.so=0-64","libsframe.so=1-64"],"depends_on":["glibc","jansson","libelf","zlib","zstd"],"optional_deps":[{"name":"debuginfod","description":"for debuginfod server/client functionality"}],"required_by":["0ad","base-devel","bootiso","bpf","bpftrace","checksec","debtap","devtools","dracut-hook-uefi","flatpak-builder","fpc","gcc","gcc13","gdb-dashboard","gsocket","imd-git","kcov","libabigail","looking-glass-git","looking-glass-host-git","mkinitcpio","namcap","openucx","peda","perf","posix","posix-software-development","rebuild-detector","rmlint","sbctl","systemd-ukify","systemd-ukify-git","vmware-horizon-client"],"optional_for":["bauh","crash","diffoscope","dracut","hotspot","inxi","xarchiver","xarchiver-gtk2"],"conflicts_with":["binutils-multilib"],"replaces":["binutils-multilib"],"download_size":"7.65 MiB","installed_size":"41.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:32:39 AM +08","md5_sum":null,"sha_256_sum":"6702f58e662908cbd5a86d554363348c2ab5c2e5e594f9d07d5627d16fda57b7","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"bison","version":"3.8.2-6","description":"The GNU general-purpose parser generator","architecture":"x86_64","url":"https://www.gnu.org/software/bison/bison.html","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh","gettext"],"required_by":["base-devel","posix-c-development"],"optional_for":["bauh"],"conflicts_with":[],"replaces":[],"download_size":"772.49 KiB","installed_size":"2598.64 KiB","packager":"Leonidas Spyropoulos ","build_date":"Sat 24 Jun 2023 06:03:51 PM +08","md5_sum":"41fc9c90033977614d66eadc7361d455","sha_256_sum":"91de470c3a723f3cbf615abc9fc6fbd3075aaf5a978820db6550eae151a0afbd","signatures":"59E43E106B247368","extended_data":null},{"repository":"core","name":"brotli","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":["libbrotlicommon.so=1-64","libbrotlidec.so=1-64","libbrotlienc.so=1-64"],"depends_on":["glibc"],"required_by":["android-tools","arrow","chromium","cpp-httplib-compiled","curl","curl-rustls","dvisvgm","dwarfs","electron23","electron30","electron31","electron32","elinks","exiv2","freetype2","gnutls","godot","godot-mono","lib32-brotli","libjxl","libjxl-git","libsoup","libsoup3","links","lynx","nginx-mainline-mod-brotli","nginx-mod-brotli","nix","nodejs","nodejs-lts-hydrogen","nodejs-lts-iron","peazip","perl-io-compress-brotli","podman-desktop","python-brotlicffi","qt6-base","suyu-dev-qt6-git","tracktion-waveform","ungoogled-chromium","wget2","wireshark-cli","woff2"],"optional_for":["apache","engrampa","lighttpd"],"conflicts_with":[],"replaces":[],"download_size":"384.67 KiB","installed_size":"996.63 KiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"2f7ce0251b13c348ddaa16b03b25cd2c27a110b54402d8a0494811f44af0f2a6","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"brotli-testdata","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm - test data","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"6.13 MiB","installed_size":"14.76 MiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"10007017b62e5a0d465e1a180662fcc3ecd2a335ce7870409676e55722ada693","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"btrfs-progs","version":"6.10.1-2","description":"Btrfs filesystem utilities","architecture":"x86_64","url":"https://btrfs.readthedocs.io","licenses":["GPL-2.0-only"],"groups":[],"provides":["btrfs-progs-unstable"],"depends_on":["glibc","util-linux-libs","lzo","zlib","zstd","libgcrypt","systemd-libs"],"optional_deps":[{"name":"python","description":"libbtrfsutil python bindings"},{"name":"e2fsprogs","description":"btrfs-convert"}],"required_by":["archinstall","btrbk","btrfs-assistant","btrfs-assistant-git","btrfs-snapshots-git","btrfsmaintenance","buttermanager","distrobuilder","grub-btrfs","libblockdev-btrfs","libguestfs","refind-btrfs","rusnapshot-git","snap-pac","snap-sync","snapper","udisks2-btrfs"],"optional_for":["cri-o","devtools","docker","dracut","gparted","incus","incus-tools","libblockdev-fs","lxd","mkosi","mkosi-git","podman","schroot","timeshift","udisks2"],"conflicts_with":["btrfs-progs-unstable"],"replaces":["btrfs-progs-unstable"],"download_size":"1213.13 KiB","installed_size":"6661.96 KiB","packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 08:52:23 PM +08","md5_sum":null,"sha_256_sum":"3e6ffcac374877c8a1b449429a2458d14b0a53ab6eb5aaafab10392a011fd833","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"bzip2","version":"1.0.8-6","description":"A high-quality data compression program","architecture":"x86_64","url":"https://sourceware.org/bzip2/","licenses":["BSD"],"groups":[],"provides":["libbz2.so=1.0-64"],"depends_on":["glibc","sh"],"required_by":["adios2","amavisd-new","apt","arrow","base","boost-libs","botan","cargo-dist","cargo-make","cargo-pgrx","cargo-tauri","clamav","clonezilla","coin-or-coinutils","czkawka-cli","czkawka-gui","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","doomseeker","dovecot","dpkg","dra","elinks","emby-ffmpeg","espup","ext4magic","fbreader","felix-rs","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","file","flightcore","fnm","fox","freeciv","freetype2","fsarchiver","gambas3-gb-compress","gimp","git-cinnabar","gnupg","goldendict-webengine-pr-git","goxlr-utility","graphicsmagick","grass","gst-plugins-bad","gst-plugins-good","gtkwave","gtkwave-gtk3-tcl","handbrake","handbrake-cli","handbrake-nvenc-cli","haskell-bz2","haskell-bzlib","httplz","imagemagick","imagemagick-full-git","imlib2","irrlicht","irrlicht-docs","iverilog","iverilog-git","jellyfin-ffmpeg","karchive","karchive5","krokiet","lib32-bzip2","libarchive","libelf","libewf","libgringotts","libgsf","libmirage","libosmium","libretro-dolphin","libretro-play","libsolv","libunarr","libzip","links","ludusavi","lynx","mairix","mariadb","mariadb-lts","maturin","miktex","miniserve","minizip-ng","miopen-hip","mpd","munge","netcdf","nix-init","openpgp-ca","openpgp-ca-restd","ouch","pacman-bintrans","pacman-bintrans-tools","partimage","pbzip2","pcre","pcre2","perl-compress-bzip2","pgpdump","pixi","pyflow","pypy","pypy3","python","python-cramjam","python-johnnycanencrypt","python-osmium","python-pysequoia","python-pytables","python39","qemu-block-dmg","qemu-git","qemu-headless-git","qsopt-ex","quilt","r","rage-encryption","rattler-build","rbutil","reprepro","rocksdb","routino","rye","sentry-cli","sequoia-chameleon-gnupg","sequoia-sop","sequoia-sq","sh4d0wup","simutrans","slade","sonic-visualiser","ssh-openpgp-auth","sshd-openpgp-auth","tarsnap","thunderbird","tracktion-waveform","ugrep","unarchiver","unzip","wasm-pack","wget2","wit","yelp","zeroc-ice","zip"],"optional_for":["3cpio","android-ndk","atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","mkinitcpio","unp","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":"58.38 KiB","installed_size":"145.00 KiB","packager":"Christian Hesse ","build_date":"Mon 18 Mar 2024 06:29:13 AM +08","md5_sum":"93dc36daf50abe23faeafbfb3c8c828f","sha_256_sum":"8779003d659c441b952095c19907603a738c1366f25cc51be3fd139fa4e95748","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"ca-certificates","version":"20240618-1","description":"Common CA certificates - default providers","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["ca-certificates-mozilla"],"required_by":["arch-audit","aria2","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-cacert<=20140824-4"],"replaces":["ca-certificates-cacert<=20140824-4"],"download_size":"2.08 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"982005bd5ecc998c05f561b57bb58b4457407779727e3c3d59e926d34a8b0712","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-mozilla","version":"3.104-1","description":"Mozilla's set of trusted CA certificates","architecture":"x86_64","url":"https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS","licenses":["MPL-2.0"],"groups":[],"provides":[],"depends_on":["ca-certificates-utils>=20181109-3"],"required_by":["ca-certificates"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"387.42 KiB","installed_size":"1069.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Sat 31 Aug 2024 07:36:20 AM +08","md5_sum":null,"sha_256_sum":"37e07a5d347ff9c68157bec8729c4c50f6fa538bbdb612e03166cf59ce8ca3ff","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-utils","version":"20240618-1","description":"Common CA certificates (utilities)","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":["ca-certificates","ca-certificates-java"],"depends_on":["bash","coreutils","findutils","p11-kit"],"required_by":["arch-audit","aria2","ca-certificates-icp_br","ca-certificates-mozilla","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","jdk","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jre","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jre8","jre8-openjdk-headless","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-java"],"replaces":["ca-certificates-java"],"download_size":"10.81 KiB","installed_size":"13.63 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"aabd5b2b7030716ccdd465d607e734e851fe4a01adf8293a3968fe22eb89ce9b","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"coreutils","version":"9.5-2","description":"The basic file, shell and text manipulation utilities of the GNU operating system","architecture":"x86_64","url":"https://www.gnu.org/software/coreutils/","licenses":["GPL-3.0-or-later","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["acl","attr","glibc","gmp","libcap","openssl"],"required_by":["afl-utils","alpine-chroot-install","ant","arch-install-scripts","archinstall","base","bashtop","bats","bootiso","ca-certificates-utils","checksec","devtools","diffoscope","dkms","dmenu","dracut","garuda-update","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grml-zsh-config","gsocket","gzip","hwdetect","i3lock-fancy-git","inxi","java-runtime-common","keycloak","linux","linux-cachyos","linux-cachyos-bore","linux-cachyos-lts","linux-clear","linux-hardened","linux-lqx","linux-lts","linux-lts515","linux-mainline","linux-mainline-x64v3","linux-nitrous","linux-rt","linux-rt-lts","linux-vfio","linux-vfio-lts","linux-vfio-x64v3","linux-xanmod-edge-x64v3","linux-xanmod-lts","linux-xanmod-rt","linux-xanmod-x64v2","linux-zen","linux-znver2","linux-znver3","linux-znver4","luarocks","mariadb","mariadb-lts","minieap","mintstick","mkinitcpio","netctl","p11-kit","pacman","pacman-git","perf","perl-libintl-perl","posix","posix-xsi","quickemu","rpmextract","tblock-gui","tdrop","testssl.sh","usbctl","util-linux","wikiman","xsudo-git","zshdb"],"optional_for":["usbutils"],"conflicts_with":[],"replaces":[],"download_size":"2.75 MiB","installed_size":"15.87 MiB","packager":"Tobias Powalowski ","build_date":"Fri 30 Aug 2024 07:57:19 PM +08","md5_sum":null,"sha_256_sum":"6038dfa8f09380d65d3df7119b19dde96ab20f983b95b1056861aae1fef947b5","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cracklib","version":"2.10.2-1","description":"Password Checking Library","architecture":"x86_64","url":"https://github.com/cracklib/cracklib","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","zlib"],"required_by":["389-ds-base","deepin-pw-check","lib32-cracklib","libpwquality"],"optional_for":["mariadb","mariadb-lts","xkcdpass"],"conflicts_with":[],"replaces":[],"download_size":"275.46 KiB","installed_size":"925.81 KiB","packager":"Tobias Powalowski ","build_date":"Tue 06 Aug 2024 02:39:50 PM +08","md5_sum":null,"sha_256_sum":"692c691ea08066bac8ae2423dd6f332a3e1bb040f9ae615e206d5ad13df98175","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cryptsetup","version":"2.7.5-1","description":"Userspace setup tool for transparent encryption of block devices using dm-crypt","architecture":"x86_64","url":"https://gitlab.com/cryptsetup/cryptsetup/","licenses":["GPL"],"groups":[],"provides":["libcryptsetup.so=12-64"],"depends_on":["device-mapper","libdevmapper.so=1.02-64","openssl","popt","util-linux-libs","libuuid.so=1-64","json-c","libjson-c.so=5-64","argon2","libargon2.so"],"required_by":["archinstall","deepin-file-manager","libblockdev-crypto","luksmeta","mkinitcpio-utils","osquery","pam_mount","stratisd","systemd","tomb-git","volume_key","yubikey-full-disk-encryption","zulucrypt"],"optional_for":["clevis","dracut","hwdetect","mkinitcpio-systemd-tool","mkosi-git","rauc"],"conflicts_with":["mkinitcpio<38-1"],"replaces":[],"download_size":"753.85 KiB","installed_size":"2997.09 KiB","packager":"Christian Hesse ","build_date":"Tue 03 Sep 2024 06:09:57 PM +08","md5_sum":null,"sha_256_sum":"7f603f586ccb21d946408ffe2f6011a3b0025e3051dfa70dbedb02a8a96476f3","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"curl","version":"8.9.1-2","description":"command line tool and library for transferring data with URLs","architecture":"x86_64","url":"https://curl.se/","licenses":["MIT"],"groups":[],"provides":["libcurl.so=4-64"],"depends_on":["ca-certificates","brotli","libbrotlidec.so=1-64","krb5","libgssapi_krb5.so=2-64","libidn2","libidn2.so=0-64","libnghttp2","libnghttp2.so=14-64","libnghttp3","libnghttp3.so=9-64","libpsl","libpsl.so=5-64","libssh2","libssh2.so=1-64","zlib","libz.so=1-64","zstd","libzstd.so=1-64","openssl","libcrypto.so=3-64","libssl.so=3-64"],"required_by":["0ad","across","ani-cli","appstream","appstream-glib","arch-update","archlinux-repro","ardour","ardour-git","ario","asdf-vm","asymptote","audacious-plugins","aura","aura-git","auracle-git","aurutils","aws-sdk-cpp","barrier-headless","betterdiscordctl-git","boinc","boinc-nox","bootiso","btfs","cairo-dock","cargo-c","cargo-clone","cargo-crev","cargo-geiger","cargo-generate","cargo-outdated","cargo-shuttle","cargo-tarpaulin","cargo-udeps","castget","casync","cclive","cemu-git","cfitsio","choosenim","clamav","clamav-unofficial-sigs","cmake","cmake-git","coeurl","conky","cryfs","csound","curlftpfs","curlie","ddclient","ddnet","dehydrated","devtools","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dovecot","dtools","dub","efl","element","elinks","emulationstation","espflash","espup","ettercap","ettercap-gtk","exiv2","facter","fbreader","fcitx-cloudpinyin","fcitx5-chinese-addons","feh","fisher","flashplugin","flatpak","flatpak-builder","flickcurl","freeciv","freeipa-client","freeoffice","ftl-sdk","fwupd","gambas3-gb-net-curl","gammu","gdal","gerbera","giac","git","git-cinnabar","github-desktop","gitlab-runner","glyr","gmic","gmt","gnome-notes","gpredict","gst-plugins-bad","guitarix","hblock","hcxtools","hlsdl","html-xml-utils","hurl","hw-probe","icaclient","imhex","jp2a","kcov","kicad","kicad-git","klavaro","kodi","kodi-git","kodi-gles","kodi-stable-git","lastpass-cli","leatherman","lib32-curl","libclastfm","libcmis","libcurl-compat","libcurl-gnutls","libdatovka","libelf","libgphoto2","libindi","libkiwix","libkolabxml","liblphobos","libmediainfo","libmodsecurity","libnpupnp","liboauth","libofa","libofx","libproxy","libqalculate","libquvi","librdkafka","libreoffice-dev-bin","libreoffice-fresh","libreoffice-still","librepo","libresprite-git","libreswan","libsixel","libupnpp","libxmlrpc","llvm-libs","lnav","lokinet","luarocks","lutris","lutris-git","lv2lint","lxpanel","lxpanel-gtk3","manaplus","mcpelauncher-linux-git","megaglest","megatools","mesonlsp","micromamba","minetest","minetest-git","minetest-server","minetest-server-git","moc-pulse","mongodb","mpd","mpdscribble","musikcube","mysql-workbench","ncmpcpp","netcdf","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","netcdf-openmpi","netsurf","networkmanager","networkmanager-iwd","newsboat","nheko-git","nix","nix-init","nm-cloud-setup","nm-iwd-cloud-setup","nspluginwrapper","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-backgroundremoval","obs-streamfx-unstable","obs-studio","obs-studio-git","obs-studio-stable","obs-studio-tytan652","octave","odamex-git","odr-dabmux-git","onlyoffice-bin","openrct2","opl-synth","osbuild","osdlyrics","ostree","p2pool","pacman","pacman-git","pacredir","pacrunner","pakka","passenger","path-of-building-community-git","percona-server","phoenicis-playonlinux","php","php-legacy","pianobar","pkgfile","pokerth","polybar","polybar-git","poppler","powerdns","powerdns-recursor","profanity","profanity-gtk","proj","psensor","python-pycurl","python-tensorflow","python-tensorflow-cuda","python-tensorflow-opt","python-tensorflow-opt-cuda","qemu-block-curl","qemu-git","qemu-headless-git","qemu-tools","qmmp","r","raptor","rauc","reapack","release-plz","remmina","rhonabwy","rink","rng-tools","roswell","rpcs3-git","rpi-imager","rtorrent","ruby-patron","rust","rustup","rustup-git","s3fs-fuse","sabnzbd","sane","scummvm","scummvm-git","seadrive-daemon","sentry-native","sheldon","siril-git","slurm-llnl","smooth","softmaker-office-2024-bin","soundwire","speedtest++","spring","springlobby","srb2kart","sssd","steam","steam-native-runtime","strongswan","sunshine","supertux","supertuxkart","sword","sysdig","syslog-ng","tensorflow","tensorflow-cuda","tensorflow-opt","tensorflow-opt-cuda","termv-git","tesseract","tinyemu","toxic","tpm2-tools","tpm2-tss","transmission-cli","transmission-gtk","transmission-qt","transmission-remote-gtk","trurl","typst-lsp","uget","ulfius","umu-launcher","unrealircd","vagrant","vcpkg","viking","virtualbox","virtualbox-kvm","vorbis-tools","warsow","wasm-pack","wcurl","weechat","wpscan","wxwidgets-common","xerces-c","xfce4-screenshooter","xine-ui","xonotic","xrootd","xtrabackup","ytfzf","ytfzf-git","yubico-c","yubico-c-client","zabbix-agent","zabbix-agent2","zabbix-proxy","zabbix-server","zapret-common-git","zellij"],"optional_for":["apache","bashtop","claws-mail","clevis","curlew","deadbeef","deadbeef-git","fio","freeradius","gap-packages","gcin","gimp-git","gpgit","inxi","ispin","mariadb","mariadb-lts","mkinitcpio-archiso","mkosi-git","monitoring-plugins","nextcloud","opensips","pciutils","surf-git","systemd","tor-router","translate-shell","vicious","wps-office","wps-office-cn","xmms2"],"conflicts_with":[],"replaces":[],"download_size":"1112.47 KiB","installed_size":"1916.32 KiB","packager":"Leonidas Spyropoulos ","build_date":"Mon 05 Aug 2024 03:53:07 PM +08","md5_sum":null,"sha_256_sum":"816d521855ba751ad814499e4fc68a00d49182a1e622307e5d33a873f0fbc0a4","signatures":"244740D17C7FD0EC","extended_data":null},{"repository":"core","name":"dash","version":"0.5.12-1","description":"POSIX compliant shell that aims to be as small as possible","architecture":"x86_64","url":"http://gondor.apana.org.au/~herbert/dash/","licenses":["BSD"],"groups":[],"provides":[],"depends_on":["glibc","libedit","libedit.so=0-64"],"required_by":["dashbinsh"],"optional_for":["dracut"],"conflicts_with":[],"replaces":[],"download_size":"82.51 KiB","installed_size":"153.90 KiB","packager":"Levente Polyak ","build_date":"Sat 25 Feb 2023 12:34:46 AM +08","md5_sum":"0368b51e48997a1b3e23faca23101eaa","sha_256_sum":"28622213069475e022656a627bff1891e8ee986d7b539eb4f3af620a8c7e27f4","signatures":"FC1B547C8D8172C8","extended_data":null},{"repository":"core","name":"db","version":"6.2.32-1","description":"The Berkeley DB embedded database system","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["AGPL3"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["apt","isync","opendkim","python-bsddb"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":"1360.35 KiB","installed_size":"7336.65 KiB","packager":"Frederik Schwan ","build_date":"Sun 11 Dec 2022 02:39:34 AM +08","md5_sum":"dac58b30bebd81ea97e54b23eb6a2d74","sha_256_sum":"a0013dbb897620edca8736676b7b2ee4b854ef9479a1555f69557cac58187581","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"db5.3","version":"5.3.28-5","description":"The Berkeley DB embedded database system v5.3","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["custom:sleepycat"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["389-ds-base","bitcoin-daemon","bitcoin-qt","bitcoin-tx","bogofilter","bogofilter-db","inn","jack2","jnettop","perl","perl-berkeleydb","reprepro","swi-prolog"],"optional_for":["bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","iproute2"],"conflicts_with":[],"replaces":[],"download_size":"1212.97 KiB","installed_size":"6609.88 KiB","packager":"Frederik Schwan ","build_date":"Wed 01 May 2024 11:27:30 PM +08","md5_sum":null,"sha_256_sum":"edb56c7d84c438b387a53ee414daff2611f62e4804ec8f2995e17b34437c0a4c","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"dbus","version":"1.14.10-2","description":"Freedesktop.org message bus system","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["libdbus","libdbus-1.so=3-64"],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["a2jmidid","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","android-emulator","ardour","ardour-git","at-spi2-core","avahi","awesome","awesome-git","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brickadia-launcher","brltty","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cdemu-daemon","cef-minimal-obs-bin","chromium","cloudflare-warp-bin","colord","compiz-core","compiz-gtk","connman","connman-git","consolekit","corectrl","cosmic-applets","cosmic-applets-git","cups","darling-bin","dbus-broker-units","dbus-c++","dbus-daemon-units","dbus-glib","deskreen","displaycal","dnsmasq","dropbox","dunst","efl","emacs","emacs-nativecomp","emacs-ng","emacs-nox","emacs-wayland","emby-theater","eruption","fcitx","filezilla","firedragon","firefox","firefox-developer-edition","firefox-esr","firefox-nightly","firefox-wayland-hg","flatpak","fluidsynth","fnott","fprintd","fyi","gambas3-gb-dbus","gamemode","gnome-mplayer","gnome-online-accounts","gogglesmm","gpu-screen-recorder-git","hplip","imhex","jack2","jack2-dbus","kdeconnect","keymapper-git","kitty","kitty-git","kitty-shell-integration","lib32-dbus","libcupsfilters","libdecor","libglib-testing","libgnome-keyring","libnih","libnvme","libpcap","libpulse","libreoffice-fresh","libreoffice-still","librewolf","libteam","libvirt-dbus","light-locker","malcontent","mangohud","mangohud-git","mmsd-git","modrinth-app-git","mozillavpn","mozillavpn-git","mpd","mullvad-browser-bin","mullvad-vpn-cli","ncspot","neard","obs-studio-tytan652","ofono","osquery","pacrunner","pantheon-default-settings","pantheon-settings-daemon","perl-net-dbus","picom","picom-git","pipewire","pipewire-audio","pipewire-jack-client","pipewire-media-session","pipewire-pulse","pop-bin","pop-launcher","pop-launcher-git","pycharm-community-eap","python-dasbus","python-dbus","python-dbus-fast","python-dbus-next","qt6-base","qt6-webengine","quota-tools","reboot-arch-btw","rescrobbled-git","retroarch","rtkit","runst","signal-desktop","signal-desktop-beta","slurm-llnl","snapper","songrec","sonyheadphonesclient-bin","spice-vdagent","spotify-player","spotifyd","steam","steam-native-runtime","stratisd","strawberry-full-git","strawberry-git","subversion","swaylock-fprintd-git","switchboard-plug-power","system76-firmware","system76-power","systemd","telepathy-glib","telepathy-mission-control","termius","termscp","termusic","thunderbird","thunderbird-beta","tiny","toastify","tradingview","udisks2","umu-launcher","ungoogled-chromium","vita3k-avx-git","vita3k-git","vlc","vlc-luajit","wesnoth","weston","wezterm-git","widelands","wingpanel-indicator-notifications","wired","wldash","wluma","wpa_supplicant","x2goserver","xdg-dbus-proxy","xorg-server","xorg-server-git","zam-plugins-clap","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zbar","zoom"],"optional_for":["alsa-plugins","claws-mail","deadbeef","deadbeef-git","fastfetch","picom","picom-git","utox"],"conflicts_with":["libdbus"],"replaces":["libdbus"],"download_size":"304.86 KiB","installed_size":"910.57 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"c08fa536e28863e35a9591196876faf7","sha_256_sum":"28b519535496a8c8b7885fb2d4c089ca98e34250dfc468aad2267c639026f219","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker","version":"36-4","description":"Linux D-Bus Message Broker","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":[],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["dbus-broker-units"],"optional_for":["at-spi2-core"],"conflicts_with":[],"replaces":[],"download_size":"144.96 KiB","installed_size":"353.90 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"557a742031b10e6d8b76ce2bb98298dbb001ac76b68ee003417f6fceb9ae65bd","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker-units","version":"36-4","description":"Linux D-Bus Message Broker - Service units","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus","dbus-broker"],"required_by":["dbus-units","systemd"],"optional_for":[],"conflicts_with":["dbus-daemon-units"],"replaces":[],"download_size":"2.38 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"bb97bd8f943e581a6c02be0aea368c2faa035f709406bffed77e807e96882e2f","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-daemon-units","version":"1.14.10-2","description":"Freedesktop.org message bus system - Service units","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus"],"required_by":["systemd"],"optional_for":[],"conflicts_with":["dbus-broker-units"],"replaces":[],"download_size":"2.87 KiB","installed_size":"0.80 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"79259a029b856b6958749db1a3d0f192","sha_256_sum":"61e184d5fae5ec13073525c6f17c2a630b6892dc8847585d2e454e590dbe5919","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-docs","version":"1.14.10-2","description":"Freedesktop.org message bus system - Documentation","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"1329.87 KiB","installed_size":"21471.26 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"1e71d48059b0d86d21a3af48ce4e8191","sha_256_sum":"faed9464ab5a4bfb63ea9a585025a7e0b9fc7d41433a7a75c96ae3d6cd4d3ae1","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-units","version":"36-4","description":"D-Bus service units (default provider)","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["CC0-1.0"],"groups":[],"provides":[],"depends_on":["dbus-broker-units"],"required_by":["systemd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.14 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"eb7a93b615db7183fde62723f8ccb94094ceaab53782cbd63c159ae30ac5ce8a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"debugedit","version":"5.0-6","description":"Tool to mangle source locations in .debug files","architecture":"x86_64","url":"https://sourceware.org/debugedit/","licenses":["GPL-3.0-or-later","GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","libelf"],"required_by":["base-devel","flatpak-builder","zotero-bin"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"44.01 KiB","installed_size":"105.24 KiB","packager":"Morten Linderud ","build_date":"Sat 04 May 2024 12:15:41 AM +08","md5_sum":null,"sha_256_sum":"dfd548598504d5e1f12296dc49bbbc43976702fdf2700cdd93404e3b4a1992c4","signatures":"9C02FF419FECBE16","extended_data":null},{"repository":"core","name":"debuginfod","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (debuginfod)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","libmicrohttpd","libmicrohttpd.so=12-64","sqlite","libsqlite3.so=0-64"],"optional_deps":[{"name":"elfutils=0.191","description":"for translations"}],"required_by":["pwndbg","valgrind"],"optional_for":["binutils","delve"],"conflicts_with":[],"replaces":[],"download_size":"135.62 KiB","installed_size":"339.33 KiB","packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"337ddacd32f8dcc2f8dcd69232d4c9091ce5617f334d483e5216496dca6e1e4b","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"device-mapper","version":"2.03.26-1","description":"Device mapper userspace library and tools","architecture":"x86_64","url":"http://sourceware.org/dm/","licenses":["GPL2","LGPL2.1"],"groups":[],"provides":["libdevmapper.so=1.02-64","libdevmapper-event.so=1.02-64"],"depends_on":["glibc","systemd-libs","libudev.so=1-64"],"required_by":["cri-o","cryptsetup","dmraid","docker","grub","grub-improved-luks2-git","grub-silent","libblockdev-dm","libblockdev-lvm","libblockdev-mpath","libldm","lvm2","mkinitcpio-archiso","multipath-tools","nfs-utils","osquery","parted","podman","skopeo","tcplay","veracrypt","xfsprogs"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"277.59 KiB","installed_size":"756.56 KiB","packager":"Christian Hesse ","build_date":"Sun 25 Aug 2024 03:20:53 AM +08","md5_sum":null,"sha_256_sum":"6ed7fd89d8824cb83f95c7ec55c00485865e836ed30a5c55cc6425c5234b5585","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"dialog","version":"1:1.3_20240619-2","description":"A tool to display dialog boxes from shell scripts","architecture":"x86_64","url":"https://invisible-island.net/dialog/","licenses":["LGPL2.1"],"groups":[],"provides":["libdialog.so=15-64"],"depends_on":["sh","ncurses"],"required_by":["python-pythondialog"],"optional_for":["arch-wiki-lite","etc-update","gammu","netctl","texlive-binextra"],"conflicts_with":[],"replaces":[],"download_size":"199.41 KiB","installed_size":"463.88 KiB","packager":"Evangelos Foutras ","build_date":"Mon 01 Jul 2024 02:03:02 AM +08","md5_sum":null,"sha_256_sum":"fc0e81648bd6c38e1ff32db8b5c21ad33bfc8a345d30b0a9be4dcef768c8f6dd","signatures":"51E8B148A9999C34","extended_data":null},{"repository":"core","name":"diffutils","version":"3.10-1","description":"Utility programs used for creating patch files","architecture":"x86_64","url":"https://www.gnu.org/software/diffutils","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","bash"],"required_by":["aconfmgr-git","arch-update","archlinux-repro","autoconf","btrfs-assistant","btrfs-assistant-git","colordiff","dehydrated","devtools","diffoscope","etckeeper","mediawiki","mkinitcpio","pacdiff-pacman-hook-git","pkgdiff","posix","quilt","rcs","steam","umu-launcher","usbctl"],"optional_for":["gzip","khard","pace","pacman-contrib","qmk","terraform"],"conflicts_with":[],"replaces":[],"download_size":"344.62 KiB","installed_size":"1518.90 KiB","packager":"Sébastien Luttringer ","build_date":"Wed 24 May 2023 03:47:08 AM +08","md5_sum":"bd4ad1c815ab296ddeadef8ec6e859a1","sha_256_sum":"88e4705cd3d078c250b6ce94ccdabc48da1a093aa64c0fb0cb832c6ce4797e2d","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"ding-libs","version":"0.6.2-2","description":"\"DING is not GNU\" helper libraries for SSSD and FreeIPA","architecture":"x86_64","url":"https://github.com/SSSD/ding-libs","licenses":["GPL-3.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["gssproxy","sscg","sssd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"124.80 KiB","installed_size":"656.41 KiB","packager":"Andreas Radke ","build_date":"Sun 17 Mar 2024 04:54:54 PM +08","md5_sum":"4e62db1a524ead54b52b59c12c12e0f9","sha_256_sum":"e72c72725452ec0287383e847e039777eed504ef1707f09101d795b429c50846","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"dmraid","version":"1.0.0.rc16.3-15","description":"Device mapper RAID interface","architecture":"x86_64","url":"https://people.redhat.com/~heinzm/sw/dmraid/","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["device-mapper>=2.0.54"],"optional_for":["dracut"],"conflicts_with":["mkinitcpio<0.7"],"replaces":[],"download_size":"121.92 KiB","installed_size":"314.03 KiB","packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:51:09 PM +08","md5_sum":null,"sha_256_sum":"e9a661652d8e4076d2164b77c88f94ebd93dcf16dd66714513621b40e4de86b9","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"dnssec-anchors","version":"20190629-4","description":"DNSSEC trust anchors for the root zone","architecture":"any","url":"https://data.iana.org/root-anchors/","licenses":["custom:none"],"groups":[],"provides":[],"depends_on":[],"required_by":["bind","knot-resolver","ldns","unbound"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"3.07 KiB","installed_size":"0.79 KiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Jul 2024 04:15:16 AM +08","md5_sum":null,"sha_256_sum":"648ab7c4ac43421e6f8026128f84fdefcc5ebc0d171d6c723441e4d12c69048e","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"dosfstools","version":"4.2-5","description":"DOS filesystem utilities","architecture":"x86_64","url":"https://github.com/dosfstools/dosfstools","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["archinstall","archiso","archiso-git","bootiso","clonezilla","distrobuilder","libguestfs","mintstick","penguins-eggs","refind","ventoy-bin","woeusb","woeusb-ng"],"optional_for":["gparted","grub","grub-improved-luks2-git","grub-silent","kpmcore","libblockdev-fs","mkosi-git","rauc","rpi-imager","sedutil","syslinux","udisks2"],"conflicts_with":[],"replaces":[],"download_size":"135.52 KiB","installed_size":"409.22 KiB","packager":"Jelle van der Waa ","build_date":"Sun 25 Aug 2024 02:52:04 AM +08","md5_sum":null,"sha_256_sum":"03a7d8bd939a80418d9744afad00c22b91c4b411bdf9662744647c383a0ec503","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"e2fsprogs","version":"1.47.1-4","description":"Ext2/3/4 filesystem utilities","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":["libcom_err.so=2-64","libe2p.so=2-64","libext2fs.so=2-64","libss.so=2-64"],"depends_on":["sh","util-linux-libs"],"optional_deps":[{"name":"lvm2","description":"for e2scrub"},{"name":"util-linux","description":"for e2scrub"},{"name":"smtp-forwarder","description":"for e2scrub_fail script"}],"required_by":["apptainer","archinstall","archiso","archiso-git","bind","bootiso","deepin-clone","distrobuilder","ext4magic","extundelete","freerdp","fsarchiver","fuse-ext2-git","fuse2fs","krb5","lib32-e2fsprogs","libblockdev-fs","mc","mintstick","nfs-utils","osbuild","quota-tools","schroot","supermin","termius","tomb-git"],"optional_for":["btrfs-progs","diffoscope","dracut","kpmcore","mkosi-git","pjproject","rauc","udisks2"],"conflicts_with":[],"replaces":[],"download_size":"1264.47 KiB","installed_size":"5322.71 KiB","packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"f72a32b7c97ab2dafff65d466d1b91243bf74b55fd5e975584ab4d6299ea13b9","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"efibootmgr","version":"18-3","description":"Linux user-space application to modify the EFI Boot Manager","architecture":"x86_64","url":"https://github.com/rhboot/efibootmgr","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","popt","efivar","libefiboot.so=1-64","libefivar.so=1-64"],"required_by":["grub-silent","refind","system76-firmware"],"optional_for":["grub","grub-improved-luks2-git","hw-probe","memtest86-efi","rauc","syslinux"],"conflicts_with":[],"replaces":[],"download_size":"30.09 KiB","installed_size":"83.71 KiB","packager":"David Runge ","build_date":"Wed 13 Mar 2024 05:47:21 PM +08","md5_sum":"b28be257dd69d2c324267ccad6b1bab4","sha_256_sum":"6c8024c4b0abbdc3ff87a582ca1730448ef462015d3d0e97249d988f59c66c65","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"efivar","version":"39-1","description":"Tools and libraries to work with EFI variables","architecture":"x86_64","url":"https://github.com/rhboot/efivar","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libefiboot.so=1-64","libefisec.so=1-64","libefivar.so=1-64"],"depends_on":["glibc"],"required_by":["dbxtool","efibooteditor","efibooteditor-qt5","efibootmgr","mokutil","pesign"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"144.70 KiB","installed_size":"541.61 KiB","packager":"David Runge ","build_date":"Thu 01 Feb 2024 05:57:25 PM +08","md5_sum":"06ab87bfdac70ba57b6626951a6f9000","sha_256_sum":"16422088da42f1ac562851d06ce86ad659f0775c86d9b1f54fa5a7067f9d636a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"elfutils","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (utilities)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","sh"],"required_by":["avrdude","babeltrace","flatpak-builder","hotspot","kcov","libabigail","libdwarf","ltrace","namcap","perf","pwninit","rpm-tools","systemtap-git"],"optional_for":["debuginfod","dracut"],"conflicts_with":[],"replaces":[],"download_size":"583.84 KiB","installed_size":"3576.72 KiB","packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"ecd122522f2abfa532173b36897db0986e586a33198e2b0862e5205b3d382c22","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"expat","version":"2.6.3-2","description":"An XML parser library","architecture":"x86_64","url":"https://libexpat.github.io/","licenses":["MIT"],"groups":[],"provides":["libexpat.so=1-64"],"depends_on":["glibc"],"required_by":["aarch64-linux-gnu-gdb","android-emulator","apr-util","arm-none-eabi-gdb","audacity","augustus","avahi","avr-gdb","blender","blockbench-bin","boca","boinctui","bolt-launcher","brltty","calf","cef-minimal-obs-bin","clasp-cl-git","cmake","dbus","dbus-broker","dbus-glib","deskreen","digikam","dovecot","ejabberd","elinks","emby-ffmpeg","emby-theater","exempi","exiv2","fontconfig","fpc","gdal","gdb","git","insight-toolkit","jack2-dbus","lapce","lapce-git","lftp","lib32-expat","libcomps","libdatovka","libdom","libmesode","libnpupnp","libofa","libosmium","libreoffice-fresh","libreoffice-still","libsolv","libstrophe","libupnpp","libva-mesa-driver","libwmf","lm32-elf-gdb","lua-expat","lua51-expat","lua52-expat","lua53-expat","mame","mesa","mesa-tkg-git","mesa-vdpau","miktex","mpd","mysql-workbench","neon","neovide","nominatim","obs-studio-tytan652","oculante","opencl-clover-mesa","opencl-rusticl-mesa","or1k-elf-gdb","osm2pgsql","paraview","perl-xml-parser","polkit","polkit-consolekit","pop-bin","ppc64le-elf-gdb","profanity","profanity-gtk","pypy","pypy3","python","python-astropy","python-osmium","python39","qgis","qt6-webengine","rfdump","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sdbus-cpp","sdbus-cpp-doc","sh2-elf-gdb","signal-desktop","signal-desktop-beta","skia-sharp","snapcast","subversion","termius","tradingview","vmware-horizon-client","vulkan-intel","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","wayland","wayland-chromium","wayland-git","wxwidgets-common","zeroc-ice"],"optional_for":["dbus-c++","unbound"],"conflicts_with":[],"replaces":[],"download_size":"113.25 KiB","installed_size":"426.08 KiB","packager":"David Runge ","build_date":"Thu 05 Sep 2024 01:19:42 AM +08","md5_sum":null,"sha_256_sum":"6487b7be759572043cf59b7999883be027025c74f003fbca1b5203f1236b181f","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"fakeroot","version":"1.36-1","description":"Tool for simulating superuser privileges","architecture":"x86_64","url":"https://tracker.debian.org/pkg/fakeroot","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["glibc","filesystem","sed","util-linux","sh"],"required_by":["anydesk-bin","apptainer","base-devel","debtap","devtools","gnome-shell-extension-arch-update","lib32-fakeroot","reprotest"],"optional_for":["bauh","i3status-rust","i3status-rust-git","pacman-contrib","pacseek"],"conflicts_with":[],"replaces":[],"download_size":"76.42 KiB","installed_size":"141.27 KiB","packager":"Christian Hesse ","build_date":"Fri 16 Aug 2024 01:17:43 AM +08","md5_sum":null,"sha_256_sum":"7bdd5f7580b20ab1574346c673a1d1a1c25aa9a902ef3b9e77944345a934e558","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"file","version":"5.45-1","description":"File type identification utility","architecture":"x86_64","url":"https://www.darwinsys.com/file/","licenses":["custom"],"groups":[],"provides":["libmagic.so=1-64"],"depends_on":["glibc","zlib","xz","bzip2","libseccomp","libseccomp.so=2-64","zstd","libzstd.so=1-64"],"required_by":["android-file-transfer","atool","base","base-devel","bootiso","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","carla","carla-git","checksec","clifm-git","ext4magic","feh","file-roller","gerbera","haskell-magic","hyprlock-git","hyprpaper","hyprpaper-git","imhex","keepalived","libmodulemd","lyx","moc-pulse","mpd-notification","nano","osquery","pleroma-bin","posix","python-magic","radare2","radare2-git","ristretto","rizin","rpm-tools","rspamd","sox","subversion","util-linux","vifm","viking","vis","xdg-utils","yara","zathura","zim-tools"],"optional_for":["inxi","libextractor","ranger-git"],"conflicts_with":[],"replaces":[],"download_size":"395.80 KiB","installed_size":"8534.61 KiB","packager":"Sébastien Luttringer ","build_date":"Fri 28 Jul 2023 05:23:09 AM +08","md5_sum":"5e1deb413f19678a56204e3d5e4b3f8a","sha_256_sum":"3ad37e246e893cdf59ae3af862d083c52087c47d3e6210996075ce77d41c5a1a","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"filesystem","version":"2024.04.07-1","description":"Base Arch Linux files","architecture":"any","url":"https://archlinux.org","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["iana-etc"],"required_by":["base","dracut","fakeroot","glibc","glibc-eac","glibc-eac-roco","mkinitcpio","nethack","plymouth"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"14.02 KiB","installed_size":"22.33 KiB","packager":"David Runge ","build_date":"Mon 08 Apr 2024 02:02:30 AM +08","md5_sum":null,"sha_256_sum":"07acb29650aeaee633edd337af5bfa9c3b3309c9f198e5bad145bd4bbdacc40a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"findutils","version":"4.10.0-2","description":"GNU utilities to locate files","architecture":"x86_64","url":"https://www.gnu.org/software/findutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","sh"],"required_by":["anything-sync-daemon","base","base-devel","bash-complete-alias","bootiso","ca-certificates-utils","checksec","devtools","dracut","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","java-runtime-common","metals","mkinitcpio","penguins-eggs","posix","profile-cleaner","profile-sync-daemon","quilt","rosenpass","themix-icons-archdroid-git","themix-icons-gnome-colors-git","themix-icons-numix-git","themix-icons-papirus-git","themix-icons-suru-plus-aspromauros-git","themix-icons-suru-plus-git","themix-theme-materia-git","themix-theme-oomox-git","wikiman"],"optional_for":["pacman-contrib"],"conflicts_with":[],"replaces":[],"download_size":"473.38 KiB","installed_size":"1747.66 KiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 03:52:07 PM +08","md5_sum":null,"sha_256_sum":"ba960db631b9e379076d24c336a190f7a9cdbafa2c928544fdb8a819d253d37d","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"flex","version":"2.6.4-5","description":"A tool for generating text-scanning programs","architecture":"x86_64","url":"https://github.com/westes/flex","licenses":["custom"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh"],"required_by":["at","base-devel","ccid","lib32-flex","ming","posix-c-development","splint"],"optional_for":["bauh","linux-atm"],"conflicts_with":[],"replaces":[],"download_size":"307.55 KiB","installed_size":"955.65 KiB","packager":"David Runge ","build_date":"Sat 18 Mar 2023 07:32:09 AM +08","md5_sum":"e9c3f6267b26aefea45af135185a98e2","sha_256_sum":"9fdee0b311ce967927006f523e537670d1be94deee52e0115902cf6087c59e25","signatures":"139B09DA5BF0D338","extended_data":null},{"repository":"core","name":"fuse2fs","version":"1.47.1-4","description":"Ext2/3/4 filesystem driver for FUSE","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":[],"depends_on":["fuse3","e2fsprogs"],"required_by":["apptainer"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"29.32 KiB","installed_size":"71.58 KiB","packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"52c213add64f11e3e7adc87985dbe67ebef9b8b7379fe24ee3123b4188f990c0","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gawk","version":"5.3.0-2","description":"GNU version of awk","architecture":"x86_64","url":"https://www.gnu.org/software/gawk/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["awk"],"depends_on":["sh","glibc","mpfr"],"required_by":["aconfmgr-git","aerc","arch-install-scripts","autoconf","autoconf-git","base","base-devel","bashtop","bootiso","cfs-zen-tweaks","chaotic-neofetch-git","check","checksec","devtools","dkms","doas-sudo-shim","dracut","esh","fricas","garuda-update","green-recorder","green-recorder-git","i3lock-fancy-git","lynis","mk-configure","mkinitcpio","pacman","pacman-git","pkgdiff","posix","prettyping","quilt","rofi-pass","rosenpass","sofia-sip","syslog-ng","tdrop","termv-git","translate-shell","tuned","txt2man","ugit","wikiman","xschem","yadm"],"optional_for":["blesh-git","geeqie","geeqie-git","khal","mc","texmacs","vim-runtime"],"conflicts_with":[],"replaces":[],"download_size":"1323.54 KiB","installed_size":"3401.80 KiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:51:08 PM +08","md5_sum":null,"sha_256_sum":"474af00363e5e3ac13e06d2b79e565766823b30edbef81b5abf2a09f1d5dd010","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"gc","version":"8.2.6-1","description":"A garbage collector for C and C++","architecture":"x86_64","url":"https://www.hboehm.info/gc/","licenses":["LicenseRef-GC","MIT"],"groups":[],"provides":[],"depends_on":["gcc-libs"],"required_by":["asymptote","bigloo","crystal","guile","guile2.2","inkscape","libhomfly","neko","nix","poke","shards","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"234.72 KiB","installed_size":"771.88 KiB","packager":"Frederik Schwan ","build_date":"Sun 04 Feb 2024 06:30:33 PM +08","md5_sum":"903a28bfd90dcf6e2b41b76e989934af","sha_256_sum":"6210a1e7e00d3162f175f9ab318a3da928495210b1ea411dcb66bf5e1f382daf","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc","version":"14.2.1+r32+geccf707e5ce-1","description":"The GNU Compiler Collection - C and C++ frontends","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-multilib"],"depends_on":["gcc-libs=14.2.1+r32+geccf707e5ce-1","binutils>=2.28","libmpc","zstd","libisl.so=23-64"],"optional_deps":[{"name":"lib32-gcc-libs","description":"for generating code for 32-bit ABI"}],"required_by":["base-devel","clang","clang-git","clang14","clang17","dkms","dmd","gcc-ada","gcc-d","gcc-fortran","gcc-go","gcc-m2","gcc-objc","gcc-rust","gcovr","ghc","home-assistant","imd-git","intelbacklight-git","ispin","kde-development-environment-meta","ldc","lib32-clang","lib32-clang-git","libgccjit","libreoffice-fresh-sdk","libreoffice-still-sdk","lto-dump","nim","posix-c-development","rust","sh4d0wup","vala","varnish","virtualbox-host-dkms","vital-synth"],"optional_for":["bauh","choosenim","clion","codelite","codelite-unstable","dmd","node-gyp","qmk","spamassassin","xorg-xrdb"],"conflicts_with":[],"replaces":["gcc-multilib"],"download_size":"51.20 MiB","installed_size":"202.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"029e59b707bf7e35f98c7f0d46031f7e78f6e66251b7220980a1fd65081e7858","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-ada","version":"14.2.1+r32+geccf707e5ce-1","description":"Ada front-end for GCC (GNAT)","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-ada-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-ada-multilib"],"download_size":"29.60 MiB","installed_size":"150.71 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"83ca73da52a5deb60718edc2a9b2c61b3bc828d58d49c68214da9e24d8082001","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-d","version":"14.2.1+r32+geccf707e5ce-1","description":"D frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gdc"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":["orbiton"],"conflicts_with":[],"replaces":["gdc"],"download_size":"19.90 MiB","installed_size":"117.79 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0e9c6e1b7067f0080c784605e0e89c6b96d50d46aefb747f37251dbb996544e4","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-fortran","version":"14.2.1+r32+geccf707e5ce-1","description":"Fortran front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-fortran-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["wsjtx"],"optional_for":["hiprand","magma-cuda","magma-hip","openmpi","phoronix-test-suite","r","rocrand","root","root-cuda"],"conflicts_with":[],"replaces":["gcc-fortran-multilib"],"download_size":"13.54 MiB","installed_size":"44.26 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"20b27847342207fd0b652724dd8ed0c503cf0e66492d65671b1420e94c79c635","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-go","version":"14.2.1+r32+geccf707e5ce-1","description":"Go front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["go=1.17","gcc-go-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["gopls"],"optional_for":["liteide","nixpacks"],"conflicts_with":["go"],"replaces":["gcc-go-multilib"],"download_size":"33.00 MiB","installed_size":"189.53 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"7fee2490ceff374d2d254b187ac824b5be32e0dec6a26442b0d94309f2f7f080","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-libs","version":"14.2.1+r32+geccf707e5ce-1","description":"Runtime libraries shipped by GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-libs-multilib","libgo.so=23-64","libgfortran.so=5-64","libgphobos.so=5-64","libubsan.so=1-64","libasan.so=8-64","libtsan.so=2-64","liblsan.so=0-64"],"depends_on":["glibc>=2.27"],"required_by":["3cpio","4ti2","7-zip","86box","86box-git","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acme-redirect","add-determinism","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","advancecomp","aeolus","afdko","afl++","age-plugin-yubikey","agg-2.6-git","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","airshipper","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alligator","alsa-tools","alsa-utils","amarok","amb-plugins","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-build-tools","angelfish","angle-grinder","antimicrox","antlr4-runtime","anydesk-bin","aom","apcupsd","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-repro-status","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-ide","arianna","ark","arrpc","arti","artikulate","artyfx","asciinema-agg","aspell","asplib","assimp","astyle","asusctl","asymptote","at51","atac","atomicparsley","attica","atuin","audacity","audaspace","audex","audiocd-kio","audiofile","audiotube","augeas","aura","aura-git","avisynthplus","avogadrolibs","avogadrolibs-qt5","avr-gcc","aws-crt-cpp","aws-sdk-cpp","ayatana-indicator-datetime","b3sum","babashka-bin","bacon","baloo","baloo-widgets","bandwhich","base","bat","battop","bbpager","bcachefs-tools","bcc","bchoppr","bear","benchmark","bespokesynth","biblesync","bigsh0t","bingrep","binocle","biodiff","biome","bitcoin-daemon","bitcoin-qt","bitcoin-tx","blackbox","blas","blas64","blender","blendr","blinken","bliss","blockbench-bin","blop.lv2","bluedevil","bluez-qt","bob","boinctui","bolt-launcher","bomber","bore","boringtun","botan","bottom","bovo","box2d","boxxy","bpf-linker","bpftop","bpftrace","breeze","breeze5","breezy","brial","brickadia-launcher","brillo","broot","bsequencer","bshapr","bslizr","btop","bubblewrap","bubblewrap-suid","buddy","bugstalker","buho","build2","bupstash","bustle","c++utilities","c-xsc","calendarsupport","calf","caligula","calindori","calligra","cantor","capnproto","caps","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-about","cargo-asm","cargo-audit","cargo-auditable","cargo-binstall","cargo-bloat","cargo-bundle-licenses","cargo-c","cargo-cyclonedx","cargo-deb","cargo-deny","cargo-depgraph","cargo-expand","cargo-flamegraph","cargo-generate-rpm","cargo-hack","cargo-insta","cargo-license","cargo-llvm-cov","cargo-make","cargo-msrv","cargo-ndk","cargo-nextest","cargo-outdated","cargo-pgrx","cargo-public-api","cargo-release","cargo-run-bin","cargo-semver-checks","cargo-show-asm","cargo-shuttle","cargo-sort","cargo-supply-chain","cargo-sweep","cargo-tarpaulin","cargo-tauri","cargo-update","cargo-wizard","cargo-zigbuild","cargo2junit","carla","carla-git","casync","cauchy","cbindgen","ccache","ccls","cdrdao","cef-minimal-obs-bin","cemu-git","cervisia","chatgpt-desktop-bin","check-broken-packages-pacman-hook-git","check-sieve","chess-tui","chiaki","choose","chromaprint","chromium-widevine","citra-git","clamav","clazy","clblast","clipcat","clipgrab","clpeak","clthreads","clucene","clxclient","cm256cc","cmake","cmt","cobalt","cocogitto","codon-bin","coeurl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-mp","coin-or-osi","colord-kde","comgr","committed","communicator","compiler-rt","compiler-rt-git","compiler-rt14","compiler-rt17","composable-kernel","composefs","conky","connman","conserve-git","coolercontrol","coordgen","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","coxeter","cpp-hocon","cppdap","cppunit","crab-hole","crawl-ncurses","crawl-tiles","cri-o","criu","cross","crowdsec","cryfs","crypto++","cryptominisat","csound","csound-plugins","csoundqt","csvlens","ctemplate","ctrtool","cubeb","cudd","cups","cxxbridge","czkawka-cli","czkawka-gui","d-spy","d2","daktilo","darkstat","darts","db","db5.3","dbus-c++","ddrescue","debuginfod","deepin-album","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-clone","deepin-compressor","deepin-device-formatter","deepin-dock","deepin-draw","deepin-editor","deepin-file-manager","deepin-font-manager","deepin-image-editor","deepin-image-viewer","deepin-kwin","deepin-launchpad","deepin-music","deepin-network-core","deepin-pdfium","deepin-picker","deepin-polkit-agent","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-reader","deepin-screen-recorder","deepin-screensaver","deepin-session","deepin-session-shell","deepin-session-ui","deepin-system-monitor","deepin-terminal","deepin-util-dfm","deepin-voice-note","deepin-widgets","deepin-wloutput-daemon","deltachat-rpc-server","deno","deskreen","dexed-clap","dexed-standalone","dexed-vst3","dfrs","diesel-cli","difftastic","digikam","din","discimagecreator-git","discord-chat-exporter-cli","discord-game-sdk","discover","diskus","disorderfs","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","djvulibre","dleyna","dmtcp","dnsdist","dog","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dosbox","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","draco","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dssi","dtk6core","dtk6declarative","dtk6gui","dtk6widget","dtkcore","dtkdeclarative","dtkgui","dtkwidget","dua-cli","ducker","dummyhttp","dump_syms","dust","dvd+rw-tools","dvgrab","dvisvgm","dwarffortress","dwayland","dysk","e-antic","easytag","ebou","ebumeter","ecasound","eclib","edid-decode-git","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elisa","ell","embree","emby-theater","emptyepsilon","emulsion","enblend-enfuse","endless-sky","eog","epiphany","eq10q","erdtree","espflash","espup","eva","evcxr_repl","eventviews","evince","evolution-data-server","evolution-ews","exempi","exiv2","eza","fabla","facter","falkon","fastd","faust","fcgi","fcitx5-qt","fclones","fd","felix-rs","ferium","ferium-gui","fflas-ffpack","ffmpegthumbs","fftw","fiery","fil-plugins","file-roller","filelight","fillets-ng","findomain","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","flac","flatbuffers","flatpak","flatpak-builder","flatpak-kcm","flawz","flightcore","flip-link","flips","fltk","fluidsynth","flxmlrpc","fmt","fnm","fomp.lv2","fplll","fprintd","fractal","fragments","frameworkintegration","francis","freerdp","freewheeling","frei0r-plugins","ft2-clone","furnace","futuresql","fwupd","g2reverb","gambas3-gb-db-sqlite3","gambas3-gb-image-effect","gambas3-gb-xml","gamescope","gamescope-git","gammaray","gap-packages","gc","gcc","gcdmaster","gdb","gdcm","gdm","gdm-prime","gedit","geekbench","geeqie","gegl","genact","gengetopt","genxrdpattern","geoclue","geonkick-lv2","geonkick-standalone","geonkick-vst3","geos","geph4-client","gerbera","gettext","gfan","gflags","gfold","ghostwriter","giac","giada","gigedit","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","gir-to-d","git-bug","git-cinnabar","git-cliff","git-delta","git-evtag","git-grab","git-smash","git-warp-time","gitg","gitlab-exporter","gitoxide","gitu","gitui","givaro","gjs","glibmm-2.68","glslang","glu","glycin","gmic","gmp","gmp-ecm","gn","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-builder","gnome-calendar","gnome-calls","gnome-color-manager","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-initial-setup","gnome-maps","gnome-multi-writer","gnome-online-accounts","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-software","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnustep-base","gnutls","goattracker","goldendict-webengine-pr-git","google-glog","google-webdesigner","gpaste","gperf","gperftools","gpgme","gptfdisk","gqrx","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","grcov","greetd","greetd-agreety","greetd-regreet","greetd-tuigreet","grex","groff","grub-customizer","gsoap","gst-plugin-libcamera","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-good","gstreamer","gtest","gtk4","gtksourceviewmm","gtranslator","guestfs-tools","guichan","guile1.8","guitarix","gupnp-tools","gvfs","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gwenview","gxplugins.lv2","hacksaw","halp","handbrake","handbrake-cli","handbrake-nvenc-cli","hardened_malloc","haruna","haskell-tidal","haskell-tidal-link","havn","hawkeye","hck","heaptrack","heh","heimdall","heimdall-grimler-git","helix","helvum","hepmc","hex","hexpatch","hexyl","highway","highway-git","himalaya","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hm","hplip","hq","hsa-amd-aqlprofile-bin","hsa-rocr","ht-editor","htmlq","hugo","huniq-git","hunspell","hurl","hydrogen","hyperfine","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","iaito","icon-library","icu","icu60","icu69","id3lib","id3v2","iempluginsuite-standalone","iempluginsuite-vst3","igraph","igrep","iir1","imagemagick","imagescan","imath","imgui","impala","incidenceeditor","include-what-you-use","incron","index-fm","infamousplugins","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","intel-compute-runtime","intel-gmmlib","intel-graphics-compiler","intel-media-driver","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","iperf","iptstate","isoimagewriter","ispc","itinerary","itk-snap-bin","iverilog-git","iwd","j4-dmenu-desktop","jack2","jack2-dbus","jack_delay","jackett","jacktrip","jalv","japa","jbig2enc-git","jc303-clap","jc303-lv2","jc303-vst3","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jless","jnoisemeter","john","joshuto-git","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","js91","jsoncpp","jsonrpc-glib","juce","jujutsu","juk","just","jwt-cli","jwt-ui","k3b","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kakoune","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kbt","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","kernelshark","kexi","keymapper-git","keysmith","keystone","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmousetool","kmouth","kmplot","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","koko","kolf","kollision","kolourpaint","kommit","kompare","kondo","kondo-ui","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kubetui","kubie","kubrick","kunitconversion","kup","kuserfeedback","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","kyotocabinet","labplot","ladspa","lan-mouse","lantern-bin","lapack","lapack64","lapce","lapce-git","laszip","laszip2","latte-integrale","layer-shell-qt","lazyjj","lcalc","ldproxy","leatherman","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","leftwm-theme-git","legba","leocad","lftp","lib3mf","libabigail","libabw","libaccounts-qt","libajantv2","libakonadi","libappimage","libayatana-appindicator","libb2","libbacktrace-git","libblockdev-crypto","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-swap","libbraiding","libbs2b","libc++","libc++abi","libcaca","libcamera","libcamera-ipa","libcamera-tools","libcap","libcdio","libcdr","libchardet","libcmis","libconfig","libcoverart","libcupsfilters","libcutl","libdatachannel","libde265","libdex","libdovi","libe-book","libebml","libei","libelf","libelfin","libemf","libepubgen","libetebase","libetonyek","libfabric","libfbclient","libffado","libfilezilla","libfprint","libfpx","libfreehand","libftdi-compat","libgdm","libgdm-prime","libgexiv2","libgig","libgit2","libgme","libgooglepinyin","libgravatar","libguestfs","libgweather-4","libheif","libical","libilbc","libimagequant","libindi","libinih","libixion","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libkscreen","libksieve","libksysguard","libktorrent","libliquidsfz","liblsp-r3d-glx-lib","libmalcontent","libmanette","libmediainfo","libmemcached-awesome","libmfx","libmodplug","libmp4v2","libmspub","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmythes","libnautilus-extension","libnitrokey","libnl","libnm","libnm-iwd","libnpupnp","libnumbertext","libodfgen","libolm","libopenmpt","libopenshot","libopenshot-audio","liborcus","liborigin","libosinfo","libpagemaker","libpeas-2","libphobos","libphonenumber","libpipewire","libplacebo","libplasma","libplist","libplist-git","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libppd","libproxy","libpst","libptytty","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libquotient","libqxp","libraw","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-bsnes","libretro-bsnes-hd","libretro-dolphin","libretro-mesen","libretro-mesen-git","libretro-mesen-s","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-pcsx2","libretro-ppsspp","librevenge","librewolf","librime","librsvg","librustls","libsbsms","libseexpr2","libsemigroups","libshumate","libsidplayfp","libsigc++","libsigc++-3.0","libsoxr","libspectmorph","libspelling","libstaroffice","libstdc++5","libtiff","libtiff4","libultrahdr","libultrahdr-git","libunrar","libupnpp","libusbmuxd","libusbmuxd-git","libva-mesa-driver","libvdpau-va-gl","libvisio","libvoikko","libvolk","libvpl","libvpx","libwhereami","libwireplumber","libwpd","libwpe","libwpg","libwps","libxcomp","libxisf","libxml++-5.0","libxsd-frontend","libyuv","libzen","libzmf","lidia","lilypond","linbox","lincity-ng","linuxsampler","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","live-media","lld","lld17","lldb","lldb-mi","llvm-julia","llvm-julia-libs","llvm-libs","llvm-libs-git","llvm14-libs","llvm17-libs","lmms","log4cplus","log4cpp","lokalize","looking-glass-git","looking-glass-host-git","loupe","lsd","lshw","lskat","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lua-language-server","luajit","luau","lucky-commit","ludusavi","luppp","lurk","lxqt-config","lychee","lzip","lzlib","m4ri","mac","maeparser","mailcommon","mailimporter","malcontent","maliit-framework","mame","mame-tools","mangohud","mangohud-git","marble","marble-common","marble-maps","marble-qt","marisa","markdownpart","marknote","markuplinkchecker","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","mastodon-twitter-sync","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","maxcso","maxcso-git","mbox-importer","mbuffer","mcp-plugins","mcqd","md-tui","mda.lv2","mdbook","mdcat","mediaelch","meilisearch","menyoki","merkuro","mesa","mesa-vdpau","messagelib","milkytracker","milou","mimetreeparser","minecraft-launcher","minisat","miniserve","minitube","minuet","miopen-hip","mirro-rs","mixxx","mjpegtools","mkvtoolnix-cli","mlt","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","monolith","moon","mosquitto","mpd","mpdecimal","mpgtx","mpvqt","mqttui","mscp","msgraph","msolve","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","munt-daemon","muparser","muparserx","muse","musescore","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","mystiq","naiveproxy","nautilus","navidrome","nccl","ncmpc","ncmpcpp","ncspot","ncurses","ncurses5-compat-libs","neochat","neovide","neovide-git","netavark","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","nethogs","nethsm-cli","netpbm","netplan","netscanner","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","ngspice","nickel","nickel-language-server","ninja","niri","nix","nix-init","nixpacks","nload","nlopt","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-suppression-for-voice","nomacs","nomad","normaliz","notcurses","nspluginwrapper","nsync","ntk","ntl","nudelta","nurl","nushell","nuspell","nut","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-rtspserver","obs-studio-tytan652","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","ogmtools","oha","oil","okteta","okular","okularpart5","onednn","onefetch","onetbb","onnx","openal","openal-git","openapi-tui","openblas","openblas-lapack","openblas64","opencl-amd","opencl-clover-mesa","opencl-rusticl-mesa","opencv","opencv-cuda","openexr","openh264","openjade","openmpi","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openscad","opensips","opentimelineio","openvkl","openzwave","opnplug-lv2","opnplug-standalone","opnplug-vst","oscpack","osinfo-db-tools","ospray","osquery","ostree","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owncloud-client","oxc-language-server","oxipng","oxlint","oxygen","oxygen5","oxyromon","p7zip","p8-platform","packagekit-qt5","packagekit-qt6","pacman-bintrans","pacman-bintrans-tools","padthv1-lv2","padthv1-standalone","palapeli","pamixer","pangomm-2.48","papilo","paprefs","par2cmdline","pari","parley","parsec-bin","partitionmanager","pastel","patchelf","pavucontrol","pbzip2","pcloudcc-git","pcre","pd-sfizz","pepper-flash","performous","pesign","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-imagick","php-legacy-imagick","physx","picmi","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pipe-rename","pipewire","pipewire-audio","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-zeroconf","piping-server","pixi","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","plymouth-kcm","podman","podman-desktop","poedit","poketex","polari","polkit-kde-agent","polkit-qt5","polkit-qt6","polly","polly-git","polyclipping","polymake","polyphone","pop-bin","pop-launcher","poppler","poppler-glib","poppler-qt5","poppler-qt6","portaudio","portsmf","postgresql","power-profiles-daemon","powerdevil","powerdns-recursor","powershell-bin","powertop","poxml","ppl","ppsspp","presage","presenterm","primecount","primesieve","print-manager","prismlauncher","prison","prjxray-tools-git","procinfo-ng","procs","protobuf","protobuf-21","proton-ge-custom","protonmail-bridge","proxmox-backup-client","proxyboi","ps7_libpicoipp","pstoedit","ptex","ptyxis","pueue","pugixml","pulseaudio-qt","purpose","pwninit","pyflow","pymol","pyside6","pystring","pythia8","python-awscrt","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-cramjam","python-cvxpy","python-cylp","python-debugpy","python-fastnumbers","python-fpylll","python-iminuit","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-materialyoucolor-git","python-mitmproxy-rs","python-ml-dtypes","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-pendulum","python-pikepdf","python-pivy","python-pplpy","python-primecountpy","python-pyarrow","python-pybullet","python-pycapnp","python-pycrdt","python-pycuda","python-pydantic-core","python-pykcs11","python-pymupdf","python-pynormaliz","python-pyopencl","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-webengine","python-pysequoia","python-pythia8","python-qdldl","python-rapidfuzz","python-regress","python-rpds-py","python-rtmidi","python-scipy","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-ulid-transform","python-vigra","python-watchfiles","python-xapian","python-y-py","python-zita-audiotools","python-zita-jacktools","qalculate-gtk","qalculate-qt","qastools","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcad","qcoro-qt5","qcoro-qt6","qd","qemu-arch-extra-git","qemu-audio-dbus","qemu-audio-jack","qemu-audio-pipewire","qemu-block-curl","qemu-block-iscsi","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-display-qxl","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-opengl","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegencpp-cmake","qrtool","qrupdate","qsampler","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtkeychain-qt5","qtkeychain-qt6","qtractor","qucsator-git","quiche","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","radare2","radeon-profile-git","rage-encryption","ragel","rate-mirrors","rathole","rattler-build","rauc","rav1e","rbutil","rbw","rccl","rdfind","re2","re2c","reactphysics3d","reapack","reaper","rebels-in-the-sky","recastnavigation","regexxer","release-plz","remmina","repgrep","repro-env","reproc","retro-gtk","retroarch","rev-plugins","rhit","rhythmbox","rink","rio","ripgrep","riseup-vpn","rkcommon","rkward","rlog","roc-toolkit","rocalution","rocblas","rocfft","rockchip-mpp","rocm-dbgapi","rocm-gdb","rocm-llvm","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rog-control-center","ropr","rosegarden","rpg-cli","rpi-imager","rq","rqbit","rqbit-desktop","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rtaudio","rtmidi","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","rucola","ruff","runescape-launcher","rust","rust-analyzer","rust-bindgen","rust-kanban","rust-script","rustc-demangle","rustic","rustlings","rustow-git","rustscan","rustypaste","rustypaste-cli","rye","ryujinx","rz-cutter","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","samply","sane","satty","sc3-plugins","sccache","scip","sd","sdcc","sddm","sddm-git","sddm-kcm","selene","sentry-cli","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serie","serpl","serproid","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sg-323-clap","sg-323-vst3","sh4d0wup","shaderc","shadowsocks-rust","shapelib","shared-mime-info","sheldon","shiboken6","shotgun","shy","sidplay2-libs","sig","signal-desktop","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","simple-mtpfs","simpleitk","simutrans","simutrans-extended-git","singular","sirocco","skanlite","skanpage","skladnik","slack-electron","sleuthkit","slim","slowhttptest","slumber","smartdns","smartmontools","smb4k","smplayer","snappy","snapshot","soapyaudio","solid","songrec","sonic","sonic-visualiser","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sorcer","sound-gambit","soundtouch","sowing","sox","spatialindex","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","speex","speexdsp","spiped","spirv-cross","spirv-tools","splix","spotify-tui","spytrap-adb","sqlc","sqlx-cli","squashfs-tools","srs","srt","ssdeep","ssh-openpgp-auth","sshd-openpgp-auth","sshx","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","steam","steam-boilr-gui","stellarsolver","step","stk","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stylua","subversion","suil","suitesparse","suitesparse-graphblas","sundials","sunpinyin","supercollider","supergfxctl","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","sweeper","swiftshader-git","swig","switchboard-plug-user-accounts","sws","swww","symengine","sympol","syndication","syndicationd","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysprof","system76-firmware","system76-scheduler","systemc","systemctl-tui","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","tabiew","taglib","taglib1","tangler","taplo-cli","tbtools","tealdeer","teamspeak3-server","tecla","telly-skout","tere","termscp","tesseract","texlab","texlive-bin","texmaker","thin-provisioning-tools","threadweaver","thrift","thunderbird","tickrs","tiny","tinyobjloader","tinyxml2","tlsh","tokei","tokodon","tokodon-git","toml-bombadil","tomlplusplus","tone-bin","topcom","topgrade","tor","totem-pl-parser","tracexec","tracker3","tracker3-miners","tracktion-waveform","tradingview","tree-sitter-cli","trippy","tropy-bin","ttfautohint","ttyper","tui-journal","turbo","twitch-tui","typos","typst","typst-lsp","uchardet","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","umbrello","umu-launcher","unarchiver","uncrustify","unittestpp","unrar","updlockfiles","upower","usbguard","uutils-coreutils","uv","v4l-utils","vale","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vaultwarden","vbindiff","vco-plugins","vcpkg","vdpauinfo","vector","vector-blf","veracrypt","vid.stab","vigra","virtiofsd","virtualbox","virtualbox-kvm","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","viu","vivid","vkbasalt","vlc","vlc-luajit","vmaf","vmpk","vmware-horizon-client","voacapl","volta","vosk-api","vte3","vte4","vtk","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-validation-layers","vulkan-virtio","vvave","wabt","wacomtablet","wah-plugins","wasm-component-ld","wasmer","wasmtime","watchbind","watchexec","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webrtc-audio-processing","webrtc-audio-processing-1","websocat","wezterm","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","wiki-tui","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wireguard-vanity-address","wireplumber","wireshark-qt","wiresmith","wishbone-utils","wl-clip-persist","wl-clipboard-rs","wldash","wluma","woff2","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","worker-build","wp-desktop","wpewebkit","wpmeta","wstunnel","wvdial","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x265","x42-plugins-lv2","x42-plugins-standalone","xapian-core","xcolor","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdvdfs","xemu-git","xerces-c","xfsdump","xh","xmonk.lv2","xplc","xplr","xsd","xsettingsd","xsv","xwaylandvideobridge","yabridge","yabridgectl","yakuake","yaml-cpp","yazi","yazi-git","yoshimi-lv2","yoshimi-standalone","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenith","zenity","zeromq","zerotier-one","zfp","zimg","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zola","zopfli","zoxide","zstd","zxing-cpp","zydis","zynaddsubfx"],"optional_for":["gcin","spglib"],"conflicts_with":[],"replaces":["gcc-libs-multilib","libgphobos"],"download_size":"35.04 MiB","installed_size":"143.44 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"465482ee79fa656038ec60e1d8868c3fd69420e948468c4714031944befef0a5","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-m2","version":"14.2.1+r32+geccf707e5ce-1","description":"Modula-2 frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"13.59 MiB","installed_size":"49.01 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"d9bc49af683cc2e8f79a3464a6ecbc34bfe42a183b684cc3ab58342b33fab12a","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-objc","version":"14.2.1+r32+geccf707e5ce-1","description":"Objective-C front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-objc-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-objc-multilib"],"download_size":"25.62 MiB","installed_size":"85.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0cdd5e43a3c9305b92ea26fb44b96ba17853a9ec5449d005dfa762420b62b9a2","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-rust","version":"14.2.1+r32+geccf707e5ce-1","description":"Rust frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"14.07 MiB","installed_size":"51.45 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"9e06bf9329654391c2be8c724c61e23a228f7277951aff0bd9f5cb549d313e28","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gdbm","version":"1.24-1","description":"GNU database library","architecture":"x86_64","url":"https://www.gnu.org/software/gdbm/gdbm.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["libgdbm_compat.so=4-64","libgdbm.so=6-64"],"depends_on":["glibc","sh","readline","libreadline.so=8-64"],"required_by":["avahi","cyrus-sasl","exim","libsasl","man-db","modem-manager-gui","mutt","neomutt","openipmi","perl","php-legacy","pypy","pypy3","python","python39","ruby","ruby2.7","skktools","xkbsel","zsh"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":"247.12 KiB","installed_size":"719.59 KiB","packager":"David Runge ","build_date":"Thu 04 Jul 2024 10:47:39 PM +08","md5_sum":null,"sha_256_sum":"2712f2747f887ff19ad4151143e506e80254a0a0db0e8b968adb6634da7800ab","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gettext","version":"0.22.5-1","description":"GNU internationalization library","architecture":"x86_64","url":"https://www.gnu.org/software/gettext/","licenses":["GPL-2.0-only","LGPL-2.0-only","GFDL-1.2-only","GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","acl","sh","libunistring","libxml2"],"optional_deps":[{"name":"git","description":"for autopoint infrastructure updates"}],"required_by":["atril","base","base-devel","bison","cataclysm-dda","criterion","deepin-gettext-tools","engrampa","eom","exiv2","fsv3","gdm-settings","gdm-settings-git","gnome-shell-extension-arc-menu-git","grub","grub-improved-luks2-git","grub-silent","gtranslator","kde-development-environment-meta","kdesdk-thumbnailers","lib32-gettext","libmatekbd","libmatemixer","libmateweather","marco","mate-backgrounds","mate-calc","mate-common","mate-control-center","mate-icon-theme","mate-media","mate-netbook","mate-notification-daemon","mate-panel","mate-polkit","mate-power-manager","mate-screensaver","mate-sensors-applet","mate-session-manager","mate-settings-daemon","mate-system-monitor","mate-terminal","mate-user-guide","mate-user-share","mate-utils","mozo","notion","oversteer","pacman","pacman-git","perl-libintl-perl","perl-locale-gettext","pluma","po4a","poke","poxml","proton-ge-custom","pspp","quilt","t-prot","wine","wine-ge-custom","wine-stable","wine-staging","wine-staging-wow64","wine-staging-wow64-git","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wine-wow64","wine-wow64-git"],"optional_for":["diffoscope","fcitx","libvirt","motion"],"conflicts_with":[],"replaces":[],"download_size":"2.14 MiB","installed_size":"7.68 MiB","packager":"Tobias Powalowski ","build_date":"Wed 08 May 2024 06:42:49 PM +08","md5_sum":null,"sha_256_sum":"fa858cd8217d2089dd734b0ac6a9d526b7766ed0220cfad5320f91692f4d5d16","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"glib2","version":"2.80.5-1","description":"Low level core library","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libglib-2.0.so=0-64","libgio-2.0.so=0-64","libgirepository-2.0.so=0-64","libgmodule-2.0.so=0-64","libgobject-2.0.so=0-64","libgthread-2.0.so=0-64"],"depends_on":["bash","glibc","libffi","libsysprof-capture","pcre2","util-linux-libs","zlib","libffi.so=8-64","libmount.so=1-64"],"optional_deps":[{"name":"dconf","description":"GSettings storage backend"},{"name":"glib2-devel","description":"development tools"},{"name":"gvfs","description":"most gio functionality"}],"required_by":["64gram-desktop","86box","86box-git","abiword","accerciser","accountsservice","aisleriot","almanah","alsa-scarlett-gui","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","anydesk-bin","anyrun-git","app-icon-preview","appmenu-glib-translator-git","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","arch-update","ardour","ardour-git","arduino-ide","asunder","at-spi2-core","atomix","audacious","audacity","audio-recorder","autotrace","avahi","avldrums.lv2","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","babeltrace","babeltrace2","bemenu-wayland","bemenu-x11","birdfont","blanket","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brltty","budgie-session","bumblebee","bustle","cairo","calf","callaudiod","capnet-assist","castget","cdemu-client","cdemu-daemon","cef-minimal-obs-bin","cemu-git","chatgpt-desktop-bin","chromium-widevine","cinnamon-menus","clapper","colord-gtk","colord-gtk4","conky","conmon","connman","connman-git","connman-gtk","consolekit","contractor","contractor-git","cosmic-files","cosmic-files-git","cosmic-store","cosmic-store-git","cups-browsed","cups-pk-helper","curlftpfs","curtail","czkawka-gui","d-spy","datagrip","datagrip-jre","dataspell","dataspell-jre","dbmail","dbus-c++","dbus-glib","dconf","ddcutil","ddcutil-git","dee","deepin-api","deepin-appearance","deepin-camera","deepin-compressor","deepin-daemon","deepin-dock","deepin-file-manager","deepin-launchpad","deepin-session","deepin-session-ui","deepin-terminal","deepin-util-dfm","deepin-voice-note","deja-dup","deluge-gtk","deskreen","desktop-file-utils","devede","digikam","dino","dino-git","discover","displaycal","dleyna","droidcam","dsniff","dtk6gui","dtkgui","dunst","duperemove","dwarffortress","easytag","ebou","efl","emacs","emacs-nativecomp","emacs-wayland","emby-theater","enchant","eog","eolie","epiphany","etherape","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","fcitx5-gtk","ffmpeg","ffmpeg-full","ffmpeg-obs","file-roller","firefox","firefox-developer-edition","firefox-esr","firewalld","flat-remix-gnome","flatpak","flatpak-builder","flatpak-kcm","flips","fluidsynth","forkgram","fprintd","fractal","fragments","freeciv","freerdp","fs-uae","fsv3","fuseiso","fwupd","gala","gala-git","gambas3-gb-net-smtp","gamehub","gammastep","gammu","gcab","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdk-pixbuf2","gdm","gdm-prime","geary","gedit","gedit-plugins","geeqie","gegl","geoclue","geocode-glib-common","gfeeds","ghostscript","gigedit","giggle","gimp","gimp-plugin-gmic","girara","gitg","gjs","glib-networking","glib-perl","glib2-devel","glibd","glibmm","glibmm-2.68","glycin","glyr","gmime3","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-firmware","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-logs","gnome-mahjongg","gnome-maps","gnome-menus","gnome-mplayer","gnome-multi-writer","gnome-music","gnome-notes","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-extension-desktop-icons-ng","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnome-tweaks","gnome-usage","gnome-user-share","gnote","gnuplot","gobject-introspection","goffice","goland","goland-jre","gom","goobox","goocanvas","google-webdesigner","gpaste","gpgme","granite","granite7","graphene","greetd-regreet","gromit-mpx","grub-customizer","gsound","gspell","gssdp","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtk-sharp-3","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtk4-git","gtkglext","gtksourceview5","gtksourceviewmm","gtranslator","gts","gtuber","guestfs-tools","guitarix","gupnp","gupnp-av","gupnp-dlna","gupnp-igd","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gxml","harfbuzz","harfbuzz-cairo","harfbuzz-utils","haskell-gi","haskell-gi-base","haskell-gi-gio","haskell-gi-glib","haskell-gi-gmodule","haskell-gi-gobject","haskell-gio","haskell-glib","helvum","hexchat","hexter","hotdoc","hyprland","hyprland-git","hyprlock","ibus","ibus-typing-booster","icon-library","iio-sensor-proxy","imagemagick","imagemagick-full-git","imagescan","inkscape","irqbalance","irssi","itk-snap-bin","jack_mixer","jalv","jami-qt","jetbrains-toolbox","jgmenu","jnettop","json-glib","jsonrpc-glib","kamoso","kde-gtk-config","kexi","klavaro","klipperscreen","kondo-ui","kooha","kotatogram-desktop","kotatogram-desktop-git","lan-mouse","lantern-bin","lasem","lensfun","lensfun-git","lib2geom","lib32-glib2","libaccounts-glib","libaccounts-qt","libadwaita","libadwaita-demos","libappimage","libappindicator-gtk2","libappindicator-gtk3","libaxc","libayatana-appindicator","libayatana-indicator","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libcacard","libcalfbox-lss","libcheese","libcheese-git","libclapper","libclapper-gtk","libcloudproviders","libcolord","libdbusmenu-glib","libdex","libdnf","libdsme","libedataserverui4","libfm-extra","libfprint","libgbinder","libgda6","libgda6-mysql","libgda6-postgres","libgda6-sqlcipher","libgdiplus","libgdm","libgdm-plymouth-prime","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgee","libgepub","libgexiv2","libgirepository","libgit2-glib","libglib-testing","libglibutil","libgmobile","libgnome-keyring","libgnt","libgoa","libgrss","libgtop","libgudev","libguestfs","libgusb","libgweather-4","libgxps","libhandy","libibus","libical","libidl2","libinfinity","libinsane","libinstpatch","liblangtag","libldm","liblqr","libmalcontent","libmanette","libmatemixer","libmbim","libmediaart","libmediainfo","libmirage","libmm-glib","libmodulemd","libmpd","libmypaint","libnautilus-extension","libnice","libnids","libnm","libnm-iwd","libnotify","libomemo","libosinfo","libpackagekit-glib","libpamac-aur","libpamac-flatpak","libpanel","libpeas-2","libpinyin","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libproxy","libqrtr-glib","libquvi","libratbag","librda","libreoffice-fresh","libreoffice-still","librepo","librest","librewolf","librsvg","libsearpc","libsecret","libshumate","libsigrokdecode","libslirp","libsmf","libsoup","libsoup3","libspectmorph","libspectrum","libspeechd","libspelling","libwacom","libwacom-surface","libwebsockets","libwireplumber","libwireplumber-git","libwnck","libxfce4util","libxfce4windowing","libxklavier","libxmlb","libxmlbird","light-locker","lightdm","lightdm-gtk-greeter-settings","lightdm-pantheon-greeter","lilypond","loginized","logiops","looking-glass-host-git","loudmouth","loupe","lsp-plugins-gst","lua-lgi","lua51-lgi","lua53-lgi","lutris","lutris-git","lxqt-archiver","malcontent","maliit-framework","mate-menus","mc","mcabber","mdbtools","mednaffe","megatools","meld","metacity","mintlocale","mintstick","mixxx","mmsd-git","modemmanager","moserial","mpv-mpris","msgraph","mtpfs","mtr-gtk","mullvad-browser-bin","munt-smf2wav","muse","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","nautilus","nautilus-image-converter","nautilus-share","nbd","neard","netbird-ui","netplan","networkmanager","networkmanager-iwd","networkmanager-openvpn","newsflash","niri","nm-cloud-setup","nm-iwd-cloud-setup","notion","nwg-icon-picker","nwg-look","nwg-panel","obs-gstreamer","obs-studio-tytan652","ocrfeeder","ofono","opencv","opencv-cuda","opencv2","openipmi","opensc","openscad","orca","osinfo-db-tools","ostree","pacrunner","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-code","pantheon-files","pantheon-geoclue2-agent","pantheon-mail","pantheon-music","pantheon-notifications","pantheon-onboarding","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-screenshot","pantheon-settings-daemon","pantheon-shortcut-overlay","pantheon-tasks","pantheon-terminal","pantheon-videos","paperwork","paprefs","passim","pavucontrol","pdf2svg","pdfarranger","pebbles-git","perf","performous","phoc","phodav","phpstorm","phpstorm-jre","pinentry","pipewire","pipewire-audio","pipewire-pulse","pitivi","plank","plasma-nm","plasma-pa","playerctl","plymouth","poedit","polari","polkit","polkit-consolekit","polkit-qt5","polkit-qt6","pop-bin","pop-gtk-theme-git","poppler-glib","power-profiles-daemon","pqiv","pragha","preload","profanity","profanity-gtk","protonmail-bridge-core","ptyxis","pulseaudio-equalizer-ladspa","puzzles","py3status","pycharm-community-eap","pycharm-community-edition","python-bluepy","python-dasbus","python-dbus","python-dbus-fast","python-dbusmock","python-dleyna","python-gobject","python-manimpango","python-volume_key","pyzy","qalculate-gtk","qemu-arch-extra-git","qemu-audio-dbus","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-gtk","qemu-ui-sdl","qemu-ui-spice-app","qemu-user","qemu-vhost-user-gpu","qt6-base","qt6-multimedia-gstreamer","qt6-webengine","qtcreator","qtkeychain-qt5","qtkeychain-qt6","quickdocs","qxmpp-qt5","qxmpp-qt6","r","rauc","redshift","regexxer","remmina","retro-gtk","rhythmbox","rnote","rofi-emoji","rofi-wayland","rqbit-desktop","rspamd","runescape-launcher","rygel","sane","satty","sdcv","seadrive-daemon","seahorse-nautilus","secrets","sensors-applet","setbfree-lv2","setbfree-standalone","sfizz-lv2","sfizz-vst3","share-preview","shared-mime-info","signal-desktop","signal-desktop-beta","signon-ui","simple-scan","skktools","slirp4netns","snapshot","snes9x-gtk","sofia-sip","solaar","songrec","spectmorph-tools","spice","spice-gtk","spice-vdagent","spot-client","sshfs","startdde","steam-native-runtime","stlink","strawberry","strawberry-full-git","strawberry-git","sublime-music-git","sushi","sway-git","swaybg-git","swayimg","swaylock-git","swaync","swell-foop","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","switcheroo-control","swtpm","syslog-ng","sysprof","system-config-printer","tartube","tblock-gui","tecla","telegram-desktop","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","template-glib","text-engine","themix-theme-materia-git","themix-theme-oomox-git","thunderbird","tio","totem-pl-parser","touchegg","tpm2-abrmd","tracker3","tracker3-miners","tracktion-waveform","tradingview","transmageddon","transmission-remote-gtk","tropy-bin","tuba","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ukui-menus","upower","uresourced","usbguard","usbip","usbredir","vala","vala-panel-appmenu-jayatana-git","vala-panel-appmenu-registrar","vala-panel-appmenu-registrar-git","valabind","vbam-wx","vinagre","vital-synth","vlc","vlc-luajit","vmware-horizon-client","vmware-horizon-mmr","vmware-horizon-rtav","vmware-horizon-smartcard","vmware-horizon-tsdr","vmware-horizon-usb","volume_key","vte3","vte4","wavebox-beta","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webstorm","webstorm-jre","webwatcher-git","weston","wezterm","wingpanel","wingpanel-indicator-a11y","wingpanel-indicator-bluetooth","wingpanel-indicator-datetime","wingpanel-indicator-keyboard","wingpanel-indicator-network","wingpanel-indicator-nightlight","wingpanel-indicator-notifications","wingpanel-indicator-power","wingpanel-indicator-session","wingpanel-indicator-sound","wired","wireplumber","wireshark-cli","wmctrl","wofi","wpebackend-fdo","wpewebkit","wv","wxwidgets-common","wxwidgets-gtk3","x42-plugins-lv2","x42-plugins-standalone","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xemu-git","xfce4-dev-tools","xfce4-docklike-plugin","xpipe","xscreensaver","xss-lock","zenity","zoom"],"optional_for":["clevis","fastfetch","glusterfs","intel-oneapi-basekit","libpulse","mlt","plasma-desktop","suil","visual-studio-code-bin","visual-studio-code-insiders-bin","xnviewmp"],"conflicts_with":[],"replaces":[],"download_size":"4.86 MiB","installed_size":"36.75 MiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"45b56f3a1bba361b5175f7b4ca5c986c8d8169bd8f93b3ac2ad0adb677c2e21a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-devel","version":"2.80.5-1","description":"Low level core library - development files","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glib2","glibc","libelf","python","python-packaging"],"required_by":["ayatana-indicator-power","ayatana-indicator-session","aylurs-gtk-shell-git","gdm-settings","gdm-settings-git"],"optional_for":["glib2"],"conflicts_with":[],"replaces":[],"download_size":"157.58 KiB","installed_size":"1211.66 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"1c4ad5b09612421b6b8974dcbda5877c2a94daa42fbec88554e61443d9c80fc2","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-docs","version":"2.80.5-1","description":"Low level core library - documentation","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later","LicenseRef-Public-Domain"],"groups":[],"provides":[],"depends_on":[],"required_by":["gtk-doc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"3.20 MiB","installed_size":"63.35 MiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"334e9e6c408dcf5477358426232c09c99fa83d52a5912671e40c6aa0b71d9075","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glibc","version":"2.40+r16+gaa533d58ff-2","description":"GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["linux-api-headers>=4.10","tzdata","filesystem"],"optional_deps":[{"name":"gd","description":"for memusagestat"},{"name":"perl","description":"for mtrace"}],"required_by":["3cpio","4ti2","7-zip","7-zip-full","86box","86box-git","a2jmidid","a52dec","aalib","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acl","acpi","acpica","add-determinism","adguardhome","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","adms-git","adns","advancecomp","advcpmv","aeolus","aerc","afdko","afl++","age","age-plugin-tkey","age-plugin-tpm","age-plugin-yubikey","aha","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","aisleriot","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alertmanager","ali","alicloud-vault","aliyun-cli","alligator","almanah","alsa-lib","alsa-oss","alsa-plugins","alsa-scarlett-gui","alsa-tools","alsa-utils","amarok","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","aml","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-cmdline-tools-latest","angband","angelfish","angle-grinder","anime-games-launcher-bin","antimicrox","anydesk-bin","aom","apk-tools","apko","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-rebuild-order","arch-repro-status","archinstall","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-cli","arduino-ctags","arduino-fwuploader","arduino-ide","arduino-language-server","argocd","argon2","argtable","arianna","aribb25","arj","ark","arrpc","arti","artikulate","artyfx","ascii","astyle","asunder","asusctl","asymptote","at-spi2-core","at51","atomix","attica","attr","atuin","aubio","audacity","audaspace","audex","audio-recorder","audiocd-kio","audiotube","audit","augustus","aura","aura-git","avldrums.lv2","avogadrolibs","avogadrolibs-qt5","avr-binutils","aws-c-auth","aws-c-cal","aws-c-common","aws-c-compression","aws-c-event-stream","aws-c-http","aws-c-io","aws-c-mqtt","aws-c-s3","aws-c-sdkutils","aws-crt-cpp","aws-sdk-cpp","aws-vault","axel","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","b43-fwcutter","babeld","babeltrace2","babl","babl-git","backuppc","bacon","baidupcs-go","baloo","baloo-widgets","bandwhich","banner","barcode","base","bash","bat","bcc","bcg729","bchoppr","bchunk","bear","bearssl","beep","bemenu","bemenu-ncurses","bemenu-wayland","bemenu-x11","benzene","bespokesynth","bettercap","bfs","bftpd","bibtool","bibutils","bind","binutils","biome","bird","birdfont","bison","bitcoin-daemon","bitcoin-qt","bitcoin-tx","black-hole-solver","blas","blas64","blender","blinken","blisp","bliss","blockbench-bin","blop","blop.lv2","blosc","blosc2","bluedevil","bluez","bluez-cups","bluez-deprecated-tools","bluez-hid2hci","bluez-libs","bluez-mesh","bluez-obex","bluez-qt","bluez-utils","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","bolt-launcher","bomber","bootconfig","bootiso","botan","bovo","bpf","bpf-linker","bpftrace","breeze","breeze-icons","breeze-plymouth","breeze5","breezy","brial","brickadia-launcher","bridge-utils","brltty","brook","brotli","browserpass","bsequencer","bshapr","bslizr","btop","btrfs-progs","bubblewrap","bubblewrap-suid","buckygen","buf","buho","build2","bully","bup","bustle","byacc","bzip2","bzip3","c-ares","c-xsc","cabextract","caddy","cage","cage-git","cairo","calendarsupport","calf","calindori","calligra","canto-curses","cantor","capnproto","capstone","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-audit","cargo-c","cargo-cyclonedx","cargo-deb","cargo-flamegraph","cargo-license","cargo-outdated","cargo-release","cargo-semver-checks","cargo-tarpaulin","carla","carla-git","cartridge-cli","casync","catdoc","catimg","cauchy","cbindgen","cblas","cblas64","ccache","ccd2iso","ccls","cddlib","cdemu-daemon","cdparanoia","cdrdao","cdrtools","cef-minimal-obs-bin","cemu-git","cern-vdt","cervisia","cfitsio","cfssl","charm","chatgpt-desktop-bin","chewing-editor","chezmoi","chitose","chmlib","choosenim","choria-io","chromaprint","chromium-widevine","chrony","chrootuid","chrpath","cilium-cli","citra-git","cjdns","cjson","ckermit","cksfv","clamav","clapper","clash","clazy","clblast","clipgrab","cliphist","cliquer","cloudflare-warp-bin","cloudflared","clthreads","clucene","clxclient","cm256cc","cmake","cmark","cmark-gfm","cmocka","cmt","cni-plugins","cobalt","cockroachdb-bin","codon-bin","coeurl","coin-or-asl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-csdp","coin-or-mp","coin-or-osi","colord-gtk","colord-gtk4","colord-kde","comgr","committed","communicator","compface","composable-kernel","composefs","compsize","confuse","conky","conmon","connman","conntrack-tools","consul","consul-template","container-diff","convertlit","coolercontrol","coordgen","coreutils","coreutils-hybrid-git","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","cowsql","coxeter","cpio","cpp-hocon","cppdap","cppunit","cpufetch","cpupower","cracklib","crane","crawl-ncurses","crawl-tiles","cri-o","crictl","critest","criu","croc","croc-git","crowdsec","cryfs","cryptominisat","csound","csound-plugins","csoundqt","ctags","ctop","ctrtool","cubeb","cue","cuetools","cunit","cups","cups-browsed","cups-filters","cups-pdf","cups-pk-helper","curl-rustls","curlie","cutter","cxxbridge","cycfx2prog","cyrus-sasl","cyrus-sasl-gssapi","cyrus-sasl-ldap","cyrus-sasl-sql","cython","czkawka-cli","czkawka-gui","d-spy","d2","dagger","darling-bin","dart","dart-sass","dasel","dash","dateutils","dav1d","davs2","dbmail","dbmate","dbus-c++","dbus-glib","ddrescue","debugedit","debuginfod","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-compressor","deepin-file-manager","deepin-launchpad","deepin-music","deepin-network-core","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-session","deepin-session-shell","deepin-session-ui","deepin-terminal","deepin-widgets","deepin-wloutput-daemon","deja-dup","deltachat-rpc-server","deskreen","desync","detox","device-mapper","dexed-clap","dexed-standalone","dexed-vst3","dfc","dfrs","dfu-programmer","dhclient","dhcp","dhcpcd","dhcping","dictd","diesel-cli","diffstat","difftastic","diffutils","digikam","din","ding-libs","direnv","discimagecreator-git","discord-canary-electron-bin","discord-chat-exporter-cli","discount","discover","distorm","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","distro-info","dive","djvulibre","dleyna","dma","dmenu","dmidecode","dmtcp","dnscrypt-proxy","dnsmasq","dnssec-tools","docbook2x","docker","docker-machine","doctl","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dolt","dontpanic","doomretro","dos2unix","dosfstools","dotconf","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","droidcam","drone","drone-cli","drone-oss","drone-runner-docker","drone-runner-exec","drone-runner-ssh","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dsniff","dsq","dssi","dtc","dte","dtk6core","dtk6gui","dtk6widget","dtkcore","dtkwidget","dua-cli","duf","duktape","dump_syms","dumpasn1","dune","duplicacy","dust","dvd+rw-tools","dvgrab","dvisvgm","dwayland","e-antic","earlyoom","easy-pdk","easyjson","easytag","easytether-bin","ebook-tools","ebou","ebumeter","ecasound","eclib","ecm-tools","ecos","ed","edid-decode-git","editline","editorconfig-checker","editorconfig-core-c","efibootmgr","efitools","efivar","egl-wayland","eksctl","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elinks","elisa","ell","elvish","embree","emby-ffmpeg","emby-theater","emptyepsilon","enblend-enfuse","encpipe","endless-sky","enet","enscript","entr","eog","epiphany","eq10q","erdtree","erfa","erofs-utils","esbuild","espeakup","espflash","espup","eteroj.lv2","etherape","ethtool","ettercap","ettercap-gtk","eventviews","evilginx","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","evtest","exempi","exfat-utils","exfatprogs","exim","exiv2","expat","expressvpn","extundelete","eza","faac","faad2","fabla","facter","fakeroot","falkon","fastfetch","fatresize","fatsort","faust","fbset","fcitx5-qt","fcrackzip","fdkaac","fdupes","ffcall","fflas-ffpack","ffmpeg","ffmpeg-obs","ffmpegthumbs","fftw","fftw-openmpi","fiery","fig2dev","figlet","file","file-roller","filelight","findnewest","findutils","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","fish-git","flatpak","flatpak-builder","flatpak-kcm","flex","flint","flip-link","flips","flite","flite1","flterm","fltk","fluidsynth","fluxcd","fomp.lv2","foomatic-db-engine","foremost","forgejo","fortune-mod","fossil","fping","fplll","fprintd","fq","fractal","fragments","frameworkintegration","francis","freecell-solver","freeciv","freeglut","freerdp","freerdp2","freetds","freewheeling","frei0r-plugins","fribidi","fricas","frotz-dumb","fsv3","ft2-clone","ftjam","fulcio","furnace","fuse2","fuse3","futuresql","fwupd","fx","fxload","fzy","gala","gamemode","gamescope","gamescope-git","gammaray","gammastep","gap","gap-packages","gavl","gawk","gcc-libs","gcc13-libs","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdb","gdbm","gdcm","gdk-pixbuf2","gdm","gdm-prime","gdu","geary","gedit","gedit-plugins","geeqie","gegl","gen2shp","genxrdpattern","geoclue","geoipupdate","geonkick-lv2","geonkick-standalone","geonkick-vst3","geph4-client","gf2x","gfan","gfold","ghostscript","ghostwriter","ghq","giac","giada","gif2png","giflib","gigedit","giggle","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","girara","git-cinnabar","git-cliff","git-credential-gopass","git-delta","git-evtag","git-smash","git-warp-time","gitg","github-cli","gitlab-gitaly","gitlab-runner","gitleaks","gitoxide","gitui","givaro","gjs","glab","glew","glew1.10","glewlwyd","glib-networking","glib2","glib2-devel","glibc-locales","glibmm-2.68","glider","glow","glpk","glu","glycin","gmic","gmime3","gmp","gmp-ecm","gmsynth.lv2","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-mahjongg","gnome-maps","gnome-mplayer","gnome-multi-writer","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnu-netcat","gnugo","gnupg","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnutls","go-ethereum","go-licenses","go-swagger","go-task","go-tools","go-yq","goaurrpc","gobject-introspection","gocr","gocryptfs","godot-mono","goffice","goimapnotify","gojq","goldendict-webengine-pr-git","gom","gomuks","goobox","goocanvas","google-glog","google-webdesigner","gopass-hibp","gopass-jsonapi","gopass-summon-provider","gopsuinfo","goreleaser","gost","gotop","gotosocial","gox","gpac","gpart","gpaste","gperf","gperftools","gpgme","gpsmanshp","gputils","gqrx","grafana","grafana-agent","grafana-agentctl","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","greetd","greetd-regreet","grep","gron","grub-customizer","gsl","gsm","gsocket","gsound","gssproxy","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtest","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtksourceview5","gtksourceviewmm","gtranslator","gtuber","guestfs-tools","guile1.8","guitarix","gum","gumbo-parser","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gvim","gwenview","gxplugins.lv2","gzip","halibut","harfbuzz","harfbuzz-cairo","harfbuzz-icu","harfbuzz-utils","haruna","harvid","hashcash","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","hatari","haveged","hck","hcloud","hcxdumptool","hdapsd","hdparm","headscale","heaptrack","heimdall","heimdall-grimler-git","helix","helm","helmfile","helvum","hepmc","hexter","hey","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hiredis","hivex","hoel","hostapd","hostess","hotdoc","hound","hplip","hsa-amd-aqlprofile-bin","hsa-rocr","hsakmt-roct","hspell","htmlcxx","http-parser","httptunnel","hugo","hunspell","hurl","hut","hwloc","hydra","hydrogen","hyperv","hyphen","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","i3blocks","i3lock","iaito","iat","icon-library","icu","id3lib","id3v2","iddawc","idle3-tools","iempluginsuite-standalone","iempluginsuite-vst3","igraph","ijs","imagemagick","imagescan","imaginary","imake","imath","imd-git","iml","incidenceeditor","include-what-you-use","indent","index-fm","inetutils","infamousplugins","iniparser","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","insync","intel-metee","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","intel-undervolt","ioping","iotop-c","iperf","iperf3","ipp-usb","iproute2","ipset","iptstate","ipvsadm","irqbalance","irssi","isatapd","isoimagewriter","ispc","istio","itcl3","itinerary","itk-snap-bin","iucode-tool","iwd","j4-dmenu-desktop","jack-example-tools","jack-stdio","jack2","jack2-dbus","jack_delay","jack_mixer","jack_utils","jackett","jackmeter","jackminimix","jacktrip","jalv","jami-daemon","jansson","japa","jasper","java-rxtx","jbig2dec","jbigkit","jc303-clap","jc303-lv2","jc303-vst3","jconvolver","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jdupes","jellyfin-ffmpeg","jemalloc","jhead","jitterentropy","jnoisemeter","jo","joshuto-git","jpegoptim","jq","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","json-c","json-glib","jsonrpc-glib","juce","judy","jujutsu","juk","julius","jxrlib","k3b","k9s","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbd","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcptun","kcpuid","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","keepalived","kernelshark","kexi","keysmith","keyutils","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","klystrack-plus","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmod","kmousetool","kmouth","kmplot","knative-client","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","ko","koko","kolf","kollision","kolourpaint","kommit","kompare","kompose","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krb5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kube-apiserver","kube-controller-manager","kube-linter","kube-proxy","kube-scheduler","kubeadm","kubeconform","kubectl","kubectl-ingress-nginx","kubectx","kubelet","kubeseal","kubo","kubrick","kunitconversion","kup","kuserfeedback","kustomize","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwallet-pam","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","l-smash","labplot","ladspa","lantern-bin","lapack","lapack64","lapacke","lapacke64","lasem","latte-integrale","layer-shell-qt","lazygit","lbzip2","lcalc","ld-lsb","ldproxy","lean4-git","leatherman","legba","lego","lemon","lensfun-git","leocad","less","lf","lf-git","lftp","lhasa","lib32-glibc","lib32-glibc-eac","lib32-glibc-eac-roco","lib32-opencore-amr","lib3mf","libabigail","libabw","libaccounts-glib","libaccounts-qt","libad9361","libadwaita","libadwaita-demos","libaec","libaio","libajantv2","libakonadi","libao","libappimage","libappindicator-gtk2","libappindicator-gtk3","libass","libassuan","libasyncns","libatasmart","libatomic_ops","libavc1394","libavif","libayatana-appindicator","libayatana-indicator","libb2","libb64","libbaseencode","libblastrampoline","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libbluray","libbpf","libbraiding","libbsd","libburn","libc++","libc++abi","libcaca","libcacard","libcalfbox-lss","libcamera","libcamera-ipa","libcamera-tools","libcap","libcap-ng","libcbor","libcdaudio","libcddb","libcdio-paranoia","libcdr","libcerf","libcgif","libck","libclapper","libclapper-gtk","libcli","libcmis","libconfig","libcoverart","libcpuid","libcue","libcups","libcupsfilters","libcutl","libcyaml","libdaemon","libdatachannel","libdatrie","libdbi","libdc1394","libdca","libde265","libdeflate","libdex","libdispatch","libdisplay-info","libdmtx","libdovi","libdrm","libdv","libdvbpsi","libdvdcss","libdvdnav","libdvdread","libe-book","libebur128","libedataserverui4","libedit","libei","libelf","libepoxy","libepubgen","libetebase","libetonyek","libetpan","libev","libevdev","libewf","libexif","libexttextcat","libfabric","libfdk-aac","libffado","libffi","libffi7","libfido2","libfilezilla","libfilteraudio","libfixposix","libfontenc","libforensic1394","libfprint","libfreeaptx","libfreehand","libfreexl","libgcrypt","libgcrypt15","libgda6","libgda6-mysql","libgda6-postgres","libgdm","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgexiv2","libgfshare","libgig","libgirepository","libgit2","libgit2-glib","libgme","libgoa","libgoom2","libgpg-error","libgravatar","libgssglue","libgtop","libguestfs","libgweather-4","libheif","libhomfly","libhx","libical","libice","libiconv","libid3tag","libidn","libidn11","libiio","libimobiledevice","libimobiledevice-git","libimobiledevice-glue","libindi","libinih","libinput","libinsane","libinstpatch","libiptcdata","libirman","libiscsi","libixion","libjodycode","libjpeg-turbo","libjpeg6-turbo","libjuice","libkate","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeccak","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libklvanc-git","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libksba","libkscreen","libksieve","libksysguard","libktorrent","liblangtag","liblc3","libldac","libliftoff","libliftoff-git","libliquidsfz","liblo","liblockfile","liblouis","liblqr","liblscp","liblsp-r3d-glx-lib","libltc","liblzf","libmad","libmalcontent","libmanette","libmatio","libmaxminddb","libmcrypt","libmd","libmediaart","libmediainfo","libmesode","libmicrodns","libmikmod","libmirage","libmms","libmng","libmnl","libmpc","libmpcdec","libmpdclient","libmpeg2","libmspack","libmspub","libmsym","libmtp","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmypaint","libmythes","libnatpmp","libnautilus-extension","libnbd","libndp","libnet","libnfnetlink","libnfs","libnghttp2","libnghttp3","libngtcp2","libnitrokey","libnl","libnm","libnm-iwd","libnova","libnpupnp","libnsl","libnumbertext","libnvidia-container","libodfgen","libogg","libomemo-c","libomxil-bellagio","libopenmpt","libopenshot","libopenshot-audio","libopusenc","liborcus","liborigin","libosinfo","libotr","libp11-kit","libpagemaker","libpaper","libpcap","libpciaccess","libpeas-2","libpg_query","libpgm","libphonenumber","libpillowfight","libpipeline","libpipewire","libplacebo","libplasma","libplist","libplist-git","libpng12","libportal","libportal-qt5","libportal-qt6","libppd","libprocps","libproxy","libpwquality","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libqb","libquotient","libqxp","libraqm","libraw","libraw1394","librda","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreplaygain","libressl","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-blastem","libretro-dolphin","libretro-kronos","libretro-mame","libretro-mame2016","libretro-mesen-git","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-opera-git","libretro-pcsx2","libretro-picodrive","libretro-play","libretro-ppsspp","libretro-sameboy","libretro-stella2014-git","libretro-yabause","librevenge","librewolf","librime","librsvg","librtmp0","librustls","libsamplerate","libsasl","libsbsms","libseccomp","libsecp256k1","libsemigroups","libsepol","libserialport","libshumate","libsidplayfp","libsignal-protocol-c","libsigsegv","libsm","libsmbios","libsndfile","libsodium","libsoup3","libspecbleach","libspectmorph","libspectre","libspelling","libspf2","libspiro","libspnav","libspng","libssh","libstaroffice","libstemmer","libstrophe","libsynctex","libtasn1","libtatsu-git","libthai","libtheora","libtiff","libtiff5","libtirpc","libtommath","libtool","libtraceevent","libtracefs","libtsm","libuecc","libultrahdr","libumem-git","libunibreak","libunistring","libunrar","libunwind","libupnp","libupnpp","liburcu","libusb","libusbmuxd","libusbmuxd-git","libusbsio","libutempter","libuv","libuvc","libva-mesa-driver","libvdpau-va-gl","libverto","libvisio","libvpx","libvpx1.3","libvterm","libvterm-0.1","libwacom","libwacom-surface","libwebp","libwebsockets","libwhereami","libwhich","libwireplumber","libwlocate","libwmf","libwnck","libwpd","libwpg","libwps","libx11","libx86","libxau","libxaw","libxcb","libxcb-git","libxcomposite","libxcrypt","libxcursor","libxcvt","libxcvt-git","libxdamage","libxdg-basedir","libxdmcp","libxext","libxfixes","libxfont2","libxft","libxi","libxinerama","libxisf","libxkbcommon","libxkbcommon-x11","libxkbfile","libxklavier","libxml++-5.0","libxml2","libxmp","libxmu","libxp","libxpm","libxpresent","libxrandr","libxrender","libxres","libxsd-frontend","libxshmfence","libxslt","libxss","libxt","libxtst","libxv","libxvmc","libxxf86vm","libyaml","libytnef","libzen","libzmf","lidia","light-locker","lightdm-pantheon-greeter","lilv","lilypond","limine","linbox","lincity-ng","link-grammar","linux-atm","linuxsampler","linuxtv-dvb-apps","liquid-dsp","liquid-dsp-sse4.1","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","lksctp-tools","lldb-mi","lldpd","llvm-julia","llvm-julia-libs","lm_sensors","lmdb","lmms","lockfile-progs","logcli","lokalize","loki","loki-canary","looking-glass-git","looking-glass-host-git","lorcon","loupe","lout","lowdown","lprint","lpsolve","lrcalc","lrs","lskat","lsof","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lttng-ust2.12","lua-lgi","lua51-lgi","lua53-lgi","luametatex","luau","luppp","lv2file","lv2lint","lxqt-config","lxsplit","ly","lynx","lz4","lzo","m17n-db","m4","m4ri","m4rie","mac","macchanger","macfanctld","maeparser","mailcommon","mailimporter","make","malcontent","maliit-framework","mame","mame-tools","man-db","mandown","marble","marble-common","marble-maps","marble-qt","markdownpart","marknote","masscan","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","mattermost","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","mawk","maxcso","maxcso-git","mbedtls","mbedtls2","mbelib","mbox-importer","mbpfan-git","mbuffer","mc","mcpp","mcqd","md4c","mda.lv2","mdadm","mdf2iso","mediaelch","mednaffe","meek","melange","memcached","memtester","mencoder","mephisto.lv2","merkuro","mesa","mesa-demos","mesa-utils","mesa-vdpau","meshbird","messagelib","metacity","metalog","mgard","mhash","microsocks","midi_matrix.lv2","mihomo","milkytracker","miller","milou","mimalloc","mimetreeparser","mimir","mingw-w64-tools","minieap","miniflux","minikube","minio","minio-client","minitube","miniupnpc","minizip","minizip-ng","minuet","miopen-hip","mixxx","mjpegtools","mkcert","mkinitcpio-busybox","mkinitcpio-nfs-utils","mkvtoolnix-cli","mlocate","mlt","mmctl","mmsrip","mod_dnssd","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","mongodb-tools","moony.lv2","moserial","mosquitto","mp3guessenc-beta","mpc","mpd","mpdecimal","mpfi","mpfr","mplayer","mpv","mpvqt","mscp","msgpack-c","msgraph","msolve","msr-tools","mtdev","mtools","mtr","mtr-gtk","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","mupdf","mupdf-gl","mupdf-tools","muse","musepack-tools","musescore","mutt","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mxml","mympd","mysql-workbench","mystiq","naiveproxy","nano","nanomsg","nanosvg","nasm","nautilus","nautilus-image-converter","nautilus-share","nauty","navidrome","nawk","nbtscan","nccl","ncmpc","ncmpcpp","ncompress","ncspot","ncurses","ncurses5-compat-libs","ndisc6","neard","neatvnc","nebula","neochat","neomutt","neon","neovide","neovide-git","net-tools","netavark","netbird","netbird-management","netbird-signal","netbird-ui","netbrake","nethsm-cli","nethsm-pkcs11","netpbm","netperf","netplan","netsniff-ng","nettle","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","nfsidmap","nginx","nginx-mainline","nginx-mod-njs","nginx-prometheus-exporter","nickel","nickel-language-server","niri","nix","nixpacks","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-repellent","noise-suppression-for-voice","nomacs","nomad","nomad-driver-nspawn","normaliz","notcurses","npth","nrg2iso","nrpe","nspr","nspr-hg","nss","nss-mdns","nsxiv","ntk","ntl","numactl","nushell","nuspell","nut","nvidia-cg-toolkit","nvidia-container-toolkit","nwg-look","nyancat","nyxt","oath-toolkit","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-gstreamer","obs-plugin-looking-glass-git","obs-rtspserver","obs-studio-tytan652","ocaml-augeas","ocaml-csexp","ocaml-intrinsics-kernel","ocaml-pp","ocaml-stdio","ocl-icd","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","oha","oidentd","oil","okteta","okular","okularpart5","onnx","opencl-clover-mesa","opencl-rusticl-mesa","opencore-amr","opencv","opencv-cuda","opendht","openexr","openfec","openfortivpn","openjade","openjpeg2","openlibm","openmpi","openntpd","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openpmix","openscad","opensearch-cli","opensmtpd-filter-rspamd","opensmtpd-filter-senderscore","opensnitch","openssh","openssl","openssl-1.0","openssl-1.1","opentimelineio","opentofu","openucc","openucx","openvkl","openzwave","opera-beta-ffmpeg-codecs","operator-sdk","opnplug-lv2","opnplug-standalone","opnplug-vst","optipng","opus","orc","orcania","oscpack","osinfo-db-tools","ospray","osquery","ostree","osv-scanner","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owl-lisp","owncloud-client","oxygen","oxygen5","oxyromon","p11-kit","p2pool","pack-cli","packagekit-qt5","packagekit-qt6","packer","packwiz-git","pacman","pacman-bintrans","pacman-bintrans-tools","pacman-git","pacoloco","pacquery","pacutils","padthv1-lv2","padthv1-standalone","pahole","palapeli","palp","pam","pam_mount","pam_wrapper","pamixer","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-files","pantheon-geoclue2-agent","pantheon-music","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-settings-daemon","pantheon-videos","paperkey","papilo","pappl","paprefs","pari","parley","partitionmanager","passt","patch","patchmatrix","pavucontrol","pax","pciutils","pcre","pcre2","pcsc-perl","pd","pd-lua","pd-sfizz","pdfcrack","pdnsd","peco","perf","performous","perl","perl-crypt-des","perl-file-fcntllock","perl-io-tty","perl-sub-prototype","perl-term-readkey","pesign","pgbouncer","pgpdump","phodav","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-igbinary","php-imagick","php-legacy-igbinary","php-legacy-imagick","php-legacy-redis","php-redis","picard","picmi","picocom","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pinentry","pingu","pint","pipe-rename","pipectl","pipewire","pipewire-audio","pipewire-ffado","pipewire-jack","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-v4l2","pipewire-x11-bell","pipewire-zeroconf","pitivi","pixiewps","pixman","pkgconf","planarity","plank","plantri","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","playerctl","plfit","plumber","plymouth","plymouth-kcm","podman","podman-desktop","poedit","polari","polkit","polkit-kde-agent","polkit-qt5","polkit-qt6","polly-git","polymake","polyphone","pop-bin","pop-launcher","popeye","poppler","poppler-glib","poppler-qt5","poppler-qt6","popt","portaudio","portmidi","portsmf","posix","postfix","postfix-cdb","postfix-ldap","postfix-lmdb","postfix-mongodb","postfix-mysql","postfix-pcre","postfix-pgsql","postfix-sqlite","postgresql","postgresql-libs","potrace","power-profiles-daemon","powerdevil","powerline","powershell-bin","poxml","ppl","ppp","ppsspp","pqiv","premake","presage","primecount","primesieve","print-manager","prismlauncher","prison","processing","procinfo-ng","procps-ng","procs","profanity","profanity-gtk","proftpd","prometheus","prometheus-bird-exporter","prometheus-blackbox-exporter","prometheus-elasticsearch-exporter","prometheus-ipmi-exporter","prometheus-json-exporter","prometheus-memcached-exporter","prometheus-mysqld-exporter","prometheus-node-exporter","prometheus-nut-exporter","prometheus-postgres-exporter","prometheus-smartctl-exporter","prometheus-smokeping-prober","prometheus-snmp-exporter","prometheus-ssl-exporter","prometheus-systemd-exporter","prometheus-unbound-exporter","prometheus-varnish-exporter","promtail","protobuf","protobuf-21","protonmail-bridge","protonmail-bridge-core","proxychains-ng","proxytunnel","prrte","pt2-clone","ptyxis","pulseaudio-qt","pulumi","pup","purpose","puzzles","pv","pwgen","pwninit","pwru","pyside6","pythia8","python-aioquic","python-asyncpg","python-aubio","python-audit","python-autobahn","python-awscrt","python-axolotl-curve25519","python-blosc2","python-capng","python-cbor2","python-ciso8601","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-coverage","python-cramjam","python-crc32c","python-crcmod","python-cvxopt","python-cvxpy","python-cwcwidth","python-cylp","python-cypari2","python-cysignals","python-cytoolz","python-datrie","python-dbus","python-dbus-fast","python-debugpy","python-ecos","python-evdev","python-falcon","python-fastbencode","python-fastnumbers","python-fastparquet","python-fpylll","python-gammu","python-gmpy2","python-gobject","python-gpgme","python-gssapi","python-igraph","python-iminuit","python-iwlib","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-lxc","python-markupsafe","python-materialyoucolor-git","python-miniupnpc","python-mitmproxy-rs","python-ml-dtypes","python-multidict","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-osqp","python-patiencediff","python-pendulum","python-pikepdf","python-pillow","python-pillowfight","python-pivy","python-pplpy","python-primecountpy","python-psutil","python-psycopg2","python-pyalsa","python-pyarrow","python-pybluez","python-pycapnp","python-pycosat","python-pycrdt","python-pycuda","python-pycups","python-pycurl","python-pydantic-core","python-pyerfa","python-pygame","python-pygit2","python-pykcs11","python-pyliblo","python-pylorcon2","python-pymongo","python-pymupdf","python-pynacl","python-pynormaliz","python-pyopencl","python-pyqt5-sip","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-sip","python-pyqt6-webengine","python-pyrsistent","python-pyscipopt","python-pysequoia","python-pytables","python-pythia8","python-pywayland","python-pywlroots","python-qdldl","python-qrencode","python-rapidfuzz","python-rcssmin","python-reflink","python-regress","python-rjsmin","python-rpds-py","python-rtmidi","python-scipy","python-scrypt","python-scs","python-simplejson","python-sqlalchemy","python-sqlalchemy1.4","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-tornado","python-tpm2-pytss","python-ulid-transform","python-urwid","python-uvloop","python-vigra","python-volume_key","python-watchfiles","python-webrtcvad","python-xapian","python-xkbcommon","python-xmlsec","python-y-py","python-yaml","python-yara","python-yarl","python-zita-audiotools","python-zita-jacktools","python-zope-interface","python-zope-proxy","python-zope-security","python-zopfli","qalculate-gtk","qalculate-qt","qastools","qbe","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcoro-qt5","qcoro-qt6","qd","qemu-audio-alsa","qemu-audio-dbus","qemu-audio-jack","qemu-audio-oss","qemu-audio-pa","qemu-audio-pipewire","qemu-audio-sdl","qemu-audio-spice","qemu-block-curl","qemu-block-dmg","qemu-block-gluster","qemu-block-gluster-git","qemu-block-iscsi","qemu-block-iscsi-git","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-chardev-spice","qemu-common","qemu-guest-agent","qemu-hw-display-qxl","qemu-hw-display-virtio-gpu","qemu-hw-display-virtio-gpu-gl","qemu-hw-usb-host","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-egl-headless","qemu-ui-gtk","qemu-ui-opengl","qemu-ui-sdl","qemu-ui-spice-app","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qhull","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qprint","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegen-cmake","qrcodegencpp-cmake","qrupdate","qsampler","qsopt-ex","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtile","qtkeychain-qt5","qtkeychain-qt6","qtractor","quota-tools","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","r8168-dkms","r8168-lts","radamsa","radare2","radeon-profile-git","radeontop","radvd","rage-encryption","rankwidth","raptor","rasqal","rauc","rav1e","rbutil","rbw","rccl","rclone","rclone-git","rcs","rdfind","rdma-core","readline","readstat","reapack","reaper","reaver","recastnavigation","recode","redland","redland-storage-mysql","redland-storage-postgresql","redland-storage-sqlite","redland-storage-virtuoso","redshift","redshift-minimal","regexxer","rekor","release-cli","remake","remmina","reprepro","repro-env","repro-get","reproc","reptyr","restic","restic-git","retro-gtk","retroarch","retry","retsnoop","rev-plugins","revive","rgbds","rhash","rhonabwy","rhythmbox","rio","river","rizin","rkcommon","rkward","rlwrap","rnnoise","roc-toolkit","rocalution","rocblas","rocfft","rocm-dbgapi","rocm-gdb","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rofi-wayland","rog-control-center","rootlesskit","ropr","rosegarden","roswell","rpcbind","rpcsvc-proto","rpi-imager","rq","rqbit","rqbit-desktop","rqlite","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rt-tests","rtaudio","rtl-sdr","rtl-sdr-git","rtmidi","rtmpdump","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","ruby-erb","ruby-pg","ruby-racc","ruby-rugged","ruby-thin","ruff","run-parts","runescape-launcher","rust","rustc-demangle","rustic","rustow-git","rygel","rz-ghidra","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","sane","sane-airscan","satty","sbc","sbsigntools","sc3-plugins","scaleway-cli","scanmem","scc","sccache","schedtool","scip","scponly","scrcpy","scrypt","sddm","sddm-git","sddm-kcm","sdl12-compat-git","sdl2","sdparm","seadrive-daemon","seahorse-nautilus","sed","selene","senpai","sensors-applet","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serd","serie","setbfree-lv2","setbfree-standalone","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sfsexp","sg-323-clap","sg-323-vst3","sg3_utils","sh4d0wup","shaderc","shadow","shadowsocks-rust","shadowsocks-v2ray-plugin","shared-mime-info","shared_meataxe","sharutils","sheldon","sherlock.lv2","shfmt","shfs-utils","shiboken6","shine","shntool","shuffle","signal-desktop","signify","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","sile","simple-scan","singular","sip4","sipcalc","sirocco","skaffold","skanlite","skanpage","skate","skladnik","slack-electron","slack-term","sleuthkit","slirp4netns","slowhttptest","slurm-llnl","smb4k","smplayer","snappy","snapshot","snd","sniffnet","soapyaudio","socat","sofia-sip","soft-serve","softmaker-office-2024-bin","soju","solid","songrec","sonic-visualiser","sonivox","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sops","sorcer","sord","sound-gambit","sowing","spandsp","spawn-fcgi","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","spglib","spin","spire-agent","spire-server","spot-client","spytrap-adb","sqlc","sqlite","sqlite-analyzer","sqlite-tcl","squashfs-tools","squashfuse","sratom","srrdb-terminal-client","srs-state-threads","ssh-openpgp-auth","ssh-tpm-agent","sshd-openpgp-auth","sshx","sslh","sslscan","sslsplit","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","startdde","startup-notification","staticcheck","stdoutisatty","steam","stellarsolver","step","step-ca","step-cli","stern","stk","stlink","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stumpwm","subversion","sudo","sudo-git","suil","suitesparse","suitesparse-graphblas","sundials","supercollider","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","svt-av1","svt-av1-git","svt-hevc","svt-vp9","sway-git","swaybg-git","swayidle-git","swaylock-git","sweeper","swell-foop","swh-plugins","swig","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","sws","swww","symengine","symlinks","symmetrica","sympol","sympow","syncthing","syncthing-discosrv","syncthing-relaysrv","syndication","synology-drive","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysfsutils","syslog-ng","sysprof","system-config-printer","system76-firmware","system76-scheduler","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","t1utils","tabiew","tachyon","taglib","taglib1","tailscale","talhelper","talkfilters","talloc","talosctl","tangler","tanka","tar","tbtools","tcc","tcpdump","tcplay","tcsh","tdb","tea","teams","teamspeak3-server","tecla","tekton-cli","telegraf","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","telly-skout","tempo","termshark","terraform","terragrunt","testu01","texlab","texlive-bin","texmaker","text-engine","tflint","tgpt","thc-ipv6","threadweaver","thunderbird","tidy","time","timescaledb-tune","timidity++","tiny","tinycdb","tinycompress","tinyproxy","tinyssh","tinyxml2","tio","tlsh","tmon","tnftp","tokodon","tokodon-git","tomlplusplus","toolame","topcom","tor","totem-pl-parser","tpm2-pkcs11","tpm2-tools","trace-cmd","traceroute","tracker3","tracker3-miners","tracktion-waveform","tradingview","traefik","tre","tree","tree-sitter-git","trivy","tropy-bin","trurl","tslib","ttfautohint","tty-clock","tuba","tup","turbo","turbostat","twolame","typst","typst-lsp","uavs3d-git","ucl","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ulfius","umbrello","umoci","umu-launcher","umurmur","unarj","unbound","unibilium","unicorn","unixodbc","unrar","unrar-free","unrtf","up","updlockfiles","upower","upterm","usbguard","usbip","usbutils","util-linux","util-linux-libs","uutils-coreutils","uv","uwsgi","uwsgi-plugin-cgi","uwsgi-plugin-lua51","uwsgi-plugin-mono","uwsgi-plugin-php","uwsgi-plugin-php-legacy","uwsgi-plugin-psgi","uwsgi-plugin-pypy","uwsgi-plugin-python","uwsgi-plugin-rack","uwsgi-plugin-webdav","uwsgi-plugin-zabbix","uwufetch","v2ray","vala","valabind","vale","valgrind","vals","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vault","vaultwarden","vcpkg","vde2","vector-blf","vegeta","veracrypt","verdict","vhs","vid.stab","vifm","vigra","vim","vimiv","vinagre","vinegar","vinegar-git","virtiofsd","virtualbox","virtualbox-guest-utils","virtualbox-guest-utils-nox","virtualbox-kvm","visitors","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","vivaldi-ffmpeg-codecs","vlang-git","vlc","vlc-luajit","vm.lv2","vmpk","vo-amrwbenc","volta","volume_key","vpnc","vscodium","vscodium-git","vsftpd","vte-common","vte3","vte4","vtk","vulkan-icd-loader","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","vultr-cli","vvave","wabt","wacomtablet","wakatime","wasm-component-ld","watchexec","wavemon","wavpack","waybar","wayland","wayland-chromium","wayland-git","wayland-utils","waylock","wayvnc","wcslib","webhook","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","websocat","weston","wezterm","wgcf","wget","which","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","whowatch","wiiuse","wildmidi","winbox","wireguard-vanity-address","wireplumber","wireproxy","wireshark-cli","wireshark-qt","wiresmith","wishbone-utils","wit","wl-clip-persist","wl-mirror","wldash","wlr-randr","wlroots-git","wluma","wob","wofi","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","wolfssl","woodpecker-agent","woodpecker-cli","woodpecker-server","worker-build","workerd","wpa_supplicant","wpewebkit","wrangler","wstunnel","wv","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x264","x42-plugins-lv2","x42-plugins-standalone","x86_energy_perf_policy","xapian-core","xavs2","xaw3d","xcb-util","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-renderutil","xcb-util-wm","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdg-desktop-portal-wlr","xemu-git","xevd","xeve","xf86-input-elographics","xf86-input-evdev","xf86-input-libinput","xf86-input-libinput-git","xf86-input-void","xf86-input-wacom","xf86-video-amdgpu","xf86-video-ati","xf86-video-dummy","xf86-video-fbdev","xf86-video-intel","xf86-video-nouveau","xf86-video-qxl","xf86-video-sisusb","xf86-video-vesa","xf86-video-vmware","xf86-video-voodoo","xfsdump","xjadeo","xmlsec","xmonad-dbus","xmonad-utils","xmonk.lv2","xmrig","xmrig-donateless","xorg-appres","xorg-bdftopcf","xorg-font-util","xorg-fonttosfnt","xorg-iceauth","xorg-mkfontscale","xorg-server","xorg-server-xephyr","xorg-server-xnest","xorg-server-xvfb","xorg-sessreg","xorg-x11perf","xorg-xauth","xorg-xbiff","xorg-xclipboard","xorg-xconsole","xorg-xdm","xorg-xedit","xorg-xev","xorg-xeyes","xorg-xfontsel","xorg-xkbcomp","xorg-xkbutils","xorg-xload","xorg-xlsfonts","xorg-xman","xorg-xmessage","xorg-xpr","xorg-xprop","xorg-xrdb","xorg-xrefresh","xorg-xwayland","xorg-xwd","xorgxrdp","xscreensaver","xsd","xss-lock","xsv","xtmsplit","xtrlock","xvidcore","xvkbd","xwax","xwaylandvideobridge","xxhash","yabridge","yabridgectl","yaegi","yajl","yakuake","yamdi","yaml-cpp","yamlfmt","yara","yasm","yder","ydotool","yggdrasil","yoshimi-lv2","yoshimi-standalone","yubico-piv-tool","yubikey-touch-detector","yyjson","yyjson-git","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenity","zeromq","zfp","zh-autoconvert","zimg","ziproxy","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zix","zk","zlib","zlib-ng","zmap","zopfli","zoxide","zps","zrepl-git","zsa-wally-cli","zsh-theme-powerlevel10k-git","zstd","zsync","zxing-cpp","zycore-c","zynaddsubfx","zzuf"],"optional_for":["tzdata"],"conflicts_with":[],"replaces":[],"download_size":"9.88 MiB","installed_size":"47.64 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"c87c0e71fd03472918dc052b5833d5568ab62866e8259d28ab453ffc4bcf8291","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"glibc-locales","version":"2.40+r16+gaa533d58ff-2","description":"Pregenerated locales for GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc=2.40+r16+gaa533d58ff"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"11.68 MiB","installed_size":"220.94 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"7d6e57f5a634f5002ced415fef3435efe7b91855cc6ab9f9b4c620f041eb2170","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gmp","version":"6.3.0-2","description":"A free library for arbitrary precision arithmetic","architecture":"x86_64","url":"https://gmplib.org/","licenses":["GPL-2.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc"],"required_by":["4ti2","afpfs-ng","bigloo","blender","cddlib","cgal","clasp-cl-git","cln","coreutils","coreutils-hybrid-git","cryptominisat","dnsmasq","e-antic","ecl","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","epiphany","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","flint","fplll","gambas3-gb-gmp","gap","gfan","ghc-libs","giac","givaro","glpk","gmp-ecm","gnuradio","gnustep-base","gnutls","guile","guile1.8","guile2.2","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","igraph","iml","jellyfin-ffmpeg","john","kcalc","latte-integrale","lean4-git","lib32-gmp","libisl","libktorrent","libmpc","libpoly","libqalculate","libtomcrypt","lidia","looking-glass-git","lrs","maude","maxima-sbcl","miktex","minetest-git","minetest-server-git","mlton","mpfi","mpfr","msolve","nettle","nftables","normaliz","ntl","ocaml-zarith","openpgp-ca","openpgp-ca-restd","openscad","papilo","pari","polymake","polyml","ppl","python-fpylll","python-gmpy2","python-johnnycanencrypt","python-pplpy","python-pycryptodome","python-pysequoia","python-symengine","qsopt-ex","rocm-gdb","ruby","ruby2.7","sagemath","scip","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","sh4d0wup","singular","snd","soplex","ssh-openpgp-auth","sshd-openpgp-auth","stress-ng","strongswan","suitesparse","symengine","sympol","texlive-bin","topcom","xmap-git","xmonad-utils","yices","zmap"],"optional_for":["crystal"],"conflicts_with":[],"replaces":[],"download_size":"442.87 KiB","installed_size":"1036.67 KiB","packager":"Antonio Rojas ","build_date":"Wed 17 Apr 2024 06:01:38 PM +08","md5_sum":null,"sha_256_sum":"286c23ed38d46f803a19d06ca46dc67d96805f7805f7b9818cf9c0ca65a69326","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"gnupg","version":"2.4.5-4","description":"Complete and free implementation of the OpenPGP standard","architecture":"x86_64","url":"https://www.gnupg.org/","licenses":["BSD-2-Clause","BSD-3-Clause","BSD-4-Clause","CC0-1.0","GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.1-or-later","LGPL-3.0-or-later OR GPL-2.0-or-later","MIT","Unicode-TOU"],"groups":[],"provides":[],"depends_on":["glibc","gnutls","libgcrypt","libgpg-error","libksba","libldap","libusb","pinentry","sh","sqlite","tpm2-tss","zlib","bzip2","libbz2.so=1.0-64","libassuan","libassuan.so=9-64","npth","libnpth.so=0-64","readline","libreadline.so=8-64"],"optional_deps":[{"name":"pcsclite","description":"for using scdaemon not with the gnupg internal card driver"}],"required_by":["archlinux-repro","browserpass","debian-archive-keyring","debian-ports-archive-keyring","distrobuilder","duplicity","gpgit","gpgme","grub2-signing-extension","jetring","nitrocli","pacman","pacman-git","pass","perl-gnupg-interface","playonlinux","python-gnupg","python-gnupginterface","python-ipalib","repose","thunderbird","tomb-git","torbrowser-launcher","ubuntu-keyring","visual-studio-code-bin","visual-studio-code-insiders-bin"],"optional_for":["archiso","archiso-git","debootstrap","diffoscope","in-toto","keepass-plugin-keeagent","mkinitcpio-archiso","mkosi","mkosi-git","notmuch","s3cmd","yadm","yubikey-touch-detector"],"conflicts_with":[],"replaces":[],"download_size":"2.69 MiB","installed_size":"9.69 MiB","packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:31:38 AM +08","md5_sum":null,"sha_256_sum":"36a028db83e02c22de6ec8d32608ec08d88ca9b4a60edfeac7656b81d3114052","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gnutls","version":"3.8.7-1","description":"A library which provides a secure layer over a reliable transport layer","architecture":"x86_64","url":"https://www.gnutls.org/","licenses":["GPL-3.0-or-later AND LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc","gcc-libs","gmp","libtasn1","zlib","nettle","libp11-kit","libidn2","zstd","libidn2.so=0-64","libunistring","brotli"],"optional_deps":[{"name":"tpm2-tss","description":"support for TPM2 wrapped keys"}],"required_by":["apt","aria2","ario","chrony","claws-mail","connman","connman-git","criu","cups","dnsdist","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","emby-ffmpeg","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","fwupd","gcr-4","glewlwyd","glib-networking","gloox","gnome-control-center","gnupg","gnustep-base","gsasl","gtk-vnc","gwenhywfar","haskell-gnutls","hefur","jami-daemon","jellyfin-ffmpeg","knot","knot-resolver","lftp","lib32-gnutls","libcamera","libcups","libcurl-gnutls","libetpan","libfilezilla","libgadu","libinfinity","libjcat","libmicrohttpd","libnbd","libnice","libpamac-aur","libpamac-flatpak","librelp","librtmp0","libvirt","libvncserver","libzip","loudmouth","mailutils","mpop","nbd","neatvnc","neomutt","nullmailer","openconnect","opendht","pamac-aur","pamac-flatpak","passim","pkcs11-helper","powerdns","ptyxis","qemu-arch-extra-git","qemu-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-user","qpdf","radcli","rhonabwy","rpi-imager","rtmpdump","samba","sane-airscan","smbclient","squid","swtpm","task","taskd","tigervnc","ulfius","valent-git","vlc","vlc-git","vlc-luajit","vte3","vte4","weechat","wget","wget2","wine-staging-wow64","wine-staging-wow64-git","wine-wow64","wine-wow64-git","wireshark-cli","xfce4-mailwatch-plugin","xmlsec","yaz","zeromq"],"optional_for":["anope","inspircd","proton-ge-custom","rsyslog","systemd","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git"],"conflicts_with":[],"replaces":[],"download_size":"2.74 MiB","installed_size":"5.54 MiB","packager":"Andreas Radke ","build_date":"Fri 16 Aug 2024 02:36:43 AM +08","md5_sum":null,"sha_256_sum":"d165671649ec7a3dde47f8c5fd2273f46498edecd69c11c3ebd994f005c7a302","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"gpgme","version":"1.23.2-6","description":"A C wrapper library for GnuPG","architecture":"x86_64","url":"https://www.gnupg.org/related_software/gpgme/","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later","LGPL-2.1-or-later","MIT"],"groups":[],"provides":["libgpgme.so=11-64","libgpgmepp.so=6-64"],"depends_on":["gcc-libs","glib2","glibc","libassuan","libgpg-error","gnupg>=2"],"required_by":["akonadi-calendar","almanah","balsa","claws-mail","cri-o","dino","dino-git","firefox-extension-mailvelope","flatpak","fwknop","geany-plugins","gitg","gmime3","gpg-crypter","gpg-tui","himalaya","isoimagewriter","kdepim-addons","kget","kleopatra","kmail","kmymoney","kwallet","kwallet5","libcryptui","libdnf","libjcat","libkleo","libreoffice-fresh","libreoffice-still","librepo","mailcommon","mcabber","merkuro","messagelib","mimetreeparser","mutt","neomutt","ostree","pacman","pacman-git","plasma-pass","podman","poppler","profanity","profanity-gtk","python-gpgme","qgpgme-qt6","reprepro","ripasso","ruby-gpgme","samba","seahorse","seahorse-nautilus","skopeo","volume_key","wget2"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"477.27 KiB","installed_size":"1487.32 KiB","packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:26:09 AM +08","md5_sum":null,"sha_256_sum":"c9e4bb089881eb1ab1c4d73b2f42ebca4878126603e6e730d30277e285d06e68","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gpm","version":"1.20.7.r38.ge82d1a6-6","description":"A mouse server for the console and xterm","architecture":"x86_64","url":"https://www.nico.schottelius.org/software/gpm/","licenses":["GPL"],"groups":[],"provides":["libgpm.so=2-64"],"depends_on":["bash","procps-ng"],"required_by":["aalib","brltty","dosemu","elinks","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","gvim","lib32-gpm","libnewt","links","mc","notcurses","vim","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"135.74 KiB","installed_size":"393.39 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:19:03 AM +08","md5_sum":null,"sha_256_sum":"95b97f61aacc075e85465a7d5e1c99d1b249b4eba63081a170482cdc8791f799","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"grep","version":"3.11-1","description":"A string search utility","architecture":"x86_64","url":"https://www.gnu.org/software/grep/","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","pcre2"],"required_by":["aconfmgr-git","ani-cli","arch-install-scripts","base","base-devel","bashtop","bootiso","checksec","devtools","dracut","easy-rsa","git","grml-zsh-config","gsocket","gzip","keycloak","mkinitcpio","pacman","pacman-git","posix","quickemu","redis","tdrop","themix-export-spotify-git","themix-icons-gnome-colors-git","themix-theme-materia-git","themix-theme-oomox-git","ugit","usbctl","valkey","wikiman","ytfzf-git"],"optional_for":["pciutils"],"conflicts_with":[],"replaces":[],"download_size":"233.57 KiB","installed_size":"889.96 KiB","packager":"Sébastien Luttringer ","build_date":"Mon 15 May 2023 07:06:38 AM +08","md5_sum":"838cdf1eac9d7734eaa113e8248a4e88","sha_256_sum":"aeb2d51c03190e24d4c021b43bbdb41aef69a28dff314743aade26e288e07a48","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"groff","version":"1.23.0-7","description":"GNU troff text-formatting system","architecture":"x86_64","url":"https://www.gnu.org/software/groff/groff.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["perl","gcc-libs"],"optional_deps":[{"name":"netpbm","description":"for use together with man -H command interaction in browsers"},{"name":"psutils","description":"for use together with man -H command interaction in browsers"},{"name":"libxaw","description":"for gxditview"},{"name":"perl-file-homedir","description":"for use with glilypond"}],"required_by":["base-devel","man-db"],"optional_for":["cgit","cgit-aurweb","haskell-pandoc","linuxdoc-tools","pandoc-bin"],"conflicts_with":[],"replaces":[],"download_size":"2.26 MiB","installed_size":"8.84 MiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:19:27 PM +08","md5_sum":null,"sha_256_sum":"374fef7746a4d372ef2da8773769ee6c669382ac79bd73aedc8bafebaf366ffe","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"grub","version":"2:2.12-2","description":"GNU GRand Unified Bootloader (2)","architecture":"x86_64","url":"https://www.gnu.org/software/grub/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"depends_on":["sh","xz","gettext","device-mapper"],"optional_deps":[{"name":"freetype2","description":"For grub-mkfont usage"},{"name":"fuse3","description":"For grub-mount usage"},{"name":"dosfstools","description":"For grub-mkrescue FAT FS and EFI support"},{"name":"lzop","description":"For grub-mkrescue LZO support"},{"name":"efibootmgr","description":"For grub-install EFI support"},{"name":"libisoburn","description":"Provides xorriso for generating grub rescue iso using grub-mkrescue"},{"name":"os-prober","description":"To detect other OSes when generating grub.cfg in BIOS systems"},{"name":"mtools","description":"For grub-mkrescue FAT FS support"}],"required_by":["breeze-grub","dracula-grub-theme-git","grub-btrfs","grub-customizer","grub-theme-stylish-color-1080p-git","grub-theme-stylish-color-2k-git","grub-theme-stylish-color-4k-git","grub-theme-stylish-color-ultrawide-git","grub-theme-stylish-color-ultrawide2k-git","grub-theme-stylish-white-1080p-git","grub-theme-stylish-white-2k-git","grub-theme-stylish-white-4k-git","grub-theme-stylish-white-ultrawide-git","grub-theme-stylish-white-ultrawide2k-git","grub-theme-stylish-whitesur-1080p-git","grub-theme-stylish-whitesur-2k-git","grub-theme-stylish-whitesur-4k-git","grub-theme-stylish-whitesur-ultrawide-git","grub-theme-stylish-whitesur-ultrawide2k-git","grub-theme-tela-color-1080p-git","grub-theme-tela-color-2k-git","grub-theme-tela-color-4k-git","grub-theme-tela-color-ultrawide-git","grub-theme-tela-color-ultrawide2k-git","grub-theme-tela-white-1080p-git","grub-theme-tela-white-2k-git","grub-theme-tela-white-4k-git","grub-theme-tela-white-ultrawide-git","grub-theme-tela-white-ultrawide2k-git","grub-theme-tela-whitesur-1080p-git","grub-theme-tela-whitesur-2k-git","grub-theme-tela-whitesur-4k-git","grub-theme-tela-whitesur-ultrawide-git","grub-theme-tela-whitesur-ultrawide2k-git","grub-theme-vimix","grub-theme-vimix-color-1080p-git","grub-theme-vimix-color-2k-git","grub-theme-vimix-color-4k-git","grub-theme-vimix-color-ultrawide-git","grub-theme-vimix-color-ultrawide2k-git","grub-theme-vimix-white-1080p-git","grub-theme-vimix-white-2k-git","grub-theme-vimix-white-4k-git","grub-theme-vimix-white-ultrawide-git","grub-theme-vimix-white-ultrawide2k-git","grub-theme-vimix-whitesur-1080p-git","grub-theme-vimix-whitesur-2k-git","grub-theme-vimix-whitesur-4k-git","grub-theme-vimix-whitesur-ultrawide-git","grub-theme-vimix-whitesur-ultrawide2k-git","grub-theme-whitesur-color-1080p-git","grub-theme-whitesur-color-2k-git","grub-theme-whitesur-color-4k-git","grub-theme-whitesur-white-1080p-git","grub-theme-whitesur-white-2k-git","grub-theme-whitesur-white-4k-git","grub-theme-whitesur-whitesur-1080p-git","grub-theme-whitesur-whitesur-2k-git","grub-theme-whitesur-whitesur-4k-git","grub2-signing-extension","libguestfs","penguins-eggs","update-grub","woeusb","woeusb-ng"],"optional_for":["archiso","archiso-git","memtest86-efi","mkosi-git","rauc"],"conflicts_with":["grub-common","grub-bios","grub-emu","grub-efi-x86_64","grub-legacy"],"replaces":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"download_size":"6.84 MiB","installed_size":"33.67 MiB","packager":"Christian Hesse ","build_date":"Sun 17 Mar 2024 03:09:18 AM +08","md5_sum":"39513e40e6eb9647f8b34a61a9c84d64","sha_256_sum":"2b751fb81000bb31802939a571e10aa165c88988efdc82dc1bfcbf26309be949","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gssproxy","version":"0.9.2-1","description":"GSSAPI Proxy","architecture":"x86_64","url":"https://github.com/gssapi/gssproxy","licenses":["custom: MIT"],"groups":[],"provides":[],"depends_on":["libverto-module-base","popt","ding-libs","systemd-libs","krb5","glibc"],"required_by":["nfs-utils"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"96.91 KiB","installed_size":"250.52 KiB","packager":"Andreas Radke ","build_date":"Fri 20 Oct 2023 03:19:23 AM +08","md5_sum":"e39782f173878afa516f65fad4927553","sha_256_sum":"77b87d1b00e33b3550e780b8a137422240e8b2575166fbf7937efa3c36adae05","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"guile","version":"3.0.10-1","description":"Portable, embeddable Scheme implementation written in C","architecture":"x86_64","url":"https://www.gnu.org/software/guile/","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["gmp","ncurses","libunistring","gc","libffi","libxcrypt"],"required_by":["aarch64-linux-gnu-gdb","aisleriot","arm-none-eabi-gdb","autogen","avr-gdb","crash","gdb","gdb-common","gnucash","lm32-elf-gdb","make","or1k-elf-gdb","ppc64le-elf-gdb","remake","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sh2-elf-gdb","slib","xbindkeys","zrythm"],"optional_for":["graphviz","weechat"],"conflicts_with":[],"replaces":[],"download_size":"8.31 MiB","installed_size":"54.73 MiB","packager":"Frederik Schwan ","build_date":"Mon 24 Jun 2024 04:16:00 PM +08","md5_sum":null,"sha_256_sum":"bf4d1b474045a88c7ad97b1ce56e8dd5786e5a10de02a8d33dc8f041edc8d01d","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gzip","version":"1.13-4","description":"GNU compression utility","architecture":"x86_64","url":"https://www.gnu.org/software/gzip/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","bash","coreutils","sed","grep"],"optional_deps":[{"name":"less","description":"zless support"},{"name":"util-linux","description":"zmore support"},{"name":"diffutils","description":"zdiff/zcmp support"}],"required_by":["amavisd-new","arch-wiki-lite","base","base-devel","clonezilla","engrampa","hwdetect","logrotate","nethack","posix-xsi","quilt","texinfo"],"optional_for":["atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","man-db","mkinitcpio","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":"82.37 KiB","installed_size":"155.36 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:42:51 PM +08","md5_sum":null,"sha_256_sum":"0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a","signatures":"6D42BDD116E0068F","extended_data":null}] +[{"repository":"core","name":"acl","version":"2.3.2-1","description":"Access control list utilities, libraries and headers","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/acl","licenses":["LGPL"],"groups":["kde-applications","kde-sdk"],"provides":["xfsacl","libacl.so=1-64"],"depends_on":["glibc"],"optional_deps":[{"name":"testing","description":"this is a test description"},{"name":"name-with-no-description","description":""}],"required_by":["advcpmv","bfs","borg","borg2","bup","casync","cdrtools","clifm-git","coreutils","coreutils-hybrid-git","cups","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","gettext","incus","incus-tools","kio","krusader","lib32-acl","libarchive","libisofs","logrotate","lxd","proftpd","proxmox-backup-client","rsync","rsync-reflink","sed","shadow","snapper","spice-gtk","systemd","tar","udisks2","udisks2-btrfs","udisks2-lvm2","vim","vis","xfsdump"],"optional_for":["diffoscope","mkosi","mkosi-git"],"conflicts_with":["xfsacl"],"replaces":["xfsacl"],"download_size":141086,"installed_size":337899,"packager":"Christian Hesse ","build_date":"Wed 24 Jan 2024 04:57:20 PM +08","md5_sum":"33d329308c838e76498e4eac7e603291","sha_256_sum":"cbfb71e8ba9aca9e51cbdfd77d0ec51371eb865a9a098c77e2c6046962e6ae0a","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"amd-ucode","version":"20240809.59460076-1","description":"Microcode update image for AMD CPUs","architecture":"any","url":"https://gitlab.com/kernel-firmware/linux-firmware","licenses":["custom"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":60641,"installed_size":162795,"packager":"Tobias Powalowski ","build_date":"Mon 12 Aug 2024 02:43:48 AM +08","md5_sum":null,"sha_256_sum":"c04893e8d8defdc2ccfa29c09b2599906291a12b5e470aff9e4a80e43bece68e","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"archlinux-keyring","version":"20240709-1","description":"Arch Linux PGP keyring","architecture":"any","url":"https://gitlab.archlinux.org/archlinux/archlinux-keyring/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["pacman"],"required_by":["base","base-devel","chaotic-keyring"],"optional_for":["mkosi-git"],"conflicts_with":[],"replaces":[],"download_size":1226936,"installed_size":1750220,"packager":"Christian Hesse ","build_date":"Wed 10 Jul 2024 05:31:37 AM +08","md5_sum":null,"sha_256_sum":"a6f573fc97fc21b55504a4d75d010257792847a5b87f19edff4ffb662f6f53a2","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"argon2","version":"20190702-6","description":"A password-hashing function (reference C implementation)","architecture":"x86_64","url":"https://github.com/P-H-C/phc-winner-argon2","licenses":["Apache","custom:CC0"],"groups":[],"provides":["libargon2.so=1-64"],"depends_on":["glibc"],"required_by":["cryptsetup","keepassxc","opendht","php","php-legacy","python-argon2-cffi-bindings","unrealircd","znc"],"optional_for":["keepass","tomb-git"],"conflicts_with":[],"replaces":[],"download_size":34129,"installed_size":108564,"packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 12:53:38 AM +08","md5_sum":null,"sha_256_sum":"467da2efdcef1bab8403ece5895794539b983ea7de664105a2dc821c68e8ba13","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"attr","version":"2.5.2-1","description":"Extended attribute support library for ACL support","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/attr","licenses":["LGPL"],"groups":[],"provides":["xfsattr","libattr.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bcachefs-tools-git","coreutils","coreutils-hybrid-git","glusterfs","lib32-attr","patch","proton-ge-custom","shadow","shake","toybox","wine-ge-custom","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","xfsdump"],"optional_for":[],"conflicts_with":["xfsattr"],"replaces":["xfsattr"],"download_size":70051,"installed_size":221184,"packager":"Christian Hesse ","build_date":"Sun 14 Jan 2024 10:58:15 PM +08","md5_sum":"50de36b6ebed40dd90f6c42cfb698b53","sha_256_sum":"83bcd58b066492f1242be41fa3f5750586d9eb7d8424a776e9fd6a8c5a496948","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"audit","version":"4.0.2-2","description":"Userspace components of the audit framework","architecture":"x86_64","url":"https://people.redhat.com/sgrubb/audit","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":["libaudit.so=1-64","libauparse.so=0-64"],"depends_on":["glibc","krb5","libkrb5.so=3-64","libgssapi_krb5.so=2-64","libcap-ng","libcap-ng.so=0-64"],"optional_deps":[{"name":"libldap","description":"for audispd-zos-remote"},{"name":"sh","description":"for augenrules"}],"required_by":["apparmor","aravis","dbus","dbus-broker","gdm","gdm-prime","ksystemlog","networkmanager","networkmanager-iwd","osquery","pam","perf","python-audit","shadow","systemd","trace-cmd","usbguard"],"optional_for":["clevis"],"conflicts_with":[],"replaces":[],"download_size":404633,"installed_size":1078497,"packager":"David Runge ","build_date":"Wed 04 Sep 2024 03:56:53 PM +08","md5_sum":null,"sha_256_sum":"9933298fff9e3866509e25091e02e25533f0a3d27b9964b35503c2ad3f58c47a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"autoconf","version":"2.72-1","description":"A GNU tool for automatically configuring source code","architecture":"any","url":"https://www.gnu.org/software/autoconf","licenses":["GPL2","GPL3","custom"],"groups":[],"provides":[],"depends_on":["awk","m4","diffutils","perl","sh"],"required_by":["argbash","autoconf-archive","base-devel","mate-common"],"optional_for":["asdf-vm","bauh"],"conflicts_with":[],"replaces":[],"download_size":666142,"installed_size":2331729,"packager":"Antonio Rojas ","build_date":"Sat 23 Dec 2023 08:16:19 AM +08","md5_sum":"cc7e1d210723d19fac4db93d89c77336","sha_256_sum":"44afcc89c89548bede040ae09e66ece236dc99202458bc22866bc3d490df4345","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"automake","version":"1.17-1","description":"A GNU tool for automatically creating Makefiles","architecture":"any","url":"https://www.gnu.org/software/automake","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["perl","bash"],"required_by":["base-devel","mate-common"],"optional_for":["asdf-vm","autoconf-archive","bauh"],"conflicts_with":[],"replaces":[],"download_size":641669,"installed_size":1694371,"packager":"Lukas Fleischer ","build_date":"Sat 20 Jul 2024 05:26:35 PM +08","md5_sum":null,"sha_256_sum":"71f691855fb6d1edc61e365f40c6dfd704d2af27a9a2828e753eb92cf2e03c9d","signatures":"A91764759326B440","extended_data":null},{"repository":"core","name":"b43-fwcutter","version":"019-5","description":"firmware extractor for the b43 kernel module","architecture":"x86_64","url":"https://wireless.wiki.kernel.org/en/users/Drivers/b43","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["glibc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":17479,"installed_size":45854,"packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:49:54 PM +08","md5_sum":null,"sha_256_sum":"8d8dc6f758afafdae33498321f0d14d82dff166d9dde58414f855491535fb396","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"base","version":"3-2","description":"Minimal package set to define a basic Arch Linux installation","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["filesystem","gcc-libs","glibc","bash","coreutils","file","findutils","gawk","grep","procps-ng","sed","tar","gettext","pciutils","psmisc","shadow","util-linux","bzip2","gzip","xz","licenses","pacman","archlinux-keyring","systemd","systemd-sysvcompat","iputils","iproute2"],"optional_deps":[{"name":"linux","description":"bare metal support"}],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":2365,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Sun 08 Oct 2023 09:15:41 AM +08","md5_sum":"9fde97a64c7825c959d498235cede216","sha_256_sum":"25da12f0347e4bef6c215dcd32b6495beb86010a8c7e40828167b95f56639061","signatures":"3B94A80E50A477C7","extended_data":null},{"repository":"core","name":"base-devel","version":"1-2","description":"Basic tools to build Arch Linux packages","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["archlinux-keyring","autoconf","automake","binutils","bison","debugedit","fakeroot","file","findutils","flex","gawk","gcc","gettext","grep","groff","gzip","libtool","m4","make","pacman","patch","pkgconf","sed","sudo","texinfo","which"],"required_by":["multilib-devel"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":2099,"installed_size":0,"packager":"Antonio Rojas ","build_date":"Sat 07 Sep 2024 03:08:35 AM +08","md5_sum":null,"sha_256_sum":"412a2effe23751e1c11b2fa68155f1a29ecea5d9dc8ea8cef4e87b7b429d3201","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"bash","version":"5.2.032-2","description":"The GNU Bourne Again shell","architecture":"x86_64","url":"https://www.gnu.org/software/bash/bash.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["sh"],"depends_on":["readline","libreadline.so=8-64","glibc","ncurses"],"optional_deps":[{"name":"bash-completion","description":"for tab completion"}],"required_by":["4ti2","9base","acme.sh","aconfmgr-git","acpid","adljack","afl++","alpine-chroot-install","alvr","ammonite","ananicy","android-ndk","android-sdk-build-tools","ankama-launcher","ant","antiword","antlr4","anything-sync-daemon","apparmor","apt","arch-install-scripts","arch-update","arch-wiki-lite","archiso","archiso-git","archivetools","archlinux-contrib","archlinux-java-run","ardour","ardour-git","arduino-ide","ark","asus-kbd-backlight","at-spi2-core","atop","audio-convert","aurutils","autoconf","autoconf-git","automake","base","bash-completion","bashburn","bashrun","bashtop","bat-extras","bats","bats-assert","bats-file","bats-support","bcachefs-tools","bcc-tools","bees","betterlockscreen","bind","bison","blender","blesh","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","booster","booster-git","bootiso","briar-desktop","brickadia-launcher","bup","bzip2","bzip3","ca-certificates-utils","cairo","carla","cfs-zen-tweaks","chaotic-neofetch-git","checksec","cjdns","clamav","clazy","clevis","cloud-guest-utils","cloud-image-utils","cloud-init","cmake-extras-git","codon-bin","cosmic-session","cpupower","cronie","crowdsec","cscope","cups-filters","db","db5.3","debtap","deepin-kwin","dejagnu","deltachat-desktop","devtools","dhclient","dhcpcd","dialog","dictd","diffutils","digikam","discord-chat-exporter-cli","distrobox","djvulibre","dkms","dmenu","dmtcp","doas-sudo-shim","dracut","drawio-desktop","dtc","e2fsprogs","easy-rsa","ebook-tools","ecl","ed","elfutils","emovix","epsxe","epubcheck","etc-update","exim","fakechroot","fakeroot","fastjet","faust","ffcast","fflas-ffpack","fftw","fig2dev","figlet","findutils","fio","firefox","firefox-developer-edition","firefox-esr","firrtl","flatpak","flex","fltk","foomatic-db-engine","freecell-solver","freedm-git","freedoom-git","freetype2","fricas","fwupd","fzf","gap","gap-packages","gawk","gdbm","gdm","gdm-prime","gedit","geeqie","geogebra","geos","gettext","ghidra","givaro","glib2","gnome-common","gnome-flashback","gnome-session","gnome-settings-daemon","gnome-shell","gnome-subtitles","gnuchess","gnupg","godot-mono-git","gpgit","gpm","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grails","grub","gsl","gsocket","gtk-sharp-3","gtk-update-icon-cache","gtk4","gzip","haskell-dataenc","haskell-extensible-exceptions","haskell-filemanip","haskell-hashtables","haskell-hosc","haskell-microspec","hblock","hdapsd","hdf5","hdf5-openmpi","heaptrack","hepmc","hepmc2","hip-runtime-amd","hipify-clang","hivex","hotdoc","hplip","httrack","hunspell","hwdetect","hydra","hyprshot","i3lock-fancy-git","ibus-typing-booster","icons-in-terminal-git","icu","icu69","ifplugd","ijs","imagescan","incron","intel-oneapi-common","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intellij-idea-community-edition","ipman","iptables","iptables-nft","ipvsadm","irpf","ispell","iverilog-git","jadx","java-runtime-common","jellyfin-server","jenv","jmol","jpeg-archive","jruby","js115","js128","js91","jython","kafka","kakasi","kde-cli-tools","kde-dev-scripts","kde-gtk-config","kdepim-addons","kdevelop","keychain","keycloak","keyutils","kinfocenter","klipperscreen","kmix","kommit","konsole","konversation","krb5","kubetail","kwallet-pam","lantern-bin","laptop-detect","lftp","lib32-libltdl","libassuan","libcamera","libchardet","libcups","libdca","libeatmydata","libgpg-error","libguestfs","libiodbc","libksba","libmbim","libmikmod","libnet","liboggz","libpcap","libpng","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","librewolf","libteam","libtool","libusb-compat","libxml2","libxslt","lightdm-gtk-greeter-settings","linbox","lksctp-tools","lm_sensors","lmms","lsb-release","ltex-ls-bin","lua-language-server","lua-luarepl","lua51-luarepl","lua52-luarepl","lua53-luarepl","lvm2","lxc","lynis","m4","mame","man-db","maven","mbedtls","mc","mcfly","mediathekview","mellite","meson","mill","minicom","miniupnpc","minq-ananicy-git","mjpegtools","mk-configure","mkinitcpio","mkinitcpio-archiso","mkinitcpio-systemd-tool","mkosi","mono","mtools","mullvad-browser-bin","mumble-server","mysql","mysql-clients","ncurses5-compat-libs","neofetch","neofetch-git","neovim-symlinks","netpbm","nfs-utils","nikto","nim","nm-cloud-setup","nm-iwd-cloud-setup","nnn","nnn-nerd","nomachine","npth","nspr","nspr-hg","nss","nss-hg","nuget","nvidia-prime","openapi-diff","openapi-generator","openresolv","openzwave","os-prober","os-prober-btrfs","osquery","ostree","p7zip","pacman","pacman-git","pacman-offline","pahole","pakka","pantheon-files","papirus-folders","pari","pass","pastel-docs","pax-utils","paxtest","pcre","pd","pdftk","perf","pesign","pipewire-jack","pipewire-module-xrdp","pipewire-v4l2","pkgconf","plantuml","plantuml-server","plasma-sdk","plasma-workspace","play.it","plymouth","plymouth-git","pm-utils","podman-docker","ponysay","pop-launcher","pop-launcher-git","posix","postfix","postgresql","pps-tools","preload","prettyping","processing","profile-cleaner","profile-sync-daemon","pulseaudio-control","pulseaudio-equalizer-ladspa","pycharm-community-edition","pyenv","pythia8","python-playwright","qemu-guest-agent","qtcreator","quarto-cli-bin","quilt","r","radare2","rasqal","rauc","rcs","rdma-core","redland","redo-sh","refind","reflector-simple","remmina","river","rizin","rkhunter","rocm-clang-ocl","rocm-gdb","roswell","rp-pppoe","rpmextract","rtirq","ruby-build","rust","sane","sbt","schedtoold","screenfetch","sdcc","sddm","sddm-git","sdedit","sdparm","serproid","sgml-common","shattered-pixel-dungeon","shunit2","singular","smali","smartmontools","solr","source-highlight","sowing","speakup-utils","spirv-tools","sqlcl","sqlmap","ssacli","ssh-tools","steam","steam-native-runtime","steamcmd","steamtinkerlaunch","stumpwm-contrib-git","subversion","switchboard-plug-security-privacy","sympow","syslog-ng","system-config-printer","systemd","taglib","taglib1","termv-git","testssl.sh","texinfo","texlive-bin","tgt","toolbox","tor","tracker3","tradingview","translate-shell","translate-toolkit","transmageddon","tropy-bin","txt2man","ufetch-git","ugit","umu-launcher","unifetch","unzip","usbctl","uuid","vala","valabind","ventoy-bin","vis","vkd3d-proton-mingw-git","vlc","vlc-luajit","vnstat","voacapl","vpnc","wcurl","wezterm","which","wireguard-tools","wireless-regdb","wl-mirror","wqy-zenhei","wv","wxwidgets-gtk3","wxwidgets-qt5","x2goserver","xapian-core","xdg-user-dirs","xdg-utils","xdm-archlinux","xfsprogs","xmlsec","xonotic-data","xorg-server","xorg-server-xvfb","xorg-x11perf","xorg-xdm","xorg-xpr","xosd","xssstate","xsudo-git","xwax","xz","yabridge","yodl","yosys","z","zaproxy","zramswap"],"optional_for":["a2jmidid","alsa-oss","alsa-utils","audit","btrbk","ecasound","gcin","hatari","ipxe","kernelshark","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","libkkc","lokalize","mdadm","mumble","mympd","ncurses","niri","nvm","openssh","passt","pcre2","rt-tests","skim","tzdata","unbound","usbutils","vim-csound","vim-runtime","wit"],"conflicts_with":[],"replaces":[],"download_size":1903851,"installed_size":9645250,"packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 01:59:54 PM +08","md5_sum":null,"sha_256_sum":"a067b212c273e1102ee9f85b916ed354760937d886b67d20b246253b2d2bbd6b","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"binutils","version":"2.43+r4+g7999dae6961-1","description":"A set of programs to assemble and manipulate binary and object files","architecture":"x86_64","url":"https://www.gnu.org/software/binutils/","licenses":["GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.0-or-later","LGPL-3.0-or-later","GFDL-1.3","FSFAP"],"groups":[],"provides":["libctf.so=0-64","libgprofng.so=0-64","libsframe.so=1-64"],"depends_on":["glibc","jansson","libelf","zlib","zstd"],"optional_deps":[{"name":"debuginfod","description":"for debuginfod server/client functionality"}],"required_by":["0ad","base-devel","bootiso","bpf","bpftrace","checksec","debtap","devtools","dracut-hook-uefi","flatpak-builder","fpc","gcc","gcc13","gdb-dashboard","gsocket","imd-git","kcov","libabigail","looking-glass-git","looking-glass-host-git","mkinitcpio","namcap","openucx","peda","perf","posix","posix-software-development","rebuild-detector","rmlint","sbctl","systemd-ukify","systemd-ukify-git","vmware-horizon-client"],"optional_for":["bauh","crash","diffoscope","dracut","hotspot","inxi","xarchiver","xarchiver-gtk2"],"conflicts_with":["binutils-multilib"],"replaces":["binutils-multilib"],"download_size":8021606,"installed_size":43285217,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:32:39 AM +08","md5_sum":null,"sha_256_sum":"6702f58e662908cbd5a86d554363348c2ab5c2e5e594f9d07d5627d16fda57b7","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"bison","version":"3.8.2-6","description":"The GNU general-purpose parser generator","architecture":"x86_64","url":"https://www.gnu.org/software/bison/bison.html","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh","gettext"],"required_by":["base-devel","posix-c-development"],"optional_for":["bauh"],"conflicts_with":[],"replaces":[],"download_size":791029,"installed_size":2661007,"packager":"Leonidas Spyropoulos ","build_date":"Sat 24 Jun 2023 06:03:51 PM +08","md5_sum":"41fc9c90033977614d66eadc7361d455","sha_256_sum":"91de470c3a723f3cbf615abc9fc6fbd3075aaf5a978820db6550eae151a0afbd","signatures":"59E43E106B247368","extended_data":null},{"repository":"core","name":"brotli","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":["libbrotlicommon.so=1-64","libbrotlidec.so=1-64","libbrotlienc.so=1-64"],"depends_on":["glibc"],"required_by":["android-tools","arrow","chromium","cpp-httplib-compiled","curl","curl-rustls","dvisvgm","dwarfs","electron23","electron30","electron31","electron32","elinks","exiv2","freetype2","gnutls","godot","godot-mono","lib32-brotli","libjxl","libjxl-git","libsoup","libsoup3","links","lynx","nginx-mainline-mod-brotli","nginx-mod-brotli","nix","nodejs","nodejs-lts-hydrogen","nodejs-lts-iron","peazip","perl-io-compress-brotli","podman-desktop","python-brotlicffi","qt6-base","suyu-dev-qt6-git","tracktion-waveform","ungoogled-chromium","wget2","wireshark-cli","woff2"],"optional_for":["apache","engrampa","lighttpd"],"conflicts_with":[],"replaces":[],"download_size":393902,"installed_size":1020549,"packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"2f7ce0251b13c348ddaa16b03b25cd2c27a110b54402d8a0494811f44af0f2a6","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"brotli-testdata","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm - test data","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":6427770,"installed_size":15476981,"packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"10007017b62e5a0d465e1a180662fcc3ecd2a335ce7870409676e55722ada693","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"btrfs-progs","version":"6.10.1-2","description":"Btrfs filesystem utilities","architecture":"x86_64","url":"https://btrfs.readthedocs.io","licenses":["GPL-2.0-only"],"groups":[],"provides":["btrfs-progs-unstable"],"depends_on":["glibc","util-linux-libs","lzo","zlib","zstd","libgcrypt","systemd-libs"],"optional_deps":[{"name":"python","description":"libbtrfsutil python bindings"},{"name":"e2fsprogs","description":"btrfs-convert"}],"required_by":["archinstall","btrbk","btrfs-assistant","btrfs-assistant-git","btrfs-snapshots-git","btrfsmaintenance","buttermanager","distrobuilder","grub-btrfs","libblockdev-btrfs","libguestfs","refind-btrfs","rusnapshot-git","snap-pac","snap-sync","snapper","udisks2-btrfs"],"optional_for":["cri-o","devtools","docker","dracut","gparted","incus","incus-tools","libblockdev-fs","lxd","mkosi","mkosi-git","podman","schroot","timeshift","udisks2"],"conflicts_with":["btrfs-progs-unstable"],"replaces":["btrfs-progs-unstable"],"download_size":1242245,"installed_size":6821847,"packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 08:52:23 PM +08","md5_sum":null,"sha_256_sum":"3e6ffcac374877c8a1b449429a2458d14b0a53ab6eb5aaafab10392a011fd833","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"bzip2","version":"1.0.8-6","description":"A high-quality data compression program","architecture":"x86_64","url":"https://sourceware.org/bzip2/","licenses":["BSD"],"groups":[],"provides":["libbz2.so=1.0-64"],"depends_on":["glibc","sh"],"required_by":["adios2","amavisd-new","apt","arrow","base","boost-libs","botan","cargo-dist","cargo-make","cargo-pgrx","cargo-tauri","clamav","clonezilla","coin-or-coinutils","czkawka-cli","czkawka-gui","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","doomseeker","dovecot","dpkg","dra","elinks","emby-ffmpeg","espup","ext4magic","fbreader","felix-rs","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","file","flightcore","fnm","fox","freeciv","freetype2","fsarchiver","gambas3-gb-compress","gimp","git-cinnabar","gnupg","goldendict-webengine-pr-git","goxlr-utility","graphicsmagick","grass","gst-plugins-bad","gst-plugins-good","gtkwave","gtkwave-gtk3-tcl","handbrake","handbrake-cli","handbrake-nvenc-cli","haskell-bz2","haskell-bzlib","httplz","imagemagick","imagemagick-full-git","imlib2","irrlicht","irrlicht-docs","iverilog","iverilog-git","jellyfin-ffmpeg","karchive","karchive5","krokiet","lib32-bzip2","libarchive","libelf","libewf","libgringotts","libgsf","libmirage","libosmium","libretro-dolphin","libretro-play","libsolv","libunarr","libzip","links","ludusavi","lynx","mairix","mariadb","mariadb-lts","maturin","miktex","miniserve","minizip-ng","miopen-hip","mpd","munge","netcdf","nix-init","openpgp-ca","openpgp-ca-restd","ouch","pacman-bintrans","pacman-bintrans-tools","partimage","pbzip2","pcre","pcre2","perl-compress-bzip2","pgpdump","pixi","pyflow","pypy","pypy3","python","python-cramjam","python-johnnycanencrypt","python-osmium","python-pysequoia","python-pytables","python39","qemu-block-dmg","qemu-git","qemu-headless-git","qsopt-ex","quilt","r","rage-encryption","rattler-build","rbutil","reprepro","rocksdb","routino","rye","sentry-cli","sequoia-chameleon-gnupg","sequoia-sop","sequoia-sq","sh4d0wup","simutrans","slade","sonic-visualiser","ssh-openpgp-auth","sshd-openpgp-auth","tarsnap","thunderbird","tracktion-waveform","ugrep","unarchiver","unzip","wasm-pack","wget2","wit","yelp","zeroc-ice","zip"],"optional_for":["3cpio","android-ndk","atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","mkinitcpio","unp","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":59781,"installed_size":148480,"packager":"Christian Hesse ","build_date":"Mon 18 Mar 2024 06:29:13 AM +08","md5_sum":"93dc36daf50abe23faeafbfb3c8c828f","sha_256_sum":"8779003d659c441b952095c19907603a738c1366f25cc51be3fd139fa4e95748","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"ca-certificates","version":"20240618-1","description":"Common CA certificates - default providers","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["ca-certificates-mozilla"],"required_by":["arch-audit","aria2","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-cacert<=20140824-4"],"replaces":["ca-certificates-cacert<=20140824-4"],"download_size":2129,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"982005bd5ecc998c05f561b57bb58b4457407779727e3c3d59e926d34a8b0712","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-mozilla","version":"3.104-1","description":"Mozilla's set of trusted CA certificates","architecture":"x86_64","url":"https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS","licenses":["MPL-2.0"],"groups":[],"provides":[],"depends_on":["ca-certificates-utils>=20181109-3"],"required_by":["ca-certificates"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":396718,"installed_size":1094656,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Sat 31 Aug 2024 07:36:20 AM +08","md5_sum":null,"sha_256_sum":"37e07a5d347ff9c68157bec8729c4c50f6fa538bbdb612e03166cf59ce8ca3ff","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-utils","version":"20240618-1","description":"Common CA certificates (utilities)","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":["ca-certificates","ca-certificates-java"],"depends_on":["bash","coreutils","findutils","p11-kit"],"required_by":["arch-audit","aria2","ca-certificates-icp_br","ca-certificates-mozilla","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","jdk","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jre","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jre8","jre8-openjdk-headless","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-java"],"replaces":["ca-certificates-java"],"download_size":11069,"installed_size":13957,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"aabd5b2b7030716ccdd465d607e734e851fe4a01adf8293a3968fe22eb89ce9b","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"coreutils","version":"9.5-2","description":"The basic file, shell and text manipulation utilities of the GNU operating system","architecture":"x86_64","url":"https://www.gnu.org/software/coreutils/","licenses":["GPL-3.0-or-later","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["acl","attr","glibc","gmp","libcap","openssl"],"required_by":["afl-utils","alpine-chroot-install","ant","arch-install-scripts","archinstall","base","bashtop","bats","bootiso","ca-certificates-utils","checksec","devtools","diffoscope","dkms","dmenu","dracut","garuda-update","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grml-zsh-config","gsocket","gzip","hwdetect","i3lock-fancy-git","inxi","java-runtime-common","keycloak","linux","linux-cachyos","linux-cachyos-bore","linux-cachyos-lts","linux-clear","linux-hardened","linux-lqx","linux-lts","linux-lts515","linux-mainline","linux-mainline-x64v3","linux-nitrous","linux-rt","linux-rt-lts","linux-vfio","linux-vfio-lts","linux-vfio-x64v3","linux-xanmod-edge-x64v3","linux-xanmod-lts","linux-xanmod-rt","linux-xanmod-x64v2","linux-zen","linux-znver2","linux-znver3","linux-znver4","luarocks","mariadb","mariadb-lts","minieap","mintstick","mkinitcpio","netctl","p11-kit","pacman","pacman-git","perf","perl-libintl-perl","posix","posix-xsi","quickemu","rpmextract","tblock-gui","tdrop","testssl.sh","usbctl","util-linux","wikiman","xsudo-git","zshdb"],"optional_for":["usbutils"],"conflicts_with":[],"replaces":[],"download_size":2883584,"installed_size":16640901,"packager":"Tobias Powalowski ","build_date":"Fri 30 Aug 2024 07:57:19 PM +08","md5_sum":null,"sha_256_sum":"6038dfa8f09380d65d3df7119b19dde96ab20f983b95b1056861aae1fef947b5","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cracklib","version":"2.10.2-1","description":"Password Checking Library","architecture":"x86_64","url":"https://github.com/cracklib/cracklib","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","zlib"],"required_by":["389-ds-base","deepin-pw-check","lib32-cracklib","libpwquality"],"optional_for":["mariadb","mariadb-lts","xkcdpass"],"conflicts_with":[],"replaces":[],"download_size":282071,"installed_size":948029,"packager":"Tobias Powalowski ","build_date":"Tue 06 Aug 2024 02:39:50 PM +08","md5_sum":null,"sha_256_sum":"692c691ea08066bac8ae2423dd6f332a3e1bb040f9ae615e206d5ad13df98175","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cryptsetup","version":"2.7.5-1","description":"Userspace setup tool for transparent encryption of block devices using dm-crypt","architecture":"x86_64","url":"https://gitlab.com/cryptsetup/cryptsetup/","licenses":["GPL"],"groups":[],"provides":["libcryptsetup.so=12-64"],"depends_on":["device-mapper","libdevmapper.so=1.02-64","openssl","popt","util-linux-libs","libuuid.so=1-64","json-c","libjson-c.so=5-64","argon2","libargon2.so"],"required_by":["archinstall","deepin-file-manager","libblockdev-crypto","luksmeta","mkinitcpio-utils","osquery","pam_mount","stratisd","systemd","tomb-git","volume_key","yubikey-full-disk-encryption","zulucrypt"],"optional_for":["clevis","dracut","hwdetect","mkinitcpio-systemd-tool","mkosi-git","rauc"],"conflicts_with":["mkinitcpio<38-1"],"replaces":[],"download_size":771942,"installed_size":3069020,"packager":"Christian Hesse ","build_date":"Tue 03 Sep 2024 06:09:57 PM +08","md5_sum":null,"sha_256_sum":"7f603f586ccb21d946408ffe2f6011a3b0025e3051dfa70dbedb02a8a96476f3","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"curl","version":"8.9.1-2","description":"command line tool and library for transferring data with URLs","architecture":"x86_64","url":"https://curl.se/","licenses":["MIT"],"groups":[],"provides":["libcurl.so=4-64"],"depends_on":["ca-certificates","brotli","libbrotlidec.so=1-64","krb5","libgssapi_krb5.so=2-64","libidn2","libidn2.so=0-64","libnghttp2","libnghttp2.so=14-64","libnghttp3","libnghttp3.so=9-64","libpsl","libpsl.so=5-64","libssh2","libssh2.so=1-64","zlib","libz.so=1-64","zstd","libzstd.so=1-64","openssl","libcrypto.so=3-64","libssl.so=3-64"],"required_by":["0ad","across","ani-cli","appstream","appstream-glib","arch-update","archlinux-repro","ardour","ardour-git","ario","asdf-vm","asymptote","audacious-plugins","aura","aura-git","auracle-git","aurutils","aws-sdk-cpp","barrier-headless","betterdiscordctl-git","boinc","boinc-nox","bootiso","btfs","cairo-dock","cargo-c","cargo-clone","cargo-crev","cargo-geiger","cargo-generate","cargo-outdated","cargo-shuttle","cargo-tarpaulin","cargo-udeps","castget","casync","cclive","cemu-git","cfitsio","choosenim","clamav","clamav-unofficial-sigs","cmake","cmake-git","coeurl","conky","cryfs","csound","curlftpfs","curlie","ddclient","ddnet","dehydrated","devtools","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dovecot","dtools","dub","efl","element","elinks","emulationstation","espflash","espup","ettercap","ettercap-gtk","exiv2","facter","fbreader","fcitx-cloudpinyin","fcitx5-chinese-addons","feh","fisher","flashplugin","flatpak","flatpak-builder","flickcurl","freeciv","freeipa-client","freeoffice","ftl-sdk","fwupd","gambas3-gb-net-curl","gammu","gdal","gerbera","giac","git","git-cinnabar","github-desktop","gitlab-runner","glyr","gmic","gmt","gnome-notes","gpredict","gst-plugins-bad","guitarix","hblock","hcxtools","hlsdl","html-xml-utils","hurl","hw-probe","icaclient","imhex","jp2a","kcov","kicad","kicad-git","klavaro","kodi","kodi-git","kodi-gles","kodi-stable-git","lastpass-cli","leatherman","lib32-curl","libclastfm","libcmis","libcurl-compat","libcurl-gnutls","libdatovka","libelf","libgphoto2","libindi","libkiwix","libkolabxml","liblphobos","libmediainfo","libmodsecurity","libnpupnp","liboauth","libofa","libofx","libproxy","libqalculate","libquvi","librdkafka","libreoffice-dev-bin","libreoffice-fresh","libreoffice-still","librepo","libresprite-git","libreswan","libsixel","libupnpp","libxmlrpc","llvm-libs","lnav","lokinet","luarocks","lutris","lutris-git","lv2lint","lxpanel","lxpanel-gtk3","manaplus","mcpelauncher-linux-git","megaglest","megatools","mesonlsp","micromamba","minetest","minetest-git","minetest-server","minetest-server-git","moc-pulse","mongodb","mpd","mpdscribble","musikcube","mysql-workbench","ncmpcpp","netcdf","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","netcdf-openmpi","netsurf","networkmanager","networkmanager-iwd","newsboat","nheko-git","nix","nix-init","nm-cloud-setup","nm-iwd-cloud-setup","nspluginwrapper","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-backgroundremoval","obs-streamfx-unstable","obs-studio","obs-studio-git","obs-studio-stable","obs-studio-tytan652","octave","odamex-git","odr-dabmux-git","onlyoffice-bin","openrct2","opl-synth","osbuild","osdlyrics","ostree","p2pool","pacman","pacman-git","pacredir","pacrunner","pakka","passenger","path-of-building-community-git","percona-server","phoenicis-playonlinux","php","php-legacy","pianobar","pkgfile","pokerth","polybar","polybar-git","poppler","powerdns","powerdns-recursor","profanity","profanity-gtk","proj","psensor","python-pycurl","python-tensorflow","python-tensorflow-cuda","python-tensorflow-opt","python-tensorflow-opt-cuda","qemu-block-curl","qemu-git","qemu-headless-git","qemu-tools","qmmp","r","raptor","rauc","reapack","release-plz","remmina","rhonabwy","rink","rng-tools","roswell","rpcs3-git","rpi-imager","rtorrent","ruby-patron","rust","rustup","rustup-git","s3fs-fuse","sabnzbd","sane","scummvm","scummvm-git","seadrive-daemon","sentry-native","sheldon","siril-git","slurm-llnl","smooth","softmaker-office-2024-bin","soundwire","speedtest++","spring","springlobby","srb2kart","sssd","steam","steam-native-runtime","strongswan","sunshine","supertux","supertuxkart","sword","sysdig","syslog-ng","tensorflow","tensorflow-cuda","tensorflow-opt","tensorflow-opt-cuda","termv-git","tesseract","tinyemu","toxic","tpm2-tools","tpm2-tss","transmission-cli","transmission-gtk","transmission-qt","transmission-remote-gtk","trurl","typst-lsp","uget","ulfius","umu-launcher","unrealircd","vagrant","vcpkg","viking","virtualbox","virtualbox-kvm","vorbis-tools","warsow","wasm-pack","wcurl","weechat","wpscan","wxwidgets-common","xerces-c","xfce4-screenshooter","xine-ui","xonotic","xrootd","xtrabackup","ytfzf","ytfzf-git","yubico-c","yubico-c-client","zabbix-agent","zabbix-agent2","zabbix-proxy","zabbix-server","zapret-common-git","zellij"],"optional_for":["apache","bashtop","claws-mail","clevis","curlew","deadbeef","deadbeef-git","fio","freeradius","gap-packages","gcin","gimp-git","gpgit","inxi","ispin","mariadb","mariadb-lts","mkinitcpio-archiso","mkosi-git","monitoring-plugins","nextcloud","opensips","pciutils","surf-git","systemd","tor-router","translate-shell","vicious","wps-office","wps-office-cn","xmms2"],"conflicts_with":[],"replaces":[],"download_size":1139169,"installed_size":1962311,"packager":"Leonidas Spyropoulos ","build_date":"Mon 05 Aug 2024 03:53:07 PM +08","md5_sum":null,"sha_256_sum":"816d521855ba751ad814499e4fc68a00d49182a1e622307e5d33a873f0fbc0a4","signatures":"244740D17C7FD0EC","extended_data":null},{"repository":"core","name":"dash","version":"0.5.12-1","description":"POSIX compliant shell that aims to be as small as possible","architecture":"x86_64","url":"http://gondor.apana.org.au/~herbert/dash/","licenses":["BSD"],"groups":[],"provides":[],"depends_on":["glibc","libedit","libedit.so=0-64"],"required_by":["dashbinsh"],"optional_for":["dracut"],"conflicts_with":[],"replaces":[],"download_size":84490,"installed_size":157593,"packager":"Levente Polyak ","build_date":"Sat 25 Feb 2023 12:34:46 AM +08","md5_sum":"0368b51e48997a1b3e23faca23101eaa","sha_256_sum":"28622213069475e022656a627bff1891e8ee986d7b539eb4f3af620a8c7e27f4","signatures":"FC1B547C8D8172C8","extended_data":null},{"repository":"core","name":"db","version":"6.2.32-1","description":"The Berkeley DB embedded database system","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["AGPL3"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["apt","isync","opendkim","python-bsddb"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":1392998,"installed_size":7512729,"packager":"Frederik Schwan ","build_date":"Sun 11 Dec 2022 02:39:34 AM +08","md5_sum":"dac58b30bebd81ea97e54b23eb6a2d74","sha_256_sum":"a0013dbb897620edca8736676b7b2ee4b854ef9479a1555f69557cac58187581","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"db5.3","version":"5.3.28-5","description":"The Berkeley DB embedded database system v5.3","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["custom:sleepycat"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["389-ds-base","bitcoin-daemon","bitcoin-qt","bitcoin-tx","bogofilter","bogofilter-db","inn","jack2","jnettop","perl","perl-berkeleydb","reprepro","swi-prolog"],"optional_for":["bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","iproute2"],"conflicts_with":[],"replaces":[],"download_size":1242081,"installed_size":6768517,"packager":"Frederik Schwan ","build_date":"Wed 01 May 2024 11:27:30 PM +08","md5_sum":null,"sha_256_sum":"edb56c7d84c438b387a53ee414daff2611f62e4804ec8f2995e17b34437c0a4c","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"dbus","version":"1.14.10-2","description":"Freedesktop.org message bus system","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["libdbus","libdbus-1.so=3-64"],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["a2jmidid","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","android-emulator","ardour","ardour-git","at-spi2-core","avahi","awesome","awesome-git","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brickadia-launcher","brltty","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cdemu-daemon","cef-minimal-obs-bin","chromium","cloudflare-warp-bin","colord","compiz-core","compiz-gtk","connman","connman-git","consolekit","corectrl","cosmic-applets","cosmic-applets-git","cups","darling-bin","dbus-broker-units","dbus-c++","dbus-daemon-units","dbus-glib","deskreen","displaycal","dnsmasq","dropbox","dunst","efl","emacs","emacs-nativecomp","emacs-ng","emacs-nox","emacs-wayland","emby-theater","eruption","fcitx","filezilla","firedragon","firefox","firefox-developer-edition","firefox-esr","firefox-nightly","firefox-wayland-hg","flatpak","fluidsynth","fnott","fprintd","fyi","gambas3-gb-dbus","gamemode","gnome-mplayer","gnome-online-accounts","gogglesmm","gpu-screen-recorder-git","hplip","imhex","jack2","jack2-dbus","kdeconnect","keymapper-git","kitty","kitty-git","kitty-shell-integration","lib32-dbus","libcupsfilters","libdecor","libglib-testing","libgnome-keyring","libnih","libnvme","libpcap","libpulse","libreoffice-fresh","libreoffice-still","librewolf","libteam","libvirt-dbus","light-locker","malcontent","mangohud","mangohud-git","mmsd-git","modrinth-app-git","mozillavpn","mozillavpn-git","mpd","mullvad-browser-bin","mullvad-vpn-cli","ncspot","neard","obs-studio-tytan652","ofono","osquery","pacrunner","pantheon-default-settings","pantheon-settings-daemon","perl-net-dbus","picom","picom-git","pipewire","pipewire-audio","pipewire-jack-client","pipewire-media-session","pipewire-pulse","pop-bin","pop-launcher","pop-launcher-git","pycharm-community-eap","python-dasbus","python-dbus","python-dbus-fast","python-dbus-next","qt6-base","qt6-webengine","quota-tools","reboot-arch-btw","rescrobbled-git","retroarch","rtkit","runst","signal-desktop","signal-desktop-beta","slurm-llnl","snapper","songrec","sonyheadphonesclient-bin","spice-vdagent","spotify-player","spotifyd","steam","steam-native-runtime","stratisd","strawberry-full-git","strawberry-git","subversion","swaylock-fprintd-git","switchboard-plug-power","system76-firmware","system76-power","systemd","telepathy-glib","telepathy-mission-control","termius","termscp","termusic","thunderbird","thunderbird-beta","tiny","toastify","tradingview","udisks2","umu-launcher","ungoogled-chromium","vita3k-avx-git","vita3k-git","vlc","vlc-luajit","wesnoth","weston","wezterm-git","widelands","wingpanel-indicator-notifications","wired","wldash","wluma","wpa_supplicant","x2goserver","xdg-dbus-proxy","xorg-server","xorg-server-git","zam-plugins-clap","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zbar","zoom"],"optional_for":["alsa-plugins","claws-mail","deadbeef","deadbeef-git","fastfetch","picom","picom-git","utox"],"conflicts_with":["libdbus"],"replaces":["libdbus"],"download_size":312176,"installed_size":932423,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"c08fa536e28863e35a9591196876faf7","sha_256_sum":"28b519535496a8c8b7885fb2d4c089ca98e34250dfc468aad2267c639026f219","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker","version":"36-4","description":"Linux D-Bus Message Broker","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":[],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["dbus-broker-units"],"optional_for":["at-spi2-core"],"conflicts_with":[],"replaces":[],"download_size":148439,"installed_size":362393,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"557a742031b10e6d8b76ce2bb98298dbb001ac76b68ee003417f6fceb9ae65bd","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker-units","version":"36-4","description":"Linux D-Bus Message Broker - Service units","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus","dbus-broker"],"required_by":["dbus-units","systemd"],"optional_for":[],"conflicts_with":["dbus-daemon-units"],"replaces":[],"download_size":2437,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"bb97bd8f943e581a6c02be0aea368c2faa035f709406bffed77e807e96882e2f","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-daemon-units","version":"1.14.10-2","description":"Freedesktop.org message bus system - Service units","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus"],"required_by":["systemd"],"optional_for":[],"conflicts_with":["dbus-broker-units"],"replaces":[],"download_size":2938,"installed_size":819,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"79259a029b856b6958749db1a3d0f192","sha_256_sum":"61e184d5fae5ec13073525c6f17c2a630b6892dc8847585d2e454e590dbe5919","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-docs","version":"1.14.10-2","description":"Freedesktop.org message bus system - Documentation","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":1361786,"installed_size":21986570,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"1e71d48059b0d86d21a3af48ce4e8191","sha_256_sum":"faed9464ab5a4bfb63ea9a585025a7e0b9fc7d41433a7a75c96ae3d6cd4d3ae1","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-units","version":"36-4","description":"D-Bus service units (default provider)","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["CC0-1.0"],"groups":[],"provides":[],"depends_on":["dbus-broker-units"],"required_by":["systemd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":2191,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"eb7a93b615db7183fde62723f8ccb94094ceaab53782cbd63c159ae30ac5ce8a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"debugedit","version":"5.0-6","description":"Tool to mangle source locations in .debug files","architecture":"x86_64","url":"https://sourceware.org/debugedit/","licenses":["GPL-3.0-or-later","GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","libelf"],"required_by":["base-devel","flatpak-builder","zotero-bin"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":45066,"installed_size":107765,"packager":"Morten Linderud ","build_date":"Sat 04 May 2024 12:15:41 AM +08","md5_sum":null,"sha_256_sum":"dfd548598504d5e1f12296dc49bbbc43976702fdf2700cdd93404e3b4a1992c4","signatures":"9C02FF419FECBE16","extended_data":null},{"repository":"core","name":"debuginfod","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (debuginfod)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","libmicrohttpd","libmicrohttpd.so=12-64","sqlite","libsqlite3.so=0-64"],"optional_deps":[{"name":"elfutils=0.191","description":"for translations"}],"required_by":["pwndbg","valgrind"],"optional_for":["binutils","delve"],"conflicts_with":[],"replaces":[],"download_size":138874,"installed_size":347473,"packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"337ddacd32f8dcc2f8dcd69232d4c9091ce5617f334d483e5216496dca6e1e4b","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"device-mapper","version":"2.03.26-1","description":"Device mapper userspace library and tools","architecture":"x86_64","url":"http://sourceware.org/dm/","licenses":["GPL2","LGPL2.1"],"groups":[],"provides":["libdevmapper.so=1.02-64","libdevmapper-event.so=1.02-64"],"depends_on":["glibc","systemd-libs","libudev.so=1-64"],"required_by":["cri-o","cryptsetup","dmraid","docker","grub","grub-improved-luks2-git","grub-silent","libblockdev-dm","libblockdev-lvm","libblockdev-mpath","libldm","lvm2","mkinitcpio-archiso","multipath-tools","nfs-utils","osquery","parted","podman","skopeo","tcplay","veracrypt","xfsprogs"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":284252,"installed_size":774717,"packager":"Christian Hesse ","build_date":"Sun 25 Aug 2024 03:20:53 AM +08","md5_sum":null,"sha_256_sum":"6ed7fd89d8824cb83f95c7ec55c00485865e836ed30a5c55cc6425c5234b5585","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"dialog","version":"1:1.3_20240619-2","description":"A tool to display dialog boxes from shell scripts","architecture":"x86_64","url":"https://invisible-island.net/dialog/","licenses":["LGPL2.1"],"groups":[],"provides":["libdialog.so=15-64"],"depends_on":["sh","ncurses"],"required_by":["python-pythondialog"],"optional_for":["arch-wiki-lite","etc-update","gammu","netctl","texlive-binextra"],"conflicts_with":[],"replaces":[],"download_size":204195,"installed_size":475013,"packager":"Evangelos Foutras ","build_date":"Mon 01 Jul 2024 02:03:02 AM +08","md5_sum":null,"sha_256_sum":"fc0e81648bd6c38e1ff32db8b5c21ad33bfc8a345d30b0a9be4dcef768c8f6dd","signatures":"51E8B148A9999C34","extended_data":null},{"repository":"core","name":"diffutils","version":"3.10-1","description":"Utility programs used for creating patch files","architecture":"x86_64","url":"https://www.gnu.org/software/diffutils","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","bash"],"required_by":["aconfmgr-git","arch-update","archlinux-repro","autoconf","btrfs-assistant","btrfs-assistant-git","colordiff","dehydrated","devtools","diffoscope","etckeeper","mediawiki","mkinitcpio","pacdiff-pacman-hook-git","pkgdiff","posix","quilt","rcs","steam","umu-launcher","usbctl"],"optional_for":["gzip","khard","pace","pacman-contrib","qmk","terraform"],"conflicts_with":[],"replaces":[],"download_size":352890,"installed_size":1555353,"packager":"Sébastien Luttringer ","build_date":"Wed 24 May 2023 03:47:08 AM +08","md5_sum":"bd4ad1c815ab296ddeadef8ec6e859a1","sha_256_sum":"88e4705cd3d078c250b6ce94ccdabc48da1a093aa64c0fb0cb832c6ce4797e2d","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"ding-libs","version":"0.6.2-2","description":"\"DING is not GNU\" helper libraries for SSSD and FreeIPA","architecture":"x86_64","url":"https://github.com/SSSD/ding-libs","licenses":["GPL-3.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["gssproxy","sscg","sssd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":127795,"installed_size":672163,"packager":"Andreas Radke ","build_date":"Sun 17 Mar 2024 04:54:54 PM +08","md5_sum":"4e62db1a524ead54b52b59c12c12e0f9","sha_256_sum":"e72c72725452ec0287383e847e039777eed504ef1707f09101d795b429c50846","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"dmraid","version":"1.0.0.rc16.3-15","description":"Device mapper RAID interface","architecture":"x86_64","url":"https://people.redhat.com/~heinzm/sw/dmraid/","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["device-mapper>=2.0.54"],"optional_for":["dracut"],"conflicts_with":["mkinitcpio<0.7"],"replaces":[],"download_size":124846,"installed_size":321566,"packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:51:09 PM +08","md5_sum":null,"sha_256_sum":"e9a661652d8e4076d2164b77c88f94ebd93dcf16dd66714513621b40e4de86b9","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"dnssec-anchors","version":"20190629-4","description":"DNSSEC trust anchors for the root zone","architecture":"any","url":"https://data.iana.org/root-anchors/","licenses":["custom:none"],"groups":[],"provides":[],"depends_on":[],"required_by":["bind","knot-resolver","ldns","unbound"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":3143,"installed_size":808,"packager":"Jelle van der Waa ","build_date":"Thu 04 Jul 2024 04:15:16 AM +08","md5_sum":null,"sha_256_sum":"648ab7c4ac43421e6f8026128f84fdefcc5ebc0d171d6c723441e4d12c69048e","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"dosfstools","version":"4.2-5","description":"DOS filesystem utilities","architecture":"x86_64","url":"https://github.com/dosfstools/dosfstools","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["archinstall","archiso","archiso-git","bootiso","clonezilla","distrobuilder","libguestfs","mintstick","penguins-eggs","refind","ventoy-bin","woeusb","woeusb-ng"],"optional_for":["gparted","grub","grub-improved-luks2-git","grub-silent","kpmcore","libblockdev-fs","mkosi-git","rauc","rpi-imager","sedutil","syslinux","udisks2"],"conflicts_with":[],"replaces":[],"download_size":138772,"installed_size":419041,"packager":"Jelle van der Waa ","build_date":"Sun 25 Aug 2024 02:52:04 AM +08","md5_sum":null,"sha_256_sum":"03a7d8bd939a80418d9744afad00c22b91c4b411bdf9662744647c383a0ec503","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"e2fsprogs","version":"1.47.1-4","description":"Ext2/3/4 filesystem utilities","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":["libcom_err.so=2-64","libe2p.so=2-64","libext2fs.so=2-64","libss.so=2-64"],"depends_on":["sh","util-linux-libs"],"optional_deps":[{"name":"lvm2","description":"for e2scrub"},{"name":"util-linux","description":"for e2scrub"},{"name":"smtp-forwarder","description":"for e2scrub_fail script"}],"required_by":["apptainer","archinstall","archiso","archiso-git","bind","bootiso","deepin-clone","distrobuilder","ext4magic","extundelete","freerdp","fsarchiver","fuse-ext2-git","fuse2fs","krb5","lib32-e2fsprogs","libblockdev-fs","mc","mintstick","nfs-utils","osbuild","quota-tools","schroot","supermin","termius","tomb-git"],"optional_for":["btrfs-progs","diffoscope","dracut","kpmcore","mkosi-git","pjproject","rauc","udisks2"],"conflicts_with":[],"replaces":[],"download_size":1294817,"installed_size":5450455,"packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"f72a32b7c97ab2dafff65d466d1b91243bf74b55fd5e975584ab4d6299ea13b9","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"efibootmgr","version":"18-3","description":"Linux user-space application to modify the EFI Boot Manager","architecture":"x86_64","url":"https://github.com/rhboot/efibootmgr","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","popt","efivar","libefiboot.so=1-64","libefivar.so=1-64"],"required_by":["grub-silent","refind","system76-firmware"],"optional_for":["grub","grub-improved-luks2-git","hw-probe","memtest86-efi","rauc","syslinux"],"conflicts_with":[],"replaces":[],"download_size":30812,"installed_size":85719,"packager":"David Runge ","build_date":"Wed 13 Mar 2024 05:47:21 PM +08","md5_sum":"b28be257dd69d2c324267ccad6b1bab4","sha_256_sum":"6c8024c4b0abbdc3ff87a582ca1730448ef462015d3d0e97249d988f59c66c65","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"efivar","version":"39-1","description":"Tools and libraries to work with EFI variables","architecture":"x86_64","url":"https://github.com/rhboot/efivar","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libefiboot.so=1-64","libefisec.so=1-64","libefivar.so=1-64"],"depends_on":["glibc"],"required_by":["dbxtool","efibooteditor","efibooteditor-qt5","efibootmgr","mokutil","pesign"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":148172,"installed_size":554608,"packager":"David Runge ","build_date":"Thu 01 Feb 2024 05:57:25 PM +08","md5_sum":"06ab87bfdac70ba57b6626951a6f9000","sha_256_sum":"16422088da42f1ac562851d06ce86ad659f0775c86d9b1f54fa5a7067f9d636a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"elfutils","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (utilities)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","sh"],"required_by":["avrdude","babeltrace","flatpak-builder","hotspot","kcov","libabigail","libdwarf","ltrace","namcap","perf","pwninit","rpm-tools","systemtap-git"],"optional_for":["debuginfod","dracut"],"conflicts_with":[],"replaces":[],"download_size":597852,"installed_size":3662561,"packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"ecd122522f2abfa532173b36897db0986e586a33198e2b0862e5205b3d382c22","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"expat","version":"2.6.3-2","description":"An XML parser library","architecture":"x86_64","url":"https://libexpat.github.io/","licenses":["MIT"],"groups":[],"provides":["libexpat.so=1-64"],"depends_on":["glibc"],"required_by":["aarch64-linux-gnu-gdb","android-emulator","apr-util","arm-none-eabi-gdb","audacity","augustus","avahi","avr-gdb","blender","blockbench-bin","boca","boinctui","bolt-launcher","brltty","calf","cef-minimal-obs-bin","clasp-cl-git","cmake","dbus","dbus-broker","dbus-glib","deskreen","digikam","dovecot","ejabberd","elinks","emby-ffmpeg","emby-theater","exempi","exiv2","fontconfig","fpc","gdal","gdb","git","insight-toolkit","jack2-dbus","lapce","lapce-git","lftp","lib32-expat","libcomps","libdatovka","libdom","libmesode","libnpupnp","libofa","libosmium","libreoffice-fresh","libreoffice-still","libsolv","libstrophe","libupnpp","libva-mesa-driver","libwmf","lm32-elf-gdb","lua-expat","lua51-expat","lua52-expat","lua53-expat","mame","mesa","mesa-tkg-git","mesa-vdpau","miktex","mpd","mysql-workbench","neon","neovide","nominatim","obs-studio-tytan652","oculante","opencl-clover-mesa","opencl-rusticl-mesa","or1k-elf-gdb","osm2pgsql","paraview","perl-xml-parser","polkit","polkit-consolekit","pop-bin","ppc64le-elf-gdb","profanity","profanity-gtk","pypy","pypy3","python","python-astropy","python-osmium","python39","qgis","qt6-webengine","rfdump","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sdbus-cpp","sdbus-cpp-doc","sh2-elf-gdb","signal-desktop","signal-desktop-beta","skia-sharp","snapcast","subversion","termius","tradingview","vmware-horizon-client","vulkan-intel","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","wayland","wayland-chromium","wayland-git","wxwidgets-common","zeroc-ice"],"optional_for":["dbus-c++","unbound"],"conflicts_with":[],"replaces":[],"download_size":115968,"installed_size":436305,"packager":"David Runge ","build_date":"Thu 05 Sep 2024 01:19:42 AM +08","md5_sum":null,"sha_256_sum":"6487b7be759572043cf59b7999883be027025c74f003fbca1b5203f1236b181f","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"fakeroot","version":"1.36-1","description":"Tool for simulating superuser privileges","architecture":"x86_64","url":"https://tracker.debian.org/pkg/fakeroot","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["glibc","filesystem","sed","util-linux","sh"],"required_by":["anydesk-bin","apptainer","base-devel","debtap","devtools","gnome-shell-extension-arch-update","lib32-fakeroot","reprotest"],"optional_for":["bauh","i3status-rust","i3status-rust-git","pacman-contrib","pacseek"],"conflicts_with":[],"replaces":[],"download_size":78254,"installed_size":144660,"packager":"Christian Hesse ","build_date":"Fri 16 Aug 2024 01:17:43 AM +08","md5_sum":null,"sha_256_sum":"7bdd5f7580b20ab1574346c673a1d1a1c25aa9a902ef3b9e77944345a934e558","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"file","version":"5.45-1","description":"File type identification utility","architecture":"x86_64","url":"https://www.darwinsys.com/file/","licenses":["custom"],"groups":[],"provides":["libmagic.so=1-64"],"depends_on":["glibc","zlib","xz","bzip2","libseccomp","libseccomp.so=2-64","zstd","libzstd.so=1-64"],"required_by":["android-file-transfer","atool","base","base-devel","bootiso","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","carla","carla-git","checksec","clifm-git","ext4magic","feh","file-roller","gerbera","haskell-magic","hyprlock-git","hyprpaper","hyprpaper-git","imhex","keepalived","libmodulemd","lyx","moc-pulse","mpd-notification","nano","osquery","pleroma-bin","posix","python-magic","radare2","radare2-git","ristretto","rizin","rpm-tools","rspamd","sox","subversion","util-linux","vifm","viking","vis","xdg-utils","yara","zathura","zim-tools"],"optional_for":["inxi","libextractor","ranger-git"],"conflicts_with":[],"replaces":[],"download_size":405299,"installed_size":8739440,"packager":"Sébastien Luttringer ","build_date":"Fri 28 Jul 2023 05:23:09 AM +08","md5_sum":"5e1deb413f19678a56204e3d5e4b3f8a","sha_256_sum":"3ad37e246e893cdf59ae3af862d083c52087c47d3e6210996075ce77d41c5a1a","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"filesystem","version":"2024.04.07-1","description":"Base Arch Linux files","architecture":"any","url":"https://archlinux.org","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["iana-etc"],"required_by":["base","dracut","fakeroot","glibc","glibc-eac","glibc-eac-roco","mkinitcpio","nethack","plymouth"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":14356,"installed_size":22865,"packager":"David Runge ","build_date":"Mon 08 Apr 2024 02:02:30 AM +08","md5_sum":null,"sha_256_sum":"07acb29650aeaee633edd337af5bfa9c3b3309c9f198e5bad145bd4bbdacc40a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"findutils","version":"4.10.0-2","description":"GNU utilities to locate files","architecture":"x86_64","url":"https://www.gnu.org/software/findutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","sh"],"required_by":["anything-sync-daemon","base","base-devel","bash-complete-alias","bootiso","ca-certificates-utils","checksec","devtools","dracut","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","java-runtime-common","metals","mkinitcpio","penguins-eggs","posix","profile-cleaner","profile-sync-daemon","quilt","rosenpass","themix-icons-archdroid-git","themix-icons-gnome-colors-git","themix-icons-numix-git","themix-icons-papirus-git","themix-icons-suru-plus-aspromauros-git","themix-icons-suru-plus-git","themix-theme-materia-git","themix-theme-oomox-git","wikiman"],"optional_for":["pacman-contrib"],"conflicts_with":[],"replaces":[],"download_size":484741,"installed_size":1789603,"packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 03:52:07 PM +08","md5_sum":null,"sha_256_sum":"ba960db631b9e379076d24c336a190f7a9cdbafa2c928544fdb8a819d253d37d","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"flex","version":"2.6.4-5","description":"A tool for generating text-scanning programs","architecture":"x86_64","url":"https://github.com/westes/flex","licenses":["custom"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh"],"required_by":["at","base-devel","ccid","lib32-flex","ming","posix-c-development","splint"],"optional_for":["bauh","linux-atm"],"conflicts_with":[],"replaces":[],"download_size":314931,"installed_size":978585,"packager":"David Runge ","build_date":"Sat 18 Mar 2023 07:32:09 AM +08","md5_sum":"e9c3f6267b26aefea45af135185a98e2","sha_256_sum":"9fdee0b311ce967927006f523e537670d1be94deee52e0115902cf6087c59e25","signatures":"139B09DA5BF0D338","extended_data":null},{"repository":"core","name":"fuse2fs","version":"1.47.1-4","description":"Ext2/3/4 filesystem driver for FUSE","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":[],"depends_on":["fuse3","e2fsprogs"],"required_by":["apptainer"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":30023,"installed_size":73297,"packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"52c213add64f11e3e7adc87985dbe67ebef9b8b7379fe24ee3123b4188f990c0","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gawk","version":"5.3.0-2","description":"GNU version of awk","architecture":"x86_64","url":"https://www.gnu.org/software/gawk/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["awk"],"depends_on":["sh","glibc","mpfr"],"required_by":["aconfmgr-git","aerc","arch-install-scripts","autoconf","autoconf-git","base","base-devel","bashtop","bootiso","cfs-zen-tweaks","chaotic-neofetch-git","check","checksec","devtools","dkms","doas-sudo-shim","dracut","esh","fricas","garuda-update","green-recorder","green-recorder-git","i3lock-fancy-git","lynis","mk-configure","mkinitcpio","pacman","pacman-git","pkgdiff","posix","prettyping","quilt","rofi-pass","rosenpass","sofia-sip","syslog-ng","tdrop","termv-git","translate-shell","tuned","txt2man","ugit","wikiman","xschem","yadm"],"optional_for":["blesh-git","geeqie","geeqie-git","khal","mc","texmacs","vim-runtime"],"conflicts_with":[],"replaces":[],"download_size":1355304,"installed_size":3483443,"packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:51:08 PM +08","md5_sum":null,"sha_256_sum":"474af00363e5e3ac13e06d2b79e565766823b30edbef81b5abf2a09f1d5dd010","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"gc","version":"8.2.6-1","description":"A garbage collector for C and C++","architecture":"x86_64","url":"https://www.hboehm.info/gc/","licenses":["LicenseRef-GC","MIT"],"groups":[],"provides":[],"depends_on":["gcc-libs"],"required_by":["asymptote","bigloo","crystal","guile","guile2.2","inkscape","libhomfly","neko","nix","poke","shards","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":240353,"installed_size":790405,"packager":"Frederik Schwan ","build_date":"Sun 04 Feb 2024 06:30:33 PM +08","md5_sum":"903a28bfd90dcf6e2b41b76e989934af","sha_256_sum":"6210a1e7e00d3162f175f9ab318a3da928495210b1ea411dcb66bf5e1f382daf","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc","version":"14.2.1+r32+geccf707e5ce-1","description":"The GNU Compiler Collection - C and C++ frontends","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-multilib"],"depends_on":["gcc-libs=14.2.1+r32+geccf707e5ce-1","binutils>=2.28","libmpc","zstd","libisl.so=23-64"],"optional_deps":[{"name":"lib32-gcc-libs","description":"for generating code for 32-bit ABI"}],"required_by":["base-devel","clang","clang-git","clang14","clang17","dkms","dmd","gcc-ada","gcc-d","gcc-fortran","gcc-go","gcc-m2","gcc-objc","gcc-rust","gcovr","ghc","home-assistant","imd-git","intelbacklight-git","ispin","kde-development-environment-meta","ldc","lib32-clang","lib32-clang-git","libgccjit","libreoffice-fresh-sdk","libreoffice-still-sdk","lto-dump","nim","posix-c-development","rust","sh4d0wup","vala","varnish","virtualbox-host-dkms","vital-synth"],"optional_for":["bauh","choosenim","clion","codelite","codelite-unstable","dmd","node-gyp","qmk","spamassassin","xorg-xrdb"],"conflicts_with":[],"replaces":["gcc-multilib"],"download_size":53687091,"installed_size":212105953,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"029e59b707bf7e35f98c7f0d46031f7e78f6e66251b7220980a1fd65081e7858","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-ada","version":"14.2.1+r32+geccf707e5ce-1","description":"Ada front-end for GCC (GNAT)","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-ada-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-ada-multilib"],"download_size":31037849,"installed_size":158030888,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"83ca73da52a5deb60718edc2a9b2c61b3bc828d58d49c68214da9e24d8082001","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-d","version":"14.2.1+r32+geccf707e5ce-1","description":"D frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gdc"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":["orbiton"],"conflicts_with":[],"replaces":["gdc"],"download_size":20866662,"installed_size":123511767,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0e9c6e1b7067f0080c784605e0e89c6b96d50d46aefb747f37251dbb996544e4","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-fortran","version":"14.2.1+r32+geccf707e5ce-1","description":"Fortran front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-fortran-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["wsjtx"],"optional_for":["hiprand","magma-cuda","magma-hip","openmpi","phoronix-test-suite","r","rocrand","root","root-cuda"],"conflicts_with":[],"replaces":["gcc-fortran-multilib"],"download_size":14197719,"installed_size":46409973,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"20b27847342207fd0b652724dd8ed0c503cf0e66492d65671b1420e94c79c635","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-go","version":"14.2.1+r32+geccf707e5ce-1","description":"Go front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["go=1.17","gcc-go-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["gopls"],"optional_for":["liteide","nixpacks"],"conflicts_with":["go"],"replaces":["gcc-go-multilib"],"download_size":34603008,"installed_size":198736609,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"7fee2490ceff374d2d254b187ac824b5be32e0dec6a26442b0d94309f2f7f080","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-libs","version":"14.2.1+r32+geccf707e5ce-1","description":"Runtime libraries shipped by GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-libs-multilib","libgo.so=23-64","libgfortran.so=5-64","libgphobos.so=5-64","libubsan.so=1-64","libasan.so=8-64","libtsan.so=2-64","liblsan.so=0-64"],"depends_on":["glibc>=2.27"],"required_by":["3cpio","4ti2","7-zip","86box","86box-git","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acme-redirect","add-determinism","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","advancecomp","aeolus","afdko","afl++","age-plugin-yubikey","agg-2.6-git","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","airshipper","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alligator","alsa-tools","alsa-utils","amarok","amb-plugins","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-build-tools","angelfish","angle-grinder","antimicrox","antlr4-runtime","anydesk-bin","aom","apcupsd","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-repro-status","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-ide","arianna","ark","arrpc","arti","artikulate","artyfx","asciinema-agg","aspell","asplib","assimp","astyle","asusctl","asymptote","at51","atac","atomicparsley","attica","atuin","audacity","audaspace","audex","audiocd-kio","audiofile","audiotube","augeas","aura","aura-git","avisynthplus","avogadrolibs","avogadrolibs-qt5","avr-gcc","aws-crt-cpp","aws-sdk-cpp","ayatana-indicator-datetime","b3sum","babashka-bin","bacon","baloo","baloo-widgets","bandwhich","base","bat","battop","bbpager","bcachefs-tools","bcc","bchoppr","bear","benchmark","bespokesynth","biblesync","bigsh0t","bingrep","binocle","biodiff","biome","bitcoin-daemon","bitcoin-qt","bitcoin-tx","blackbox","blas","blas64","blender","blendr","blinken","bliss","blockbench-bin","blop.lv2","bluedevil","bluez-qt","bob","boinctui","bolt-launcher","bomber","bore","boringtun","botan","bottom","bovo","box2d","boxxy","bpf-linker","bpftop","bpftrace","breeze","breeze5","breezy","brial","brickadia-launcher","brillo","broot","bsequencer","bshapr","bslizr","btop","bubblewrap","bubblewrap-suid","buddy","bugstalker","buho","build2","bupstash","bustle","c++utilities","c-xsc","calendarsupport","calf","caligula","calindori","calligra","cantor","capnproto","caps","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-about","cargo-asm","cargo-audit","cargo-auditable","cargo-binstall","cargo-bloat","cargo-bundle-licenses","cargo-c","cargo-cyclonedx","cargo-deb","cargo-deny","cargo-depgraph","cargo-expand","cargo-flamegraph","cargo-generate-rpm","cargo-hack","cargo-insta","cargo-license","cargo-llvm-cov","cargo-make","cargo-msrv","cargo-ndk","cargo-nextest","cargo-outdated","cargo-pgrx","cargo-public-api","cargo-release","cargo-run-bin","cargo-semver-checks","cargo-show-asm","cargo-shuttle","cargo-sort","cargo-supply-chain","cargo-sweep","cargo-tarpaulin","cargo-tauri","cargo-update","cargo-wizard","cargo-zigbuild","cargo2junit","carla","carla-git","casync","cauchy","cbindgen","ccache","ccls","cdrdao","cef-minimal-obs-bin","cemu-git","cervisia","chatgpt-desktop-bin","check-broken-packages-pacman-hook-git","check-sieve","chess-tui","chiaki","choose","chromaprint","chromium-widevine","citra-git","clamav","clazy","clblast","clipcat","clipgrab","clpeak","clthreads","clucene","clxclient","cm256cc","cmake","cmt","cobalt","cocogitto","codon-bin","coeurl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-mp","coin-or-osi","colord-kde","comgr","committed","communicator","compiler-rt","compiler-rt-git","compiler-rt14","compiler-rt17","composable-kernel","composefs","conky","connman","conserve-git","coolercontrol","coordgen","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","coxeter","cpp-hocon","cppdap","cppunit","crab-hole","crawl-ncurses","crawl-tiles","cri-o","criu","cross","crowdsec","cryfs","crypto++","cryptominisat","csound","csound-plugins","csoundqt","csvlens","ctemplate","ctrtool","cubeb","cudd","cups","cxxbridge","czkawka-cli","czkawka-gui","d-spy","d2","daktilo","darkstat","darts","db","db5.3","dbus-c++","ddrescue","debuginfod","deepin-album","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-clone","deepin-compressor","deepin-device-formatter","deepin-dock","deepin-draw","deepin-editor","deepin-file-manager","deepin-font-manager","deepin-image-editor","deepin-image-viewer","deepin-kwin","deepin-launchpad","deepin-music","deepin-network-core","deepin-pdfium","deepin-picker","deepin-polkit-agent","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-reader","deepin-screen-recorder","deepin-screensaver","deepin-session","deepin-session-shell","deepin-session-ui","deepin-system-monitor","deepin-terminal","deepin-util-dfm","deepin-voice-note","deepin-widgets","deepin-wloutput-daemon","deltachat-rpc-server","deno","deskreen","dexed-clap","dexed-standalone","dexed-vst3","dfrs","diesel-cli","difftastic","digikam","din","discimagecreator-git","discord-chat-exporter-cli","discord-game-sdk","discover","diskus","disorderfs","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","djvulibre","dleyna","dmtcp","dnsdist","dog","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dosbox","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","draco","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dssi","dtk6core","dtk6declarative","dtk6gui","dtk6widget","dtkcore","dtkdeclarative","dtkgui","dtkwidget","dua-cli","ducker","dummyhttp","dump_syms","dust","dvd+rw-tools","dvgrab","dvisvgm","dwarffortress","dwayland","dysk","e-antic","easytag","ebou","ebumeter","ecasound","eclib","edid-decode-git","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elisa","ell","embree","emby-theater","emptyepsilon","emulsion","enblend-enfuse","endless-sky","eog","epiphany","eq10q","erdtree","espflash","espup","eva","evcxr_repl","eventviews","evince","evolution-data-server","evolution-ews","exempi","exiv2","eza","fabla","facter","falkon","fastd","faust","fcgi","fcitx5-qt","fclones","fd","felix-rs","ferium","ferium-gui","fflas-ffpack","ffmpegthumbs","fftw","fiery","fil-plugins","file-roller","filelight","fillets-ng","findomain","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","flac","flatbuffers","flatpak","flatpak-builder","flatpak-kcm","flawz","flightcore","flip-link","flips","fltk","fluidsynth","flxmlrpc","fmt","fnm","fomp.lv2","fplll","fprintd","fractal","fragments","frameworkintegration","francis","freerdp","freewheeling","frei0r-plugins","ft2-clone","furnace","futuresql","fwupd","g2reverb","gambas3-gb-db-sqlite3","gambas3-gb-image-effect","gambas3-gb-xml","gamescope","gamescope-git","gammaray","gap-packages","gc","gcc","gcdmaster","gdb","gdcm","gdm","gdm-prime","gedit","geekbench","geeqie","gegl","genact","gengetopt","genxrdpattern","geoclue","geonkick-lv2","geonkick-standalone","geonkick-vst3","geos","geph4-client","gerbera","gettext","gfan","gflags","gfold","ghostwriter","giac","giada","gigedit","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","gir-to-d","git-bug","git-cinnabar","git-cliff","git-delta","git-evtag","git-grab","git-smash","git-warp-time","gitg","gitlab-exporter","gitoxide","gitu","gitui","givaro","gjs","glibmm-2.68","glslang","glu","glycin","gmic","gmp","gmp-ecm","gn","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-builder","gnome-calendar","gnome-calls","gnome-color-manager","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-initial-setup","gnome-maps","gnome-multi-writer","gnome-online-accounts","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-software","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnustep-base","gnutls","goattracker","goldendict-webengine-pr-git","google-glog","google-webdesigner","gpaste","gperf","gperftools","gpgme","gptfdisk","gqrx","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","grcov","greetd","greetd-agreety","greetd-regreet","greetd-tuigreet","grex","groff","grub-customizer","gsoap","gst-plugin-libcamera","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-good","gstreamer","gtest","gtk4","gtksourceviewmm","gtranslator","guestfs-tools","guichan","guile1.8","guitarix","gupnp-tools","gvfs","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gwenview","gxplugins.lv2","hacksaw","halp","handbrake","handbrake-cli","handbrake-nvenc-cli","hardened_malloc","haruna","haskell-tidal","haskell-tidal-link","havn","hawkeye","hck","heaptrack","heh","heimdall","heimdall-grimler-git","helix","helvum","hepmc","hex","hexpatch","hexyl","highway","highway-git","himalaya","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hm","hplip","hq","hsa-amd-aqlprofile-bin","hsa-rocr","ht-editor","htmlq","hugo","huniq-git","hunspell","hurl","hydrogen","hyperfine","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","iaito","icon-library","icu","icu60","icu69","id3lib","id3v2","iempluginsuite-standalone","iempluginsuite-vst3","igraph","igrep","iir1","imagemagick","imagescan","imath","imgui","impala","incidenceeditor","include-what-you-use","incron","index-fm","infamousplugins","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","intel-compute-runtime","intel-gmmlib","intel-graphics-compiler","intel-media-driver","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","iperf","iptstate","isoimagewriter","ispc","itinerary","itk-snap-bin","iverilog-git","iwd","j4-dmenu-desktop","jack2","jack2-dbus","jack_delay","jackett","jacktrip","jalv","japa","jbig2enc-git","jc303-clap","jc303-lv2","jc303-vst3","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jless","jnoisemeter","john","joshuto-git","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","js91","jsoncpp","jsonrpc-glib","juce","jujutsu","juk","just","jwt-cli","jwt-ui","k3b","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kakoune","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kbt","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","kernelshark","kexi","keymapper-git","keysmith","keystone","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmousetool","kmouth","kmplot","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","koko","kolf","kollision","kolourpaint","kommit","kompare","kondo","kondo-ui","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kubetui","kubie","kubrick","kunitconversion","kup","kuserfeedback","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","kyotocabinet","labplot","ladspa","lan-mouse","lantern-bin","lapack","lapack64","lapce","lapce-git","laszip","laszip2","latte-integrale","layer-shell-qt","lazyjj","lcalc","ldproxy","leatherman","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","leftwm-theme-git","legba","leocad","lftp","lib3mf","libabigail","libabw","libaccounts-qt","libajantv2","libakonadi","libappimage","libayatana-appindicator","libb2","libbacktrace-git","libblockdev-crypto","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-swap","libbraiding","libbs2b","libc++","libc++abi","libcaca","libcamera","libcamera-ipa","libcamera-tools","libcap","libcdio","libcdr","libchardet","libcmis","libconfig","libcoverart","libcupsfilters","libcutl","libdatachannel","libde265","libdex","libdovi","libe-book","libebml","libei","libelf","libelfin","libemf","libepubgen","libetebase","libetonyek","libfabric","libfbclient","libffado","libfilezilla","libfprint","libfpx","libfreehand","libftdi-compat","libgdm","libgdm-prime","libgexiv2","libgig","libgit2","libgme","libgooglepinyin","libgravatar","libguestfs","libgweather-4","libheif","libical","libilbc","libimagequant","libindi","libinih","libixion","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libkscreen","libksieve","libksysguard","libktorrent","libliquidsfz","liblsp-r3d-glx-lib","libmalcontent","libmanette","libmediainfo","libmemcached-awesome","libmfx","libmodplug","libmp4v2","libmspub","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmythes","libnautilus-extension","libnitrokey","libnl","libnm","libnm-iwd","libnpupnp","libnumbertext","libodfgen","libolm","libopenmpt","libopenshot","libopenshot-audio","liborcus","liborigin","libosinfo","libpagemaker","libpeas-2","libphobos","libphonenumber","libpipewire","libplacebo","libplasma","libplist","libplist-git","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libppd","libproxy","libpst","libptytty","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libquotient","libqxp","libraw","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-bsnes","libretro-bsnes-hd","libretro-dolphin","libretro-mesen","libretro-mesen-git","libretro-mesen-s","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-pcsx2","libretro-ppsspp","librevenge","librewolf","librime","librsvg","librustls","libsbsms","libseexpr2","libsemigroups","libshumate","libsidplayfp","libsigc++","libsigc++-3.0","libsoxr","libspectmorph","libspelling","libstaroffice","libstdc++5","libtiff","libtiff4","libultrahdr","libultrahdr-git","libunrar","libupnpp","libusbmuxd","libusbmuxd-git","libva-mesa-driver","libvdpau-va-gl","libvisio","libvoikko","libvolk","libvpl","libvpx","libwhereami","libwireplumber","libwpd","libwpe","libwpg","libwps","libxcomp","libxisf","libxml++-5.0","libxsd-frontend","libyuv","libzen","libzmf","lidia","lilypond","linbox","lincity-ng","linuxsampler","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","live-media","lld","lld17","lldb","lldb-mi","llvm-julia","llvm-julia-libs","llvm-libs","llvm-libs-git","llvm14-libs","llvm17-libs","lmms","log4cplus","log4cpp","lokalize","looking-glass-git","looking-glass-host-git","loupe","lsd","lshw","lskat","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lua-language-server","luajit","luau","lucky-commit","ludusavi","luppp","lurk","lxqt-config","lychee","lzip","lzlib","m4ri","mac","maeparser","mailcommon","mailimporter","malcontent","maliit-framework","mame","mame-tools","mangohud","mangohud-git","marble","marble-common","marble-maps","marble-qt","marisa","markdownpart","marknote","markuplinkchecker","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","mastodon-twitter-sync","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","maxcso","maxcso-git","mbox-importer","mbuffer","mcp-plugins","mcqd","md-tui","mda.lv2","mdbook","mdcat","mediaelch","meilisearch","menyoki","merkuro","mesa","mesa-vdpau","messagelib","milkytracker","milou","mimetreeparser","minecraft-launcher","minisat","miniserve","minitube","minuet","miopen-hip","mirro-rs","mixxx","mjpegtools","mkvtoolnix-cli","mlt","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","monolith","moon","mosquitto","mpd","mpdecimal","mpgtx","mpvqt","mqttui","mscp","msgraph","msolve","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","munt-daemon","muparser","muparserx","muse","musescore","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","mystiq","naiveproxy","nautilus","navidrome","nccl","ncmpc","ncmpcpp","ncspot","ncurses","ncurses5-compat-libs","neochat","neovide","neovide-git","netavark","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","nethogs","nethsm-cli","netpbm","netplan","netscanner","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","ngspice","nickel","nickel-language-server","ninja","niri","nix","nix-init","nixpacks","nload","nlopt","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-suppression-for-voice","nomacs","nomad","normaliz","notcurses","nspluginwrapper","nsync","ntk","ntl","nudelta","nurl","nushell","nuspell","nut","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-rtspserver","obs-studio-tytan652","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","ogmtools","oha","oil","okteta","okular","okularpart5","onednn","onefetch","onetbb","onnx","openal","openal-git","openapi-tui","openblas","openblas-lapack","openblas64","opencl-amd","opencl-clover-mesa","opencl-rusticl-mesa","opencv","opencv-cuda","openexr","openh264","openjade","openmpi","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openscad","opensips","opentimelineio","openvkl","openzwave","opnplug-lv2","opnplug-standalone","opnplug-vst","oscpack","osinfo-db-tools","ospray","osquery","ostree","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owncloud-client","oxc-language-server","oxipng","oxlint","oxygen","oxygen5","oxyromon","p7zip","p8-platform","packagekit-qt5","packagekit-qt6","pacman-bintrans","pacman-bintrans-tools","padthv1-lv2","padthv1-standalone","palapeli","pamixer","pangomm-2.48","papilo","paprefs","par2cmdline","pari","parley","parsec-bin","partitionmanager","pastel","patchelf","pavucontrol","pbzip2","pcloudcc-git","pcre","pd-sfizz","pepper-flash","performous","pesign","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-imagick","php-legacy-imagick","physx","picmi","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pipe-rename","pipewire","pipewire-audio","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-zeroconf","piping-server","pixi","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","plymouth-kcm","podman","podman-desktop","poedit","poketex","polari","polkit-kde-agent","polkit-qt5","polkit-qt6","polly","polly-git","polyclipping","polymake","polyphone","pop-bin","pop-launcher","poppler","poppler-glib","poppler-qt5","poppler-qt6","portaudio","portsmf","postgresql","power-profiles-daemon","powerdevil","powerdns-recursor","powershell-bin","powertop","poxml","ppl","ppsspp","presage","presenterm","primecount","primesieve","print-manager","prismlauncher","prison","prjxray-tools-git","procinfo-ng","procs","protobuf","protobuf-21","proton-ge-custom","protonmail-bridge","proxmox-backup-client","proxyboi","ps7_libpicoipp","pstoedit","ptex","ptyxis","pueue","pugixml","pulseaudio-qt","purpose","pwninit","pyflow","pymol","pyside6","pystring","pythia8","python-awscrt","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-cramjam","python-cvxpy","python-cylp","python-debugpy","python-fastnumbers","python-fpylll","python-iminuit","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-materialyoucolor-git","python-mitmproxy-rs","python-ml-dtypes","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-pendulum","python-pikepdf","python-pivy","python-pplpy","python-primecountpy","python-pyarrow","python-pybullet","python-pycapnp","python-pycrdt","python-pycuda","python-pydantic-core","python-pykcs11","python-pymupdf","python-pynormaliz","python-pyopencl","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-webengine","python-pysequoia","python-pythia8","python-qdldl","python-rapidfuzz","python-regress","python-rpds-py","python-rtmidi","python-scipy","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-ulid-transform","python-vigra","python-watchfiles","python-xapian","python-y-py","python-zita-audiotools","python-zita-jacktools","qalculate-gtk","qalculate-qt","qastools","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcad","qcoro-qt5","qcoro-qt6","qd","qemu-arch-extra-git","qemu-audio-dbus","qemu-audio-jack","qemu-audio-pipewire","qemu-block-curl","qemu-block-iscsi","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-display-qxl","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-opengl","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegencpp-cmake","qrtool","qrupdate","qsampler","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtkeychain-qt5","qtkeychain-qt6","qtractor","qucsator-git","quiche","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","radare2","radeon-profile-git","rage-encryption","ragel","rate-mirrors","rathole","rattler-build","rauc","rav1e","rbutil","rbw","rccl","rdfind","re2","re2c","reactphysics3d","reapack","reaper","rebels-in-the-sky","recastnavigation","regexxer","release-plz","remmina","repgrep","repro-env","reproc","retro-gtk","retroarch","rev-plugins","rhit","rhythmbox","rink","rio","ripgrep","riseup-vpn","rkcommon","rkward","rlog","roc-toolkit","rocalution","rocblas","rocfft","rockchip-mpp","rocm-dbgapi","rocm-gdb","rocm-llvm","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rog-control-center","ropr","rosegarden","rpg-cli","rpi-imager","rq","rqbit","rqbit-desktop","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rtaudio","rtmidi","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","rucola","ruff","runescape-launcher","rust","rust-analyzer","rust-bindgen","rust-kanban","rust-script","rustc-demangle","rustic","rustlings","rustow-git","rustscan","rustypaste","rustypaste-cli","rye","ryujinx","rz-cutter","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","samply","sane","satty","sc3-plugins","sccache","scip","sd","sdcc","sddm","sddm-git","sddm-kcm","selene","sentry-cli","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serie","serpl","serproid","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sg-323-clap","sg-323-vst3","sh4d0wup","shaderc","shadowsocks-rust","shapelib","shared-mime-info","sheldon","shiboken6","shotgun","shy","sidplay2-libs","sig","signal-desktop","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","simple-mtpfs","simpleitk","simutrans","simutrans-extended-git","singular","sirocco","skanlite","skanpage","skladnik","slack-electron","sleuthkit","slim","slowhttptest","slumber","smartdns","smartmontools","smb4k","smplayer","snappy","snapshot","soapyaudio","solid","songrec","sonic","sonic-visualiser","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sorcer","sound-gambit","soundtouch","sowing","sox","spatialindex","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","speex","speexdsp","spiped","spirv-cross","spirv-tools","splix","spotify-tui","spytrap-adb","sqlc","sqlx-cli","squashfs-tools","srs","srt","ssdeep","ssh-openpgp-auth","sshd-openpgp-auth","sshx","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","steam","steam-boilr-gui","stellarsolver","step","stk","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stylua","subversion","suil","suitesparse","suitesparse-graphblas","sundials","sunpinyin","supercollider","supergfxctl","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","sweeper","swiftshader-git","swig","switchboard-plug-user-accounts","sws","swww","symengine","sympol","syndication","syndicationd","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysprof","system76-firmware","system76-scheduler","systemc","systemctl-tui","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","tabiew","taglib","taglib1","tangler","taplo-cli","tbtools","tealdeer","teamspeak3-server","tecla","telly-skout","tere","termscp","tesseract","texlab","texlive-bin","texmaker","thin-provisioning-tools","threadweaver","thrift","thunderbird","tickrs","tiny","tinyobjloader","tinyxml2","tlsh","tokei","tokodon","tokodon-git","toml-bombadil","tomlplusplus","tone-bin","topcom","topgrade","tor","totem-pl-parser","tracexec","tracker3","tracker3-miners","tracktion-waveform","tradingview","tree-sitter-cli","trippy","tropy-bin","ttfautohint","ttyper","tui-journal","turbo","twitch-tui","typos","typst","typst-lsp","uchardet","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","umbrello","umu-launcher","unarchiver","uncrustify","unittestpp","unrar","updlockfiles","upower","usbguard","uutils-coreutils","uv","v4l-utils","vale","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vaultwarden","vbindiff","vco-plugins","vcpkg","vdpauinfo","vector","vector-blf","veracrypt","vid.stab","vigra","virtiofsd","virtualbox","virtualbox-kvm","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","viu","vivid","vkbasalt","vlc","vlc-luajit","vmaf","vmpk","vmware-horizon-client","voacapl","volta","vosk-api","vte3","vte4","vtk","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-validation-layers","vulkan-virtio","vvave","wabt","wacomtablet","wah-plugins","wasm-component-ld","wasmer","wasmtime","watchbind","watchexec","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webrtc-audio-processing","webrtc-audio-processing-1","websocat","wezterm","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","wiki-tui","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wireguard-vanity-address","wireplumber","wireshark-qt","wiresmith","wishbone-utils","wl-clip-persist","wl-clipboard-rs","wldash","wluma","woff2","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","worker-build","wp-desktop","wpewebkit","wpmeta","wstunnel","wvdial","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x265","x42-plugins-lv2","x42-plugins-standalone","xapian-core","xcolor","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdvdfs","xemu-git","xerces-c","xfsdump","xh","xmonk.lv2","xplc","xplr","xsd","xsettingsd","xsv","xwaylandvideobridge","yabridge","yabridgectl","yakuake","yaml-cpp","yazi","yazi-git","yoshimi-lv2","yoshimi-standalone","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenith","zenity","zeromq","zerotier-one","zfp","zimg","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zola","zopfli","zoxide","zstd","zxing-cpp","zydis","zynaddsubfx"],"optional_for":["gcin","spglib"],"conflicts_with":[],"replaces":["gcc-libs-multilib","libgphobos"],"download_size":36742103,"installed_size":150407741,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"465482ee79fa656038ec60e1d8868c3fd69420e948468c4714031944befef0a5","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-m2","version":"14.2.1+r32+geccf707e5ce-1","description":"Modula-2 frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":14250147,"installed_size":51390709,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"d9bc49af683cc2e8f79a3464a6ecbc34bfe42a183b684cc3ab58342b33fab12a","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-objc","version":"14.2.1+r32+geccf707e5ce-1","description":"Objective-C front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-objc-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-objc-multilib"],"download_size":26864517,"installed_size":89422561,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0cdd5e43a3c9305b92ea26fb44b96ba17853a9ec5449d005dfa762420b62b9a2","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-rust","version":"14.2.1+r32+geccf707e5ce-1","description":"Rust frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":14753464,"installed_size":53949235,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"9e06bf9329654391c2be8c724c61e23a228f7277951aff0bd9f5cb549d313e28","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gdbm","version":"1.24-1","description":"GNU database library","architecture":"x86_64","url":"https://www.gnu.org/software/gdbm/gdbm.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["libgdbm_compat.so=4-64","libgdbm.so=6-64"],"depends_on":["glibc","sh","readline","libreadline.so=8-64"],"required_by":["avahi","cyrus-sasl","exim","libsasl","man-db","modem-manager-gui","mutt","neomutt","openipmi","perl","php-legacy","pypy","pypy3","python","python39","ruby","ruby2.7","skktools","xkbsel","zsh"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":253050,"installed_size":736860,"packager":"David Runge ","build_date":"Thu 04 Jul 2024 10:47:39 PM +08","md5_sum":null,"sha_256_sum":"2712f2747f887ff19ad4151143e506e80254a0a0db0e8b968adb6634da7800ab","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gettext","version":"0.22.5-1","description":"GNU internationalization library","architecture":"x86_64","url":"https://www.gnu.org/software/gettext/","licenses":["GPL-2.0-only","LGPL-2.0-only","GFDL-1.2-only","GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","acl","sh","libunistring","libxml2"],"optional_deps":[{"name":"git","description":"for autopoint infrastructure updates"}],"required_by":["atril","base","base-devel","bison","cataclysm-dda","criterion","deepin-gettext-tools","engrampa","eom","exiv2","fsv3","gdm-settings","gdm-settings-git","gnome-shell-extension-arc-menu-git","grub","grub-improved-luks2-git","grub-silent","gtranslator","kde-development-environment-meta","kdesdk-thumbnailers","lib32-gettext","libmatekbd","libmatemixer","libmateweather","marco","mate-backgrounds","mate-calc","mate-common","mate-control-center","mate-icon-theme","mate-media","mate-netbook","mate-notification-daemon","mate-panel","mate-polkit","mate-power-manager","mate-screensaver","mate-sensors-applet","mate-session-manager","mate-settings-daemon","mate-system-monitor","mate-terminal","mate-user-guide","mate-user-share","mate-utils","mozo","notion","oversteer","pacman","pacman-git","perl-libintl-perl","perl-locale-gettext","pluma","po4a","poke","poxml","proton-ge-custom","pspp","quilt","t-prot","wine","wine-ge-custom","wine-stable","wine-staging","wine-staging-wow64","wine-staging-wow64-git","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wine-wow64","wine-wow64-git"],"optional_for":["diffoscope","fcitx","libvirt","motion"],"conflicts_with":[],"replaces":[],"download_size":2243952,"installed_size":8053063,"packager":"Tobias Powalowski ","build_date":"Wed 08 May 2024 06:42:49 PM +08","md5_sum":null,"sha_256_sum":"fa858cd8217d2089dd734b0ac6a9d526b7766ed0220cfad5320f91692f4d5d16","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"glib2","version":"2.80.5-1","description":"Low level core library","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libglib-2.0.so=0-64","libgio-2.0.so=0-64","libgirepository-2.0.so=0-64","libgmodule-2.0.so=0-64","libgobject-2.0.so=0-64","libgthread-2.0.so=0-64"],"depends_on":["bash","glibc","libffi","libsysprof-capture","pcre2","util-linux-libs","zlib","libffi.so=8-64","libmount.so=1-64"],"optional_deps":[{"name":"dconf","description":"GSettings storage backend"},{"name":"glib2-devel","description":"development tools"},{"name":"gvfs","description":"most gio functionality"}],"required_by":["64gram-desktop","86box","86box-git","abiword","accerciser","accountsservice","aisleriot","almanah","alsa-scarlett-gui","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","anydesk-bin","anyrun-git","app-icon-preview","appmenu-glib-translator-git","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","arch-update","ardour","ardour-git","arduino-ide","asunder","at-spi2-core","atomix","audacious","audacity","audio-recorder","autotrace","avahi","avldrums.lv2","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","babeltrace","babeltrace2","bemenu-wayland","bemenu-x11","birdfont","blanket","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brltty","budgie-session","bumblebee","bustle","cairo","calf","callaudiod","capnet-assist","castget","cdemu-client","cdemu-daemon","cef-minimal-obs-bin","cemu-git","chatgpt-desktop-bin","chromium-widevine","cinnamon-menus","clapper","colord-gtk","colord-gtk4","conky","conmon","connman","connman-git","connman-gtk","consolekit","contractor","contractor-git","cosmic-files","cosmic-files-git","cosmic-store","cosmic-store-git","cups-browsed","cups-pk-helper","curlftpfs","curtail","czkawka-gui","d-spy","datagrip","datagrip-jre","dataspell","dataspell-jre","dbmail","dbus-c++","dbus-glib","dconf","ddcutil","ddcutil-git","dee","deepin-api","deepin-appearance","deepin-camera","deepin-compressor","deepin-daemon","deepin-dock","deepin-file-manager","deepin-launchpad","deepin-session","deepin-session-ui","deepin-terminal","deepin-util-dfm","deepin-voice-note","deja-dup","deluge-gtk","deskreen","desktop-file-utils","devede","digikam","dino","dino-git","discover","displaycal","dleyna","droidcam","dsniff","dtk6gui","dtkgui","dunst","duperemove","dwarffortress","easytag","ebou","efl","emacs","emacs-nativecomp","emacs-wayland","emby-theater","enchant","eog","eolie","epiphany","etherape","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","fcitx5-gtk","ffmpeg","ffmpeg-full","ffmpeg-obs","file-roller","firefox","firefox-developer-edition","firefox-esr","firewalld","flat-remix-gnome","flatpak","flatpak-builder","flatpak-kcm","flips","fluidsynth","forkgram","fprintd","fractal","fragments","freeciv","freerdp","fs-uae","fsv3","fuseiso","fwupd","gala","gala-git","gambas3-gb-net-smtp","gamehub","gammastep","gammu","gcab","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdk-pixbuf2","gdm","gdm-prime","geary","gedit","gedit-plugins","geeqie","gegl","geoclue","geocode-glib-common","gfeeds","ghostscript","gigedit","giggle","gimp","gimp-plugin-gmic","girara","gitg","gjs","glib-networking","glib-perl","glib2-devel","glibd","glibmm","glibmm-2.68","glycin","glyr","gmime3","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-firmware","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-logs","gnome-mahjongg","gnome-maps","gnome-menus","gnome-mplayer","gnome-multi-writer","gnome-music","gnome-notes","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-extension-desktop-icons-ng","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnome-tweaks","gnome-usage","gnome-user-share","gnote","gnuplot","gobject-introspection","goffice","goland","goland-jre","gom","goobox","goocanvas","google-webdesigner","gpaste","gpgme","granite","granite7","graphene","greetd-regreet","gromit-mpx","grub-customizer","gsound","gspell","gssdp","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtk-sharp-3","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtk4-git","gtkglext","gtksourceview5","gtksourceviewmm","gtranslator","gts","gtuber","guestfs-tools","guitarix","gupnp","gupnp-av","gupnp-dlna","gupnp-igd","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gxml","harfbuzz","harfbuzz-cairo","harfbuzz-utils","haskell-gi","haskell-gi-base","haskell-gi-gio","haskell-gi-glib","haskell-gi-gmodule","haskell-gi-gobject","haskell-gio","haskell-glib","helvum","hexchat","hexter","hotdoc","hyprland","hyprland-git","hyprlock","ibus","ibus-typing-booster","icon-library","iio-sensor-proxy","imagemagick","imagemagick-full-git","imagescan","inkscape","irqbalance","irssi","itk-snap-bin","jack_mixer","jalv","jami-qt","jetbrains-toolbox","jgmenu","jnettop","json-glib","jsonrpc-glib","kamoso","kde-gtk-config","kexi","klavaro","klipperscreen","kondo-ui","kooha","kotatogram-desktop","kotatogram-desktop-git","lan-mouse","lantern-bin","lasem","lensfun","lensfun-git","lib2geom","lib32-glib2","libaccounts-glib","libaccounts-qt","libadwaita","libadwaita-demos","libappimage","libappindicator-gtk2","libappindicator-gtk3","libaxc","libayatana-appindicator","libayatana-indicator","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libcacard","libcalfbox-lss","libcheese","libcheese-git","libclapper","libclapper-gtk","libcloudproviders","libcolord","libdbusmenu-glib","libdex","libdnf","libdsme","libedataserverui4","libfm-extra","libfprint","libgbinder","libgda6","libgda6-mysql","libgda6-postgres","libgda6-sqlcipher","libgdiplus","libgdm","libgdm-plymouth-prime","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgee","libgepub","libgexiv2","libgirepository","libgit2-glib","libglib-testing","libglibutil","libgmobile","libgnome-keyring","libgnt","libgoa","libgrss","libgtop","libgudev","libguestfs","libgusb","libgweather-4","libgxps","libhandy","libibus","libical","libidl2","libinfinity","libinsane","libinstpatch","liblangtag","libldm","liblqr","libmalcontent","libmanette","libmatemixer","libmbim","libmediaart","libmediainfo","libmirage","libmm-glib","libmodulemd","libmpd","libmypaint","libnautilus-extension","libnice","libnids","libnm","libnm-iwd","libnotify","libomemo","libosinfo","libpackagekit-glib","libpamac-aur","libpamac-flatpak","libpanel","libpeas-2","libpinyin","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libproxy","libqrtr-glib","libquvi","libratbag","librda","libreoffice-fresh","libreoffice-still","librepo","librest","librewolf","librsvg","libsearpc","libsecret","libshumate","libsigrokdecode","libslirp","libsmf","libsoup","libsoup3","libspectmorph","libspectrum","libspeechd","libspelling","libwacom","libwacom-surface","libwebsockets","libwireplumber","libwireplumber-git","libwnck","libxfce4util","libxfce4windowing","libxklavier","libxmlb","libxmlbird","light-locker","lightdm","lightdm-gtk-greeter-settings","lightdm-pantheon-greeter","lilypond","loginized","logiops","looking-glass-host-git","loudmouth","loupe","lsp-plugins-gst","lua-lgi","lua51-lgi","lua53-lgi","lutris","lutris-git","lxqt-archiver","malcontent","maliit-framework","mate-menus","mc","mcabber","mdbtools","mednaffe","megatools","meld","metacity","mintlocale","mintstick","mixxx","mmsd-git","modemmanager","moserial","mpv-mpris","msgraph","mtpfs","mtr-gtk","mullvad-browser-bin","munt-smf2wav","muse","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","nautilus","nautilus-image-converter","nautilus-share","nbd","neard","netbird-ui","netplan","networkmanager","networkmanager-iwd","networkmanager-openvpn","newsflash","niri","nm-cloud-setup","nm-iwd-cloud-setup","notion","nwg-icon-picker","nwg-look","nwg-panel","obs-gstreamer","obs-studio-tytan652","ocrfeeder","ofono","opencv","opencv-cuda","opencv2","openipmi","opensc","openscad","orca","osinfo-db-tools","ostree","pacrunner","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-code","pantheon-files","pantheon-geoclue2-agent","pantheon-mail","pantheon-music","pantheon-notifications","pantheon-onboarding","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-screenshot","pantheon-settings-daemon","pantheon-shortcut-overlay","pantheon-tasks","pantheon-terminal","pantheon-videos","paperwork","paprefs","passim","pavucontrol","pdf2svg","pdfarranger","pebbles-git","perf","performous","phoc","phodav","phpstorm","phpstorm-jre","pinentry","pipewire","pipewire-audio","pipewire-pulse","pitivi","plank","plasma-nm","plasma-pa","playerctl","plymouth","poedit","polari","polkit","polkit-consolekit","polkit-qt5","polkit-qt6","pop-bin","pop-gtk-theme-git","poppler-glib","power-profiles-daemon","pqiv","pragha","preload","profanity","profanity-gtk","protonmail-bridge-core","ptyxis","pulseaudio-equalizer-ladspa","puzzles","py3status","pycharm-community-eap","pycharm-community-edition","python-bluepy","python-dasbus","python-dbus","python-dbus-fast","python-dbusmock","python-dleyna","python-gobject","python-manimpango","python-volume_key","pyzy","qalculate-gtk","qemu-arch-extra-git","qemu-audio-dbus","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-gtk","qemu-ui-sdl","qemu-ui-spice-app","qemu-user","qemu-vhost-user-gpu","qt6-base","qt6-multimedia-gstreamer","qt6-webengine","qtcreator","qtkeychain-qt5","qtkeychain-qt6","quickdocs","qxmpp-qt5","qxmpp-qt6","r","rauc","redshift","regexxer","remmina","retro-gtk","rhythmbox","rnote","rofi-emoji","rofi-wayland","rqbit-desktop","rspamd","runescape-launcher","rygel","sane","satty","sdcv","seadrive-daemon","seahorse-nautilus","secrets","sensors-applet","setbfree-lv2","setbfree-standalone","sfizz-lv2","sfizz-vst3","share-preview","shared-mime-info","signal-desktop","signal-desktop-beta","signon-ui","simple-scan","skktools","slirp4netns","snapshot","snes9x-gtk","sofia-sip","solaar","songrec","spectmorph-tools","spice","spice-gtk","spice-vdagent","spot-client","sshfs","startdde","steam-native-runtime","stlink","strawberry","strawberry-full-git","strawberry-git","sublime-music-git","sushi","sway-git","swaybg-git","swayimg","swaylock-git","swaync","swell-foop","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","switcheroo-control","swtpm","syslog-ng","sysprof","system-config-printer","tartube","tblock-gui","tecla","telegram-desktop","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","template-glib","text-engine","themix-theme-materia-git","themix-theme-oomox-git","thunderbird","tio","totem-pl-parser","touchegg","tpm2-abrmd","tracker3","tracker3-miners","tracktion-waveform","tradingview","transmageddon","transmission-remote-gtk","tropy-bin","tuba","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ukui-menus","upower","uresourced","usbguard","usbip","usbredir","vala","vala-panel-appmenu-jayatana-git","vala-panel-appmenu-registrar","vala-panel-appmenu-registrar-git","valabind","vbam-wx","vinagre","vital-synth","vlc","vlc-luajit","vmware-horizon-client","vmware-horizon-mmr","vmware-horizon-rtav","vmware-horizon-smartcard","vmware-horizon-tsdr","vmware-horizon-usb","volume_key","vte3","vte4","wavebox-beta","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webstorm","webstorm-jre","webwatcher-git","weston","wezterm","wingpanel","wingpanel-indicator-a11y","wingpanel-indicator-bluetooth","wingpanel-indicator-datetime","wingpanel-indicator-keyboard","wingpanel-indicator-network","wingpanel-indicator-nightlight","wingpanel-indicator-notifications","wingpanel-indicator-power","wingpanel-indicator-session","wingpanel-indicator-sound","wired","wireplumber","wireshark-cli","wmctrl","wofi","wpebackend-fdo","wpewebkit","wv","wxwidgets-common","wxwidgets-gtk3","x42-plugins-lv2","x42-plugins-standalone","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xemu-git","xfce4-dev-tools","xfce4-docklike-plugin","xpipe","xscreensaver","xss-lock","zenity","zoom"],"optional_for":["clevis","fastfetch","glusterfs","intel-oneapi-basekit","libpulse","mlt","plasma-desktop","suil","visual-studio-code-bin","visual-studio-code-insiders-bin","xnviewmp"],"conflicts_with":[],"replaces":[],"download_size":5096079,"installed_size":38535168,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"45b56f3a1bba361b5175f7b4ca5c986c8d8169bd8f93b3ac2ad0adb677c2e21a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-devel","version":"2.80.5-1","description":"Low level core library - development files","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glib2","glibc","libelf","python","python-packaging"],"required_by":["ayatana-indicator-power","ayatana-indicator-session","aylurs-gtk-shell-git","gdm-settings","gdm-settings-git"],"optional_for":["glib2"],"conflicts_with":[],"replaces":[],"download_size":161361,"installed_size":1240739,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"1c4ad5b09612421b6b8974dcbda5877c2a94daa42fbec88554e61443d9c80fc2","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-docs","version":"2.80.5-1","description":"Low level core library - documentation","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later","LicenseRef-Public-Domain"],"groups":[],"provides":[],"depends_on":[],"required_by":["gtk-doc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":3355443,"installed_size":66427289,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"334e9e6c408dcf5477358426232c09c99fa83d52a5912671e40c6aa0b71d9075","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glibc","version":"2.40+r16+gaa533d58ff-2","description":"GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["linux-api-headers>=4.10","tzdata","filesystem"],"optional_deps":[{"name":"gd","description":"for memusagestat"},{"name":"perl","description":"for mtrace"}],"required_by":["3cpio","4ti2","7-zip","7-zip-full","86box","86box-git","a2jmidid","a52dec","aalib","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acl","acpi","acpica","add-determinism","adguardhome","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","adms-git","adns","advancecomp","advcpmv","aeolus","aerc","afdko","afl++","age","age-plugin-tkey","age-plugin-tpm","age-plugin-yubikey","aha","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","aisleriot","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alertmanager","ali","alicloud-vault","aliyun-cli","alligator","almanah","alsa-lib","alsa-oss","alsa-plugins","alsa-scarlett-gui","alsa-tools","alsa-utils","amarok","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","aml","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-cmdline-tools-latest","angband","angelfish","angle-grinder","anime-games-launcher-bin","antimicrox","anydesk-bin","aom","apk-tools","apko","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-rebuild-order","arch-repro-status","archinstall","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-cli","arduino-ctags","arduino-fwuploader","arduino-ide","arduino-language-server","argocd","argon2","argtable","arianna","aribb25","arj","ark","arrpc","arti","artikulate","artyfx","ascii","astyle","asunder","asusctl","asymptote","at-spi2-core","at51","atomix","attica","attr","atuin","aubio","audacity","audaspace","audex","audio-recorder","audiocd-kio","audiotube","audit","augustus","aura","aura-git","avldrums.lv2","avogadrolibs","avogadrolibs-qt5","avr-binutils","aws-c-auth","aws-c-cal","aws-c-common","aws-c-compression","aws-c-event-stream","aws-c-http","aws-c-io","aws-c-mqtt","aws-c-s3","aws-c-sdkutils","aws-crt-cpp","aws-sdk-cpp","aws-vault","axel","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","b43-fwcutter","babeld","babeltrace2","babl","babl-git","backuppc","bacon","baidupcs-go","baloo","baloo-widgets","bandwhich","banner","barcode","base","bash","bat","bcc","bcg729","bchoppr","bchunk","bear","bearssl","beep","bemenu","bemenu-ncurses","bemenu-wayland","bemenu-x11","benzene","bespokesynth","bettercap","bfs","bftpd","bibtool","bibutils","bind","binutils","biome","bird","birdfont","bison","bitcoin-daemon","bitcoin-qt","bitcoin-tx","black-hole-solver","blas","blas64","blender","blinken","blisp","bliss","blockbench-bin","blop","blop.lv2","blosc","blosc2","bluedevil","bluez","bluez-cups","bluez-deprecated-tools","bluez-hid2hci","bluez-libs","bluez-mesh","bluez-obex","bluez-qt","bluez-utils","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","bolt-launcher","bomber","bootconfig","bootiso","botan","bovo","bpf","bpf-linker","bpftrace","breeze","breeze-icons","breeze-plymouth","breeze5","breezy","brial","brickadia-launcher","bridge-utils","brltty","brook","brotli","browserpass","bsequencer","bshapr","bslizr","btop","btrfs-progs","bubblewrap","bubblewrap-suid","buckygen","buf","buho","build2","bully","bup","bustle","byacc","bzip2","bzip3","c-ares","c-xsc","cabextract","caddy","cage","cage-git","cairo","calendarsupport","calf","calindori","calligra","canto-curses","cantor","capnproto","capstone","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-audit","cargo-c","cargo-cyclonedx","cargo-deb","cargo-flamegraph","cargo-license","cargo-outdated","cargo-release","cargo-semver-checks","cargo-tarpaulin","carla","carla-git","cartridge-cli","casync","catdoc","catimg","cauchy","cbindgen","cblas","cblas64","ccache","ccd2iso","ccls","cddlib","cdemu-daemon","cdparanoia","cdrdao","cdrtools","cef-minimal-obs-bin","cemu-git","cern-vdt","cervisia","cfitsio","cfssl","charm","chatgpt-desktop-bin","chewing-editor","chezmoi","chitose","chmlib","choosenim","choria-io","chromaprint","chromium-widevine","chrony","chrootuid","chrpath","cilium-cli","citra-git","cjdns","cjson","ckermit","cksfv","clamav","clapper","clash","clazy","clblast","clipgrab","cliphist","cliquer","cloudflare-warp-bin","cloudflared","clthreads","clucene","clxclient","cm256cc","cmake","cmark","cmark-gfm","cmocka","cmt","cni-plugins","cobalt","cockroachdb-bin","codon-bin","coeurl","coin-or-asl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-csdp","coin-or-mp","coin-or-osi","colord-gtk","colord-gtk4","colord-kde","comgr","committed","communicator","compface","composable-kernel","composefs","compsize","confuse","conky","conmon","connman","conntrack-tools","consul","consul-template","container-diff","convertlit","coolercontrol","coordgen","coreutils","coreutils-hybrid-git","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","cowsql","coxeter","cpio","cpp-hocon","cppdap","cppunit","cpufetch","cpupower","cracklib","crane","crawl-ncurses","crawl-tiles","cri-o","crictl","critest","criu","croc","croc-git","crowdsec","cryfs","cryptominisat","csound","csound-plugins","csoundqt","ctags","ctop","ctrtool","cubeb","cue","cuetools","cunit","cups","cups-browsed","cups-filters","cups-pdf","cups-pk-helper","curl-rustls","curlie","cutter","cxxbridge","cycfx2prog","cyrus-sasl","cyrus-sasl-gssapi","cyrus-sasl-ldap","cyrus-sasl-sql","cython","czkawka-cli","czkawka-gui","d-spy","d2","dagger","darling-bin","dart","dart-sass","dasel","dash","dateutils","dav1d","davs2","dbmail","dbmate","dbus-c++","dbus-glib","ddrescue","debugedit","debuginfod","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-compressor","deepin-file-manager","deepin-launchpad","deepin-music","deepin-network-core","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-session","deepin-session-shell","deepin-session-ui","deepin-terminal","deepin-widgets","deepin-wloutput-daemon","deja-dup","deltachat-rpc-server","deskreen","desync","detox","device-mapper","dexed-clap","dexed-standalone","dexed-vst3","dfc","dfrs","dfu-programmer","dhclient","dhcp","dhcpcd","dhcping","dictd","diesel-cli","diffstat","difftastic","diffutils","digikam","din","ding-libs","direnv","discimagecreator-git","discord-canary-electron-bin","discord-chat-exporter-cli","discount","discover","distorm","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","distro-info","dive","djvulibre","dleyna","dma","dmenu","dmidecode","dmtcp","dnscrypt-proxy","dnsmasq","dnssec-tools","docbook2x","docker","docker-machine","doctl","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dolt","dontpanic","doomretro","dos2unix","dosfstools","dotconf","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","droidcam","drone","drone-cli","drone-oss","drone-runner-docker","drone-runner-exec","drone-runner-ssh","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dsniff","dsq","dssi","dtc","dte","dtk6core","dtk6gui","dtk6widget","dtkcore","dtkwidget","dua-cli","duf","duktape","dump_syms","dumpasn1","dune","duplicacy","dust","dvd+rw-tools","dvgrab","dvisvgm","dwayland","e-antic","earlyoom","easy-pdk","easyjson","easytag","easytether-bin","ebook-tools","ebou","ebumeter","ecasound","eclib","ecm-tools","ecos","ed","edid-decode-git","editline","editorconfig-checker","editorconfig-core-c","efibootmgr","efitools","efivar","egl-wayland","eksctl","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elinks","elisa","ell","elvish","embree","emby-ffmpeg","emby-theater","emptyepsilon","enblend-enfuse","encpipe","endless-sky","enet","enscript","entr","eog","epiphany","eq10q","erdtree","erfa","erofs-utils","esbuild","espeakup","espflash","espup","eteroj.lv2","etherape","ethtool","ettercap","ettercap-gtk","eventviews","evilginx","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","evtest","exempi","exfat-utils","exfatprogs","exim","exiv2","expat","expressvpn","extundelete","eza","faac","faad2","fabla","facter","fakeroot","falkon","fastfetch","fatresize","fatsort","faust","fbset","fcitx5-qt","fcrackzip","fdkaac","fdupes","ffcall","fflas-ffpack","ffmpeg","ffmpeg-obs","ffmpegthumbs","fftw","fftw-openmpi","fiery","fig2dev","figlet","file","file-roller","filelight","findnewest","findutils","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","fish-git","flatpak","flatpak-builder","flatpak-kcm","flex","flint","flip-link","flips","flite","flite1","flterm","fltk","fluidsynth","fluxcd","fomp.lv2","foomatic-db-engine","foremost","forgejo","fortune-mod","fossil","fping","fplll","fprintd","fq","fractal","fragments","frameworkintegration","francis","freecell-solver","freeciv","freeglut","freerdp","freerdp2","freetds","freewheeling","frei0r-plugins","fribidi","fricas","frotz-dumb","fsv3","ft2-clone","ftjam","fulcio","furnace","fuse2","fuse3","futuresql","fwupd","fx","fxload","fzy","gala","gamemode","gamescope","gamescope-git","gammaray","gammastep","gap","gap-packages","gavl","gawk","gcc-libs","gcc13-libs","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdb","gdbm","gdcm","gdk-pixbuf2","gdm","gdm-prime","gdu","geary","gedit","gedit-plugins","geeqie","gegl","gen2shp","genxrdpattern","geoclue","geoipupdate","geonkick-lv2","geonkick-standalone","geonkick-vst3","geph4-client","gf2x","gfan","gfold","ghostscript","ghostwriter","ghq","giac","giada","gif2png","giflib","gigedit","giggle","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","girara","git-cinnabar","git-cliff","git-credential-gopass","git-delta","git-evtag","git-smash","git-warp-time","gitg","github-cli","gitlab-gitaly","gitlab-runner","gitleaks","gitoxide","gitui","givaro","gjs","glab","glew","glew1.10","glewlwyd","glib-networking","glib2","glib2-devel","glibc-locales","glibmm-2.68","glider","glow","glpk","glu","glycin","gmic","gmime3","gmp","gmp-ecm","gmsynth.lv2","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-mahjongg","gnome-maps","gnome-mplayer","gnome-multi-writer","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnu-netcat","gnugo","gnupg","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnutls","go-ethereum","go-licenses","go-swagger","go-task","go-tools","go-yq","goaurrpc","gobject-introspection","gocr","gocryptfs","godot-mono","goffice","goimapnotify","gojq","goldendict-webengine-pr-git","gom","gomuks","goobox","goocanvas","google-glog","google-webdesigner","gopass-hibp","gopass-jsonapi","gopass-summon-provider","gopsuinfo","goreleaser","gost","gotop","gotosocial","gox","gpac","gpart","gpaste","gperf","gperftools","gpgme","gpsmanshp","gputils","gqrx","grafana","grafana-agent","grafana-agentctl","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","greetd","greetd-regreet","grep","gron","grub-customizer","gsl","gsm","gsocket","gsound","gssproxy","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtest","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtksourceview5","gtksourceviewmm","gtranslator","gtuber","guestfs-tools","guile1.8","guitarix","gum","gumbo-parser","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gvim","gwenview","gxplugins.lv2","gzip","halibut","harfbuzz","harfbuzz-cairo","harfbuzz-icu","harfbuzz-utils","haruna","harvid","hashcash","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","hatari","haveged","hck","hcloud","hcxdumptool","hdapsd","hdparm","headscale","heaptrack","heimdall","heimdall-grimler-git","helix","helm","helmfile","helvum","hepmc","hexter","hey","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hiredis","hivex","hoel","hostapd","hostess","hotdoc","hound","hplip","hsa-amd-aqlprofile-bin","hsa-rocr","hsakmt-roct","hspell","htmlcxx","http-parser","httptunnel","hugo","hunspell","hurl","hut","hwloc","hydra","hydrogen","hyperv","hyphen","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","i3blocks","i3lock","iaito","iat","icon-library","icu","id3lib","id3v2","iddawc","idle3-tools","iempluginsuite-standalone","iempluginsuite-vst3","igraph","ijs","imagemagick","imagescan","imaginary","imake","imath","imd-git","iml","incidenceeditor","include-what-you-use","indent","index-fm","inetutils","infamousplugins","iniparser","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","insync","intel-metee","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","intel-undervolt","ioping","iotop-c","iperf","iperf3","ipp-usb","iproute2","ipset","iptstate","ipvsadm","irqbalance","irssi","isatapd","isoimagewriter","ispc","istio","itcl3","itinerary","itk-snap-bin","iucode-tool","iwd","j4-dmenu-desktop","jack-example-tools","jack-stdio","jack2","jack2-dbus","jack_delay","jack_mixer","jack_utils","jackett","jackmeter","jackminimix","jacktrip","jalv","jami-daemon","jansson","japa","jasper","java-rxtx","jbig2dec","jbigkit","jc303-clap","jc303-lv2","jc303-vst3","jconvolver","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jdupes","jellyfin-ffmpeg","jemalloc","jhead","jitterentropy","jnoisemeter","jo","joshuto-git","jpegoptim","jq","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","json-c","json-glib","jsonrpc-glib","juce","judy","jujutsu","juk","julius","jxrlib","k3b","k9s","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbd","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcptun","kcpuid","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","keepalived","kernelshark","kexi","keysmith","keyutils","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","klystrack-plus","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmod","kmousetool","kmouth","kmplot","knative-client","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","ko","koko","kolf","kollision","kolourpaint","kommit","kompare","kompose","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krb5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kube-apiserver","kube-controller-manager","kube-linter","kube-proxy","kube-scheduler","kubeadm","kubeconform","kubectl","kubectl-ingress-nginx","kubectx","kubelet","kubeseal","kubo","kubrick","kunitconversion","kup","kuserfeedback","kustomize","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwallet-pam","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","l-smash","labplot","ladspa","lantern-bin","lapack","lapack64","lapacke","lapacke64","lasem","latte-integrale","layer-shell-qt","lazygit","lbzip2","lcalc","ld-lsb","ldproxy","lean4-git","leatherman","legba","lego","lemon","lensfun-git","leocad","less","lf","lf-git","lftp","lhasa","lib32-glibc","lib32-glibc-eac","lib32-glibc-eac-roco","lib32-opencore-amr","lib3mf","libabigail","libabw","libaccounts-glib","libaccounts-qt","libad9361","libadwaita","libadwaita-demos","libaec","libaio","libajantv2","libakonadi","libao","libappimage","libappindicator-gtk2","libappindicator-gtk3","libass","libassuan","libasyncns","libatasmart","libatomic_ops","libavc1394","libavif","libayatana-appindicator","libayatana-indicator","libb2","libb64","libbaseencode","libblastrampoline","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libbluray","libbpf","libbraiding","libbsd","libburn","libc++","libc++abi","libcaca","libcacard","libcalfbox-lss","libcamera","libcamera-ipa","libcamera-tools","libcap","libcap-ng","libcbor","libcdaudio","libcddb","libcdio-paranoia","libcdr","libcerf","libcgif","libck","libclapper","libclapper-gtk","libcli","libcmis","libconfig","libcoverart","libcpuid","libcue","libcups","libcupsfilters","libcutl","libcyaml","libdaemon","libdatachannel","libdatrie","libdbi","libdc1394","libdca","libde265","libdeflate","libdex","libdispatch","libdisplay-info","libdmtx","libdovi","libdrm","libdv","libdvbpsi","libdvdcss","libdvdnav","libdvdread","libe-book","libebur128","libedataserverui4","libedit","libei","libelf","libepoxy","libepubgen","libetebase","libetonyek","libetpan","libev","libevdev","libewf","libexif","libexttextcat","libfabric","libfdk-aac","libffado","libffi","libffi7","libfido2","libfilezilla","libfilteraudio","libfixposix","libfontenc","libforensic1394","libfprint","libfreeaptx","libfreehand","libfreexl","libgcrypt","libgcrypt15","libgda6","libgda6-mysql","libgda6-postgres","libgdm","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgexiv2","libgfshare","libgig","libgirepository","libgit2","libgit2-glib","libgme","libgoa","libgoom2","libgpg-error","libgravatar","libgssglue","libgtop","libguestfs","libgweather-4","libheif","libhomfly","libhx","libical","libice","libiconv","libid3tag","libidn","libidn11","libiio","libimobiledevice","libimobiledevice-git","libimobiledevice-glue","libindi","libinih","libinput","libinsane","libinstpatch","libiptcdata","libirman","libiscsi","libixion","libjodycode","libjpeg-turbo","libjpeg6-turbo","libjuice","libkate","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeccak","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libklvanc-git","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libksba","libkscreen","libksieve","libksysguard","libktorrent","liblangtag","liblc3","libldac","libliftoff","libliftoff-git","libliquidsfz","liblo","liblockfile","liblouis","liblqr","liblscp","liblsp-r3d-glx-lib","libltc","liblzf","libmad","libmalcontent","libmanette","libmatio","libmaxminddb","libmcrypt","libmd","libmediaart","libmediainfo","libmesode","libmicrodns","libmikmod","libmirage","libmms","libmng","libmnl","libmpc","libmpcdec","libmpdclient","libmpeg2","libmspack","libmspub","libmsym","libmtp","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmypaint","libmythes","libnatpmp","libnautilus-extension","libnbd","libndp","libnet","libnfnetlink","libnfs","libnghttp2","libnghttp3","libngtcp2","libnitrokey","libnl","libnm","libnm-iwd","libnova","libnpupnp","libnsl","libnumbertext","libnvidia-container","libodfgen","libogg","libomemo-c","libomxil-bellagio","libopenmpt","libopenshot","libopenshot-audio","libopusenc","liborcus","liborigin","libosinfo","libotr","libp11-kit","libpagemaker","libpaper","libpcap","libpciaccess","libpeas-2","libpg_query","libpgm","libphonenumber","libpillowfight","libpipeline","libpipewire","libplacebo","libplasma","libplist","libplist-git","libpng12","libportal","libportal-qt5","libportal-qt6","libppd","libprocps","libproxy","libpwquality","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libqb","libquotient","libqxp","libraqm","libraw","libraw1394","librda","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreplaygain","libressl","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-blastem","libretro-dolphin","libretro-kronos","libretro-mame","libretro-mame2016","libretro-mesen-git","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-opera-git","libretro-pcsx2","libretro-picodrive","libretro-play","libretro-ppsspp","libretro-sameboy","libretro-stella2014-git","libretro-yabause","librevenge","librewolf","librime","librsvg","librtmp0","librustls","libsamplerate","libsasl","libsbsms","libseccomp","libsecp256k1","libsemigroups","libsepol","libserialport","libshumate","libsidplayfp","libsignal-protocol-c","libsigsegv","libsm","libsmbios","libsndfile","libsodium","libsoup3","libspecbleach","libspectmorph","libspectre","libspelling","libspf2","libspiro","libspnav","libspng","libssh","libstaroffice","libstemmer","libstrophe","libsynctex","libtasn1","libtatsu-git","libthai","libtheora","libtiff","libtiff5","libtirpc","libtommath","libtool","libtraceevent","libtracefs","libtsm","libuecc","libultrahdr","libumem-git","libunibreak","libunistring","libunrar","libunwind","libupnp","libupnpp","liburcu","libusb","libusbmuxd","libusbmuxd-git","libusbsio","libutempter","libuv","libuvc","libva-mesa-driver","libvdpau-va-gl","libverto","libvisio","libvpx","libvpx1.3","libvterm","libvterm-0.1","libwacom","libwacom-surface","libwebp","libwebsockets","libwhereami","libwhich","libwireplumber","libwlocate","libwmf","libwnck","libwpd","libwpg","libwps","libx11","libx86","libxau","libxaw","libxcb","libxcb-git","libxcomposite","libxcrypt","libxcursor","libxcvt","libxcvt-git","libxdamage","libxdg-basedir","libxdmcp","libxext","libxfixes","libxfont2","libxft","libxi","libxinerama","libxisf","libxkbcommon","libxkbcommon-x11","libxkbfile","libxklavier","libxml++-5.0","libxml2","libxmp","libxmu","libxp","libxpm","libxpresent","libxrandr","libxrender","libxres","libxsd-frontend","libxshmfence","libxslt","libxss","libxt","libxtst","libxv","libxvmc","libxxf86vm","libyaml","libytnef","libzen","libzmf","lidia","light-locker","lightdm-pantheon-greeter","lilv","lilypond","limine","linbox","lincity-ng","link-grammar","linux-atm","linuxsampler","linuxtv-dvb-apps","liquid-dsp","liquid-dsp-sse4.1","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","lksctp-tools","lldb-mi","lldpd","llvm-julia","llvm-julia-libs","lm_sensors","lmdb","lmms","lockfile-progs","logcli","lokalize","loki","loki-canary","looking-glass-git","looking-glass-host-git","lorcon","loupe","lout","lowdown","lprint","lpsolve","lrcalc","lrs","lskat","lsof","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lttng-ust2.12","lua-lgi","lua51-lgi","lua53-lgi","luametatex","luau","luppp","lv2file","lv2lint","lxqt-config","lxsplit","ly","lynx","lz4","lzo","m17n-db","m4","m4ri","m4rie","mac","macchanger","macfanctld","maeparser","mailcommon","mailimporter","make","malcontent","maliit-framework","mame","mame-tools","man-db","mandown","marble","marble-common","marble-maps","marble-qt","markdownpart","marknote","masscan","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","mattermost","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","mawk","maxcso","maxcso-git","mbedtls","mbedtls2","mbelib","mbox-importer","mbpfan-git","mbuffer","mc","mcpp","mcqd","md4c","mda.lv2","mdadm","mdf2iso","mediaelch","mednaffe","meek","melange","memcached","memtester","mencoder","mephisto.lv2","merkuro","mesa","mesa-demos","mesa-utils","mesa-vdpau","meshbird","messagelib","metacity","metalog","mgard","mhash","microsocks","midi_matrix.lv2","mihomo","milkytracker","miller","milou","mimalloc","mimetreeparser","mimir","mingw-w64-tools","minieap","miniflux","minikube","minio","minio-client","minitube","miniupnpc","minizip","minizip-ng","minuet","miopen-hip","mixxx","mjpegtools","mkcert","mkinitcpio-busybox","mkinitcpio-nfs-utils","mkvtoolnix-cli","mlocate","mlt","mmctl","mmsrip","mod_dnssd","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","mongodb-tools","moony.lv2","moserial","mosquitto","mp3guessenc-beta","mpc","mpd","mpdecimal","mpfi","mpfr","mplayer","mpv","mpvqt","mscp","msgpack-c","msgraph","msolve","msr-tools","mtdev","mtools","mtr","mtr-gtk","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","mupdf","mupdf-gl","mupdf-tools","muse","musepack-tools","musescore","mutt","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mxml","mympd","mysql-workbench","mystiq","naiveproxy","nano","nanomsg","nanosvg","nasm","nautilus","nautilus-image-converter","nautilus-share","nauty","navidrome","nawk","nbtscan","nccl","ncmpc","ncmpcpp","ncompress","ncspot","ncurses","ncurses5-compat-libs","ndisc6","neard","neatvnc","nebula","neochat","neomutt","neon","neovide","neovide-git","net-tools","netavark","netbird","netbird-management","netbird-signal","netbird-ui","netbrake","nethsm-cli","nethsm-pkcs11","netpbm","netperf","netplan","netsniff-ng","nettle","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","nfsidmap","nginx","nginx-mainline","nginx-mod-njs","nginx-prometheus-exporter","nickel","nickel-language-server","niri","nix","nixpacks","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-repellent","noise-suppression-for-voice","nomacs","nomad","nomad-driver-nspawn","normaliz","notcurses","npth","nrg2iso","nrpe","nspr","nspr-hg","nss","nss-mdns","nsxiv","ntk","ntl","numactl","nushell","nuspell","nut","nvidia-cg-toolkit","nvidia-container-toolkit","nwg-look","nyancat","nyxt","oath-toolkit","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-gstreamer","obs-plugin-looking-glass-git","obs-rtspserver","obs-studio-tytan652","ocaml-augeas","ocaml-csexp","ocaml-intrinsics-kernel","ocaml-pp","ocaml-stdio","ocl-icd","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","oha","oidentd","oil","okteta","okular","okularpart5","onnx","opencl-clover-mesa","opencl-rusticl-mesa","opencore-amr","opencv","opencv-cuda","opendht","openexr","openfec","openfortivpn","openjade","openjpeg2","openlibm","openmpi","openntpd","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openpmix","openscad","opensearch-cli","opensmtpd-filter-rspamd","opensmtpd-filter-senderscore","opensnitch","openssh","openssl","openssl-1.0","openssl-1.1","opentimelineio","opentofu","openucc","openucx","openvkl","openzwave","opera-beta-ffmpeg-codecs","operator-sdk","opnplug-lv2","opnplug-standalone","opnplug-vst","optipng","opus","orc","orcania","oscpack","osinfo-db-tools","ospray","osquery","ostree","osv-scanner","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owl-lisp","owncloud-client","oxygen","oxygen5","oxyromon","p11-kit","p2pool","pack-cli","packagekit-qt5","packagekit-qt6","packer","packwiz-git","pacman","pacman-bintrans","pacman-bintrans-tools","pacman-git","pacoloco","pacquery","pacutils","padthv1-lv2","padthv1-standalone","pahole","palapeli","palp","pam","pam_mount","pam_wrapper","pamixer","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-files","pantheon-geoclue2-agent","pantheon-music","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-settings-daemon","pantheon-videos","paperkey","papilo","pappl","paprefs","pari","parley","partitionmanager","passt","patch","patchmatrix","pavucontrol","pax","pciutils","pcre","pcre2","pcsc-perl","pd","pd-lua","pd-sfizz","pdfcrack","pdnsd","peco","perf","performous","perl","perl-crypt-des","perl-file-fcntllock","perl-io-tty","perl-sub-prototype","perl-term-readkey","pesign","pgbouncer","pgpdump","phodav","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-igbinary","php-imagick","php-legacy-igbinary","php-legacy-imagick","php-legacy-redis","php-redis","picard","picmi","picocom","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pinentry","pingu","pint","pipe-rename","pipectl","pipewire","pipewire-audio","pipewire-ffado","pipewire-jack","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-v4l2","pipewire-x11-bell","pipewire-zeroconf","pitivi","pixiewps","pixman","pkgconf","planarity","plank","plantri","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","playerctl","plfit","plumber","plymouth","plymouth-kcm","podman","podman-desktop","poedit","polari","polkit","polkit-kde-agent","polkit-qt5","polkit-qt6","polly-git","polymake","polyphone","pop-bin","pop-launcher","popeye","poppler","poppler-glib","poppler-qt5","poppler-qt6","popt","portaudio","portmidi","portsmf","posix","postfix","postfix-cdb","postfix-ldap","postfix-lmdb","postfix-mongodb","postfix-mysql","postfix-pcre","postfix-pgsql","postfix-sqlite","postgresql","postgresql-libs","potrace","power-profiles-daemon","powerdevil","powerline","powershell-bin","poxml","ppl","ppp","ppsspp","pqiv","premake","presage","primecount","primesieve","print-manager","prismlauncher","prison","processing","procinfo-ng","procps-ng","procs","profanity","profanity-gtk","proftpd","prometheus","prometheus-bird-exporter","prometheus-blackbox-exporter","prometheus-elasticsearch-exporter","prometheus-ipmi-exporter","prometheus-json-exporter","prometheus-memcached-exporter","prometheus-mysqld-exporter","prometheus-node-exporter","prometheus-nut-exporter","prometheus-postgres-exporter","prometheus-smartctl-exporter","prometheus-smokeping-prober","prometheus-snmp-exporter","prometheus-ssl-exporter","prometheus-systemd-exporter","prometheus-unbound-exporter","prometheus-varnish-exporter","promtail","protobuf","protobuf-21","protonmail-bridge","protonmail-bridge-core","proxychains-ng","proxytunnel","prrte","pt2-clone","ptyxis","pulseaudio-qt","pulumi","pup","purpose","puzzles","pv","pwgen","pwninit","pwru","pyside6","pythia8","python-aioquic","python-asyncpg","python-aubio","python-audit","python-autobahn","python-awscrt","python-axolotl-curve25519","python-blosc2","python-capng","python-cbor2","python-ciso8601","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-coverage","python-cramjam","python-crc32c","python-crcmod","python-cvxopt","python-cvxpy","python-cwcwidth","python-cylp","python-cypari2","python-cysignals","python-cytoolz","python-datrie","python-dbus","python-dbus-fast","python-debugpy","python-ecos","python-evdev","python-falcon","python-fastbencode","python-fastnumbers","python-fastparquet","python-fpylll","python-gammu","python-gmpy2","python-gobject","python-gpgme","python-gssapi","python-igraph","python-iminuit","python-iwlib","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-lxc","python-markupsafe","python-materialyoucolor-git","python-miniupnpc","python-mitmproxy-rs","python-ml-dtypes","python-multidict","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-osqp","python-patiencediff","python-pendulum","python-pikepdf","python-pillow","python-pillowfight","python-pivy","python-pplpy","python-primecountpy","python-psutil","python-psycopg2","python-pyalsa","python-pyarrow","python-pybluez","python-pycapnp","python-pycosat","python-pycrdt","python-pycuda","python-pycups","python-pycurl","python-pydantic-core","python-pyerfa","python-pygame","python-pygit2","python-pykcs11","python-pyliblo","python-pylorcon2","python-pymongo","python-pymupdf","python-pynacl","python-pynormaliz","python-pyopencl","python-pyqt5-sip","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-sip","python-pyqt6-webengine","python-pyrsistent","python-pyscipopt","python-pysequoia","python-pytables","python-pythia8","python-pywayland","python-pywlroots","python-qdldl","python-qrencode","python-rapidfuzz","python-rcssmin","python-reflink","python-regress","python-rjsmin","python-rpds-py","python-rtmidi","python-scipy","python-scrypt","python-scs","python-simplejson","python-sqlalchemy","python-sqlalchemy1.4","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-tornado","python-tpm2-pytss","python-ulid-transform","python-urwid","python-uvloop","python-vigra","python-volume_key","python-watchfiles","python-webrtcvad","python-xapian","python-xkbcommon","python-xmlsec","python-y-py","python-yaml","python-yara","python-yarl","python-zita-audiotools","python-zita-jacktools","python-zope-interface","python-zope-proxy","python-zope-security","python-zopfli","qalculate-gtk","qalculate-qt","qastools","qbe","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcoro-qt5","qcoro-qt6","qd","qemu-audio-alsa","qemu-audio-dbus","qemu-audio-jack","qemu-audio-oss","qemu-audio-pa","qemu-audio-pipewire","qemu-audio-sdl","qemu-audio-spice","qemu-block-curl","qemu-block-dmg","qemu-block-gluster","qemu-block-gluster-git","qemu-block-iscsi","qemu-block-iscsi-git","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-chardev-spice","qemu-common","qemu-guest-agent","qemu-hw-display-qxl","qemu-hw-display-virtio-gpu","qemu-hw-display-virtio-gpu-gl","qemu-hw-usb-host","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-egl-headless","qemu-ui-gtk","qemu-ui-opengl","qemu-ui-sdl","qemu-ui-spice-app","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qhull","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qprint","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegen-cmake","qrcodegencpp-cmake","qrupdate","qsampler","qsopt-ex","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtile","qtkeychain-qt5","qtkeychain-qt6","qtractor","quota-tools","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","r8168-dkms","r8168-lts","radamsa","radare2","radeon-profile-git","radeontop","radvd","rage-encryption","rankwidth","raptor","rasqal","rauc","rav1e","rbutil","rbw","rccl","rclone","rclone-git","rcs","rdfind","rdma-core","readline","readstat","reapack","reaper","reaver","recastnavigation","recode","redland","redland-storage-mysql","redland-storage-postgresql","redland-storage-sqlite","redland-storage-virtuoso","redshift","redshift-minimal","regexxer","rekor","release-cli","remake","remmina","reprepro","repro-env","repro-get","reproc","reptyr","restic","restic-git","retro-gtk","retroarch","retry","retsnoop","rev-plugins","revive","rgbds","rhash","rhonabwy","rhythmbox","rio","river","rizin","rkcommon","rkward","rlwrap","rnnoise","roc-toolkit","rocalution","rocblas","rocfft","rocm-dbgapi","rocm-gdb","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rofi-wayland","rog-control-center","rootlesskit","ropr","rosegarden","roswell","rpcbind","rpcsvc-proto","rpi-imager","rq","rqbit","rqbit-desktop","rqlite","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rt-tests","rtaudio","rtl-sdr","rtl-sdr-git","rtmidi","rtmpdump","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","ruby-erb","ruby-pg","ruby-racc","ruby-rugged","ruby-thin","ruff","run-parts","runescape-launcher","rust","rustc-demangle","rustic","rustow-git","rygel","rz-ghidra","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","sane","sane-airscan","satty","sbc","sbsigntools","sc3-plugins","scaleway-cli","scanmem","scc","sccache","schedtool","scip","scponly","scrcpy","scrypt","sddm","sddm-git","sddm-kcm","sdl12-compat-git","sdl2","sdparm","seadrive-daemon","seahorse-nautilus","sed","selene","senpai","sensors-applet","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serd","serie","setbfree-lv2","setbfree-standalone","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sfsexp","sg-323-clap","sg-323-vst3","sg3_utils","sh4d0wup","shaderc","shadow","shadowsocks-rust","shadowsocks-v2ray-plugin","shared-mime-info","shared_meataxe","sharutils","sheldon","sherlock.lv2","shfmt","shfs-utils","shiboken6","shine","shntool","shuffle","signal-desktop","signify","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","sile","simple-scan","singular","sip4","sipcalc","sirocco","skaffold","skanlite","skanpage","skate","skladnik","slack-electron","slack-term","sleuthkit","slirp4netns","slowhttptest","slurm-llnl","smb4k","smplayer","snappy","snapshot","snd","sniffnet","soapyaudio","socat","sofia-sip","soft-serve","softmaker-office-2024-bin","soju","solid","songrec","sonic-visualiser","sonivox","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sops","sorcer","sord","sound-gambit","sowing","spandsp","spawn-fcgi","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","spglib","spin","spire-agent","spire-server","spot-client","spytrap-adb","sqlc","sqlite","sqlite-analyzer","sqlite-tcl","squashfs-tools","squashfuse","sratom","srrdb-terminal-client","srs-state-threads","ssh-openpgp-auth","ssh-tpm-agent","sshd-openpgp-auth","sshx","sslh","sslscan","sslsplit","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","startdde","startup-notification","staticcheck","stdoutisatty","steam","stellarsolver","step","step-ca","step-cli","stern","stk","stlink","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stumpwm","subversion","sudo","sudo-git","suil","suitesparse","suitesparse-graphblas","sundials","supercollider","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","svt-av1","svt-av1-git","svt-hevc","svt-vp9","sway-git","swaybg-git","swayidle-git","swaylock-git","sweeper","swell-foop","swh-plugins","swig","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","sws","swww","symengine","symlinks","symmetrica","sympol","sympow","syncthing","syncthing-discosrv","syncthing-relaysrv","syndication","synology-drive","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysfsutils","syslog-ng","sysprof","system-config-printer","system76-firmware","system76-scheduler","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","t1utils","tabiew","tachyon","taglib","taglib1","tailscale","talhelper","talkfilters","talloc","talosctl","tangler","tanka","tar","tbtools","tcc","tcpdump","tcplay","tcsh","tdb","tea","teams","teamspeak3-server","tecla","tekton-cli","telegraf","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","telly-skout","tempo","termshark","terraform","terragrunt","testu01","texlab","texlive-bin","texmaker","text-engine","tflint","tgpt","thc-ipv6","threadweaver","thunderbird","tidy","time","timescaledb-tune","timidity++","tiny","tinycdb","tinycompress","tinyproxy","tinyssh","tinyxml2","tio","tlsh","tmon","tnftp","tokodon","tokodon-git","tomlplusplus","toolame","topcom","tor","totem-pl-parser","tpm2-pkcs11","tpm2-tools","trace-cmd","traceroute","tracker3","tracker3-miners","tracktion-waveform","tradingview","traefik","tre","tree","tree-sitter-git","trivy","tropy-bin","trurl","tslib","ttfautohint","tty-clock","tuba","tup","turbo","turbostat","twolame","typst","typst-lsp","uavs3d-git","ucl","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ulfius","umbrello","umoci","umu-launcher","umurmur","unarj","unbound","unibilium","unicorn","unixodbc","unrar","unrar-free","unrtf","up","updlockfiles","upower","upterm","usbguard","usbip","usbutils","util-linux","util-linux-libs","uutils-coreutils","uv","uwsgi","uwsgi-plugin-cgi","uwsgi-plugin-lua51","uwsgi-plugin-mono","uwsgi-plugin-php","uwsgi-plugin-php-legacy","uwsgi-plugin-psgi","uwsgi-plugin-pypy","uwsgi-plugin-python","uwsgi-plugin-rack","uwsgi-plugin-webdav","uwsgi-plugin-zabbix","uwufetch","v2ray","vala","valabind","vale","valgrind","vals","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vault","vaultwarden","vcpkg","vde2","vector-blf","vegeta","veracrypt","verdict","vhs","vid.stab","vifm","vigra","vim","vimiv","vinagre","vinegar","vinegar-git","virtiofsd","virtualbox","virtualbox-guest-utils","virtualbox-guest-utils-nox","virtualbox-kvm","visitors","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","vivaldi-ffmpeg-codecs","vlang-git","vlc","vlc-luajit","vm.lv2","vmpk","vo-amrwbenc","volta","volume_key","vpnc","vscodium","vscodium-git","vsftpd","vte-common","vte3","vte4","vtk","vulkan-icd-loader","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","vultr-cli","vvave","wabt","wacomtablet","wakatime","wasm-component-ld","watchexec","wavemon","wavpack","waybar","wayland","wayland-chromium","wayland-git","wayland-utils","waylock","wayvnc","wcslib","webhook","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","websocat","weston","wezterm","wgcf","wget","which","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","whowatch","wiiuse","wildmidi","winbox","wireguard-vanity-address","wireplumber","wireproxy","wireshark-cli","wireshark-qt","wiresmith","wishbone-utils","wit","wl-clip-persist","wl-mirror","wldash","wlr-randr","wlroots-git","wluma","wob","wofi","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","wolfssl","woodpecker-agent","woodpecker-cli","woodpecker-server","worker-build","workerd","wpa_supplicant","wpewebkit","wrangler","wstunnel","wv","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x264","x42-plugins-lv2","x42-plugins-standalone","x86_energy_perf_policy","xapian-core","xavs2","xaw3d","xcb-util","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-renderutil","xcb-util-wm","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdg-desktop-portal-wlr","xemu-git","xevd","xeve","xf86-input-elographics","xf86-input-evdev","xf86-input-libinput","xf86-input-libinput-git","xf86-input-void","xf86-input-wacom","xf86-video-amdgpu","xf86-video-ati","xf86-video-dummy","xf86-video-fbdev","xf86-video-intel","xf86-video-nouveau","xf86-video-qxl","xf86-video-sisusb","xf86-video-vesa","xf86-video-vmware","xf86-video-voodoo","xfsdump","xjadeo","xmlsec","xmonad-dbus","xmonad-utils","xmonk.lv2","xmrig","xmrig-donateless","xorg-appres","xorg-bdftopcf","xorg-font-util","xorg-fonttosfnt","xorg-iceauth","xorg-mkfontscale","xorg-server","xorg-server-xephyr","xorg-server-xnest","xorg-server-xvfb","xorg-sessreg","xorg-x11perf","xorg-xauth","xorg-xbiff","xorg-xclipboard","xorg-xconsole","xorg-xdm","xorg-xedit","xorg-xev","xorg-xeyes","xorg-xfontsel","xorg-xkbcomp","xorg-xkbutils","xorg-xload","xorg-xlsfonts","xorg-xman","xorg-xmessage","xorg-xpr","xorg-xprop","xorg-xrdb","xorg-xrefresh","xorg-xwayland","xorg-xwd","xorgxrdp","xscreensaver","xsd","xss-lock","xsv","xtmsplit","xtrlock","xvidcore","xvkbd","xwax","xwaylandvideobridge","xxhash","yabridge","yabridgectl","yaegi","yajl","yakuake","yamdi","yaml-cpp","yamlfmt","yara","yasm","yder","ydotool","yggdrasil","yoshimi-lv2","yoshimi-standalone","yubico-piv-tool","yubikey-touch-detector","yyjson","yyjson-git","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenity","zeromq","zfp","zh-autoconvert","zimg","ziproxy","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zix","zk","zlib","zlib-ng","zmap","zopfli","zoxide","zps","zrepl-git","zsa-wally-cli","zsh-theme-powerlevel10k-git","zstd","zsync","zxing-cpp","zycore-c","zynaddsubfx","zzuf"],"optional_for":["tzdata"],"conflicts_with":[],"replaces":[],"download_size":10359930,"installed_size":49954160,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"c87c0e71fd03472918dc052b5833d5568ab62866e8259d28ab453ffc4bcf8291","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"glibc-locales","version":"2.40+r16+gaa533d58ff-2","description":"Pregenerated locales for GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc=2.40+r16+gaa533d58ff"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":12247367,"installed_size":231672381,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"7d6e57f5a634f5002ced415fef3435efe7b91855cc6ab9f9b4c620f041eb2170","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gmp","version":"6.3.0-2","description":"A free library for arbitrary precision arithmetic","architecture":"x86_64","url":"https://gmplib.org/","licenses":["GPL-2.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc"],"required_by":["4ti2","afpfs-ng","bigloo","blender","cddlib","cgal","clasp-cl-git","cln","coreutils","coreutils-hybrid-git","cryptominisat","dnsmasq","e-antic","ecl","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","epiphany","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","flint","fplll","gambas3-gb-gmp","gap","gfan","ghc-libs","giac","givaro","glpk","gmp-ecm","gnuradio","gnustep-base","gnutls","guile","guile1.8","guile2.2","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","igraph","iml","jellyfin-ffmpeg","john","kcalc","latte-integrale","lean4-git","lib32-gmp","libisl","libktorrent","libmpc","libpoly","libqalculate","libtomcrypt","lidia","looking-glass-git","lrs","maude","maxima-sbcl","miktex","minetest-git","minetest-server-git","mlton","mpfi","mpfr","msolve","nettle","nftables","normaliz","ntl","ocaml-zarith","openpgp-ca","openpgp-ca-restd","openscad","papilo","pari","polymake","polyml","ppl","python-fpylll","python-gmpy2","python-johnnycanencrypt","python-pplpy","python-pycryptodome","python-pysequoia","python-symengine","qsopt-ex","rocm-gdb","ruby","ruby2.7","sagemath","scip","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","sh4d0wup","singular","snd","soplex","ssh-openpgp-auth","sshd-openpgp-auth","stress-ng","strongswan","suitesparse","symengine","sympol","texlive-bin","topcom","xmap-git","xmonad-utils","yices","zmap"],"optional_for":["crystal"],"conflicts_with":[],"replaces":[],"download_size":453498,"installed_size":1061550,"packager":"Antonio Rojas ","build_date":"Wed 17 Apr 2024 06:01:38 PM +08","md5_sum":null,"sha_256_sum":"286c23ed38d46f803a19d06ca46dc67d96805f7805f7b9818cf9c0ca65a69326","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"gnupg","version":"2.4.5-4","description":"Complete and free implementation of the OpenPGP standard","architecture":"x86_64","url":"https://www.gnupg.org/","licenses":["BSD-2-Clause","BSD-3-Clause","BSD-4-Clause","CC0-1.0","GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.1-or-later","LGPL-3.0-or-later OR GPL-2.0-or-later","MIT","Unicode-TOU"],"groups":[],"provides":[],"depends_on":["glibc","gnutls","libgcrypt","libgpg-error","libksba","libldap","libusb","pinentry","sh","sqlite","tpm2-tss","zlib","bzip2","libbz2.so=1.0-64","libassuan","libassuan.so=9-64","npth","libnpth.so=0-64","readline","libreadline.so=8-64"],"optional_deps":[{"name":"pcsclite","description":"for using scdaemon not with the gnupg internal card driver"}],"required_by":["archlinux-repro","browserpass","debian-archive-keyring","debian-ports-archive-keyring","distrobuilder","duplicity","gpgit","gpgme","grub2-signing-extension","jetring","nitrocli","pacman","pacman-git","pass","perl-gnupg-interface","playonlinux","python-gnupg","python-gnupginterface","python-ipalib","repose","thunderbird","tomb-git","torbrowser-launcher","ubuntu-keyring","visual-studio-code-bin","visual-studio-code-insiders-bin"],"optional_for":["archiso","archiso-git","debootstrap","diffoscope","in-toto","keepass-plugin-keeagent","mkinitcpio-archiso","mkosi","mkosi-git","notmuch","s3cmd","yadm","yubikey-touch-detector"],"conflicts_with":[],"replaces":[],"download_size":2820669,"installed_size":10160701,"packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:31:38 AM +08","md5_sum":null,"sha_256_sum":"36a028db83e02c22de6ec8d32608ec08d88ca9b4a60edfeac7656b81d3114052","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gnutls","version":"3.8.7-1","description":"A library which provides a secure layer over a reliable transport layer","architecture":"x86_64","url":"https://www.gnutls.org/","licenses":["GPL-3.0-or-later AND LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc","gcc-libs","gmp","libtasn1","zlib","nettle","libp11-kit","libidn2","zstd","libidn2.so=0-64","libunistring","brotli"],"optional_deps":[{"name":"tpm2-tss","description":"support for TPM2 wrapped keys"}],"required_by":["apt","aria2","ario","chrony","claws-mail","connman","connman-git","criu","cups","dnsdist","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","emby-ffmpeg","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","fwupd","gcr-4","glewlwyd","glib-networking","gloox","gnome-control-center","gnupg","gnustep-base","gsasl","gtk-vnc","gwenhywfar","haskell-gnutls","hefur","jami-daemon","jellyfin-ffmpeg","knot","knot-resolver","lftp","lib32-gnutls","libcamera","libcups","libcurl-gnutls","libetpan","libfilezilla","libgadu","libinfinity","libjcat","libmicrohttpd","libnbd","libnice","libpamac-aur","libpamac-flatpak","librelp","librtmp0","libvirt","libvncserver","libzip","loudmouth","mailutils","mpop","nbd","neatvnc","neomutt","nullmailer","openconnect","opendht","pamac-aur","pamac-flatpak","passim","pkcs11-helper","powerdns","ptyxis","qemu-arch-extra-git","qemu-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-user","qpdf","radcli","rhonabwy","rpi-imager","rtmpdump","samba","sane-airscan","smbclient","squid","swtpm","task","taskd","tigervnc","ulfius","valent-git","vlc","vlc-git","vlc-luajit","vte3","vte4","weechat","wget","wget2","wine-staging-wow64","wine-staging-wow64-git","wine-wow64","wine-wow64-git","wireshark-cli","xfce4-mailwatch-plugin","xmlsec","yaz","zeromq"],"optional_for":["anope","inspircd","proton-ge-custom","rsyslog","systemd","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git"],"conflicts_with":[],"replaces":[],"download_size":2873098,"installed_size":5809111,"packager":"Andreas Radke ","build_date":"Fri 16 Aug 2024 02:36:43 AM +08","md5_sum":null,"sha_256_sum":"d165671649ec7a3dde47f8c5fd2273f46498edecd69c11c3ebd994f005c7a302","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"gpgme","version":"1.23.2-6","description":"A C wrapper library for GnuPG","architecture":"x86_64","url":"https://www.gnupg.org/related_software/gpgme/","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later","LGPL-2.1-or-later","MIT"],"groups":[],"provides":["libgpgme.so=11-64","libgpgmepp.so=6-64"],"depends_on":["gcc-libs","glib2","glibc","libassuan","libgpg-error","gnupg>=2"],"required_by":["akonadi-calendar","almanah","balsa","claws-mail","cri-o","dino","dino-git","firefox-extension-mailvelope","flatpak","fwknop","geany-plugins","gitg","gmime3","gpg-crypter","gpg-tui","himalaya","isoimagewriter","kdepim-addons","kget","kleopatra","kmail","kmymoney","kwallet","kwallet5","libcryptui","libdnf","libjcat","libkleo","libreoffice-fresh","libreoffice-still","librepo","mailcommon","mcabber","merkuro","messagelib","mimetreeparser","mutt","neomutt","ostree","pacman","pacman-git","plasma-pass","podman","poppler","profanity","profanity-gtk","python-gpgme","qgpgme-qt6","reprepro","ripasso","ruby-gpgme","samba","seahorse","seahorse-nautilus","skopeo","volume_key","wget2"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":488724,"installed_size":1523015,"packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:26:09 AM +08","md5_sum":null,"sha_256_sum":"c9e4bb089881eb1ab1c4d73b2f42ebca4878126603e6e730d30277e285d06e68","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gpm","version":"1.20.7.r38.ge82d1a6-6","description":"A mouse server for the console and xterm","architecture":"x86_64","url":"https://www.nico.schottelius.org/software/gpm/","licenses":["GPL"],"groups":[],"provides":["libgpm.so=2-64"],"depends_on":["bash","procps-ng"],"required_by":["aalib","brltty","dosemu","elinks","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","gvim","lib32-gpm","libnewt","links","mc","notcurses","vim","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":138997,"installed_size":402831,"packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:19:03 AM +08","md5_sum":null,"sha_256_sum":"95b97f61aacc075e85465a7d5e1c99d1b249b4eba63081a170482cdc8791f799","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"grep","version":"3.11-1","description":"A string search utility","architecture":"x86_64","url":"https://www.gnu.org/software/grep/","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","pcre2"],"required_by":["aconfmgr-git","ani-cli","arch-install-scripts","base","base-devel","bashtop","bootiso","checksec","devtools","dracut","easy-rsa","git","grml-zsh-config","gsocket","gzip","keycloak","mkinitcpio","pacman","pacman-git","posix","quickemu","redis","tdrop","themix-export-spotify-git","themix-icons-gnome-colors-git","themix-theme-materia-git","themix-theme-oomox-git","ugit","usbctl","valkey","wikiman","ytfzf-git"],"optional_for":["pciutils"],"conflicts_with":[],"replaces":[],"download_size":239175,"installed_size":911319,"packager":"Sébastien Luttringer ","build_date":"Mon 15 May 2023 07:06:38 AM +08","md5_sum":"838cdf1eac9d7734eaa113e8248a4e88","sha_256_sum":"aeb2d51c03190e24d4c021b43bbdb41aef69a28dff314743aade26e288e07a48","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"groff","version":"1.23.0-7","description":"GNU troff text-formatting system","architecture":"x86_64","url":"https://www.gnu.org/software/groff/groff.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["perl","gcc-libs"],"optional_deps":[{"name":"netpbm","description":"for use together with man -H command interaction in browsers"},{"name":"psutils","description":"for use together with man -H command interaction in browsers"},{"name":"libxaw","description":"for gxditview"},{"name":"perl-file-homedir","description":"for use with glilypond"}],"required_by":["base-devel","man-db"],"optional_for":["cgit","cgit-aurweb","haskell-pandoc","linuxdoc-tools","pandoc-bin"],"conflicts_with":[],"replaces":[],"download_size":2369781,"installed_size":9269411,"packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:19:27 PM +08","md5_sum":null,"sha_256_sum":"374fef7746a4d372ef2da8773769ee6c669382ac79bd73aedc8bafebaf366ffe","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"grub","version":"2:2.12-2","description":"GNU GRand Unified Bootloader (2)","architecture":"x86_64","url":"https://www.gnu.org/software/grub/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"depends_on":["sh","xz","gettext","device-mapper"],"optional_deps":[{"name":"freetype2","description":"For grub-mkfont usage"},{"name":"fuse3","description":"For grub-mount usage"},{"name":"dosfstools","description":"For grub-mkrescue FAT FS and EFI support"},{"name":"lzop","description":"For grub-mkrescue LZO support"},{"name":"efibootmgr","description":"For grub-install EFI support"},{"name":"libisoburn","description":"Provides xorriso for generating grub rescue iso using grub-mkrescue"},{"name":"os-prober","description":"To detect other OSes when generating grub.cfg in BIOS systems"},{"name":"mtools","description":"For grub-mkrescue FAT FS support"}],"required_by":["breeze-grub","dracula-grub-theme-git","grub-btrfs","grub-customizer","grub-theme-stylish-color-1080p-git","grub-theme-stylish-color-2k-git","grub-theme-stylish-color-4k-git","grub-theme-stylish-color-ultrawide-git","grub-theme-stylish-color-ultrawide2k-git","grub-theme-stylish-white-1080p-git","grub-theme-stylish-white-2k-git","grub-theme-stylish-white-4k-git","grub-theme-stylish-white-ultrawide-git","grub-theme-stylish-white-ultrawide2k-git","grub-theme-stylish-whitesur-1080p-git","grub-theme-stylish-whitesur-2k-git","grub-theme-stylish-whitesur-4k-git","grub-theme-stylish-whitesur-ultrawide-git","grub-theme-stylish-whitesur-ultrawide2k-git","grub-theme-tela-color-1080p-git","grub-theme-tela-color-2k-git","grub-theme-tela-color-4k-git","grub-theme-tela-color-ultrawide-git","grub-theme-tela-color-ultrawide2k-git","grub-theme-tela-white-1080p-git","grub-theme-tela-white-2k-git","grub-theme-tela-white-4k-git","grub-theme-tela-white-ultrawide-git","grub-theme-tela-white-ultrawide2k-git","grub-theme-tela-whitesur-1080p-git","grub-theme-tela-whitesur-2k-git","grub-theme-tela-whitesur-4k-git","grub-theme-tela-whitesur-ultrawide-git","grub-theme-tela-whitesur-ultrawide2k-git","grub-theme-vimix","grub-theme-vimix-color-1080p-git","grub-theme-vimix-color-2k-git","grub-theme-vimix-color-4k-git","grub-theme-vimix-color-ultrawide-git","grub-theme-vimix-color-ultrawide2k-git","grub-theme-vimix-white-1080p-git","grub-theme-vimix-white-2k-git","grub-theme-vimix-white-4k-git","grub-theme-vimix-white-ultrawide-git","grub-theme-vimix-white-ultrawide2k-git","grub-theme-vimix-whitesur-1080p-git","grub-theme-vimix-whitesur-2k-git","grub-theme-vimix-whitesur-4k-git","grub-theme-vimix-whitesur-ultrawide-git","grub-theme-vimix-whitesur-ultrawide2k-git","grub-theme-whitesur-color-1080p-git","grub-theme-whitesur-color-2k-git","grub-theme-whitesur-color-4k-git","grub-theme-whitesur-white-1080p-git","grub-theme-whitesur-white-2k-git","grub-theme-whitesur-white-4k-git","grub-theme-whitesur-whitesur-1080p-git","grub-theme-whitesur-whitesur-2k-git","grub-theme-whitesur-whitesur-4k-git","grub2-signing-extension","libguestfs","penguins-eggs","update-grub","woeusb","woeusb-ng"],"optional_for":["archiso","archiso-git","memtest86-efi","mkosi-git","rauc"],"conflicts_with":["grub-common","grub-bios","grub-emu","grub-efi-x86_64","grub-legacy"],"replaces":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"download_size":7172259,"installed_size":35305553,"packager":"Christian Hesse ","build_date":"Sun 17 Mar 2024 03:09:18 AM +08","md5_sum":"39513e40e6eb9647f8b34a61a9c84d64","sha_256_sum":"2b751fb81000bb31802939a571e10aa165c88988efdc82dc1bfcbf26309be949","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gssproxy","version":"0.9.2-1","description":"GSSAPI Proxy","architecture":"x86_64","url":"https://github.com/gssapi/gssproxy","licenses":["custom: MIT"],"groups":[],"provides":[],"depends_on":["libverto-module-base","popt","ding-libs","systemd-libs","krb5","glibc"],"required_by":["nfs-utils"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":99235,"installed_size":256532,"packager":"Andreas Radke ","build_date":"Fri 20 Oct 2023 03:19:23 AM +08","md5_sum":"e39782f173878afa516f65fad4927553","sha_256_sum":"77b87d1b00e33b3550e780b8a137422240e8b2575166fbf7937efa3c36adae05","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"guile","version":"3.0.10-1","description":"Portable, embeddable Scheme implementation written in C","architecture":"x86_64","url":"https://www.gnu.org/software/guile/","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["gmp","ncurses","libunistring","gc","libffi","libxcrypt"],"required_by":["aarch64-linux-gnu-gdb","aisleriot","arm-none-eabi-gdb","autogen","avr-gdb","crash","gdb","gdb-common","gnucash","lm32-elf-gdb","make","or1k-elf-gdb","ppc64le-elf-gdb","remake","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sh2-elf-gdb","slib","xbindkeys","zrythm"],"optional_for":["graphviz","weechat"],"conflicts_with":[],"replaces":[],"download_size":8713666,"installed_size":57388564,"packager":"Frederik Schwan ","build_date":"Mon 24 Jun 2024 04:16:00 PM +08","md5_sum":null,"sha_256_sum":"bf4d1b474045a88c7ad97b1ce56e8dd5786e5a10de02a8d33dc8f041edc8d01d","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gzip","version":"1.13-4","description":"GNU compression utility","architecture":"x86_64","url":"https://www.gnu.org/software/gzip/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","bash","coreutils","sed","grep"],"optional_deps":[{"name":"less","description":"zless support"},{"name":"util-linux","description":"zmore support"},{"name":"diffutils","description":"zdiff/zcmp support"}],"required_by":["amavisd-new","arch-wiki-lite","base","base-devel","clonezilla","engrampa","hwdetect","logrotate","nethack","posix-xsi","quilt","texinfo"],"optional_for":["atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","man-db","mkinitcpio","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":84346,"installed_size":159088,"packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:42:51 PM +08","md5_sum":null,"sha_256_sum":"0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a","signatures":"6D42BDD116E0068F","extended_data":null}] diff --git a/tests/fixtures/generic/pacman--packages.out b/tests/fixtures/generic/pacman--packages.out index d5bd8f6e1..1a9114682 100644 --- a/tests/fixtures/generic/pacman--packages.out +++ b/tests/fixtures/generic/pacman--packages.out @@ -5,10 +5,11 @@ Description : Access control list utilities, libraries and headers Architecture : x86_64 URL : https://savannah.nongnu.org/projects/acl Licenses : LGPL -Groups : None +Groups : kde-applications kde-sdk Provides : xfsacl libacl.so=1-64 Depends On : glibc -Optional Deps : None +Optional Deps : testing: this is a test description + name-with-no-description Required By : advcpmv bfs borg borg2 bup casync cdrtools clifm-git coreutils coreutils-hybrid-git cups emacs emacs-nativecomp emacs-nox emacs-wayland gettext incus incus-tools kio krusader lib32-acl libarchive libisofs logrotate lxd proftpd proxmox-backup-client rsync rsync-reflink sed shadow snapper spice-gtk systemd tar udisks2 udisks2-btrfs udisks2-lvm2 vim vis xfsdump Optional For : diffoscope mkosi mkosi-git Conflicts With : xfsacl @@ -2007,4 +2008,4 @@ Build Date : Wed 24 Jul 2024 02:42:51 PM +08 MD5 Sum : None SHA-256 Sum : 0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a Signatures : 6D42BDD116E0068F -Extended Data : None \ No newline at end of file +Extended Data : None diff --git a/tests/fixtures/generic/pacman--qii-zstd.json b/tests/fixtures/generic/pacman--qii-zstd.json index aca8b256d..3bdb01b1c 100644 --- a/tests/fixtures/generic/pacman--qii-zstd.json +++ b/tests/fixtures/generic/pacman--qii-zstd.json @@ -1 +1 @@ -[{"name":"zstd","version":"1.5.6-1","description":"Zstandard - Fast real-time compression algorithm","architecture":"x86_64","url":"https://facebook.github.io/zstd/","licenses":["BSD-3-Clause","GPL-2.0-only"],"groups":[],"provides":["libzstd.so=1-64"],"depends_on":["glibc","gcc-libs","zlib","xz","lz4"],"required_by":["android-tools","appstream","avr-gcc","binutils","blender","blosc","boost-libs","btrfs-progs","cloudflare-warp-bin","comgr","curl","dolphin-emu","file","flatpak","gcc","gdal","gnutls","karchive","karchive5","kmod","lib32-zstd","libarchive","libelf","libtiff","libva-mesa-driver","libxmlb","libzip","lld","llvm-libs","mariadb-libs","mesa","mesa-vdpau","minizip-ng","mkinitcpio","mold","netcdf","opencl-clover-mesa","opencl-rusticl-mesa","openucx","postgresql","postgresql-libs","ppsspp","qemu-img","qemu-system-riscv","qemu-system-x86","qgis","qt6-base","qt6-tools","rsync","rustup","squashfs-tools","squashfuse","systemd-libs","tiled","vulkan-radeon","wireshark-cli"],"optional_for":["xarchiver"],"conflicts_with":[],"replaces":[],"installed_size":"1527.00 KiB","packager":"Levente Polyak ","build_date":"Sat 11 May 2024 06:14:19 AM +08","install_date":"Fri 24 May 2024 09:50:31 AM +08","install_reason":"Installed as a dependency for another package","install_script":"No","validated_by":["Signature"],"extended_data":"pkgtype=pkg"},{"name":"apparmor","version":"3.1.7-4","description":"Mandatory Access Control (MAC) using Linux Security Module (LSM)","architecture":"x86_64","url":"https://gitlab.com/apparmor/apparmor","licenses":["GPL-2.0-only","LGPL-2.0-only","LGPL-2.1-only"],"groups":[],"provides":["libapparmor.so=1-64"],"depends_on":["audit","bash","gcc-libs","glibc","pam","python"],"optional_deps":[{"name":"perl","description":"for perl bindings [installed]"},{"name":"python-notify2","description":"for aa-notify"},{"name":"python-psutil","description":"for aa-notify [installed]"},{"name":"ruby","description":"for ruby bindings"}],"required_by":["firejail"],"optional_for":["podman"],"conflicts_with":[],"replaces":[],"installed_size":"4.11 MiB","packager":"Antonio Rojas ","build_date":"Sun 01 Sep 2024 07:43:58 PM +08","install_date":"Thu 05 Sep 2024 06:01:08 AM +08","install_reason":"Explicitly installed","install_script":"No","validated_by":["Signature"],"backup_files":["/etc/apparmor/easyprof.conf [unmodified]","/etc/apparmor/logprof.conf [unmodified]","/etc/apparmor/notify.conf [unmodified]","/etc/apparmor/parser.conf [unmodified]","/etc/apparmor/severity.db [unmodified]","/etc/apparmor.d/abi/3.0 [unmodified]","/etc/apparmor.d/abi/kernel-5.4-outoftree-network [unmodified]","/etc/apparmor.d/abi/kernel-5.4-vanilla [unmodified]","/etc/apparmor.d/abstractions/X [unmodified]","/etc/apparmor.d/abstractions/apache2-common [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/change_profile [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/examine [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/find_mountpoint [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/introspect [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/is_enabled [unmodified]","/etc/apparmor.d/abstractions/aspell [unmodified]","/etc/apparmor.d/abstractions/audio [unmodified]","/etc/apparmor.d/abstractions/authentication [unmodified]","/etc/apparmor.d/abstractions/base [unmodified]","/etc/apparmor.d/abstractions/bash [unmodified]","/etc/apparmor.d/abstractions/consoles [unmodified]","/etc/apparmor.d/abstractions/crypto [unmodified]","/etc/apparmor.d/abstractions/cups-client [unmodified]","/etc/apparmor.d/abstractions/dbus [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-network-manager-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-session [unmodified]","/etc/apparmor.d/abstractions/dbus-session-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-strict [unmodified]","/etc/apparmor.d/abstractions/dconf [unmodified]","/etc/apparmor.d/abstractions/dovecot-common [unmodified]","/etc/apparmor.d/abstractions/dri-common [unmodified]","/etc/apparmor.d/abstractions/dri-enumerate [unmodified]","/etc/apparmor.d/abstractions/enchant [unmodified]","/etc/apparmor.d/abstractions/exo-open [unmodified]","/etc/apparmor.d/abstractions/fcitx [unmodified]","/etc/apparmor.d/abstractions/fcitx-strict [unmodified]","/etc/apparmor.d/abstractions/fonts [unmodified]","/etc/apparmor.d/abstractions/freedesktop.org [unmodified]","/etc/apparmor.d/abstractions/gio-open [unmodified]","/etc/apparmor.d/abstractions/gnome [unmodified]","/etc/apparmor.d/abstractions/gnupg [unmodified]","/etc/apparmor.d/abstractions/groff [unmodified]","/etc/apparmor.d/abstractions/gtk [unmodified]","/etc/apparmor.d/abstractions/gvfs-open [unmodified]","/etc/apparmor.d/abstractions/hosts_access [unmodified]","/etc/apparmor.d/abstractions/ibus [unmodified]","/etc/apparmor.d/abstractions/kde [unmodified]","/etc/apparmor.d/abstractions/kde-globals-write [unmodified]","/etc/apparmor.d/abstractions/kde-icon-cache-write [unmodified]","/etc/apparmor.d/abstractions/kde-language-write [unmodified]","/etc/apparmor.d/abstractions/kde-open5 [unmodified]","/etc/apparmor.d/abstractions/kerberosclient [unmodified]","/etc/apparmor.d/abstractions/ldapclient [unmodified]","/etc/apparmor.d/abstractions/libpam-systemd [unmodified]","/etc/apparmor.d/abstractions/likewise [unmodified]","/etc/apparmor.d/abstractions/mdns [unmodified]","/etc/apparmor.d/abstractions/mesa [unmodified]","/etc/apparmor.d/abstractions/mir [unmodified]","/etc/apparmor.d/abstractions/mozc [unmodified]","/etc/apparmor.d/abstractions/mysql [unmodified]","/etc/apparmor.d/abstractions/nameservice [unmodified]","/etc/apparmor.d/abstractions/nis [unmodified]","/etc/apparmor.d/abstractions/nss-systemd [unmodified]","/etc/apparmor.d/abstractions/nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl [unmodified]","/etc/apparmor.d/abstractions/opencl-common [unmodified]","/etc/apparmor.d/abstractions/opencl-intel [unmodified]","/etc/apparmor.d/abstractions/opencl-mesa [unmodified]","/etc/apparmor.d/abstractions/opencl-nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl-pocl [unmodified]","/etc/apparmor.d/abstractions/openssl [unmodified]","/etc/apparmor.d/abstractions/orbit2 [unmodified]","/etc/apparmor.d/abstractions/p11-kit [unmodified]","/etc/apparmor.d/abstractions/perl [unmodified]","/etc/apparmor.d/abstractions/php [unmodified]","/etc/apparmor.d/abstractions/php-worker [unmodified]","/etc/apparmor.d/abstractions/php5 [unmodified]","/etc/apparmor.d/abstractions/postfix-common [unmodified]","/etc/apparmor.d/abstractions/private-files [unmodified]","/etc/apparmor.d/abstractions/private-files-strict [unmodified]","/etc/apparmor.d/abstractions/python [unmodified]","/etc/apparmor.d/abstractions/qt5 [unmodified]","/etc/apparmor.d/abstractions/qt5-compose-cache-write [unmodified]","/etc/apparmor.d/abstractions/qt5-settings-write [unmodified]","/etc/apparmor.d/abstractions/recent-documents-write [unmodified]","/etc/apparmor.d/abstractions/ruby [unmodified]","/etc/apparmor.d/abstractions/samba [unmodified]","/etc/apparmor.d/abstractions/samba-rpcd [unmodified]","/etc/apparmor.d/abstractions/smbpass [unmodified]","/etc/apparmor.d/abstractions/snap_browsers [unmodified]","/etc/apparmor.d/abstractions/ssl_certs [unmodified]","/etc/apparmor.d/abstractions/ssl_keys [unmodified]","/etc/apparmor.d/abstractions/svn-repositories [unmodified]","/etc/apparmor.d/abstractions/trash [unmodified]","/etc/apparmor.d/abstractions/ubuntu-bittorrent-clients [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/java [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/kde [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/mailto [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/multimedia [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/productivity [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/text-editors [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration-xul [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/user-files [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-feed-readers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-gnome-terminal [unmodified]","/etc/apparmor.d/abstractions/ubuntu-helpers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-konsole [unmodified]","/etc/apparmor.d/abstractions/ubuntu-media-players [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-base [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-launcher [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-messaging [unmodified]","/etc/apparmor.d/abstractions/ubuntu-xterm [unmodified]","/etc/apparmor.d/abstractions/user-download [unmodified]","/etc/apparmor.d/abstractions/user-mail [unmodified]","/etc/apparmor.d/abstractions/user-manpages [unmodified]","/etc/apparmor.d/abstractions/user-tmp [unmodified]","/etc/apparmor.d/abstractions/user-write [unmodified]","/etc/apparmor.d/abstractions/video [unmodified]","/etc/apparmor.d/abstractions/vulkan [unmodified]","/etc/apparmor.d/abstractions/wayland [unmodified]","/etc/apparmor.d/abstractions/web-data [unmodified]","/etc/apparmor.d/abstractions/winbind [unmodified]","/etc/apparmor.d/abstractions/wutmp [unmodified]","/etc/apparmor.d/abstractions/xad [unmodified]","/etc/apparmor.d/abstractions/xdg-desktop [unmodified]","/etc/apparmor.d/abstractions/xdg-open [unmodified]","/etc/apparmor.d/apache2.d/phpsysinfo [unmodified]","/etc/apparmor.d/bin.ping [unmodified]","/etc/apparmor.d/local/README [unmodified]","/etc/apparmor.d/local/bin.ping [unmodified]","/etc/apparmor.d/local/lsb_release [unmodified]","/etc/apparmor.d/local/nvidia_modprobe [unmodified]","/etc/apparmor.d/local/php-fpm [unmodified]","/etc/apparmor.d/local/samba-bgqd [unmodified]","/etc/apparmor.d/local/samba-dcerpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd-classic [unmodified]","/etc/apparmor.d/local/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/local/sbin.klogd [unmodified]","/etc/apparmor.d/local/sbin.syslog-ng [unmodified]","/etc/apparmor.d/local/sbin.syslogd [unmodified]","/etc/apparmor.d/local/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/local/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/local/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/local/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/local/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/local/usr.sbin.identd [unmodified]","/etc/apparmor.d/local/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/local/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/local/usr.sbin.nscd [unmodified]","/etc/apparmor.d/local/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/local/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/local/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/local/zgrep [unmodified]","/etc/apparmor.d/lsb_release [unmodified]","/etc/apparmor.d/nvidia_modprobe [unmodified]","/etc/apparmor.d/php-fpm [unmodified]","/etc/apparmor.d/samba-bgqd [unmodified]","/etc/apparmor.d/samba-dcerpcd [unmodified]","/etc/apparmor.d/samba-rpcd [unmodified]","/etc/apparmor.d/samba-rpcd-classic [unmodified]","/etc/apparmor.d/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/sbin.klogd [unmodified]","/etc/apparmor.d/sbin.syslog-ng [unmodified]","/etc/apparmor.d/sbin.syslogd [unmodified]","/etc/apparmor.d/tunables/alias [unmodified]","/etc/apparmor.d/tunables/apparmorfs [unmodified]","/etc/apparmor.d/tunables/dovecot [unmodified]","/etc/apparmor.d/tunables/etc [unmodified]","/etc/apparmor.d/tunables/global [unmodified]","/etc/apparmor.d/tunables/home [unmodified]","/etc/apparmor.d/tunables/home.d/site.local [unmodified]","/etc/apparmor.d/tunables/kernelvars [unmodified]","/etc/apparmor.d/tunables/multiarch [unmodified]","/etc/apparmor.d/tunables/multiarch.d/site.local [unmodified]","/etc/apparmor.d/tunables/ntpd [unmodified]","/etc/apparmor.d/tunables/proc [unmodified]","/etc/apparmor.d/tunables/run [unmodified]","/etc/apparmor.d/tunables/securityfs [unmodified]","/etc/apparmor.d/tunables/share [unmodified]","/etc/apparmor.d/tunables/sys [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs.d/site.local [unmodified]","/etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/usr.sbin.identd [unmodified]","/etc/apparmor.d/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/usr.sbin.nscd [unmodified]","/etc/apparmor.d/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/usr.sbin.smbd [unmodified]","/etc/apparmor.d/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/zgrep [unmodified]"],"extended_data":"pkgtype=pkg"},{"name":"apulse","version":"0.1.13-1","description":"PulseAudio emulation for ALSA","architecture":"x86_64","url":"https://github.com/i-rinat/apulse","licenses":["custom:MIT"],"groups":[],"provides":[],"depends_on":["alsa-lib","glib2"],"optional_for":[],"conflicts_with":[],"replaces":[],"installed_size":"135.71 KiB","packager":"Unknown Packager","build_date":"Fri 05 Aug 2022 04:06:57 AM +08","install_date":"Fri 05 Aug 2022 04:07:04 AM +08","install_reason":"Explicitly installed","install_script":"Yes","validated_by":null,"extended_data":null}] +[{"name":"zstd","version":"1.5.6-1","description":"Zstandard - Fast real-time compression algorithm","architecture":"x86_64","url":"https://facebook.github.io/zstd/","licenses":["BSD-3-Clause","GPL-2.0-only"],"groups":[],"provides":["libzstd.so=1-64"],"depends_on":["glibc","gcc-libs","zlib","xz","lz4"],"required_by":["android-tools","appstream","avr-gcc","binutils","blender","blosc","boost-libs","btrfs-progs","cloudflare-warp-bin","comgr","curl","dolphin-emu","file","flatpak","gcc","gdal","gnutls","karchive","karchive5","kmod","lib32-zstd","libarchive","libelf","libtiff","libva-mesa-driver","libxmlb","libzip","lld","llvm-libs","mariadb-libs","mesa","mesa-vdpau","minizip-ng","mkinitcpio","mold","netcdf","opencl-clover-mesa","opencl-rusticl-mesa","openucx","postgresql","postgresql-libs","ppsspp","qemu-img","qemu-system-riscv","qemu-system-x86","qgis","qt6-base","qt6-tools","rsync","rustup","squashfs-tools","squashfuse","systemd-libs","tiled","vulkan-radeon","wireshark-cli"],"optional_for":["xarchiver"],"conflicts_with":[],"replaces":[],"installed_size":1563648,"packager":"Levente Polyak ","build_date":"Sat 11 May 2024 06:14:19 AM +08","install_date":"Fri 24 May 2024 09:50:31 AM +08","install_reason":"Installed as a dependency for another package","install_script":"No","validated_by":["Signature"],"extended_data":"pkgtype=pkg"},{"name":"apparmor","version":"3.1.7-4","description":"Mandatory Access Control (MAC) using Linux Security Module (LSM)","architecture":"x86_64","url":"https://gitlab.com/apparmor/apparmor","licenses":["GPL-2.0-only","LGPL-2.0-only","LGPL-2.1-only"],"groups":[],"provides":["libapparmor.so=1-64"],"depends_on":["audit","bash","gcc-libs","glibc","pam","python"],"optional_deps":[{"name":"perl","description":"for perl bindings [installed]"},{"name":"python-notify2","description":"for aa-notify"},{"name":"python-psutil","description":"for aa-notify [installed]"},{"name":"ruby","description":"for ruby bindings"}],"required_by":["firejail"],"optional_for":["podman"],"conflicts_with":[],"replaces":[],"installed_size":4309647,"packager":"Antonio Rojas ","build_date":"Sun 01 Sep 2024 07:43:58 PM +08","install_date":"Thu 05 Sep 2024 06:01:08 AM +08","install_reason":"Explicitly installed","install_script":"No","validated_by":["Signature"],"backup_files":["/etc/apparmor/easyprof.conf [unmodified]","/etc/apparmor/logprof.conf [unmodified]","/etc/apparmor/notify.conf [unmodified]","/etc/apparmor/parser.conf [unmodified]","/etc/apparmor/severity.db [unmodified]","/etc/apparmor.d/abi/3.0 [unmodified]","/etc/apparmor.d/abi/kernel-5.4-outoftree-network [unmodified]","/etc/apparmor.d/abi/kernel-5.4-vanilla [unmodified]","/etc/apparmor.d/abstractions/X [unmodified]","/etc/apparmor.d/abstractions/apache2-common [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/change_profile [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/examine [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/find_mountpoint [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/introspect [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/is_enabled [unmodified]","/etc/apparmor.d/abstractions/aspell [unmodified]","/etc/apparmor.d/abstractions/audio [unmodified]","/etc/apparmor.d/abstractions/authentication [unmodified]","/etc/apparmor.d/abstractions/base [unmodified]","/etc/apparmor.d/abstractions/bash [unmodified]","/etc/apparmor.d/abstractions/consoles [unmodified]","/etc/apparmor.d/abstractions/crypto [unmodified]","/etc/apparmor.d/abstractions/cups-client [unmodified]","/etc/apparmor.d/abstractions/dbus [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-network-manager-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-session [unmodified]","/etc/apparmor.d/abstractions/dbus-session-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-strict [unmodified]","/etc/apparmor.d/abstractions/dconf [unmodified]","/etc/apparmor.d/abstractions/dovecot-common [unmodified]","/etc/apparmor.d/abstractions/dri-common [unmodified]","/etc/apparmor.d/abstractions/dri-enumerate [unmodified]","/etc/apparmor.d/abstractions/enchant [unmodified]","/etc/apparmor.d/abstractions/exo-open [unmodified]","/etc/apparmor.d/abstractions/fcitx [unmodified]","/etc/apparmor.d/abstractions/fcitx-strict [unmodified]","/etc/apparmor.d/abstractions/fonts [unmodified]","/etc/apparmor.d/abstractions/freedesktop.org [unmodified]","/etc/apparmor.d/abstractions/gio-open [unmodified]","/etc/apparmor.d/abstractions/gnome [unmodified]","/etc/apparmor.d/abstractions/gnupg [unmodified]","/etc/apparmor.d/abstractions/groff [unmodified]","/etc/apparmor.d/abstractions/gtk [unmodified]","/etc/apparmor.d/abstractions/gvfs-open [unmodified]","/etc/apparmor.d/abstractions/hosts_access [unmodified]","/etc/apparmor.d/abstractions/ibus [unmodified]","/etc/apparmor.d/abstractions/kde [unmodified]","/etc/apparmor.d/abstractions/kde-globals-write [unmodified]","/etc/apparmor.d/abstractions/kde-icon-cache-write [unmodified]","/etc/apparmor.d/abstractions/kde-language-write [unmodified]","/etc/apparmor.d/abstractions/kde-open5 [unmodified]","/etc/apparmor.d/abstractions/kerberosclient [unmodified]","/etc/apparmor.d/abstractions/ldapclient [unmodified]","/etc/apparmor.d/abstractions/libpam-systemd [unmodified]","/etc/apparmor.d/abstractions/likewise [unmodified]","/etc/apparmor.d/abstractions/mdns [unmodified]","/etc/apparmor.d/abstractions/mesa [unmodified]","/etc/apparmor.d/abstractions/mir [unmodified]","/etc/apparmor.d/abstractions/mozc [unmodified]","/etc/apparmor.d/abstractions/mysql [unmodified]","/etc/apparmor.d/abstractions/nameservice [unmodified]","/etc/apparmor.d/abstractions/nis [unmodified]","/etc/apparmor.d/abstractions/nss-systemd [unmodified]","/etc/apparmor.d/abstractions/nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl [unmodified]","/etc/apparmor.d/abstractions/opencl-common [unmodified]","/etc/apparmor.d/abstractions/opencl-intel [unmodified]","/etc/apparmor.d/abstractions/opencl-mesa [unmodified]","/etc/apparmor.d/abstractions/opencl-nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl-pocl [unmodified]","/etc/apparmor.d/abstractions/openssl [unmodified]","/etc/apparmor.d/abstractions/orbit2 [unmodified]","/etc/apparmor.d/abstractions/p11-kit [unmodified]","/etc/apparmor.d/abstractions/perl [unmodified]","/etc/apparmor.d/abstractions/php [unmodified]","/etc/apparmor.d/abstractions/php-worker [unmodified]","/etc/apparmor.d/abstractions/php5 [unmodified]","/etc/apparmor.d/abstractions/postfix-common [unmodified]","/etc/apparmor.d/abstractions/private-files [unmodified]","/etc/apparmor.d/abstractions/private-files-strict [unmodified]","/etc/apparmor.d/abstractions/python [unmodified]","/etc/apparmor.d/abstractions/qt5 [unmodified]","/etc/apparmor.d/abstractions/qt5-compose-cache-write [unmodified]","/etc/apparmor.d/abstractions/qt5-settings-write [unmodified]","/etc/apparmor.d/abstractions/recent-documents-write [unmodified]","/etc/apparmor.d/abstractions/ruby [unmodified]","/etc/apparmor.d/abstractions/samba [unmodified]","/etc/apparmor.d/abstractions/samba-rpcd [unmodified]","/etc/apparmor.d/abstractions/smbpass [unmodified]","/etc/apparmor.d/abstractions/snap_browsers [unmodified]","/etc/apparmor.d/abstractions/ssl_certs [unmodified]","/etc/apparmor.d/abstractions/ssl_keys [unmodified]","/etc/apparmor.d/abstractions/svn-repositories [unmodified]","/etc/apparmor.d/abstractions/trash [unmodified]","/etc/apparmor.d/abstractions/ubuntu-bittorrent-clients [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/java [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/kde [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/mailto [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/multimedia [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/productivity [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/text-editors [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration-xul [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/user-files [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-feed-readers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-gnome-terminal [unmodified]","/etc/apparmor.d/abstractions/ubuntu-helpers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-konsole [unmodified]","/etc/apparmor.d/abstractions/ubuntu-media-players [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-base [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-launcher [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-messaging [unmodified]","/etc/apparmor.d/abstractions/ubuntu-xterm [unmodified]","/etc/apparmor.d/abstractions/user-download [unmodified]","/etc/apparmor.d/abstractions/user-mail [unmodified]","/etc/apparmor.d/abstractions/user-manpages [unmodified]","/etc/apparmor.d/abstractions/user-tmp [unmodified]","/etc/apparmor.d/abstractions/user-write [unmodified]","/etc/apparmor.d/abstractions/video [unmodified]","/etc/apparmor.d/abstractions/vulkan [unmodified]","/etc/apparmor.d/abstractions/wayland [unmodified]","/etc/apparmor.d/abstractions/web-data [unmodified]","/etc/apparmor.d/abstractions/winbind [unmodified]","/etc/apparmor.d/abstractions/wutmp [unmodified]","/etc/apparmor.d/abstractions/xad [unmodified]","/etc/apparmor.d/abstractions/xdg-desktop [unmodified]","/etc/apparmor.d/abstractions/xdg-open [unmodified]","/etc/apparmor.d/apache2.d/phpsysinfo [unmodified]","/etc/apparmor.d/bin.ping [unmodified]","/etc/apparmor.d/local/README [unmodified]","/etc/apparmor.d/local/bin.ping [unmodified]","/etc/apparmor.d/local/lsb_release [unmodified]","/etc/apparmor.d/local/nvidia_modprobe [unmodified]","/etc/apparmor.d/local/php-fpm [unmodified]","/etc/apparmor.d/local/samba-bgqd [unmodified]","/etc/apparmor.d/local/samba-dcerpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd-classic [unmodified]","/etc/apparmor.d/local/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/local/sbin.klogd [unmodified]","/etc/apparmor.d/local/sbin.syslog-ng [unmodified]","/etc/apparmor.d/local/sbin.syslogd [unmodified]","/etc/apparmor.d/local/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/local/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/local/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/local/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/local/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/local/usr.sbin.identd [unmodified]","/etc/apparmor.d/local/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/local/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/local/usr.sbin.nscd [unmodified]","/etc/apparmor.d/local/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/local/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/local/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/local/zgrep [unmodified]","/etc/apparmor.d/lsb_release [unmodified]","/etc/apparmor.d/nvidia_modprobe [unmodified]","/etc/apparmor.d/php-fpm [unmodified]","/etc/apparmor.d/samba-bgqd [unmodified]","/etc/apparmor.d/samba-dcerpcd [unmodified]","/etc/apparmor.d/samba-rpcd [unmodified]","/etc/apparmor.d/samba-rpcd-classic [unmodified]","/etc/apparmor.d/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/sbin.klogd [unmodified]","/etc/apparmor.d/sbin.syslog-ng [unmodified]","/etc/apparmor.d/sbin.syslogd [unmodified]","/etc/apparmor.d/tunables/alias [unmodified]","/etc/apparmor.d/tunables/apparmorfs [unmodified]","/etc/apparmor.d/tunables/dovecot [unmodified]","/etc/apparmor.d/tunables/etc [unmodified]","/etc/apparmor.d/tunables/global [unmodified]","/etc/apparmor.d/tunables/home [unmodified]","/etc/apparmor.d/tunables/home.d/site.local [unmodified]","/etc/apparmor.d/tunables/kernelvars [unmodified]","/etc/apparmor.d/tunables/multiarch [unmodified]","/etc/apparmor.d/tunables/multiarch.d/site.local [unmodified]","/etc/apparmor.d/tunables/ntpd [unmodified]","/etc/apparmor.d/tunables/proc [unmodified]","/etc/apparmor.d/tunables/run [unmodified]","/etc/apparmor.d/tunables/securityfs [unmodified]","/etc/apparmor.d/tunables/share [unmodified]","/etc/apparmor.d/tunables/sys [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs.d/site.local [unmodified]","/etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/usr.sbin.identd [unmodified]","/etc/apparmor.d/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/usr.sbin.nscd [unmodified]","/etc/apparmor.d/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/usr.sbin.smbd [unmodified]","/etc/apparmor.d/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/zgrep [unmodified]"],"extended_data":"pkgtype=pkg"},{"name":"apulse","version":"0.1.13-1","description":"PulseAudio emulation for ALSA","architecture":"x86_64","url":"https://github.com/i-rinat/apulse","licenses":["custom:MIT"],"groups":[],"provides":[],"depends_on":["alsa-lib","glib2"],"optional_for":[],"conflicts_with":[],"replaces":[],"installed_size":138967,"packager":"Unknown Packager","build_date":"Fri 05 Aug 2022 04:06:57 AM +08","install_date":"Fri 05 Aug 2022 04:07:04 AM +08","install_reason":"Explicitly installed","install_script":"Yes","validated_by":null,"extended_data":null}] diff --git a/tests/fixtures/generic/pacman--si-graphicsmagick.json b/tests/fixtures/generic/pacman--si-graphicsmagick.json index 174cd128c..ae3c11cad 100644 --- a/tests/fixtures/generic/pacman--si-graphicsmagick.json +++ b/tests/fixtures/generic/pacman--si-graphicsmagick.json @@ -1 +1 @@ -[{"repository":"extra","name":"graphicsmagick","version":"1.3.43-1","description":"Image processing system","architecture":"x86_64","url":"http://www.graphicsmagick.org/","licenses":["MIT"],"groups":[],"provides":["Magick.so","libGraphicsMagickWand.so=2-64","libGraphicsMagick.so=3-64","libGraphicsMagick++-Q16.so"],"depends_on":["bzip2","freetype2","lcms2","libltdl","libpng","libsm","libtiff","libwebp","libxext","xz"],"optional_deps":[{"name":"jasper","description":"jp2 module"},{"name":"libwmf","description":"wmf module"},{"name":"libxml2","description":"msl, svg, url modules"},{"name":"ghostscript","description":"pdf, ps modules"},{"name":"libheif","description":"heic module"},{"name":"libjxl","description":"jpeg-xl module"}],"conflicts_with":[],"replaces":[],"download_size":"2.58 MiB","installed_size":"13.97 MiB","packager":"Caleb Maclennan ","build_date":"Sat 23 Mar 2024 09:55:47 PM CET","validated_by":["MD5 Sum","SHA-256 Sum","Signature"]}] +[{"repository":"extra","name":"graphicsmagick","version":"1.3.43-1","description":"Image processing system","architecture":"x86_64","url":"http://www.graphicsmagick.org/","licenses":["MIT"],"groups":[],"provides":["Magick.so","libGraphicsMagickWand.so=2-64","libGraphicsMagick.so=3-64","libGraphicsMagick++-Q16.so"],"depends_on":["bzip2","freetype2","lcms2","libltdl","libpng","libsm","libtiff","libwebp","libxext","xz"],"optional_deps":[{"name":"jasper","description":"jp2 module"},{"name":"libwmf","description":"wmf module"},{"name":"libxml2","description":"msl, svg, url modules"},{"name":"ghostscript","description":"pdf, ps modules"},{"name":"libheif","description":"heic module"},{"name":"libjxl","description":"jpeg-xl module"}],"conflicts_with":[],"replaces":[],"download_size":2705326,"installed_size":14648606,"packager":"Caleb Maclennan ","build_date":"Sat 23 Mar 2024 09:55:47 PM CET","validated_by":["MD5 Sum","SHA-256 Sum","Signature"]}] diff --git a/tests/test_pacman.py b/tests/test_pacman.py index 1c9e4bfbe..a23d7a5e5 100644 --- a/tests/test_pacman.py +++ b/tests/test_pacman.py @@ -13,6 +13,7 @@ # - `{parser_name}--{some_test_description}.json` for expected JSON after parsing. class MyTests(unittest.TestCase): + maxDiff = None def test_pacman_nodata(self): """ From 53dd28b65eb729e571fcb8b657abb88900249469 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 24 Nov 2024 18:59:30 -0800 Subject: [PATCH 50/52] doc update --- README.md | 2 + completions/jc_bash_completion.sh | 4 +- completions/jc_zsh_completion.sh | 8 +- docs/parsers/ipconfig.md | 19 +- docs/parsers/netstat.md | 2 +- docs/parsers/nsd_control.md | 22 +- docs/parsers/pacman.md | 195 ++++++++++++++ docs/parsers/rpm_qi.md | 2 +- docs/parsers/traceroute.md | 2 +- docs/parsers/wg_show.md | 172 ++++++++++++ docs/parsers/yaml.md | 2 +- jc/parsers/wg_show.py | 234 +++++++++-------- man/jc.1 | 12 +- .../ubuntu-22.04/wg_show--one_device.json | 104 ++++---- .../ubuntu-22.04/wg_show--two_devices.json | 246 +----------------- .../fixtures/windows/windows-10/wg_show.json | 95 +------ tests/test_pacman.py | 1 - 17 files changed, 589 insertions(+), 533 deletions(-) create mode 100644 docs/parsers/pacman.md create mode 100644 docs/parsers/wg_show.md diff --git a/README.md b/README.md index 555b908f6..fa6933f55 100644 --- a/README.md +++ b/README.md @@ -251,6 +251,7 @@ option. | `--openvpn` | openvpn-status.log file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/openvpn) | | `--os-prober` | `os-prober` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/os_prober) | | `--os-release` | `/etc/os-release` file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/os_release) | +| `--pacman` | `pacman` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pacman) | | `--passwd` | `/etc/passwd` file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/passwd) | | `--path` | POSIX path string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/path) | | `--path-list` | POSIX path list string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/path_list) | @@ -317,6 +318,7 @@ option. | `--vmstat-s` | `vmstat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat_s) | | `--w` | `w` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/w) | | `--wc` | `wc` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/wc) | +| `--wg-show` | `wg show` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/wg_show) | | `--who` | `who` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/who) | | `--x509-cert` | X.509 PEM and DER certificate file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/x509_cert) | | `--x509-csr` | X.509 PEM and DER certificate request file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/x509_csr) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 743347f4e..d122aa652 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -3,8 +3,8 @@ _jc() local cur prev words cword jc_commands jc_parsers jc_options \ jc_about_options jc_about_mod_options jc_help_options jc_special_options - jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) - jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) + jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pacman pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc wg who xrandr zipinfo zpool) + jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --pacman --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --wg-show --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) jc_options=(--force-color -C --debug -d --monochrome -m --meta-out -M --pretty -p --quiet -q --raw -r --slurp -s --unbuffer -u --yaml-out -y) jc_about_options=(--about -a) jc_about_mod_options=(--pretty -p --yaml-out -y --monochrome -m --force-color -C) diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index c81d5dbd4..4b7eb2263 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -9,7 +9,7 @@ _jc() { jc_help_options jc_help_options_describe \ jc_special_options jc_special_options_describe - jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) + jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pacman pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc wg who xrandr zipinfo zpool) jc_commands_describe=( 'acpi:run "acpi" command with magic syntax.' 'airport:run "airport" command with magic syntax.' @@ -72,6 +72,7 @@ _jc() { 'nsd-control:run "nsd-control" command with magic syntax.' 'ntpq:run "ntpq" command with magic syntax.' 'os-prober:run "os-prober" command with magic syntax.' + 'pacman:run "pacman" command with magic syntax.' 'pidstat:run "pidstat" command with magic syntax.' 'ping:run "ping" command with magic syntax.' 'ping6:run "ping6" command with magic syntax.' @@ -117,12 +118,13 @@ _jc() { 'vmstat:run "vmstat" command with magic syntax.' 'w:run "w" command with magic syntax.' 'wc:run "wc" command with magic syntax.' + 'wg:run "wg" command with magic syntax.' 'who:run "who" command with magic syntax.' 'xrandr:run "xrandr" command with magic syntax.' 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) + jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --pacman --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --wg-show --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) jc_parsers_describe=( '--acpi:`acpi` command parser' '--airport:`airport -I` command parser' @@ -219,6 +221,7 @@ _jc() { '--openvpn:openvpn-status.log file parser' '--os-prober:`os-prober` command parser' '--os-release:`/etc/os-release` file parser' + '--pacman:`pacman` command parser' '--passwd:`/etc/passwd` file parser' '--path:POSIX path string parser' '--path-list:POSIX path list string parser' @@ -336,6 +339,7 @@ _jc() { '--vmstat-s:`vmstat` command streaming parser' '--w:`w` command parser' '--wc:`wc` command parser' + '--wg-show:`wg show` command parser' '--who:`who` command parser' '--x509-cert:X.509 PEM and DER certificate file parser' '--x509-csr:X.509 PEM and DER certificate request file parser' diff --git a/docs/parsers/ipconfig.md b/docs/parsers/ipconfig.md index ca44e8cb8..21e738d9f 100644 --- a/docs/parsers/ipconfig.md +++ b/docs/parsers/ipconfig.md @@ -25,7 +25,7 @@ Schema: "ip_routing_enabled": boolean, "wins_proxy_enabled": boolean, "dns_suffix_search_list": [ - string + string ], "adapters": [ { @@ -56,7 +56,7 @@ Schema: { "address": string, "status": string, - "prefix_length": int, + "prefix_length": integer, } ], "ipv4_addresses": [ @@ -77,12 +77,16 @@ Schema: string ], "primary_wins_server": string, - "lease_expires": string, # [0] - "lease_obtained": string, # [0] + "lease_expires": string, + "lease_expires_epoch": integer, # [0] + "lease_expires_iso": string, + "lease_obtained": string, + "lease_obtained_epoch": integer, # [0] + "lease_obtained_iso": string, "netbios_over_tcpip": boolean, "media_state": string, "extras": [ - string: string + : string ] } ], @@ -90,9 +94,8 @@ Schema: } Notes: - [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 - format date strings. if the value was unable to be parsed by - datetime, the fields will be in their raw form + [0] - The epoch calculated timestamp field is naive. (i.e. based on + the local time of the system the parser is run on) [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index f29513928..93e35f12a 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -380,4 +380,4 @@ Compatibility: linux, darwin, freebsd, win32 Source: [`jc/parsers/netstat.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/netstat.py) -Version 1.15 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.16 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/nsd_control.md b/docs/parsers/nsd_control.md index f236f8ae7..0d6987a9c 100644 --- a/docs/parsers/nsd_control.md +++ b/docs/parsers/nsd_control.md @@ -22,20 +22,24 @@ Schema: [ { - "version": string, - "verbosity": integer, - "ratelimit": integer + "version": string, + "verbosity": integer, + "ratelimit": integer } ] [ { - "zone": string + "zone": string "status": { - "state": string, - "served-serial": string, - "commit-serial": string, - "wait": string + "state": string, + "pattern": string, # Additional + "catalog-member-id": string, # Additional + "served-serial": string, + "commit-serial": string, + "notified-serial": string, # Conditional + "wait": string, + "transfer": string # Conditional } } ] @@ -89,4 +93,4 @@ Compatibility: linux, darwin, cygwin, win32, aix, freebsd Source: [`jc/parsers/nsd_control.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/nsd_control.py) -Version 1.1 by Pettai (pettai@sunet.se) +Version 1.2 by Pettai (pettai@sunet.se) diff --git a/docs/parsers/pacman.md b/docs/parsers/pacman.md new file mode 100644 index 000000000..f880f5c92 --- /dev/null +++ b/docs/parsers/pacman.md @@ -0,0 +1,195 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.pacman + +jc - JSON Convert `pacman` command output parser + +Supports the following `pacman` arguments: + +- `-Si` +- `-Sii` +- `-Qi` +- `-Qii` + +Usage (cli): + + $ pacman -Si | jc --pacman + +or + + $ jc pacman -Si + +Usage (module): + + import jc + result = jc.parse('pacman', pacman_command_output) + +Schema: + + [ + { + "repository": string, + "name": string, + "version": string, + "description": string, + "architecture": string, + "url": string, + "licenses": [ + string + ], + "groups": [ + string + ], + "provides": [ + string + ], + "depends_on": [ + string + ], + "optional_deps": [ + { + "name": string, + "description": string + } + ], + "optional_for": [ + string + ], + "conflicts_with": [ + string + ], + "replaces": [ + string + ], + "download_size": integer, # in bytes + "installed_size": integer, # in bytes + "packager": string, + "build_date": string, + "validated_by": [ + string + ], + "backup_files": [ + string + ] + } + ] + +Examples: + + $ pacman -qii zstd | jc --pacman -p + [ + { + "name": "zstd", + "version": "1.5.6-1", + "description": "Zstandard - Fast real-time compression algorithm", + "architecture": "x86_64", + "url": "https://facebook.github.io/zstd/", + "licenses": [ + "BSD-3-Clause", + "GPL-2.0-only" + ], + "groups": [], + "provides": [ + "libzstd.so=1-64" + ], + "depends_on": [ + "glibc", + "gcc-libs", + "zlib", + "xz", + "lz4" + ], + "required_by": [ + "android-tools", + "appstream", + ... + "tiled", + "vulkan-radeon", + "wireshark-cli" + ], + "optional_for": [ + "xarchiver" + ], + "conflicts_with": [], + "replaces": [], + "installed_size": "1563648", + "packager": "Levente Polyak ", + "build_date": "Sat 11 May 2024 06:14:19 AM +08", + "install_date": "Fri 24 May 2024 09:50:31 AM +08", + "install_reason": "Installed as a dependency for another package", + "install_script": "No", + "validated_by": [ + "Signature" + ], + "extended_data": "pkgtype=pkg" + } + ] + + $ pacman -qii zstd | jc --pacman -p -r + [ + { + "name": "zstd", + "version": "1.5.6-1", + "description": "Zstandard - Fast real-time compression algorithm", + "architecture": "x86_64", + "url": "https://facebook.github.io/zstd/", + "licenses": "BSD-3-Clause GPL-2.0-only", + "groups": null, + "provides": "libzstd.so=1-64", + "depends_on": "glibc gcc-libs zlib xz lz4", + "required_by": [ + "android-tools appstream avr-gcc binutils blender blosc", + "boost-libs btrfs-progs cloudflare-warp-bin comgr curl", + "dolphin-emu file flatpak gcc gdal gnutls karchive", + "karchive5 kmod lib32-zstd libarchive libelf libtiff", + "libva-mesa-driver libxmlb libzip lld llvm-libs mariadb-libs", + "mesa mesa-vdpau minizip-ng mkinitcpio mold netcdf", + "opencl-clover-mesa opencl-rusticl-mesa openucx postgresql", + "postgresql-libs ppsspp qemu-img qemu-system-riscv", + "qemu-system-x86 qgis qt6-base qt6-tools rsync rustup", + "squashfs-tools squashfuse systemd-libs tiled vulkan-radeon", + "wireshark-cli" + ], + "optional_for": "xarchiver", + "conflicts_with": null, + "replaces": null, + "installed_size": "1527.00 KiB", + "packager": "Levente Polyak ", + "build_date": "Sat 11 May 2024 06:14:19 AM +08", + "install_date": "Fri 24 May 2024 09:50:31 AM +08", + "install_reason": "Installed as a dependency for another package", + "install_script": "No", + "validated_by": "Signature", + "extended_data": "pkgtype=pkg" + } + ] + + + +### parse + +```python +def parse(data: str, + raw: bool = False, + quiet: bool = False) -> List[Dict[str, Any]] +``` + +Main text parsing function + +Parameters: + + data: (string) text data to parse + raw: (boolean) unprocessed output if True + quiet: (boolean) suppress warning messages if True + +Returns: + + List of Dictionaries. Raw or processed structured data. + +### Parser Information +Compatibility: linux, darwin, cygwin, win32, aix, freebsd + +Source: [`jc/parsers/pacman.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/pacman.py) + +Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/rpm_qi.md b/docs/parsers/rpm_qi.md index 8df44a462..3a6633008 100644 --- a/docs/parsers/rpm_qi.md +++ b/docs/parsers/rpm_qi.md @@ -210,4 +210,4 @@ Compatibility: linux Source: [`jc/parsers/rpm_qi.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/rpm_qi.py) -Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/traceroute.md b/docs/parsers/traceroute.md index 450cc9623..c9f487304 100644 --- a/docs/parsers/traceroute.md +++ b/docs/parsers/traceroute.md @@ -145,4 +145,4 @@ Compatibility: linux, darwin, freebsd Source: [`jc/parsers/traceroute.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/traceroute.py) -Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/wg_show.md b/docs/parsers/wg_show.md new file mode 100644 index 000000000..020f835bc --- /dev/null +++ b/docs/parsers/wg_show.md @@ -0,0 +1,172 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.wg_show + +jc - JSON Convert `wg show` command output parser + +Parses the output of the `wg show all dump` command, providing structured JSON output for easy integration and analysis. + +Usage (cli): + + $ wg show all dump | jc --wg-show + +or + + $ jc wg show all dump + +Usage (module): + + import jc + result = jc.parse('wg-show', wg_command_output) + +Schema: + + [ + { + "device": string, + "private_key": string, + "public_key": string, + "listen_port": integer, + "fwmark": integer, + "peers": [ + { + "public_key": string, + "preshared_key": string, + "endpoint": string, + "latest_handshake": integer, + "transfer_rx": integer, + "transfer_sx": integer, + "persistent_keepalive": integer, + "allowed_ips": [ + string + ] + } + ] + } + ] + +Examples: + + $ wg show all dump | jc --wg-show -p + [ + { + "device": "wg0", + "private_key": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", + "public_key": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", + "listen_port": 51820, + "fwmark": null, + "peers": [ + { + "public_key": "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=", + "preshared_key": null, + "endpoint": "79.134.136.199:40036", + "latest_handshake": 1728809756, + "transfer_rx": 1378724, + "transfer_sx": 406524, + "persistent_keepalive": null, + "allowed_ips": ["10.10.0.2/32"] + }, + { + "public_key": "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=", + "preshared_key": null, + "endpoint": "79.134.136.199:35946", + "latest_handshake": 1728809756, + "transfer_rx": 4884248, + "transfer_sx": 3544596, + "persistent_keepalive": null, + "allowed_ips": ["10.10.0.3/32"] + }, + { + "public_key": "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=", + "preshared_key": null, + "allowed_ips": ["10.10.0.4/32"] + }, + { + "public_key": "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=", + "preshared_key": null, + "endpoint": "173.244.225.194:45014", + "latest_handshake": 1728809827, + "transfer_rx": 1363652, + "transfer_sx": 458252, + "persistent_keepalive": null, + "allowed_ips": ["10.10.0.5/32"] + } + ] + } + ] + + $ wg show all dump | jc --wg-show -p -r + [ + { + "device": "wg0", + "private_key": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", + "public_key": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", + "listen_port": 51820, + "fwmark": null, + "peers": { + "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=": { + "preshared_key": null, + "endpoint": "79.134.136.199:40036", + "latest_handshake": 1728809756, + "transfer_rx": 1378724, + "transfer_sx": 406524, + "persistent_keepalive": -1, + "allowed_ips": ["10.10.0.2/32"] + }, + "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=": { + "preshared_key": null, + "endpoint": "79.134.136.199:35946", + "latest_handshake": 1728809756, + "transfer_rx": 4884248, + "transfer_sx": 3544596, + "persistent_keepalive": -1, + "allowed_ips": ["10.10.0.3/32"] + }, + "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=": { + "preshared_key": null, + "allowed_ips": ["10.10.0.4/32"] + }, + "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=": { + "preshared_key": null, + "endpoint": "173.244.225.194:45014", + "latest_handshake": 1728809827, + "transfer_rx": 1363652, + "transfer_sx": 458252, + "persistent_keepalive": -1, + "allowed_ips": ["10.10.0.5/32"] + } + } + } + ] + + + +### parse + +```python +def parse(data: str, + raw: bool = False, + quiet: bool = False) -> List[Dict[str, Any]] +``` + +Main text parsing function. + +Parses the output of the `wg` command, specifically `wg show all dump`, into structured JSON format. + +Parameters: + + data: (str) Text data to parse, typically the output from `wg show all dump` + raw: (bool) If True, returns unprocessed output + quiet: (bool) Suppress warning messages if True + +Returns: + + List[Dict]: Parsed data in JSON-friendly format, either raw or processed. + +### Parser Information +Compatibility: linux, darwin, cygwin, win32, aix, freebsd + +Source: [`jc/parsers/wg_show.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/wg_show.py) + +Version 1.0 by Hamza Saht (hamzasaht01@gmail.com) diff --git a/docs/parsers/yaml.md b/docs/parsers/yaml.md index 0547e65e0..9ec3f9348 100644 --- a/docs/parsers/yaml.md +++ b/docs/parsers/yaml.md @@ -111,4 +111,4 @@ Compatibility: linux, darwin, cygwin, win32, aix, freebsd Source: [`jc/parsers/yaml.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/yaml.py) -Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/wg_show.py b/jc/parsers/wg_show.py index 756facb2f..b6557d394 100644 --- a/jc/parsers/wg_show.py +++ b/jc/parsers/wg_show.py @@ -19,21 +19,23 @@ [ { - "device": string, - "privateKey": string, - "publicKey": string, - "listenPort": integer, - "fwmark": integer, + "device": string, + "private_key": string, + "public_key": string, + "listen_port": integer, + "fwmark": integer, "peers": [ { - "publicKey": string, - "presharedKey": string, - "endpoint": string, - "latestHandshake": integer, - "transferRx": integer, - "transferSx": integer, - "persistentKeepalive": integer, - "allowedIps": [string] + "public_key": string, + "preshared_key": string, + "endpoint": string, + "latest_handshake": integer, + "transfer_rx": integer, + "transfer_sx": integer, + "persistent_keepalive": integer, + "allowed_ips": [ + string + ] } ] } @@ -43,90 +45,94 @@ $ wg show all dump | jc --wg-show -p [ - { - "device": "wg0", - "privateKey": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", - "publicKey": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", - "listenPort": 51820, - "fwmark": null, - "peers": { - "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=": { - "presharedKey": null, - "endpoint": "79.134.136.199:40036", - "latestHandshake": 1728809756, - "transferRx": 1378724, - "transferSx": 406524, - "persistentKeepalive": null, - "allowedIps": ["10.10.0.2/32"] - }, - "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=": { - "presharedKey": null, - "endpoint": "79.134.136.199:35946", - "latestHandshake": 1728809756, - "transferRx": 4884248, - "transferSx": 3544596, - "persistentKeepalive": null, - "allowedIps": ["10.10.0.3/32"] - }, - "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=": { - "presharedKey": null, - "allowedIps": ["10.10.0.4/32"] - }, - "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=": { - "presharedKey": null, - "endpoint": "173.244.225.194:45014", - "latestHandshake": 1728809827, - "transferRx": 1363652, - "transferSx": 458252, - "persistentKeepalive": null, - "allowedIps": ["10.10.0.5/32"] - } - } - } + { + "device": "wg0", + "private_key": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", + "public_key": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", + "listen_port": 51820, + "fwmark": null, + "peers": [ + { + "public_key": "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=", + "preshared_key": null, + "endpoint": "79.134.136.199:40036", + "latest_handshake": 1728809756, + "transfer_rx": 1378724, + "transfer_sx": 406524, + "persistent_keepalive": null, + "allowed_ips": ["10.10.0.2/32"] + }, + { + "public_key": "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=", + "preshared_key": null, + "endpoint": "79.134.136.199:35946", + "latest_handshake": 1728809756, + "transfer_rx": 4884248, + "transfer_sx": 3544596, + "persistent_keepalive": null, + "allowed_ips": ["10.10.0.3/32"] + }, + { + "public_key": "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=", + "preshared_key": null, + "allowed_ips": ["10.10.0.4/32"] + }, + { + "public_key": "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=", + "preshared_key": null, + "endpoint": "173.244.225.194:45014", + "latest_handshake": 1728809827, + "transfer_rx": 1363652, + "transfer_sx": 458252, + "persistent_keepalive": null, + "allowed_ips": ["10.10.0.5/32"] + } + ] + } ] $ wg show all dump | jc --wg-show -p -r [ - { - "device": "wg0", - "privateKey": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", - "publicKey": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", - "listenPort": 51820, - "fwmark": null, - "peers": { - "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=": { - "presharedKey": null, - "endpoint": "79.134.136.199:40036", - "latestHandshake": 1728809756, - "transferRx": 1378724, - "transferSx": 406524, - "persistentKeepalive": -1, - "allowedIps": ["10.10.0.2/32"] - }, - "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=": { - "presharedKey": null, - "endpoint": "79.134.136.199:35946", - "latestHandshake": 1728809756, - "transferRx": 4884248, - "transferSx": 3544596, - "persistentKeepalive": -1, - "allowedIps": ["10.10.0.3/32"] - }, - "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=": { - "presharedKey": null, - "allowedIps": ["10.10.0.4/32"] - }, - "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=": { - "presharedKey": null, - "endpoint": "173.244.225.194:45014", - "latestHandshake": 1728809827, - "transferRx": 1363652, - "transferSx": 458252, - "persistentKeepalive": -1, - "allowedIps": ["10.10.0.5/32"] - } - } + { + "device": "wg0", + "private_key": "aEbVdvHSEp3oofHDNVCsUoaRSxk1Og8/pTLof5yF+1M=", + "public_key": "OIxbQszw1chdO5uigAxpsl4fc/h04yMYafl72gUbakM=", + "listen_port": 51820, + "fwmark": null, + "peers": { + "sQFGAhSdx0aC7DmTFojzBOW8Ccjv1XV5+N9FnkZu5zc=": { + "preshared_key": null, + "endpoint": "79.134.136.199:40036", + "latest_handshake": 1728809756, + "transfer_rx": 1378724, + "transfer_sx": 406524, + "persistent_keepalive": -1, + "allowed_ips": ["10.10.0.2/32"] + }, + "B9csmpvrv4Q7gpjc6zAbNNO8hIOYfpBqxmik2aNpwwE=": { + "preshared_key": null, + "endpoint": "79.134.136.199:35946", + "latest_handshake": 1728809756, + "transfer_rx": 4884248, + "transfer_sx": 3544596, + "persistent_keepalive": -1, + "allowed_ips": ["10.10.0.3/32"] + }, + "miiSYR5UdevREhlWpmnci+vv/dEGLHbNtKu7u1CuOD4=": { + "preshared_key": null, + "allowed_ips": ["10.10.0.4/32"] + }, + "gx9+JHLHJvOfBNjTmZ8KQAnThFFiZMQrX1kRaYcIYzw=": { + "preshared_key": null, + "endpoint": "173.244.225.194:45014", + "latest_handshake": 1728809827, + "transfer_rx": 1363652, + "transfer_sx": 458252, + "persistent_keepalive": -1, + "allowed_ips": ["10.10.0.5/32"] + } } + } ] """ @@ -143,9 +149,7 @@ class info: """Provides parser metadata (version, author, etc.)""" version = "1.0" - description = ( - "Parses the output of the `wg show` command to provide structured JSON data" - ) + description = "`wg show` command parser" author = "Hamza Saht" author_email = "hamzasaht01@gmail.com" compatible = ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"] @@ -172,20 +176,20 @@ def _process(proc_data: List[DeviceData]) -> List[JSONDictType]: for device in proc_data: processed_device = { "device": device["device"], - "privateKey": device.get("privateKey"), - "publicKey": device.get("publicKey"), - "listenPort": device.get("listenPort"), + "private_key": device.get("private_key"), + "public_key": device.get("public_key"), + "listen_port": device.get("listen_port"), "fwmark": device.get("fwmark"), "peers": [ { - "publicKey": peer_key, - "presharedKey": peer_data.get("presharedKey"), + "public_key": peer_key, + "preshared_key": peer_data.get("preshared_key"), "endpoint": peer_data.get("endpoint"), - "latestHandshake": peer_data.get("latestHandshake", 0), - "transferRx": peer_data.get("transferRx", 0), - "transferSx": peer_data.get("transferSx", 0), - "persistentKeepalive": peer_data.get("persistentKeepalive", -1), - "allowedIps": peer_data.get("allowedIps", []), + "latest_handshake": peer_data.get("latest_handshake", 0), + "transfer_rx": peer_data.get("transfer_rx", 0), + "transfer_sx": peer_data.get("transfer_sx", 0), + "persistent_keepalive": peer_data.get("persistent_keepalive", -1), + "allowed_ips": peer_data.get("allowed_ips", []), } for peer_key, peer_data in device.get("peers", {}).items() ], @@ -194,7 +198,7 @@ def _process(proc_data: List[DeviceData]) -> List[JSONDictType]: return processed_data -def parse(data: str, raw: bool = False, quiet: bool = False) -> List[DeviceData]: +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictType]: """ Main text parsing function. @@ -226,9 +230,9 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[DeviceData] raw_output.append({"device": current_device, **device_data}) current_device = device device_data = { - "privateKey": private_key if private_key != "(none)" else None, - "publicKey": public_key if public_key != "(none)" else None, - "listenPort": int(listen_port) if listen_port != "0" else None, + "private_key": private_key if private_key != "(none)" else None, + "public_key": public_key if public_key != "(none)" else None, + "listen_port": int(listen_port) if listen_port != "0" else None, "fwmark": int(fwmark) if fwmark != "off" else None, "peers": {}, } @@ -245,17 +249,17 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[DeviceData] persistent_keepalive, ) = fields peer_data: PeerData = { - "presharedKey": preshared_key + "preshared_key": preshared_key if preshared_key != "(none)" else None, "endpoint": endpoint if endpoint != "(none)" else None, - "latestHandshake": int(latest_handshake), - "transferRx": int(transfer_rx), - "transferSx": int(transfer_tx), - "persistentKeepalive": int(persistent_keepalive) + "latest_handshake": int(latest_handshake), + "transfer_rx": int(transfer_rx), + "transfer_sx": int(transfer_tx), + "persistent_keepalive": int(persistent_keepalive) if persistent_keepalive != "off" else -1, - "allowedIps": allowed_ips.split(",") + "allowed_ips": allowed_ips.split(",") if allowed_ips != "(none)" else [], } diff --git a/man/jc.1 b/man/jc.1 index a5f2efcb7..f59508263 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-10-18 1.25.4 "JSON Convert" +.TH jc 1 2024-11-24 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -512,6 +512,11 @@ openvpn-status.log file parser \fB--os-release\fP `/etc/os-release` file parser +.TP +.B +\fB--pacman\fP +`pacman` command parser + .TP .B \fB--passwd\fP @@ -1097,6 +1102,11 @@ Version string parser \fB--wc\fP `wc` command parser +.TP +.B +\fB--wg-show\fP +`wg show` command parser + .TP .B \fB--who\fP diff --git a/tests/fixtures/ubuntu-22.04/wg_show--one_device.json b/tests/fixtures/ubuntu-22.04/wg_show--one_device.json index 310ccbb13..02910008b 100644 --- a/tests/fixtures/ubuntu-22.04/wg_show--one_device.json +++ b/tests/fixtures/ubuntu-22.04/wg_show--one_device.json @@ -1,92 +1,92 @@ [ { "device": "wg0", - "privateKey": "ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N=", - "publicKey": "PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN=", - "listenPort": 51820, + "private_key": "ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N=", + "public_key": "PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN=", + "listen_port": 51820, "fwmark": null, "peers": [ { - "publicKey": "rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe=", - "presharedKey": null, + "public_key": "rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe=", + "preshared_key": null, "endpoint": "82.132.137.204:50024", - "latestHandshake": 1829439251, - "transferRx": 1536642, - "transferSx": 492320, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 1829439251, + "transfer_rx": 1536642, + "transfer_sx": 492320, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.2/32" ] }, { - "publicKey": "A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE=", - "presharedKey": null, + "public_key": "A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE=", + "preshared_key": null, "endpoint": "82.132.137.204:49732", - "latestHandshake": 1829439125, - "transferRx": 5641359, - "transferSx": 4206783, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 1829439125, + "transfer_rx": 5641359, + "transfer_sx": 4206783, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.3/32" ] }, { - "publicKey": "pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5=", - "presharedKey": null, + "public_key": "pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5=", + "preshared_key": null, "endpoint": null, - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 0, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 0, + "transfer_rx": 0, + "transfer_sx": 0, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.4/32" ] }, { - "publicKey": "hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx=", - "presharedKey": null, + "public_key": "hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx=", + "preshared_key": null, "endpoint": "180.255.226.203:21678", - "latestHandshake": 1829439243, - "transferRx": 1555523, - "transferSx": 544780, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 1829439243, + "transfer_rx": 1555523, + "transfer_sx": 544780, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.5/32" ] }, { - "publicKey": "kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ=", - "presharedKey": null, + "public_key": "kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ=", + "preshared_key": null, "endpoint": "82.132.137.204:67130", - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 0, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 0, + "transfer_rx": 0, + "transfer_sx": 0, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.6/32" ] }, { - "publicKey": "XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe=", - "presharedKey": null, + "public_key": "XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe=", + "preshared_key": null, "endpoint": "180.255.226.203:56092", - "latestHandshake": 1829439121, - "transferRx": 1900247, - "transferSx": 1352639, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 1829439121, + "transfer_rx": 1900247, + "transfer_sx": 1352639, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.8/32" ] }, { - "publicKey": "tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh=", - "presharedKey": null, + "public_key": "tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh=", + "preshared_key": null, "endpoint": "82.132.137.204:60184", - "latestHandshake": 1829037182, - "transferRx": 75047, - "transferSx": 184725, - "persistentKeepalive": -1, - "allowedIps": [ + "latest_handshake": 1829037182, + "transfer_rx": 75047, + "transfer_sx": 184725, + "persistent_keepalive": -1, + "allowed_ips": [ "10.10.0.7/32" ] } diff --git a/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json b/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json index 9b9351dec..7da418a49 100644 --- a/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json +++ b/tests/fixtures/ubuntu-22.04/wg_show--two_devices.json @@ -1,245 +1 @@ -[ - { - "device": "wg0", - "privateKey": "ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N=", - "publicKey": "PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN=", - "listenPort": 51820, - "fwmark": null, - "peers": [ - { - "publicKey": "rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe=", - "presharedKey": null, - "endpoint": "82.132.137.204:50024", - "latestHandshake": 1829439251, - "transferRx": 1536642, - "transferSx": 492320, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.2/32" - ] - }, - { - "publicKey": "A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE=", - "presharedKey": null, - "endpoint": "82.132.137.204:49732", - "latestHandshake": 1829439125, - "transferRx": 5641359, - "transferSx": 4206783, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.3/32" - ] - }, - { - "publicKey": "pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5=", - "presharedKey": null, - "endpoint": null, - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 0, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.4/32" - ] - }, - { - "publicKey": "hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx=", - "presharedKey": null, - "endpoint": "180.255.226.203:21678", - "latestHandshake": 1829439243, - "transferRx": 1555523, - "transferSx": 544780, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.5/32" - ] - }, - { - "publicKey": "kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ=", - "presharedKey": null, - "endpoint": "82.132.137.204:67130", - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 0, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.6/32" - ] - }, - { - "publicKey": "XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe=", - "presharedKey": null, - "endpoint": "180.255.226.203:56092", - "latestHandshake": 1829439121, - "transferRx": 1900247, - "transferSx": 1352639, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.8/32" - ] - }, - { - "publicKey": "tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh=", - "presharedKey": null, - "endpoint": "82.132.137.204:60184", - "latestHandshake": 1829037182, - "transferRx": 75047, - "transferSx": 184725, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.7/32" - ] - }, - { - "publicKey": "JH8Fz8KGH5vDYu3eUuWwRcTUcvRqFHZfMlNtsg2xZwF=", - "presharedKey": null, - "endpoint": "91.142.150.210:51478", - "latestHandshake": 1829037123, - "transferRx": 985632, - "transferSx": 723582, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.9/32" - ] - }, - { - "publicKey": "Yx6kNq8xhPmKhYq0YqTxVt2ZmxZvdYKg5Ymj9fgHkGh=", - "presharedKey": null, - "endpoint": "92.233.144.193:61112", - "latestHandshake": 1829037212, - "transferRx": 1350235, - "transferSx": 945301, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.0.10/32" - ] - } - ] - }, - { - "device": "wg1", - "privateKey": "JnR8bwIHKq7yqfNDOWBlTohSTxl7Wa9/sTLcf6tQ+4O=", - "publicKey": "MUocVr6x4gjhT9vkkDrzm6hc/906dJHYcgk93iHvbmR=", - "listenPort": 51821, - "fwmark": null, - "peers": [ - { - "publicKey": "yQHRBjVgy2fC9EkUFlhdDPZ0Lekv4YM9+Q0GmnXw9gf=", - "presharedKey": null, - "endpoint": "72.144.138.212:50135", - "latestHandshake": 1929850372, - "transferRx": 1678923, - "transferSx": 513470, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.2/32" - ] - }, - { - "publicKey": "C1gsotwrx9S9jsq9yzJgPPO0hNRYgrDsblmj6dSrkZE=", - "presharedKey": null, - "endpoint": "59.232.145.213:49364", - "latestHandshake": 1929850156, - "transferRx": 5982563, - "transferSx": 4378204, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.3/32" - ] - }, - { - "publicKey": "qjkYZR6WfgnTGjnXrqokf+xw/fIFMHyPtLu9w3DwOF6=", - "presharedKey": null, - "endpoint": null, - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 0, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.4/32" - ] - } - ] - }, - { - "device": "wg1", - "privateKey": "JpK6HvHKLp9zmqDFQXBqUmxTSvW6Vp9/zTLbf6pT+7N=", - "publicKey": "LQdcXs5y5dkgU0vmkCszm8hf/907fKHYdhk94jHvbnQ=", - "listenPort": 51821, - "fwmark": null, - "peers": [ - { - "publicKey": "tRFGGjUhy3hD0GmVEljeDQY0Mhlv5YM7+Q2HmnWy9je=", - "presharedKey": null, - "endpoint": "69.157.149.222:51049", - "latestHandshake": 1929851223, - "transferRx": 1680921, - "transferSx": 523451, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.5/32" - ] - }, - { - "publicKey": "K2hzotyrx8S1jsq0yzHgTQO1kOYVhrDwblmj7eTrkZF=", - "presharedKey": null, - "endpoint": "61.242.155.214:48012", - "latestHandshake": 1929851045, - "transferRx": 6052145, - "transferSx": 4435280, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.6/32" - ] - }, - { - "publicKey": "VliYZS7WggpUFkWNralkg+wz/eIHMHyStMpu0x4EoEJ=", - "presharedKey": null, - "endpoint": null, - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 0, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.7/32" - ] - }, - { - "publicKey": "kB8yFrKmyvaDF1uL2uUgeOsLL99jeUL2kefKRt3ZoFh=", - "presharedKey": null, - "endpoint": "72.132.145.206:62084", - "latestHandshake": 1929137285, - "transferRx": 95023, - "transferSx": 197982, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.8/32" - ] - }, - { - "publicKey": "Z9fsqvwty8U9jqj1zyKgPRQ1hOXYgrFtcmli8fSprHF=", - "presharedKey": null, - "endpoint": "68.243.154.222:54321", - "latestHandshake": 1929137125, - "transferRx": 1200475, - "transferSx": 890678, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.9/32" - ] - }, - { - "publicKey": "Lx9lNq9xhPnJhYr1YqYxVt3ZmyawdZLg5Zmj0fhGlJk=", - "presharedKey": null, - "endpoint": "71.233.144.204:59012", - "latestHandshake": 1929137243, - "transferRx": 1450234, - "transferSx": 1006235, - "persistentKeepalive": -1, - "allowedIps": [ - "10.10.1.10/32" - ] - } - ] - } -] +[{"device":"wg0","private_key":"ZkG2dvJSUq5ohkDFNWBqToaVSyk4Pp8/bULaf6yX+3N=","public_key":"PQsbRs4w2fidQ7uhjgCypl5fc/804bHZbfl83gGvakN=","listen_port":51820,"fwmark":null,"peers":[{"public_key":"rQFRAjRdx1aD8DnTFpkcBOY9Edjt3ZU7+P9HokZv7xe=","preshared_key":null,"endpoint":"82.132.137.204:50024","latest_handshake":1829439251,"transfer_rx":1536642,"transfer_sx":492320,"persistent_keepalive":-1,"allowed_ips":["10.10.0.2/32"]},{"public_key":"A0fsnrwsv7S9hrk8yzCgOON9gKPYfpCrzqil4bPpxAE=","preshared_key":null,"endpoint":"82.132.137.204:49732","latest_handshake":1829439125,"transfer_rx":5641359,"transfer_sx":4206783,"persistent_keepalive":-1,"allowed_ips":["10.10.0.3/32"]},{"public_key":"pkjVZR5VdfnSFhlWsqnkf+wv/eHGLHzOtKu8v2CvOD5=","preshared_key":null,"endpoint":null,"latest_handshake":0,"transfer_rx":0,"transfer_sx":0,"persistent_keepalive":-1,"allowed_ips":["10.10.0.4/32"]},{"public_key":"hz0+KJRHJyXfDNjUnZ9LRAnShFFjZNTrW2jRbXjIazx=","preshared_key":null,"endpoint":"180.255.226.203:21678","latest_handshake":1829439243,"transfer_rx":1555523,"transfer_sx":544780,"persistent_keepalive":-1,"allowed_ips":["10.10.0.5/32"]},{"public_key":"kujr4Z8eutQ8ebzFf33DLc3PNKrO3J+ZVy3jkrR1cUZ=","preshared_key":null,"endpoint":"82.132.137.204:67130","latest_handshake":0,"transfer_rx":0,"transfer_sx":0,"persistent_keepalive":-1,"allowed_ips":["10.10.0.6/32"]},{"public_key":"XcgkMRmxhQiIgXowYqsxUt1SlwUydXJd4Zmi8dgGeYe=","preshared_key":null,"endpoint":"180.255.226.203:56092","latest_handshake":1829439121,"transfer_rx":1900247,"transfer_sx":1352639,"persistent_keepalive":-1,"allowed_ips":["10.10.0.8/32"]},{"public_key":"tB9yFqLmyvcDD1rJ1rTgeKtKK98hdUL1jefMRt4XbDh=","preshared_key":null,"endpoint":"82.132.137.204:60184","latest_handshake":1829037182,"transfer_rx":75047,"transfer_sx":184725,"persistent_keepalive":-1,"allowed_ips":["10.10.0.7/32"]},{"public_key":"JH8Fz8KGH5vDYu3eUuWwRcTUcvRqFHZfMlNtsg2xZwF=","preshared_key":null,"endpoint":"91.142.150.210:51478","latest_handshake":1829037123,"transfer_rx":985632,"transfer_sx":723582,"persistent_keepalive":-1,"allowed_ips":["10.10.0.9/32"]},{"public_key":"Yx6kNq8xhPmKhYq0YqTxVt2ZmxZvdYKg5Ymj9fgHkGh=","preshared_key":null,"endpoint":"92.233.144.193:61112","latest_handshake":1829037212,"transfer_rx":1350235,"transfer_sx":945301,"persistent_keepalive":-1,"allowed_ips":["10.10.0.10/32"]}]},{"device":"wg1","private_key":"JnR8bwIHKq7yqfNDOWBlTohSTxl7Wa9/sTLcf6tQ+4O=","public_key":"MUocVr6x4gjhT9vkkDrzm6hc/906dJHYcgk93iHvbmR=","listen_port":51821,"fwmark":null,"peers":[{"public_key":"yQHRBjVgy2fC9EkUFlhdDPZ0Lekv4YM9+Q0GmnXw9gf=","preshared_key":null,"endpoint":"72.144.138.212:50135","latest_handshake":1929850372,"transfer_rx":1678923,"transfer_sx":513470,"persistent_keepalive":-1,"allowed_ips":["10.10.1.2/32"]},{"public_key":"C1gsotwrx9S9jsq9yzJgPPO0hNRYgrDsblmj6dSrkZE=","preshared_key":null,"endpoint":"59.232.145.213:49364","latest_handshake":1929850156,"transfer_rx":5982563,"transfer_sx":4378204,"persistent_keepalive":-1,"allowed_ips":["10.10.1.3/32"]},{"public_key":"qjkYZR6WfgnTGjnXrqokf+xw/fIFMHyPtLu9w3DwOF6=","preshared_key":null,"endpoint":null,"latest_handshake":0,"transfer_rx":0,"transfer_sx":0,"persistent_keepalive":-1,"allowed_ips":["10.10.1.4/32"]}]},{"device":"wg1","private_key":"JpK6HvHKLp9zmqDFQXBqUmxTSvW6Vp9/zTLbf6pT+7N=","public_key":"LQdcXs5y5dkgU0vmkCszm8hf/907fKHYdhk94jHvbnQ=","listen_port":51821,"fwmark":null,"peers":[{"public_key":"tRFGGjUhy3hD0GmVEljeDQY0Mhlv5YM7+Q2HmnWy9je=","preshared_key":null,"endpoint":"69.157.149.222:51049","latest_handshake":1929851223,"transfer_rx":1680921,"transfer_sx":523451,"persistent_keepalive":-1,"allowed_ips":["10.10.1.5/32"]},{"public_key":"K2hzotyrx8S1jsq0yzHgTQO1kOYVhrDwblmj7eTrkZF=","preshared_key":null,"endpoint":"61.242.155.214:48012","latest_handshake":1929851045,"transfer_rx":6052145,"transfer_sx":4435280,"persistent_keepalive":-1,"allowed_ips":["10.10.1.6/32"]},{"public_key":"VliYZS7WggpUFkWNralkg+wz/eIHMHyStMpu0x4EoEJ=","preshared_key":null,"endpoint":null,"latest_handshake":0,"transfer_rx":0,"transfer_sx":0,"persistent_keepalive":-1,"allowed_ips":["10.10.1.7/32"]},{"public_key":"kB8yFrKmyvaDF1uL2uUgeOsLL99jeUL2kefKRt3ZoFh=","preshared_key":null,"endpoint":"72.132.145.206:62084","latest_handshake":1929137285,"transfer_rx":95023,"transfer_sx":197982,"persistent_keepalive":-1,"allowed_ips":["10.10.1.8/32"]},{"public_key":"Z9fsqvwty8U9jqj1zyKgPRQ1hOXYgrFtcmli8fSprHF=","preshared_key":null,"endpoint":"68.243.154.222:54321","latest_handshake":1929137125,"transfer_rx":1200475,"transfer_sx":890678,"persistent_keepalive":-1,"allowed_ips":["10.10.1.9/32"]},{"public_key":"Lx9lNq9xhPnJhYr1YqYxVt3ZmyawdZLg5Zmj0fhGlJk=","preshared_key":null,"endpoint":"71.233.144.204:59012","latest_handshake":1929137243,"transfer_rx":1450234,"transfer_sx":1006235,"persistent_keepalive":-1,"allowed_ips":["10.10.1.10/32"]}]}] diff --git a/tests/fixtures/windows/windows-10/wg_show.json b/tests/fixtures/windows/windows-10/wg_show.json index c56b4441c..feedaabd7 100644 --- a/tests/fixtures/windows/windows-10/wg_show.json +++ b/tests/fixtures/windows/windows-10/wg_show.json @@ -1,94 +1 @@ -[ - { - "device": "wg0", - "privateKey": "Xa4Bq8AUFrjKp+Z283VDzEUVeOOn2wX/uuLTMUkkJens=", - "publicKey": "mL2Co/VecYWtXSY6YUZAI6cAsFZDCEV+9iZKibNcWTu=", - "listenPort": 45321, - "fwmark": null, - "peers": [ - { - "publicKey": "bN9QoMEqlKUpncq0Q8ye9yURczKwmbXzwVsG7A+RV2B=", - "presharedKey": null, - "endpoint": "123.45.67.89:51820", - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 1532, - "persistentKeepalive": -1, - "allowedIps": [ - "0.0.0.0/0" - ] - } - ] - }, - { - "device": "wg0", - "privateKey": "yJ3PoNAqlNUpmcq0P7xv8zURdyKwmbZwwUsG9B+SV3C=", - "publicKey": "kP2Lo/WfgVWtYSY7ZUZAJ7cBsEZECFV+8jYKidOcVTv=", - "listenPort": 53211, - "fwmark": null, - "peers": [ - { - "publicKey": "dQ5AoNAqpOUlncq0P9ze8xURayLwmbYwwVsH8C+TV4D=", - "presharedKey": null, - "endpoint": "203.0.113.4:51820", - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 2001, - "persistentKeepalive": -1, - "allowedIps": [ - "192.168.1.0/24" - ] - } - ] - }, - { - "device": "wg0", - "privateKey": "pR6DoOBqmNUlncq0P1wq9zUSeyJwmbVxxWsF7D+RU5E=", - "publicKey": "qN2Mo/XghWWtXSY8YVZBK8cDsFZDCFQ+7kZKjbNcWTx=", - "listenPort": 67514, - "fwmark": null, - "peers": [ - { - "publicKey": "tA8AoPCqoPUlncq0P8xe7xUSayKwmbWxxVsG8E+UV6F=", - "presharedKey": null, - "endpoint": "198.51.100.15:51820", - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 1403, - "persistentKeepalive": -1, - "allowedIps": [ - "10.0.0.0/8" - ] - } - ] - }, - { - "device": "wg0", - "privateKey": "zU9CoQCqmQUlncq0P4wo6yUTbyJwmbYyyWsF9F+SV7G=", - "publicKey": "vM2Ko/YigXWtYSY9YUZCJ9dCsGZECFV+5lZLjcOcVVy=", - "listenPort": 79812, - "fwmark": null, - "peers": [ - { - "publicKey": "xC7DoRDqnRUlncq0P2wq9yUScyKwmbXzyWsH8F+TU8H=", - "presharedKey": null, - "endpoint": "172.16.0.1:51820", - "latestHandshake": 0, - "transferRx": 0, - "transferSx": 1872, - "persistentKeepalive": -1, - "allowedIps": [ - "172.16.0.0/16" - ] - } - ] - }, - { - "device": "wg0", - "privateKey": "rE4AoSCqnSUlncq0P7wv9zURdyLwmbZxzWsG9G+UV9I=", - "publicKey": "fN2Oo/ZjhYUtXSZ0YUZDK8eDsFZDCFQ+4jYKjcNcVVw=", - "listenPort": 91114, - "fwmark": null, - "peers": [] - } -] +[{"device":"wg0","private_key":"Xa4Bq8AUFrjKp+Z283VDzEUVeOOn2wX/uuLTMUkkJens=","public_key":"mL2Co/VecYWtXSY6YUZAI6cAsFZDCEV+9iZKibNcWTu=","listen_port":45321,"fwmark":null,"peers":[{"public_key":"bN9QoMEqlKUpncq0Q8ye9yURczKwmbXzwVsG7A+RV2B=","preshared_key":null,"endpoint":"123.45.67.89:51820","latest_handshake":0,"transfer_rx":0,"transfer_sx":1532,"persistent_keepalive":-1,"allowed_ips":["0.0.0.0/0"]}]},{"device":"wg0","private_key":"yJ3PoNAqlNUpmcq0P7xv8zURdyKwmbZwwUsG9B+SV3C=","public_key":"kP2Lo/WfgVWtYSY7ZUZAJ7cBsEZECFV+8jYKidOcVTv=","listen_port":53211,"fwmark":null,"peers":[{"public_key":"dQ5AoNAqpOUlncq0P9ze8xURayLwmbYwwVsH8C+TV4D=","preshared_key":null,"endpoint":"203.0.113.4:51820","latest_handshake":0,"transfer_rx":0,"transfer_sx":2001,"persistent_keepalive":-1,"allowed_ips":["192.168.1.0/24"]}]},{"device":"wg0","private_key":"pR6DoOBqmNUlncq0P1wq9zUSeyJwmbVxxWsF7D+RU5E=","public_key":"qN2Mo/XghWWtXSY8YVZBK8cDsFZDCFQ+7kZKjbNcWTx=","listen_port":67514,"fwmark":null,"peers":[{"public_key":"tA8AoPCqoPUlncq0P8xe7xUSayKwmbWxxVsG8E+UV6F=","preshared_key":null,"endpoint":"198.51.100.15:51820","latest_handshake":0,"transfer_rx":0,"transfer_sx":1403,"persistent_keepalive":-1,"allowed_ips":["10.0.0.0/8"]}]},{"device":"wg0","private_key":"zU9CoQCqmQUlncq0P4wo6yUTbyJwmbYyyWsF9F+SV7G=","public_key":"vM2Ko/YigXWtYSY9YUZCJ9dCsGZECFV+5lZLjcOcVVy=","listen_port":79812,"fwmark":null,"peers":[{"public_key":"xC7DoRDqnRUlncq0P2wq9yUScyKwmbXzyWsH8F+TU8H=","preshared_key":null,"endpoint":"172.16.0.1:51820","latest_handshake":0,"transfer_rx":0,"transfer_sx":1872,"persistent_keepalive":-1,"allowed_ips":["172.16.0.0/16"]}]},{"device":"wg0","private_key":"rE4AoSCqnSUlncq0P7wv9zURdyLwmbZxzWsG9G+UV9I=","public_key":"fN2Oo/ZjhYUtXSZ0YUZDK8eDsFZDCFQ+4jYKjcNcVVw=","listen_port":91114,"fwmark":null,"peers":[]}] diff --git a/tests/test_pacman.py b/tests/test_pacman.py index a23d7a5e5..1c9e4bfbe 100644 --- a/tests/test_pacman.py +++ b/tests/test_pacman.py @@ -13,7 +13,6 @@ # - `{parser_name}--{some_test_description}.json` for expected JSON after parsing. class MyTests(unittest.TestCase): - maxDiff = None def test_pacman_nodata(self): """ From 366589268efef0a13de3c50f9cdf8577c0353dfe Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 25 Nov 2024 17:16:30 -0800 Subject: [PATCH 51/52] update calculated fields --- docs/parsers/pacman.md | 19 +++++++-- jc/parsers/pacman.py | 41 +++++++++++++++---- jc/utils.py | 1 + man/jc.1 | 2 +- tests/fixtures/generic/pacman--packages.json | 2 +- tests/fixtures/generic/pacman--qii-zstd.json | 2 +- .../generic/pacman--si-graphicsmagick.json | 2 +- 7 files changed, 53 insertions(+), 16 deletions(-) diff --git a/docs/parsers/pacman.md b/docs/parsers/pacman.md index f880f5c92..4cc4dbfd6 100644 --- a/docs/parsers/pacman.md +++ b/docs/parsers/pacman.md @@ -12,6 +12,9 @@ Supports the following `pacman` arguments: - `-Qi` - `-Qii` +The `*_epoch` calculated timestamp fields are naive. (i.e. based on the +local time of the system the parser is run on) + Usage (cli): $ pacman -Si | jc --pacman @@ -62,10 +65,15 @@ Schema: "replaces": [ string ], - "download_size": integer, # in bytes - "installed_size": integer, # in bytes + "download_size": string, + "download_size_bytes": integer [0] + "installed_size": string, + "installed_size_bytes": integer, [0] "packager": string, "build_date": string, + "build_date_epoch": integer, [0] + "install_date": string, + "install_date_epoch": integer, [0] "validated_by": [ string ], @@ -75,6 +83,8 @@ Schema: } ] + [0] Field exists if conversion successful + Examples: $ pacman -qii zstd | jc --pacman -p @@ -113,10 +123,13 @@ Examples: ], "conflicts_with": [], "replaces": [], - "installed_size": "1563648", + "installed_size": "1527.00 KiB", + "installed_size_bytes": 1563648, "packager": "Levente Polyak ", "build_date": "Sat 11 May 2024 06:14:19 AM +08", + "build_date_epoch": 1715433259, "install_date": "Fri 24 May 2024 09:50:31 AM +08", + "install_date_epoch": 1715663342, "install_reason": "Installed as a dependency for another package", "install_script": "No", "validated_by": [ diff --git a/jc/parsers/pacman.py b/jc/parsers/pacman.py index 8fbeab8c6..5551a4ee8 100644 --- a/jc/parsers/pacman.py +++ b/jc/parsers/pacman.py @@ -7,6 +7,9 @@ - `-Qi` - `-Qii` +The `*_epoch` calculated timestamp fields are naive. (i.e. based on the +local time of the system the parser is run on) + Usage (cli): $ pacman -Si | jc --pacman @@ -57,10 +60,15 @@ "replaces": [ string ], - "download_size": integer, # in bytes - "installed_size": integer, # in bytes + "download_size": string, + "download_size_bytes": integer [0] + "installed_size": string, + "installed_size_bytes": integer, [0] "packager": string, "build_date": string, + "build_date_epoch": integer, [0] + "install_date": string, + "install_date_epoch": integer, [0] "validated_by": [ string ], @@ -70,6 +78,8 @@ } ] + [0] Field exists if conversion successful + Examples: $ pacman -qii zstd | jc --pacman -p @@ -108,10 +118,13 @@ ], "conflicts_with": [], "replaces": [], - "installed_size": "1563648", + "installed_size": "1527.00 KiB", + "installed_size_bytes": 1563648, "packager": "Levente Polyak ", "build_date": "Sat 11 May 2024 06:14:19 AM +08", + "build_date_epoch": 1715433259, "install_date": "Fri 24 May 2024 09:50:31 AM +08", + "install_date_epoch": 1715663342, "install_reason": "Installed as a dependency for another package", "install_script": "No", "validated_by": [ @@ -195,21 +208,18 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: 'licenses', 'groups', 'provides', 'depends_on', 'conflicts_with', 'replaces', 'optional_for' } - space_split_fields = { 'required_by', 'groups', 'provides', 'depends_on', 'conflicts_with', 'replaces', 'validated_by' } - two_space_fields = {'licenses', 'validated_by'} - name_description_fields = {'optional_deps'} - size_fields = {'download_size', 'installed_size'} + date_fields = {'build_date', 'install_date'} # initial split for field lists for item in proc_data: - for key, val in item.items(): + for key, val in item.copy().items(): if key in split_fields: if val is None: item[key] = [] @@ -237,7 +247,20 @@ def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]: item[key] = new_list if key in size_fields: - item[key] = jc.utils.convert_size_to_int(val) + bts = jc.utils.convert_size_to_int(val) + if bts: + item[key + '_bytes'] = bts + + if key in date_fields: + # need to append '00' to date for conversion + ts = jc.utils.timestamp(val + '00', format_hint=(3100,)) + if ts.naive: + item[key + '_epoch'] = ts.naive + else: + # try taking off the text TZ identifier + ts = jc.utils.timestamp(val[:-4], format_hint=(3000,)) + if ts.naive: + item[key + '_epoch'] = ts.naive return proc_data diff --git a/jc/utils.py b/jc/utils.py index 4b1901421..5f9798c62 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -703,6 +703,7 @@ def _parse_dt( {'id': 1800, 'format': '%d/%b/%Y:%H:%M:%S %z', 'locale': None}, # Common Log Format: 10/Oct/2000:13:55:36 -0700 {'id': 2000, 'format': '%a %d %b %Y %I:%M:%S %p %Z', 'locale': None}, # en_US.UTF-8 local format (found in upower cli output): Tue 23 Mar 2021 04:12:11 PM UTC {'id': 3000, 'format': '%a %d %b %Y %I:%M:%S %p', 'locale': None}, # en_US.UTF-8 local format with non-UTC tz (found in upower cli output): Tue 23 Mar 2021 04:12:11 PM IST + {'id': 3100, 'format': '%a %d %b %Y %I:%M:%S %p %z', 'locale': None}, # pacman format - append 00 to end to make it work: # Sat 11 May 2024 06:14:19 AM +0800 {'id': 3500, 'format': '%a, %d %b %Y %H:%M:%S %Z', 'locale': None}, # HTTP header time format (always GMT so assume UTC): Wed, 31 Jan 2024 00:39:28 GMT {'id': 4000, 'format': '%A %d %B %Y %I:%M:%S %p %Z', 'locale': None}, # European-style local format (found in upower cli output): Tuesday 01 October 2019 12:50:41 PM UTC {'id': 5000, 'format': '%A %d %B %Y %I:%M:%S %p', 'locale': None}, # European-style local format with non-UTC tz (found in upower cli output): Tuesday 01 October 2019 12:50:41 PM IST diff --git a/man/jc.1 b/man/jc.1 index f59508263..16b0ae418 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-11-24 1.25.4 "JSON Convert" +.TH jc 1 2024-11-25 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings diff --git a/tests/fixtures/generic/pacman--packages.json b/tests/fixtures/generic/pacman--packages.json index 2a9057770..60eee4789 100644 --- a/tests/fixtures/generic/pacman--packages.json +++ b/tests/fixtures/generic/pacman--packages.json @@ -1 +1 @@ -[{"repository":"core","name":"acl","version":"2.3.2-1","description":"Access control list utilities, libraries and headers","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/acl","licenses":["LGPL"],"groups":["kde-applications","kde-sdk"],"provides":["xfsacl","libacl.so=1-64"],"depends_on":["glibc"],"optional_deps":[{"name":"testing","description":"this is a test description"},{"name":"name-with-no-description","description":""}],"required_by":["advcpmv","bfs","borg","borg2","bup","casync","cdrtools","clifm-git","coreutils","coreutils-hybrid-git","cups","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","gettext","incus","incus-tools","kio","krusader","lib32-acl","libarchive","libisofs","logrotate","lxd","proftpd","proxmox-backup-client","rsync","rsync-reflink","sed","shadow","snapper","spice-gtk","systemd","tar","udisks2","udisks2-btrfs","udisks2-lvm2","vim","vis","xfsdump"],"optional_for":["diffoscope","mkosi","mkosi-git"],"conflicts_with":["xfsacl"],"replaces":["xfsacl"],"download_size":141086,"installed_size":337899,"packager":"Christian Hesse ","build_date":"Wed 24 Jan 2024 04:57:20 PM +08","md5_sum":"33d329308c838e76498e4eac7e603291","sha_256_sum":"cbfb71e8ba9aca9e51cbdfd77d0ec51371eb865a9a098c77e2c6046962e6ae0a","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"amd-ucode","version":"20240809.59460076-1","description":"Microcode update image for AMD CPUs","architecture":"any","url":"https://gitlab.com/kernel-firmware/linux-firmware","licenses":["custom"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":60641,"installed_size":162795,"packager":"Tobias Powalowski ","build_date":"Mon 12 Aug 2024 02:43:48 AM +08","md5_sum":null,"sha_256_sum":"c04893e8d8defdc2ccfa29c09b2599906291a12b5e470aff9e4a80e43bece68e","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"archlinux-keyring","version":"20240709-1","description":"Arch Linux PGP keyring","architecture":"any","url":"https://gitlab.archlinux.org/archlinux/archlinux-keyring/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["pacman"],"required_by":["base","base-devel","chaotic-keyring"],"optional_for":["mkosi-git"],"conflicts_with":[],"replaces":[],"download_size":1226936,"installed_size":1750220,"packager":"Christian Hesse ","build_date":"Wed 10 Jul 2024 05:31:37 AM +08","md5_sum":null,"sha_256_sum":"a6f573fc97fc21b55504a4d75d010257792847a5b87f19edff4ffb662f6f53a2","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"argon2","version":"20190702-6","description":"A password-hashing function (reference C implementation)","architecture":"x86_64","url":"https://github.com/P-H-C/phc-winner-argon2","licenses":["Apache","custom:CC0"],"groups":[],"provides":["libargon2.so=1-64"],"depends_on":["glibc"],"required_by":["cryptsetup","keepassxc","opendht","php","php-legacy","python-argon2-cffi-bindings","unrealircd","znc"],"optional_for":["keepass","tomb-git"],"conflicts_with":[],"replaces":[],"download_size":34129,"installed_size":108564,"packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 12:53:38 AM +08","md5_sum":null,"sha_256_sum":"467da2efdcef1bab8403ece5895794539b983ea7de664105a2dc821c68e8ba13","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"attr","version":"2.5.2-1","description":"Extended attribute support library for ACL support","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/attr","licenses":["LGPL"],"groups":[],"provides":["xfsattr","libattr.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bcachefs-tools-git","coreutils","coreutils-hybrid-git","glusterfs","lib32-attr","patch","proton-ge-custom","shadow","shake","toybox","wine-ge-custom","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","xfsdump"],"optional_for":[],"conflicts_with":["xfsattr"],"replaces":["xfsattr"],"download_size":70051,"installed_size":221184,"packager":"Christian Hesse ","build_date":"Sun 14 Jan 2024 10:58:15 PM +08","md5_sum":"50de36b6ebed40dd90f6c42cfb698b53","sha_256_sum":"83bcd58b066492f1242be41fa3f5750586d9eb7d8424a776e9fd6a8c5a496948","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"audit","version":"4.0.2-2","description":"Userspace components of the audit framework","architecture":"x86_64","url":"https://people.redhat.com/sgrubb/audit","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":["libaudit.so=1-64","libauparse.so=0-64"],"depends_on":["glibc","krb5","libkrb5.so=3-64","libgssapi_krb5.so=2-64","libcap-ng","libcap-ng.so=0-64"],"optional_deps":[{"name":"libldap","description":"for audispd-zos-remote"},{"name":"sh","description":"for augenrules"}],"required_by":["apparmor","aravis","dbus","dbus-broker","gdm","gdm-prime","ksystemlog","networkmanager","networkmanager-iwd","osquery","pam","perf","python-audit","shadow","systemd","trace-cmd","usbguard"],"optional_for":["clevis"],"conflicts_with":[],"replaces":[],"download_size":404633,"installed_size":1078497,"packager":"David Runge ","build_date":"Wed 04 Sep 2024 03:56:53 PM +08","md5_sum":null,"sha_256_sum":"9933298fff9e3866509e25091e02e25533f0a3d27b9964b35503c2ad3f58c47a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"autoconf","version":"2.72-1","description":"A GNU tool for automatically configuring source code","architecture":"any","url":"https://www.gnu.org/software/autoconf","licenses":["GPL2","GPL3","custom"],"groups":[],"provides":[],"depends_on":["awk","m4","diffutils","perl","sh"],"required_by":["argbash","autoconf-archive","base-devel","mate-common"],"optional_for":["asdf-vm","bauh"],"conflicts_with":[],"replaces":[],"download_size":666142,"installed_size":2331729,"packager":"Antonio Rojas ","build_date":"Sat 23 Dec 2023 08:16:19 AM +08","md5_sum":"cc7e1d210723d19fac4db93d89c77336","sha_256_sum":"44afcc89c89548bede040ae09e66ece236dc99202458bc22866bc3d490df4345","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"automake","version":"1.17-1","description":"A GNU tool for automatically creating Makefiles","architecture":"any","url":"https://www.gnu.org/software/automake","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["perl","bash"],"required_by":["base-devel","mate-common"],"optional_for":["asdf-vm","autoconf-archive","bauh"],"conflicts_with":[],"replaces":[],"download_size":641669,"installed_size":1694371,"packager":"Lukas Fleischer ","build_date":"Sat 20 Jul 2024 05:26:35 PM +08","md5_sum":null,"sha_256_sum":"71f691855fb6d1edc61e365f40c6dfd704d2af27a9a2828e753eb92cf2e03c9d","signatures":"A91764759326B440","extended_data":null},{"repository":"core","name":"b43-fwcutter","version":"019-5","description":"firmware extractor for the b43 kernel module","architecture":"x86_64","url":"https://wireless.wiki.kernel.org/en/users/Drivers/b43","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["glibc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":17479,"installed_size":45854,"packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:49:54 PM +08","md5_sum":null,"sha_256_sum":"8d8dc6f758afafdae33498321f0d14d82dff166d9dde58414f855491535fb396","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"base","version":"3-2","description":"Minimal package set to define a basic Arch Linux installation","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["filesystem","gcc-libs","glibc","bash","coreutils","file","findutils","gawk","grep","procps-ng","sed","tar","gettext","pciutils","psmisc","shadow","util-linux","bzip2","gzip","xz","licenses","pacman","archlinux-keyring","systemd","systemd-sysvcompat","iputils","iproute2"],"optional_deps":[{"name":"linux","description":"bare metal support"}],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":2365,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Sun 08 Oct 2023 09:15:41 AM +08","md5_sum":"9fde97a64c7825c959d498235cede216","sha_256_sum":"25da12f0347e4bef6c215dcd32b6495beb86010a8c7e40828167b95f56639061","signatures":"3B94A80E50A477C7","extended_data":null},{"repository":"core","name":"base-devel","version":"1-2","description":"Basic tools to build Arch Linux packages","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["archlinux-keyring","autoconf","automake","binutils","bison","debugedit","fakeroot","file","findutils","flex","gawk","gcc","gettext","grep","groff","gzip","libtool","m4","make","pacman","patch","pkgconf","sed","sudo","texinfo","which"],"required_by":["multilib-devel"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":2099,"installed_size":0,"packager":"Antonio Rojas ","build_date":"Sat 07 Sep 2024 03:08:35 AM +08","md5_sum":null,"sha_256_sum":"412a2effe23751e1c11b2fa68155f1a29ecea5d9dc8ea8cef4e87b7b429d3201","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"bash","version":"5.2.032-2","description":"The GNU Bourne Again shell","architecture":"x86_64","url":"https://www.gnu.org/software/bash/bash.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["sh"],"depends_on":["readline","libreadline.so=8-64","glibc","ncurses"],"optional_deps":[{"name":"bash-completion","description":"for tab completion"}],"required_by":["4ti2","9base","acme.sh","aconfmgr-git","acpid","adljack","afl++","alpine-chroot-install","alvr","ammonite","ananicy","android-ndk","android-sdk-build-tools","ankama-launcher","ant","antiword","antlr4","anything-sync-daemon","apparmor","apt","arch-install-scripts","arch-update","arch-wiki-lite","archiso","archiso-git","archivetools","archlinux-contrib","archlinux-java-run","ardour","ardour-git","arduino-ide","ark","asus-kbd-backlight","at-spi2-core","atop","audio-convert","aurutils","autoconf","autoconf-git","automake","base","bash-completion","bashburn","bashrun","bashtop","bat-extras","bats","bats-assert","bats-file","bats-support","bcachefs-tools","bcc-tools","bees","betterlockscreen","bind","bison","blender","blesh","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","booster","booster-git","bootiso","briar-desktop","brickadia-launcher","bup","bzip2","bzip3","ca-certificates-utils","cairo","carla","cfs-zen-tweaks","chaotic-neofetch-git","checksec","cjdns","clamav","clazy","clevis","cloud-guest-utils","cloud-image-utils","cloud-init","cmake-extras-git","codon-bin","cosmic-session","cpupower","cronie","crowdsec","cscope","cups-filters","db","db5.3","debtap","deepin-kwin","dejagnu","deltachat-desktop","devtools","dhclient","dhcpcd","dialog","dictd","diffutils","digikam","discord-chat-exporter-cli","distrobox","djvulibre","dkms","dmenu","dmtcp","doas-sudo-shim","dracut","drawio-desktop","dtc","e2fsprogs","easy-rsa","ebook-tools","ecl","ed","elfutils","emovix","epsxe","epubcheck","etc-update","exim","fakechroot","fakeroot","fastjet","faust","ffcast","fflas-ffpack","fftw","fig2dev","figlet","findutils","fio","firefox","firefox-developer-edition","firefox-esr","firrtl","flatpak","flex","fltk","foomatic-db-engine","freecell-solver","freedm-git","freedoom-git","freetype2","fricas","fwupd","fzf","gap","gap-packages","gawk","gdbm","gdm","gdm-prime","gedit","geeqie","geogebra","geos","gettext","ghidra","givaro","glib2","gnome-common","gnome-flashback","gnome-session","gnome-settings-daemon","gnome-shell","gnome-subtitles","gnuchess","gnupg","godot-mono-git","gpgit","gpm","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grails","grub","gsl","gsocket","gtk-sharp-3","gtk-update-icon-cache","gtk4","gzip","haskell-dataenc","haskell-extensible-exceptions","haskell-filemanip","haskell-hashtables","haskell-hosc","haskell-microspec","hblock","hdapsd","hdf5","hdf5-openmpi","heaptrack","hepmc","hepmc2","hip-runtime-amd","hipify-clang","hivex","hotdoc","hplip","httrack","hunspell","hwdetect","hydra","hyprshot","i3lock-fancy-git","ibus-typing-booster","icons-in-terminal-git","icu","icu69","ifplugd","ijs","imagescan","incron","intel-oneapi-common","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intellij-idea-community-edition","ipman","iptables","iptables-nft","ipvsadm","irpf","ispell","iverilog-git","jadx","java-runtime-common","jellyfin-server","jenv","jmol","jpeg-archive","jruby","js115","js128","js91","jython","kafka","kakasi","kde-cli-tools","kde-dev-scripts","kde-gtk-config","kdepim-addons","kdevelop","keychain","keycloak","keyutils","kinfocenter","klipperscreen","kmix","kommit","konsole","konversation","krb5","kubetail","kwallet-pam","lantern-bin","laptop-detect","lftp","lib32-libltdl","libassuan","libcamera","libchardet","libcups","libdca","libeatmydata","libgpg-error","libguestfs","libiodbc","libksba","libmbim","libmikmod","libnet","liboggz","libpcap","libpng","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","librewolf","libteam","libtool","libusb-compat","libxml2","libxslt","lightdm-gtk-greeter-settings","linbox","lksctp-tools","lm_sensors","lmms","lsb-release","ltex-ls-bin","lua-language-server","lua-luarepl","lua51-luarepl","lua52-luarepl","lua53-luarepl","lvm2","lxc","lynis","m4","mame","man-db","maven","mbedtls","mc","mcfly","mediathekview","mellite","meson","mill","minicom","miniupnpc","minq-ananicy-git","mjpegtools","mk-configure","mkinitcpio","mkinitcpio-archiso","mkinitcpio-systemd-tool","mkosi","mono","mtools","mullvad-browser-bin","mumble-server","mysql","mysql-clients","ncurses5-compat-libs","neofetch","neofetch-git","neovim-symlinks","netpbm","nfs-utils","nikto","nim","nm-cloud-setup","nm-iwd-cloud-setup","nnn","nnn-nerd","nomachine","npth","nspr","nspr-hg","nss","nss-hg","nuget","nvidia-prime","openapi-diff","openapi-generator","openresolv","openzwave","os-prober","os-prober-btrfs","osquery","ostree","p7zip","pacman","pacman-git","pacman-offline","pahole","pakka","pantheon-files","papirus-folders","pari","pass","pastel-docs","pax-utils","paxtest","pcre","pd","pdftk","perf","pesign","pipewire-jack","pipewire-module-xrdp","pipewire-v4l2","pkgconf","plantuml","plantuml-server","plasma-sdk","plasma-workspace","play.it","plymouth","plymouth-git","pm-utils","podman-docker","ponysay","pop-launcher","pop-launcher-git","posix","postfix","postgresql","pps-tools","preload","prettyping","processing","profile-cleaner","profile-sync-daemon","pulseaudio-control","pulseaudio-equalizer-ladspa","pycharm-community-edition","pyenv","pythia8","python-playwright","qemu-guest-agent","qtcreator","quarto-cli-bin","quilt","r","radare2","rasqal","rauc","rcs","rdma-core","redland","redo-sh","refind","reflector-simple","remmina","river","rizin","rkhunter","rocm-clang-ocl","rocm-gdb","roswell","rp-pppoe","rpmextract","rtirq","ruby-build","rust","sane","sbt","schedtoold","screenfetch","sdcc","sddm","sddm-git","sdedit","sdparm","serproid","sgml-common","shattered-pixel-dungeon","shunit2","singular","smali","smartmontools","solr","source-highlight","sowing","speakup-utils","spirv-tools","sqlcl","sqlmap","ssacli","ssh-tools","steam","steam-native-runtime","steamcmd","steamtinkerlaunch","stumpwm-contrib-git","subversion","switchboard-plug-security-privacy","sympow","syslog-ng","system-config-printer","systemd","taglib","taglib1","termv-git","testssl.sh","texinfo","texlive-bin","tgt","toolbox","tor","tracker3","tradingview","translate-shell","translate-toolkit","transmageddon","tropy-bin","txt2man","ufetch-git","ugit","umu-launcher","unifetch","unzip","usbctl","uuid","vala","valabind","ventoy-bin","vis","vkd3d-proton-mingw-git","vlc","vlc-luajit","vnstat","voacapl","vpnc","wcurl","wezterm","which","wireguard-tools","wireless-regdb","wl-mirror","wqy-zenhei","wv","wxwidgets-gtk3","wxwidgets-qt5","x2goserver","xapian-core","xdg-user-dirs","xdg-utils","xdm-archlinux","xfsprogs","xmlsec","xonotic-data","xorg-server","xorg-server-xvfb","xorg-x11perf","xorg-xdm","xorg-xpr","xosd","xssstate","xsudo-git","xwax","xz","yabridge","yodl","yosys","z","zaproxy","zramswap"],"optional_for":["a2jmidid","alsa-oss","alsa-utils","audit","btrbk","ecasound","gcin","hatari","ipxe","kernelshark","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","libkkc","lokalize","mdadm","mumble","mympd","ncurses","niri","nvm","openssh","passt","pcre2","rt-tests","skim","tzdata","unbound","usbutils","vim-csound","vim-runtime","wit"],"conflicts_with":[],"replaces":[],"download_size":1903851,"installed_size":9645250,"packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 01:59:54 PM +08","md5_sum":null,"sha_256_sum":"a067b212c273e1102ee9f85b916ed354760937d886b67d20b246253b2d2bbd6b","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"binutils","version":"2.43+r4+g7999dae6961-1","description":"A set of programs to assemble and manipulate binary and object files","architecture":"x86_64","url":"https://www.gnu.org/software/binutils/","licenses":["GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.0-or-later","LGPL-3.0-or-later","GFDL-1.3","FSFAP"],"groups":[],"provides":["libctf.so=0-64","libgprofng.so=0-64","libsframe.so=1-64"],"depends_on":["glibc","jansson","libelf","zlib","zstd"],"optional_deps":[{"name":"debuginfod","description":"for debuginfod server/client functionality"}],"required_by":["0ad","base-devel","bootiso","bpf","bpftrace","checksec","debtap","devtools","dracut-hook-uefi","flatpak-builder","fpc","gcc","gcc13","gdb-dashboard","gsocket","imd-git","kcov","libabigail","looking-glass-git","looking-glass-host-git","mkinitcpio","namcap","openucx","peda","perf","posix","posix-software-development","rebuild-detector","rmlint","sbctl","systemd-ukify","systemd-ukify-git","vmware-horizon-client"],"optional_for":["bauh","crash","diffoscope","dracut","hotspot","inxi","xarchiver","xarchiver-gtk2"],"conflicts_with":["binutils-multilib"],"replaces":["binutils-multilib"],"download_size":8021606,"installed_size":43285217,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:32:39 AM +08","md5_sum":null,"sha_256_sum":"6702f58e662908cbd5a86d554363348c2ab5c2e5e594f9d07d5627d16fda57b7","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"bison","version":"3.8.2-6","description":"The GNU general-purpose parser generator","architecture":"x86_64","url":"https://www.gnu.org/software/bison/bison.html","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh","gettext"],"required_by":["base-devel","posix-c-development"],"optional_for":["bauh"],"conflicts_with":[],"replaces":[],"download_size":791029,"installed_size":2661007,"packager":"Leonidas Spyropoulos ","build_date":"Sat 24 Jun 2023 06:03:51 PM +08","md5_sum":"41fc9c90033977614d66eadc7361d455","sha_256_sum":"91de470c3a723f3cbf615abc9fc6fbd3075aaf5a978820db6550eae151a0afbd","signatures":"59E43E106B247368","extended_data":null},{"repository":"core","name":"brotli","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":["libbrotlicommon.so=1-64","libbrotlidec.so=1-64","libbrotlienc.so=1-64"],"depends_on":["glibc"],"required_by":["android-tools","arrow","chromium","cpp-httplib-compiled","curl","curl-rustls","dvisvgm","dwarfs","electron23","electron30","electron31","electron32","elinks","exiv2","freetype2","gnutls","godot","godot-mono","lib32-brotli","libjxl","libjxl-git","libsoup","libsoup3","links","lynx","nginx-mainline-mod-brotli","nginx-mod-brotli","nix","nodejs","nodejs-lts-hydrogen","nodejs-lts-iron","peazip","perl-io-compress-brotli","podman-desktop","python-brotlicffi","qt6-base","suyu-dev-qt6-git","tracktion-waveform","ungoogled-chromium","wget2","wireshark-cli","woff2"],"optional_for":["apache","engrampa","lighttpd"],"conflicts_with":[],"replaces":[],"download_size":393902,"installed_size":1020549,"packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"2f7ce0251b13c348ddaa16b03b25cd2c27a110b54402d8a0494811f44af0f2a6","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"brotli-testdata","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm - test data","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":6427770,"installed_size":15476981,"packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"10007017b62e5a0d465e1a180662fcc3ecd2a335ce7870409676e55722ada693","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"btrfs-progs","version":"6.10.1-2","description":"Btrfs filesystem utilities","architecture":"x86_64","url":"https://btrfs.readthedocs.io","licenses":["GPL-2.0-only"],"groups":[],"provides":["btrfs-progs-unstable"],"depends_on":["glibc","util-linux-libs","lzo","zlib","zstd","libgcrypt","systemd-libs"],"optional_deps":[{"name":"python","description":"libbtrfsutil python bindings"},{"name":"e2fsprogs","description":"btrfs-convert"}],"required_by":["archinstall","btrbk","btrfs-assistant","btrfs-assistant-git","btrfs-snapshots-git","btrfsmaintenance","buttermanager","distrobuilder","grub-btrfs","libblockdev-btrfs","libguestfs","refind-btrfs","rusnapshot-git","snap-pac","snap-sync","snapper","udisks2-btrfs"],"optional_for":["cri-o","devtools","docker","dracut","gparted","incus","incus-tools","libblockdev-fs","lxd","mkosi","mkosi-git","podman","schroot","timeshift","udisks2"],"conflicts_with":["btrfs-progs-unstable"],"replaces":["btrfs-progs-unstable"],"download_size":1242245,"installed_size":6821847,"packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 08:52:23 PM +08","md5_sum":null,"sha_256_sum":"3e6ffcac374877c8a1b449429a2458d14b0a53ab6eb5aaafab10392a011fd833","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"bzip2","version":"1.0.8-6","description":"A high-quality data compression program","architecture":"x86_64","url":"https://sourceware.org/bzip2/","licenses":["BSD"],"groups":[],"provides":["libbz2.so=1.0-64"],"depends_on":["glibc","sh"],"required_by":["adios2","amavisd-new","apt","arrow","base","boost-libs","botan","cargo-dist","cargo-make","cargo-pgrx","cargo-tauri","clamav","clonezilla","coin-or-coinutils","czkawka-cli","czkawka-gui","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","doomseeker","dovecot","dpkg","dra","elinks","emby-ffmpeg","espup","ext4magic","fbreader","felix-rs","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","file","flightcore","fnm","fox","freeciv","freetype2","fsarchiver","gambas3-gb-compress","gimp","git-cinnabar","gnupg","goldendict-webengine-pr-git","goxlr-utility","graphicsmagick","grass","gst-plugins-bad","gst-plugins-good","gtkwave","gtkwave-gtk3-tcl","handbrake","handbrake-cli","handbrake-nvenc-cli","haskell-bz2","haskell-bzlib","httplz","imagemagick","imagemagick-full-git","imlib2","irrlicht","irrlicht-docs","iverilog","iverilog-git","jellyfin-ffmpeg","karchive","karchive5","krokiet","lib32-bzip2","libarchive","libelf","libewf","libgringotts","libgsf","libmirage","libosmium","libretro-dolphin","libretro-play","libsolv","libunarr","libzip","links","ludusavi","lynx","mairix","mariadb","mariadb-lts","maturin","miktex","miniserve","minizip-ng","miopen-hip","mpd","munge","netcdf","nix-init","openpgp-ca","openpgp-ca-restd","ouch","pacman-bintrans","pacman-bintrans-tools","partimage","pbzip2","pcre","pcre2","perl-compress-bzip2","pgpdump","pixi","pyflow","pypy","pypy3","python","python-cramjam","python-johnnycanencrypt","python-osmium","python-pysequoia","python-pytables","python39","qemu-block-dmg","qemu-git","qemu-headless-git","qsopt-ex","quilt","r","rage-encryption","rattler-build","rbutil","reprepro","rocksdb","routino","rye","sentry-cli","sequoia-chameleon-gnupg","sequoia-sop","sequoia-sq","sh4d0wup","simutrans","slade","sonic-visualiser","ssh-openpgp-auth","sshd-openpgp-auth","tarsnap","thunderbird","tracktion-waveform","ugrep","unarchiver","unzip","wasm-pack","wget2","wit","yelp","zeroc-ice","zip"],"optional_for":["3cpio","android-ndk","atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","mkinitcpio","unp","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":59781,"installed_size":148480,"packager":"Christian Hesse ","build_date":"Mon 18 Mar 2024 06:29:13 AM +08","md5_sum":"93dc36daf50abe23faeafbfb3c8c828f","sha_256_sum":"8779003d659c441b952095c19907603a738c1366f25cc51be3fd139fa4e95748","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"ca-certificates","version":"20240618-1","description":"Common CA certificates - default providers","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["ca-certificates-mozilla"],"required_by":["arch-audit","aria2","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-cacert<=20140824-4"],"replaces":["ca-certificates-cacert<=20140824-4"],"download_size":2129,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"982005bd5ecc998c05f561b57bb58b4457407779727e3c3d59e926d34a8b0712","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-mozilla","version":"3.104-1","description":"Mozilla's set of trusted CA certificates","architecture":"x86_64","url":"https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS","licenses":["MPL-2.0"],"groups":[],"provides":[],"depends_on":["ca-certificates-utils>=20181109-3"],"required_by":["ca-certificates"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":396718,"installed_size":1094656,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Sat 31 Aug 2024 07:36:20 AM +08","md5_sum":null,"sha_256_sum":"37e07a5d347ff9c68157bec8729c4c50f6fa538bbdb612e03166cf59ce8ca3ff","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"ca-certificates-utils","version":"20240618-1","description":"Common CA certificates (utilities)","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":["ca-certificates","ca-certificates-java"],"depends_on":["bash","coreutils","findutils","p11-kit"],"required_by":["arch-audit","aria2","ca-certificates-icp_br","ca-certificates-mozilla","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","jdk","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jre","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jre8","jre8-openjdk-headless","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-java"],"replaces":["ca-certificates-java"],"download_size":11069,"installed_size":13957,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"aabd5b2b7030716ccdd465d607e734e851fe4a01adf8293a3968fe22eb89ce9b","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"coreutils","version":"9.5-2","description":"The basic file, shell and text manipulation utilities of the GNU operating system","architecture":"x86_64","url":"https://www.gnu.org/software/coreutils/","licenses":["GPL-3.0-or-later","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["acl","attr","glibc","gmp","libcap","openssl"],"required_by":["afl-utils","alpine-chroot-install","ant","arch-install-scripts","archinstall","base","bashtop","bats","bootiso","ca-certificates-utils","checksec","devtools","diffoscope","dkms","dmenu","dracut","garuda-update","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grml-zsh-config","gsocket","gzip","hwdetect","i3lock-fancy-git","inxi","java-runtime-common","keycloak","linux","linux-cachyos","linux-cachyos-bore","linux-cachyos-lts","linux-clear","linux-hardened","linux-lqx","linux-lts","linux-lts515","linux-mainline","linux-mainline-x64v3","linux-nitrous","linux-rt","linux-rt-lts","linux-vfio","linux-vfio-lts","linux-vfio-x64v3","linux-xanmod-edge-x64v3","linux-xanmod-lts","linux-xanmod-rt","linux-xanmod-x64v2","linux-zen","linux-znver2","linux-znver3","linux-znver4","luarocks","mariadb","mariadb-lts","minieap","mintstick","mkinitcpio","netctl","p11-kit","pacman","pacman-git","perf","perl-libintl-perl","posix","posix-xsi","quickemu","rpmextract","tblock-gui","tdrop","testssl.sh","usbctl","util-linux","wikiman","xsudo-git","zshdb"],"optional_for":["usbutils"],"conflicts_with":[],"replaces":[],"download_size":2883584,"installed_size":16640901,"packager":"Tobias Powalowski ","build_date":"Fri 30 Aug 2024 07:57:19 PM +08","md5_sum":null,"sha_256_sum":"6038dfa8f09380d65d3df7119b19dde96ab20f983b95b1056861aae1fef947b5","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cracklib","version":"2.10.2-1","description":"Password Checking Library","architecture":"x86_64","url":"https://github.com/cracklib/cracklib","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","zlib"],"required_by":["389-ds-base","deepin-pw-check","lib32-cracklib","libpwquality"],"optional_for":["mariadb","mariadb-lts","xkcdpass"],"conflicts_with":[],"replaces":[],"download_size":282071,"installed_size":948029,"packager":"Tobias Powalowski ","build_date":"Tue 06 Aug 2024 02:39:50 PM +08","md5_sum":null,"sha_256_sum":"692c691ea08066bac8ae2423dd6f332a3e1bb040f9ae615e206d5ad13df98175","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"cryptsetup","version":"2.7.5-1","description":"Userspace setup tool for transparent encryption of block devices using dm-crypt","architecture":"x86_64","url":"https://gitlab.com/cryptsetup/cryptsetup/","licenses":["GPL"],"groups":[],"provides":["libcryptsetup.so=12-64"],"depends_on":["device-mapper","libdevmapper.so=1.02-64","openssl","popt","util-linux-libs","libuuid.so=1-64","json-c","libjson-c.so=5-64","argon2","libargon2.so"],"required_by":["archinstall","deepin-file-manager","libblockdev-crypto","luksmeta","mkinitcpio-utils","osquery","pam_mount","stratisd","systemd","tomb-git","volume_key","yubikey-full-disk-encryption","zulucrypt"],"optional_for":["clevis","dracut","hwdetect","mkinitcpio-systemd-tool","mkosi-git","rauc"],"conflicts_with":["mkinitcpio<38-1"],"replaces":[],"download_size":771942,"installed_size":3069020,"packager":"Christian Hesse ","build_date":"Tue 03 Sep 2024 06:09:57 PM +08","md5_sum":null,"sha_256_sum":"7f603f586ccb21d946408ffe2f6011a3b0025e3051dfa70dbedb02a8a96476f3","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"curl","version":"8.9.1-2","description":"command line tool and library for transferring data with URLs","architecture":"x86_64","url":"https://curl.se/","licenses":["MIT"],"groups":[],"provides":["libcurl.so=4-64"],"depends_on":["ca-certificates","brotli","libbrotlidec.so=1-64","krb5","libgssapi_krb5.so=2-64","libidn2","libidn2.so=0-64","libnghttp2","libnghttp2.so=14-64","libnghttp3","libnghttp3.so=9-64","libpsl","libpsl.so=5-64","libssh2","libssh2.so=1-64","zlib","libz.so=1-64","zstd","libzstd.so=1-64","openssl","libcrypto.so=3-64","libssl.so=3-64"],"required_by":["0ad","across","ani-cli","appstream","appstream-glib","arch-update","archlinux-repro","ardour","ardour-git","ario","asdf-vm","asymptote","audacious-plugins","aura","aura-git","auracle-git","aurutils","aws-sdk-cpp","barrier-headless","betterdiscordctl-git","boinc","boinc-nox","bootiso","btfs","cairo-dock","cargo-c","cargo-clone","cargo-crev","cargo-geiger","cargo-generate","cargo-outdated","cargo-shuttle","cargo-tarpaulin","cargo-udeps","castget","casync","cclive","cemu-git","cfitsio","choosenim","clamav","clamav-unofficial-sigs","cmake","cmake-git","coeurl","conky","cryfs","csound","curlftpfs","curlie","ddclient","ddnet","dehydrated","devtools","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dovecot","dtools","dub","efl","element","elinks","emulationstation","espflash","espup","ettercap","ettercap-gtk","exiv2","facter","fbreader","fcitx-cloudpinyin","fcitx5-chinese-addons","feh","fisher","flashplugin","flatpak","flatpak-builder","flickcurl","freeciv","freeipa-client","freeoffice","ftl-sdk","fwupd","gambas3-gb-net-curl","gammu","gdal","gerbera","giac","git","git-cinnabar","github-desktop","gitlab-runner","glyr","gmic","gmt","gnome-notes","gpredict","gst-plugins-bad","guitarix","hblock","hcxtools","hlsdl","html-xml-utils","hurl","hw-probe","icaclient","imhex","jp2a","kcov","kicad","kicad-git","klavaro","kodi","kodi-git","kodi-gles","kodi-stable-git","lastpass-cli","leatherman","lib32-curl","libclastfm","libcmis","libcurl-compat","libcurl-gnutls","libdatovka","libelf","libgphoto2","libindi","libkiwix","libkolabxml","liblphobos","libmediainfo","libmodsecurity","libnpupnp","liboauth","libofa","libofx","libproxy","libqalculate","libquvi","librdkafka","libreoffice-dev-bin","libreoffice-fresh","libreoffice-still","librepo","libresprite-git","libreswan","libsixel","libupnpp","libxmlrpc","llvm-libs","lnav","lokinet","luarocks","lutris","lutris-git","lv2lint","lxpanel","lxpanel-gtk3","manaplus","mcpelauncher-linux-git","megaglest","megatools","mesonlsp","micromamba","minetest","minetest-git","minetest-server","minetest-server-git","moc-pulse","mongodb","mpd","mpdscribble","musikcube","mysql-workbench","ncmpcpp","netcdf","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","netcdf-openmpi","netsurf","networkmanager","networkmanager-iwd","newsboat","nheko-git","nix","nix-init","nm-cloud-setup","nm-iwd-cloud-setup","nspluginwrapper","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-backgroundremoval","obs-streamfx-unstable","obs-studio","obs-studio-git","obs-studio-stable","obs-studio-tytan652","octave","odamex-git","odr-dabmux-git","onlyoffice-bin","openrct2","opl-synth","osbuild","osdlyrics","ostree","p2pool","pacman","pacman-git","pacredir","pacrunner","pakka","passenger","path-of-building-community-git","percona-server","phoenicis-playonlinux","php","php-legacy","pianobar","pkgfile","pokerth","polybar","polybar-git","poppler","powerdns","powerdns-recursor","profanity","profanity-gtk","proj","psensor","python-pycurl","python-tensorflow","python-tensorflow-cuda","python-tensorflow-opt","python-tensorflow-opt-cuda","qemu-block-curl","qemu-git","qemu-headless-git","qemu-tools","qmmp","r","raptor","rauc","reapack","release-plz","remmina","rhonabwy","rink","rng-tools","roswell","rpcs3-git","rpi-imager","rtorrent","ruby-patron","rust","rustup","rustup-git","s3fs-fuse","sabnzbd","sane","scummvm","scummvm-git","seadrive-daemon","sentry-native","sheldon","siril-git","slurm-llnl","smooth","softmaker-office-2024-bin","soundwire","speedtest++","spring","springlobby","srb2kart","sssd","steam","steam-native-runtime","strongswan","sunshine","supertux","supertuxkart","sword","sysdig","syslog-ng","tensorflow","tensorflow-cuda","tensorflow-opt","tensorflow-opt-cuda","termv-git","tesseract","tinyemu","toxic","tpm2-tools","tpm2-tss","transmission-cli","transmission-gtk","transmission-qt","transmission-remote-gtk","trurl","typst-lsp","uget","ulfius","umu-launcher","unrealircd","vagrant","vcpkg","viking","virtualbox","virtualbox-kvm","vorbis-tools","warsow","wasm-pack","wcurl","weechat","wpscan","wxwidgets-common","xerces-c","xfce4-screenshooter","xine-ui","xonotic","xrootd","xtrabackup","ytfzf","ytfzf-git","yubico-c","yubico-c-client","zabbix-agent","zabbix-agent2","zabbix-proxy","zabbix-server","zapret-common-git","zellij"],"optional_for":["apache","bashtop","claws-mail","clevis","curlew","deadbeef","deadbeef-git","fio","freeradius","gap-packages","gcin","gimp-git","gpgit","inxi","ispin","mariadb","mariadb-lts","mkinitcpio-archiso","mkosi-git","monitoring-plugins","nextcloud","opensips","pciutils","surf-git","systemd","tor-router","translate-shell","vicious","wps-office","wps-office-cn","xmms2"],"conflicts_with":[],"replaces":[],"download_size":1139169,"installed_size":1962311,"packager":"Leonidas Spyropoulos ","build_date":"Mon 05 Aug 2024 03:53:07 PM +08","md5_sum":null,"sha_256_sum":"816d521855ba751ad814499e4fc68a00d49182a1e622307e5d33a873f0fbc0a4","signatures":"244740D17C7FD0EC","extended_data":null},{"repository":"core","name":"dash","version":"0.5.12-1","description":"POSIX compliant shell that aims to be as small as possible","architecture":"x86_64","url":"http://gondor.apana.org.au/~herbert/dash/","licenses":["BSD"],"groups":[],"provides":[],"depends_on":["glibc","libedit","libedit.so=0-64"],"required_by":["dashbinsh"],"optional_for":["dracut"],"conflicts_with":[],"replaces":[],"download_size":84490,"installed_size":157593,"packager":"Levente Polyak ","build_date":"Sat 25 Feb 2023 12:34:46 AM +08","md5_sum":"0368b51e48997a1b3e23faca23101eaa","sha_256_sum":"28622213069475e022656a627bff1891e8ee986d7b539eb4f3af620a8c7e27f4","signatures":"FC1B547C8D8172C8","extended_data":null},{"repository":"core","name":"db","version":"6.2.32-1","description":"The Berkeley DB embedded database system","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["AGPL3"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["apt","isync","opendkim","python-bsddb"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":1392998,"installed_size":7512729,"packager":"Frederik Schwan ","build_date":"Sun 11 Dec 2022 02:39:34 AM +08","md5_sum":"dac58b30bebd81ea97e54b23eb6a2d74","sha_256_sum":"a0013dbb897620edca8736676b7b2ee4b854ef9479a1555f69557cac58187581","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"db5.3","version":"5.3.28-5","description":"The Berkeley DB embedded database system v5.3","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["custom:sleepycat"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["389-ds-base","bitcoin-daemon","bitcoin-qt","bitcoin-tx","bogofilter","bogofilter-db","inn","jack2","jnettop","perl","perl-berkeleydb","reprepro","swi-prolog"],"optional_for":["bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","iproute2"],"conflicts_with":[],"replaces":[],"download_size":1242081,"installed_size":6768517,"packager":"Frederik Schwan ","build_date":"Wed 01 May 2024 11:27:30 PM +08","md5_sum":null,"sha_256_sum":"edb56c7d84c438b387a53ee414daff2611f62e4804ec8f2995e17b34437c0a4c","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"dbus","version":"1.14.10-2","description":"Freedesktop.org message bus system","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["libdbus","libdbus-1.so=3-64"],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["a2jmidid","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","android-emulator","ardour","ardour-git","at-spi2-core","avahi","awesome","awesome-git","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brickadia-launcher","brltty","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cdemu-daemon","cef-minimal-obs-bin","chromium","cloudflare-warp-bin","colord","compiz-core","compiz-gtk","connman","connman-git","consolekit","corectrl","cosmic-applets","cosmic-applets-git","cups","darling-bin","dbus-broker-units","dbus-c++","dbus-daemon-units","dbus-glib","deskreen","displaycal","dnsmasq","dropbox","dunst","efl","emacs","emacs-nativecomp","emacs-ng","emacs-nox","emacs-wayland","emby-theater","eruption","fcitx","filezilla","firedragon","firefox","firefox-developer-edition","firefox-esr","firefox-nightly","firefox-wayland-hg","flatpak","fluidsynth","fnott","fprintd","fyi","gambas3-gb-dbus","gamemode","gnome-mplayer","gnome-online-accounts","gogglesmm","gpu-screen-recorder-git","hplip","imhex","jack2","jack2-dbus","kdeconnect","keymapper-git","kitty","kitty-git","kitty-shell-integration","lib32-dbus","libcupsfilters","libdecor","libglib-testing","libgnome-keyring","libnih","libnvme","libpcap","libpulse","libreoffice-fresh","libreoffice-still","librewolf","libteam","libvirt-dbus","light-locker","malcontent","mangohud","mangohud-git","mmsd-git","modrinth-app-git","mozillavpn","mozillavpn-git","mpd","mullvad-browser-bin","mullvad-vpn-cli","ncspot","neard","obs-studio-tytan652","ofono","osquery","pacrunner","pantheon-default-settings","pantheon-settings-daemon","perl-net-dbus","picom","picom-git","pipewire","pipewire-audio","pipewire-jack-client","pipewire-media-session","pipewire-pulse","pop-bin","pop-launcher","pop-launcher-git","pycharm-community-eap","python-dasbus","python-dbus","python-dbus-fast","python-dbus-next","qt6-base","qt6-webengine","quota-tools","reboot-arch-btw","rescrobbled-git","retroarch","rtkit","runst","signal-desktop","signal-desktop-beta","slurm-llnl","snapper","songrec","sonyheadphonesclient-bin","spice-vdagent","spotify-player","spotifyd","steam","steam-native-runtime","stratisd","strawberry-full-git","strawberry-git","subversion","swaylock-fprintd-git","switchboard-plug-power","system76-firmware","system76-power","systemd","telepathy-glib","telepathy-mission-control","termius","termscp","termusic","thunderbird","thunderbird-beta","tiny","toastify","tradingview","udisks2","umu-launcher","ungoogled-chromium","vita3k-avx-git","vita3k-git","vlc","vlc-luajit","wesnoth","weston","wezterm-git","widelands","wingpanel-indicator-notifications","wired","wldash","wluma","wpa_supplicant","x2goserver","xdg-dbus-proxy","xorg-server","xorg-server-git","zam-plugins-clap","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zbar","zoom"],"optional_for":["alsa-plugins","claws-mail","deadbeef","deadbeef-git","fastfetch","picom","picom-git","utox"],"conflicts_with":["libdbus"],"replaces":["libdbus"],"download_size":312176,"installed_size":932423,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"c08fa536e28863e35a9591196876faf7","sha_256_sum":"28b519535496a8c8b7885fb2d4c089ca98e34250dfc468aad2267c639026f219","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker","version":"36-4","description":"Linux D-Bus Message Broker","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":[],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["dbus-broker-units"],"optional_for":["at-spi2-core"],"conflicts_with":[],"replaces":[],"download_size":148439,"installed_size":362393,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"557a742031b10e6d8b76ce2bb98298dbb001ac76b68ee003417f6fceb9ae65bd","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-broker-units","version":"36-4","description":"Linux D-Bus Message Broker - Service units","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus","dbus-broker"],"required_by":["dbus-units","systemd"],"optional_for":[],"conflicts_with":["dbus-daemon-units"],"replaces":[],"download_size":2437,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"bb97bd8f943e581a6c02be0aea368c2faa035f709406bffed77e807e96882e2f","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-daemon-units","version":"1.14.10-2","description":"Freedesktop.org message bus system - Service units","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus"],"required_by":["systemd"],"optional_for":[],"conflicts_with":["dbus-broker-units"],"replaces":[],"download_size":2938,"installed_size":819,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"79259a029b856b6958749db1a3d0f192","sha_256_sum":"61e184d5fae5ec13073525c6f17c2a630b6892dc8847585d2e454e590dbe5919","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-docs","version":"1.14.10-2","description":"Freedesktop.org message bus system - Documentation","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":1361786,"installed_size":21986570,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"1e71d48059b0d86d21a3af48ce4e8191","sha_256_sum":"faed9464ab5a4bfb63ea9a585025a7e0b9fc7d41433a7a75c96ae3d6cd4d3ae1","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"dbus-units","version":"36-4","description":"D-Bus service units (default provider)","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["CC0-1.0"],"groups":[],"provides":[],"depends_on":["dbus-broker-units"],"required_by":["systemd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":2191,"installed_size":0,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"eb7a93b615db7183fde62723f8ccb94094ceaab53782cbd63c159ae30ac5ce8a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"debugedit","version":"5.0-6","description":"Tool to mangle source locations in .debug files","architecture":"x86_64","url":"https://sourceware.org/debugedit/","licenses":["GPL-3.0-or-later","GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","libelf"],"required_by":["base-devel","flatpak-builder","zotero-bin"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":45066,"installed_size":107765,"packager":"Morten Linderud ","build_date":"Sat 04 May 2024 12:15:41 AM +08","md5_sum":null,"sha_256_sum":"dfd548598504d5e1f12296dc49bbbc43976702fdf2700cdd93404e3b4a1992c4","signatures":"9C02FF419FECBE16","extended_data":null},{"repository":"core","name":"debuginfod","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (debuginfod)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","libmicrohttpd","libmicrohttpd.so=12-64","sqlite","libsqlite3.so=0-64"],"optional_deps":[{"name":"elfutils=0.191","description":"for translations"}],"required_by":["pwndbg","valgrind"],"optional_for":["binutils","delve"],"conflicts_with":[],"replaces":[],"download_size":138874,"installed_size":347473,"packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"337ddacd32f8dcc2f8dcd69232d4c9091ce5617f334d483e5216496dca6e1e4b","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"device-mapper","version":"2.03.26-1","description":"Device mapper userspace library and tools","architecture":"x86_64","url":"http://sourceware.org/dm/","licenses":["GPL2","LGPL2.1"],"groups":[],"provides":["libdevmapper.so=1.02-64","libdevmapper-event.so=1.02-64"],"depends_on":["glibc","systemd-libs","libudev.so=1-64"],"required_by":["cri-o","cryptsetup","dmraid","docker","grub","grub-improved-luks2-git","grub-silent","libblockdev-dm","libblockdev-lvm","libblockdev-mpath","libldm","lvm2","mkinitcpio-archiso","multipath-tools","nfs-utils","osquery","parted","podman","skopeo","tcplay","veracrypt","xfsprogs"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":284252,"installed_size":774717,"packager":"Christian Hesse ","build_date":"Sun 25 Aug 2024 03:20:53 AM +08","md5_sum":null,"sha_256_sum":"6ed7fd89d8824cb83f95c7ec55c00485865e836ed30a5c55cc6425c5234b5585","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"dialog","version":"1:1.3_20240619-2","description":"A tool to display dialog boxes from shell scripts","architecture":"x86_64","url":"https://invisible-island.net/dialog/","licenses":["LGPL2.1"],"groups":[],"provides":["libdialog.so=15-64"],"depends_on":["sh","ncurses"],"required_by":["python-pythondialog"],"optional_for":["arch-wiki-lite","etc-update","gammu","netctl","texlive-binextra"],"conflicts_with":[],"replaces":[],"download_size":204195,"installed_size":475013,"packager":"Evangelos Foutras ","build_date":"Mon 01 Jul 2024 02:03:02 AM +08","md5_sum":null,"sha_256_sum":"fc0e81648bd6c38e1ff32db8b5c21ad33bfc8a345d30b0a9be4dcef768c8f6dd","signatures":"51E8B148A9999C34","extended_data":null},{"repository":"core","name":"diffutils","version":"3.10-1","description":"Utility programs used for creating patch files","architecture":"x86_64","url":"https://www.gnu.org/software/diffutils","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","bash"],"required_by":["aconfmgr-git","arch-update","archlinux-repro","autoconf","btrfs-assistant","btrfs-assistant-git","colordiff","dehydrated","devtools","diffoscope","etckeeper","mediawiki","mkinitcpio","pacdiff-pacman-hook-git","pkgdiff","posix","quilt","rcs","steam","umu-launcher","usbctl"],"optional_for":["gzip","khard","pace","pacman-contrib","qmk","terraform"],"conflicts_with":[],"replaces":[],"download_size":352890,"installed_size":1555353,"packager":"Sébastien Luttringer ","build_date":"Wed 24 May 2023 03:47:08 AM +08","md5_sum":"bd4ad1c815ab296ddeadef8ec6e859a1","sha_256_sum":"88e4705cd3d078c250b6ce94ccdabc48da1a093aa64c0fb0cb832c6ce4797e2d","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"ding-libs","version":"0.6.2-2","description":"\"DING is not GNU\" helper libraries for SSSD and FreeIPA","architecture":"x86_64","url":"https://github.com/SSSD/ding-libs","licenses":["GPL-3.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["gssproxy","sscg","sssd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":127795,"installed_size":672163,"packager":"Andreas Radke ","build_date":"Sun 17 Mar 2024 04:54:54 PM +08","md5_sum":"4e62db1a524ead54b52b59c12c12e0f9","sha_256_sum":"e72c72725452ec0287383e847e039777eed504ef1707f09101d795b429c50846","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"dmraid","version":"1.0.0.rc16.3-15","description":"Device mapper RAID interface","architecture":"x86_64","url":"https://people.redhat.com/~heinzm/sw/dmraid/","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["device-mapper>=2.0.54"],"optional_for":["dracut"],"conflicts_with":["mkinitcpio<0.7"],"replaces":[],"download_size":124846,"installed_size":321566,"packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:51:09 PM +08","md5_sum":null,"sha_256_sum":"e9a661652d8e4076d2164b77c88f94ebd93dcf16dd66714513621b40e4de86b9","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"dnssec-anchors","version":"20190629-4","description":"DNSSEC trust anchors for the root zone","architecture":"any","url":"https://data.iana.org/root-anchors/","licenses":["custom:none"],"groups":[],"provides":[],"depends_on":[],"required_by":["bind","knot-resolver","ldns","unbound"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":3143,"installed_size":808,"packager":"Jelle van der Waa ","build_date":"Thu 04 Jul 2024 04:15:16 AM +08","md5_sum":null,"sha_256_sum":"648ab7c4ac43421e6f8026128f84fdefcc5ebc0d171d6c723441e4d12c69048e","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"dosfstools","version":"4.2-5","description":"DOS filesystem utilities","architecture":"x86_64","url":"https://github.com/dosfstools/dosfstools","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["archinstall","archiso","archiso-git","bootiso","clonezilla","distrobuilder","libguestfs","mintstick","penguins-eggs","refind","ventoy-bin","woeusb","woeusb-ng"],"optional_for":["gparted","grub","grub-improved-luks2-git","grub-silent","kpmcore","libblockdev-fs","mkosi-git","rauc","rpi-imager","sedutil","syslinux","udisks2"],"conflicts_with":[],"replaces":[],"download_size":138772,"installed_size":419041,"packager":"Jelle van der Waa ","build_date":"Sun 25 Aug 2024 02:52:04 AM +08","md5_sum":null,"sha_256_sum":"03a7d8bd939a80418d9744afad00c22b91c4b411bdf9662744647c383a0ec503","signatures":"C06086337C50773E","extended_data":null},{"repository":"core","name":"e2fsprogs","version":"1.47.1-4","description":"Ext2/3/4 filesystem utilities","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":["libcom_err.so=2-64","libe2p.so=2-64","libext2fs.so=2-64","libss.so=2-64"],"depends_on":["sh","util-linux-libs"],"optional_deps":[{"name":"lvm2","description":"for e2scrub"},{"name":"util-linux","description":"for e2scrub"},{"name":"smtp-forwarder","description":"for e2scrub_fail script"}],"required_by":["apptainer","archinstall","archiso","archiso-git","bind","bootiso","deepin-clone","distrobuilder","ext4magic","extundelete","freerdp","fsarchiver","fuse-ext2-git","fuse2fs","krb5","lib32-e2fsprogs","libblockdev-fs","mc","mintstick","nfs-utils","osbuild","quota-tools","schroot","supermin","termius","tomb-git"],"optional_for":["btrfs-progs","diffoscope","dracut","kpmcore","mkosi-git","pjproject","rauc","udisks2"],"conflicts_with":[],"replaces":[],"download_size":1294817,"installed_size":5450455,"packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"f72a32b7c97ab2dafff65d466d1b91243bf74b55fd5e975584ab4d6299ea13b9","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"efibootmgr","version":"18-3","description":"Linux user-space application to modify the EFI Boot Manager","architecture":"x86_64","url":"https://github.com/rhboot/efibootmgr","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","popt","efivar","libefiboot.so=1-64","libefivar.so=1-64"],"required_by":["grub-silent","refind","system76-firmware"],"optional_for":["grub","grub-improved-luks2-git","hw-probe","memtest86-efi","rauc","syslinux"],"conflicts_with":[],"replaces":[],"download_size":30812,"installed_size":85719,"packager":"David Runge ","build_date":"Wed 13 Mar 2024 05:47:21 PM +08","md5_sum":"b28be257dd69d2c324267ccad6b1bab4","sha_256_sum":"6c8024c4b0abbdc3ff87a582ca1730448ef462015d3d0e97249d988f59c66c65","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"efivar","version":"39-1","description":"Tools and libraries to work with EFI variables","architecture":"x86_64","url":"https://github.com/rhboot/efivar","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libefiboot.so=1-64","libefisec.so=1-64","libefivar.so=1-64"],"depends_on":["glibc"],"required_by":["dbxtool","efibooteditor","efibooteditor-qt5","efibootmgr","mokutil","pesign"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":148172,"installed_size":554608,"packager":"David Runge ","build_date":"Thu 01 Feb 2024 05:57:25 PM +08","md5_sum":"06ab87bfdac70ba57b6626951a6f9000","sha_256_sum":"16422088da42f1ac562851d06ce86ad659f0775c86d9b1f54fa5a7067f9d636a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"elfutils","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (utilities)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","sh"],"required_by":["avrdude","babeltrace","flatpak-builder","hotspot","kcov","libabigail","libdwarf","ltrace","namcap","perf","pwninit","rpm-tools","systemtap-git"],"optional_for":["debuginfod","dracut"],"conflicts_with":[],"replaces":[],"download_size":597852,"installed_size":3662561,"packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"ecd122522f2abfa532173b36897db0986e586a33198e2b0862e5205b3d382c22","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"expat","version":"2.6.3-2","description":"An XML parser library","architecture":"x86_64","url":"https://libexpat.github.io/","licenses":["MIT"],"groups":[],"provides":["libexpat.so=1-64"],"depends_on":["glibc"],"required_by":["aarch64-linux-gnu-gdb","android-emulator","apr-util","arm-none-eabi-gdb","audacity","augustus","avahi","avr-gdb","blender","blockbench-bin","boca","boinctui","bolt-launcher","brltty","calf","cef-minimal-obs-bin","clasp-cl-git","cmake","dbus","dbus-broker","dbus-glib","deskreen","digikam","dovecot","ejabberd","elinks","emby-ffmpeg","emby-theater","exempi","exiv2","fontconfig","fpc","gdal","gdb","git","insight-toolkit","jack2-dbus","lapce","lapce-git","lftp","lib32-expat","libcomps","libdatovka","libdom","libmesode","libnpupnp","libofa","libosmium","libreoffice-fresh","libreoffice-still","libsolv","libstrophe","libupnpp","libva-mesa-driver","libwmf","lm32-elf-gdb","lua-expat","lua51-expat","lua52-expat","lua53-expat","mame","mesa","mesa-tkg-git","mesa-vdpau","miktex","mpd","mysql-workbench","neon","neovide","nominatim","obs-studio-tytan652","oculante","opencl-clover-mesa","opencl-rusticl-mesa","or1k-elf-gdb","osm2pgsql","paraview","perl-xml-parser","polkit","polkit-consolekit","pop-bin","ppc64le-elf-gdb","profanity","profanity-gtk","pypy","pypy3","python","python-astropy","python-osmium","python39","qgis","qt6-webengine","rfdump","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sdbus-cpp","sdbus-cpp-doc","sh2-elf-gdb","signal-desktop","signal-desktop-beta","skia-sharp","snapcast","subversion","termius","tradingview","vmware-horizon-client","vulkan-intel","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","wayland","wayland-chromium","wayland-git","wxwidgets-common","zeroc-ice"],"optional_for":["dbus-c++","unbound"],"conflicts_with":[],"replaces":[],"download_size":115968,"installed_size":436305,"packager":"David Runge ","build_date":"Thu 05 Sep 2024 01:19:42 AM +08","md5_sum":null,"sha_256_sum":"6487b7be759572043cf59b7999883be027025c74f003fbca1b5203f1236b181f","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"fakeroot","version":"1.36-1","description":"Tool for simulating superuser privileges","architecture":"x86_64","url":"https://tracker.debian.org/pkg/fakeroot","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["glibc","filesystem","sed","util-linux","sh"],"required_by":["anydesk-bin","apptainer","base-devel","debtap","devtools","gnome-shell-extension-arch-update","lib32-fakeroot","reprotest"],"optional_for":["bauh","i3status-rust","i3status-rust-git","pacman-contrib","pacseek"],"conflicts_with":[],"replaces":[],"download_size":78254,"installed_size":144660,"packager":"Christian Hesse ","build_date":"Fri 16 Aug 2024 01:17:43 AM +08","md5_sum":null,"sha_256_sum":"7bdd5f7580b20ab1574346c673a1d1a1c25aa9a902ef3b9e77944345a934e558","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"file","version":"5.45-1","description":"File type identification utility","architecture":"x86_64","url":"https://www.darwinsys.com/file/","licenses":["custom"],"groups":[],"provides":["libmagic.so=1-64"],"depends_on":["glibc","zlib","xz","bzip2","libseccomp","libseccomp.so=2-64","zstd","libzstd.so=1-64"],"required_by":["android-file-transfer","atool","base","base-devel","bootiso","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","carla","carla-git","checksec","clifm-git","ext4magic","feh","file-roller","gerbera","haskell-magic","hyprlock-git","hyprpaper","hyprpaper-git","imhex","keepalived","libmodulemd","lyx","moc-pulse","mpd-notification","nano","osquery","pleroma-bin","posix","python-magic","radare2","radare2-git","ristretto","rizin","rpm-tools","rspamd","sox","subversion","util-linux","vifm","viking","vis","xdg-utils","yara","zathura","zim-tools"],"optional_for":["inxi","libextractor","ranger-git"],"conflicts_with":[],"replaces":[],"download_size":405299,"installed_size":8739440,"packager":"Sébastien Luttringer ","build_date":"Fri 28 Jul 2023 05:23:09 AM +08","md5_sum":"5e1deb413f19678a56204e3d5e4b3f8a","sha_256_sum":"3ad37e246e893cdf59ae3af862d083c52087c47d3e6210996075ce77d41c5a1a","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"filesystem","version":"2024.04.07-1","description":"Base Arch Linux files","architecture":"any","url":"https://archlinux.org","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["iana-etc"],"required_by":["base","dracut","fakeroot","glibc","glibc-eac","glibc-eac-roco","mkinitcpio","nethack","plymouth"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":14356,"installed_size":22865,"packager":"David Runge ","build_date":"Mon 08 Apr 2024 02:02:30 AM +08","md5_sum":null,"sha_256_sum":"07acb29650aeaee633edd337af5bfa9c3b3309c9f198e5bad145bd4bbdacc40a","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"findutils","version":"4.10.0-2","description":"GNU utilities to locate files","architecture":"x86_64","url":"https://www.gnu.org/software/findutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","sh"],"required_by":["anything-sync-daemon","base","base-devel","bash-complete-alias","bootiso","ca-certificates-utils","checksec","devtools","dracut","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","java-runtime-common","metals","mkinitcpio","penguins-eggs","posix","profile-cleaner","profile-sync-daemon","quilt","rosenpass","themix-icons-archdroid-git","themix-icons-gnome-colors-git","themix-icons-numix-git","themix-icons-papirus-git","themix-icons-suru-plus-aspromauros-git","themix-icons-suru-plus-git","themix-theme-materia-git","themix-theme-oomox-git","wikiman"],"optional_for":["pacman-contrib"],"conflicts_with":[],"replaces":[],"download_size":484741,"installed_size":1789603,"packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 03:52:07 PM +08","md5_sum":null,"sha_256_sum":"ba960db631b9e379076d24c336a190f7a9cdbafa2c928544fdb8a819d253d37d","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"flex","version":"2.6.4-5","description":"A tool for generating text-scanning programs","architecture":"x86_64","url":"https://github.com/westes/flex","licenses":["custom"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh"],"required_by":["at","base-devel","ccid","lib32-flex","ming","posix-c-development","splint"],"optional_for":["bauh","linux-atm"],"conflicts_with":[],"replaces":[],"download_size":314931,"installed_size":978585,"packager":"David Runge ","build_date":"Sat 18 Mar 2023 07:32:09 AM +08","md5_sum":"e9c3f6267b26aefea45af135185a98e2","sha_256_sum":"9fdee0b311ce967927006f523e537670d1be94deee52e0115902cf6087c59e25","signatures":"139B09DA5BF0D338","extended_data":null},{"repository":"core","name":"fuse2fs","version":"1.47.1-4","description":"Ext2/3/4 filesystem driver for FUSE","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":[],"depends_on":["fuse3","e2fsprogs"],"required_by":["apptainer"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":30023,"installed_size":73297,"packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"52c213add64f11e3e7adc87985dbe67ebef9b8b7379fe24ee3123b4188f990c0","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gawk","version":"5.3.0-2","description":"GNU version of awk","architecture":"x86_64","url":"https://www.gnu.org/software/gawk/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["awk"],"depends_on":["sh","glibc","mpfr"],"required_by":["aconfmgr-git","aerc","arch-install-scripts","autoconf","autoconf-git","base","base-devel","bashtop","bootiso","cfs-zen-tweaks","chaotic-neofetch-git","check","checksec","devtools","dkms","doas-sudo-shim","dracut","esh","fricas","garuda-update","green-recorder","green-recorder-git","i3lock-fancy-git","lynis","mk-configure","mkinitcpio","pacman","pacman-git","pkgdiff","posix","prettyping","quilt","rofi-pass","rosenpass","sofia-sip","syslog-ng","tdrop","termv-git","translate-shell","tuned","txt2man","ugit","wikiman","xschem","yadm"],"optional_for":["blesh-git","geeqie","geeqie-git","khal","mc","texmacs","vim-runtime"],"conflicts_with":[],"replaces":[],"download_size":1355304,"installed_size":3483443,"packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:51:08 PM +08","md5_sum":null,"sha_256_sum":"474af00363e5e3ac13e06d2b79e565766823b30edbef81b5abf2a09f1d5dd010","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"gc","version":"8.2.6-1","description":"A garbage collector for C and C++","architecture":"x86_64","url":"https://www.hboehm.info/gc/","licenses":["LicenseRef-GC","MIT"],"groups":[],"provides":[],"depends_on":["gcc-libs"],"required_by":["asymptote","bigloo","crystal","guile","guile2.2","inkscape","libhomfly","neko","nix","poke","shards","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":240353,"installed_size":790405,"packager":"Frederik Schwan ","build_date":"Sun 04 Feb 2024 06:30:33 PM +08","md5_sum":"903a28bfd90dcf6e2b41b76e989934af","sha_256_sum":"6210a1e7e00d3162f175f9ab318a3da928495210b1ea411dcb66bf5e1f382daf","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc","version":"14.2.1+r32+geccf707e5ce-1","description":"The GNU Compiler Collection - C and C++ frontends","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-multilib"],"depends_on":["gcc-libs=14.2.1+r32+geccf707e5ce-1","binutils>=2.28","libmpc","zstd","libisl.so=23-64"],"optional_deps":[{"name":"lib32-gcc-libs","description":"for generating code for 32-bit ABI"}],"required_by":["base-devel","clang","clang-git","clang14","clang17","dkms","dmd","gcc-ada","gcc-d","gcc-fortran","gcc-go","gcc-m2","gcc-objc","gcc-rust","gcovr","ghc","home-assistant","imd-git","intelbacklight-git","ispin","kde-development-environment-meta","ldc","lib32-clang","lib32-clang-git","libgccjit","libreoffice-fresh-sdk","libreoffice-still-sdk","lto-dump","nim","posix-c-development","rust","sh4d0wup","vala","varnish","virtualbox-host-dkms","vital-synth"],"optional_for":["bauh","choosenim","clion","codelite","codelite-unstable","dmd","node-gyp","qmk","spamassassin","xorg-xrdb"],"conflicts_with":[],"replaces":["gcc-multilib"],"download_size":53687091,"installed_size":212105953,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"029e59b707bf7e35f98c7f0d46031f7e78f6e66251b7220980a1fd65081e7858","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-ada","version":"14.2.1+r32+geccf707e5ce-1","description":"Ada front-end for GCC (GNAT)","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-ada-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-ada-multilib"],"download_size":31037849,"installed_size":158030888,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"83ca73da52a5deb60718edc2a9b2c61b3bc828d58d49c68214da9e24d8082001","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-d","version":"14.2.1+r32+geccf707e5ce-1","description":"D frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gdc"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":["orbiton"],"conflicts_with":[],"replaces":["gdc"],"download_size":20866662,"installed_size":123511767,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0e9c6e1b7067f0080c784605e0e89c6b96d50d46aefb747f37251dbb996544e4","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-fortran","version":"14.2.1+r32+geccf707e5ce-1","description":"Fortran front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-fortran-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["wsjtx"],"optional_for":["hiprand","magma-cuda","magma-hip","openmpi","phoronix-test-suite","r","rocrand","root","root-cuda"],"conflicts_with":[],"replaces":["gcc-fortran-multilib"],"download_size":14197719,"installed_size":46409973,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"20b27847342207fd0b652724dd8ed0c503cf0e66492d65671b1420e94c79c635","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-go","version":"14.2.1+r32+geccf707e5ce-1","description":"Go front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["go=1.17","gcc-go-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["gopls"],"optional_for":["liteide","nixpacks"],"conflicts_with":["go"],"replaces":["gcc-go-multilib"],"download_size":34603008,"installed_size":198736609,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"7fee2490ceff374d2d254b187ac824b5be32e0dec6a26442b0d94309f2f7f080","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-libs","version":"14.2.1+r32+geccf707e5ce-1","description":"Runtime libraries shipped by GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-libs-multilib","libgo.so=23-64","libgfortran.so=5-64","libgphobos.so=5-64","libubsan.so=1-64","libasan.so=8-64","libtsan.so=2-64","liblsan.so=0-64"],"depends_on":["glibc>=2.27"],"required_by":["3cpio","4ti2","7-zip","86box","86box-git","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acme-redirect","add-determinism","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","advancecomp","aeolus","afdko","afl++","age-plugin-yubikey","agg-2.6-git","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","airshipper","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alligator","alsa-tools","alsa-utils","amarok","amb-plugins","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-build-tools","angelfish","angle-grinder","antimicrox","antlr4-runtime","anydesk-bin","aom","apcupsd","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-repro-status","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-ide","arianna","ark","arrpc","arti","artikulate","artyfx","asciinema-agg","aspell","asplib","assimp","astyle","asusctl","asymptote","at51","atac","atomicparsley","attica","atuin","audacity","audaspace","audex","audiocd-kio","audiofile","audiotube","augeas","aura","aura-git","avisynthplus","avogadrolibs","avogadrolibs-qt5","avr-gcc","aws-crt-cpp","aws-sdk-cpp","ayatana-indicator-datetime","b3sum","babashka-bin","bacon","baloo","baloo-widgets","bandwhich","base","bat","battop","bbpager","bcachefs-tools","bcc","bchoppr","bear","benchmark","bespokesynth","biblesync","bigsh0t","bingrep","binocle","biodiff","biome","bitcoin-daemon","bitcoin-qt","bitcoin-tx","blackbox","blas","blas64","blender","blendr","blinken","bliss","blockbench-bin","blop.lv2","bluedevil","bluez-qt","bob","boinctui","bolt-launcher","bomber","bore","boringtun","botan","bottom","bovo","box2d","boxxy","bpf-linker","bpftop","bpftrace","breeze","breeze5","breezy","brial","brickadia-launcher","brillo","broot","bsequencer","bshapr","bslizr","btop","bubblewrap","bubblewrap-suid","buddy","bugstalker","buho","build2","bupstash","bustle","c++utilities","c-xsc","calendarsupport","calf","caligula","calindori","calligra","cantor","capnproto","caps","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-about","cargo-asm","cargo-audit","cargo-auditable","cargo-binstall","cargo-bloat","cargo-bundle-licenses","cargo-c","cargo-cyclonedx","cargo-deb","cargo-deny","cargo-depgraph","cargo-expand","cargo-flamegraph","cargo-generate-rpm","cargo-hack","cargo-insta","cargo-license","cargo-llvm-cov","cargo-make","cargo-msrv","cargo-ndk","cargo-nextest","cargo-outdated","cargo-pgrx","cargo-public-api","cargo-release","cargo-run-bin","cargo-semver-checks","cargo-show-asm","cargo-shuttle","cargo-sort","cargo-supply-chain","cargo-sweep","cargo-tarpaulin","cargo-tauri","cargo-update","cargo-wizard","cargo-zigbuild","cargo2junit","carla","carla-git","casync","cauchy","cbindgen","ccache","ccls","cdrdao","cef-minimal-obs-bin","cemu-git","cervisia","chatgpt-desktop-bin","check-broken-packages-pacman-hook-git","check-sieve","chess-tui","chiaki","choose","chromaprint","chromium-widevine","citra-git","clamav","clazy","clblast","clipcat","clipgrab","clpeak","clthreads","clucene","clxclient","cm256cc","cmake","cmt","cobalt","cocogitto","codon-bin","coeurl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-mp","coin-or-osi","colord-kde","comgr","committed","communicator","compiler-rt","compiler-rt-git","compiler-rt14","compiler-rt17","composable-kernel","composefs","conky","connman","conserve-git","coolercontrol","coordgen","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","coxeter","cpp-hocon","cppdap","cppunit","crab-hole","crawl-ncurses","crawl-tiles","cri-o","criu","cross","crowdsec","cryfs","crypto++","cryptominisat","csound","csound-plugins","csoundqt","csvlens","ctemplate","ctrtool","cubeb","cudd","cups","cxxbridge","czkawka-cli","czkawka-gui","d-spy","d2","daktilo","darkstat","darts","db","db5.3","dbus-c++","ddrescue","debuginfod","deepin-album","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-clone","deepin-compressor","deepin-device-formatter","deepin-dock","deepin-draw","deepin-editor","deepin-file-manager","deepin-font-manager","deepin-image-editor","deepin-image-viewer","deepin-kwin","deepin-launchpad","deepin-music","deepin-network-core","deepin-pdfium","deepin-picker","deepin-polkit-agent","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-reader","deepin-screen-recorder","deepin-screensaver","deepin-session","deepin-session-shell","deepin-session-ui","deepin-system-monitor","deepin-terminal","deepin-util-dfm","deepin-voice-note","deepin-widgets","deepin-wloutput-daemon","deltachat-rpc-server","deno","deskreen","dexed-clap","dexed-standalone","dexed-vst3","dfrs","diesel-cli","difftastic","digikam","din","discimagecreator-git","discord-chat-exporter-cli","discord-game-sdk","discover","diskus","disorderfs","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","djvulibre","dleyna","dmtcp","dnsdist","dog","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dosbox","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","draco","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dssi","dtk6core","dtk6declarative","dtk6gui","dtk6widget","dtkcore","dtkdeclarative","dtkgui","dtkwidget","dua-cli","ducker","dummyhttp","dump_syms","dust","dvd+rw-tools","dvgrab","dvisvgm","dwarffortress","dwayland","dysk","e-antic","easytag","ebou","ebumeter","ecasound","eclib","edid-decode-git","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elisa","ell","embree","emby-theater","emptyepsilon","emulsion","enblend-enfuse","endless-sky","eog","epiphany","eq10q","erdtree","espflash","espup","eva","evcxr_repl","eventviews","evince","evolution-data-server","evolution-ews","exempi","exiv2","eza","fabla","facter","falkon","fastd","faust","fcgi","fcitx5-qt","fclones","fd","felix-rs","ferium","ferium-gui","fflas-ffpack","ffmpegthumbs","fftw","fiery","fil-plugins","file-roller","filelight","fillets-ng","findomain","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","flac","flatbuffers","flatpak","flatpak-builder","flatpak-kcm","flawz","flightcore","flip-link","flips","fltk","fluidsynth","flxmlrpc","fmt","fnm","fomp.lv2","fplll","fprintd","fractal","fragments","frameworkintegration","francis","freerdp","freewheeling","frei0r-plugins","ft2-clone","furnace","futuresql","fwupd","g2reverb","gambas3-gb-db-sqlite3","gambas3-gb-image-effect","gambas3-gb-xml","gamescope","gamescope-git","gammaray","gap-packages","gc","gcc","gcdmaster","gdb","gdcm","gdm","gdm-prime","gedit","geekbench","geeqie","gegl","genact","gengetopt","genxrdpattern","geoclue","geonkick-lv2","geonkick-standalone","geonkick-vst3","geos","geph4-client","gerbera","gettext","gfan","gflags","gfold","ghostwriter","giac","giada","gigedit","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","gir-to-d","git-bug","git-cinnabar","git-cliff","git-delta","git-evtag","git-grab","git-smash","git-warp-time","gitg","gitlab-exporter","gitoxide","gitu","gitui","givaro","gjs","glibmm-2.68","glslang","glu","glycin","gmic","gmp","gmp-ecm","gn","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-builder","gnome-calendar","gnome-calls","gnome-color-manager","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-initial-setup","gnome-maps","gnome-multi-writer","gnome-online-accounts","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-software","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnustep-base","gnutls","goattracker","goldendict-webengine-pr-git","google-glog","google-webdesigner","gpaste","gperf","gperftools","gpgme","gptfdisk","gqrx","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","grcov","greetd","greetd-agreety","greetd-regreet","greetd-tuigreet","grex","groff","grub-customizer","gsoap","gst-plugin-libcamera","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-good","gstreamer","gtest","gtk4","gtksourceviewmm","gtranslator","guestfs-tools","guichan","guile1.8","guitarix","gupnp-tools","gvfs","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gwenview","gxplugins.lv2","hacksaw","halp","handbrake","handbrake-cli","handbrake-nvenc-cli","hardened_malloc","haruna","haskell-tidal","haskell-tidal-link","havn","hawkeye","hck","heaptrack","heh","heimdall","heimdall-grimler-git","helix","helvum","hepmc","hex","hexpatch","hexyl","highway","highway-git","himalaya","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hm","hplip","hq","hsa-amd-aqlprofile-bin","hsa-rocr","ht-editor","htmlq","hugo","huniq-git","hunspell","hurl","hydrogen","hyperfine","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","iaito","icon-library","icu","icu60","icu69","id3lib","id3v2","iempluginsuite-standalone","iempluginsuite-vst3","igraph","igrep","iir1","imagemagick","imagescan","imath","imgui","impala","incidenceeditor","include-what-you-use","incron","index-fm","infamousplugins","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","intel-compute-runtime","intel-gmmlib","intel-graphics-compiler","intel-media-driver","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","iperf","iptstate","isoimagewriter","ispc","itinerary","itk-snap-bin","iverilog-git","iwd","j4-dmenu-desktop","jack2","jack2-dbus","jack_delay","jackett","jacktrip","jalv","japa","jbig2enc-git","jc303-clap","jc303-lv2","jc303-vst3","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jless","jnoisemeter","john","joshuto-git","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","js91","jsoncpp","jsonrpc-glib","juce","jujutsu","juk","just","jwt-cli","jwt-ui","k3b","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kakoune","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kbt","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","kernelshark","kexi","keymapper-git","keysmith","keystone","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmousetool","kmouth","kmplot","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","koko","kolf","kollision","kolourpaint","kommit","kompare","kondo","kondo-ui","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kubetui","kubie","kubrick","kunitconversion","kup","kuserfeedback","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","kyotocabinet","labplot","ladspa","lan-mouse","lantern-bin","lapack","lapack64","lapce","lapce-git","laszip","laszip2","latte-integrale","layer-shell-qt","lazyjj","lcalc","ldproxy","leatherman","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","leftwm-theme-git","legba","leocad","lftp","lib3mf","libabigail","libabw","libaccounts-qt","libajantv2","libakonadi","libappimage","libayatana-appindicator","libb2","libbacktrace-git","libblockdev-crypto","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-swap","libbraiding","libbs2b","libc++","libc++abi","libcaca","libcamera","libcamera-ipa","libcamera-tools","libcap","libcdio","libcdr","libchardet","libcmis","libconfig","libcoverart","libcupsfilters","libcutl","libdatachannel","libde265","libdex","libdovi","libe-book","libebml","libei","libelf","libelfin","libemf","libepubgen","libetebase","libetonyek","libfabric","libfbclient","libffado","libfilezilla","libfprint","libfpx","libfreehand","libftdi-compat","libgdm","libgdm-prime","libgexiv2","libgig","libgit2","libgme","libgooglepinyin","libgravatar","libguestfs","libgweather-4","libheif","libical","libilbc","libimagequant","libindi","libinih","libixion","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libkscreen","libksieve","libksysguard","libktorrent","libliquidsfz","liblsp-r3d-glx-lib","libmalcontent","libmanette","libmediainfo","libmemcached-awesome","libmfx","libmodplug","libmp4v2","libmspub","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmythes","libnautilus-extension","libnitrokey","libnl","libnm","libnm-iwd","libnpupnp","libnumbertext","libodfgen","libolm","libopenmpt","libopenshot","libopenshot-audio","liborcus","liborigin","libosinfo","libpagemaker","libpeas-2","libphobos","libphonenumber","libpipewire","libplacebo","libplasma","libplist","libplist-git","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libppd","libproxy","libpst","libptytty","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libquotient","libqxp","libraw","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-bsnes","libretro-bsnes-hd","libretro-dolphin","libretro-mesen","libretro-mesen-git","libretro-mesen-s","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-pcsx2","libretro-ppsspp","librevenge","librewolf","librime","librsvg","librustls","libsbsms","libseexpr2","libsemigroups","libshumate","libsidplayfp","libsigc++","libsigc++-3.0","libsoxr","libspectmorph","libspelling","libstaroffice","libstdc++5","libtiff","libtiff4","libultrahdr","libultrahdr-git","libunrar","libupnpp","libusbmuxd","libusbmuxd-git","libva-mesa-driver","libvdpau-va-gl","libvisio","libvoikko","libvolk","libvpl","libvpx","libwhereami","libwireplumber","libwpd","libwpe","libwpg","libwps","libxcomp","libxisf","libxml++-5.0","libxsd-frontend","libyuv","libzen","libzmf","lidia","lilypond","linbox","lincity-ng","linuxsampler","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","live-media","lld","lld17","lldb","lldb-mi","llvm-julia","llvm-julia-libs","llvm-libs","llvm-libs-git","llvm14-libs","llvm17-libs","lmms","log4cplus","log4cpp","lokalize","looking-glass-git","looking-glass-host-git","loupe","lsd","lshw","lskat","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lua-language-server","luajit","luau","lucky-commit","ludusavi","luppp","lurk","lxqt-config","lychee","lzip","lzlib","m4ri","mac","maeparser","mailcommon","mailimporter","malcontent","maliit-framework","mame","mame-tools","mangohud","mangohud-git","marble","marble-common","marble-maps","marble-qt","marisa","markdownpart","marknote","markuplinkchecker","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","mastodon-twitter-sync","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","maxcso","maxcso-git","mbox-importer","mbuffer","mcp-plugins","mcqd","md-tui","mda.lv2","mdbook","mdcat","mediaelch","meilisearch","menyoki","merkuro","mesa","mesa-vdpau","messagelib","milkytracker","milou","mimetreeparser","minecraft-launcher","minisat","miniserve","minitube","minuet","miopen-hip","mirro-rs","mixxx","mjpegtools","mkvtoolnix-cli","mlt","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","monolith","moon","mosquitto","mpd","mpdecimal","mpgtx","mpvqt","mqttui","mscp","msgraph","msolve","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","munt-daemon","muparser","muparserx","muse","musescore","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","mystiq","naiveproxy","nautilus","navidrome","nccl","ncmpc","ncmpcpp","ncspot","ncurses","ncurses5-compat-libs","neochat","neovide","neovide-git","netavark","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","nethogs","nethsm-cli","netpbm","netplan","netscanner","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","ngspice","nickel","nickel-language-server","ninja","niri","nix","nix-init","nixpacks","nload","nlopt","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-suppression-for-voice","nomacs","nomad","normaliz","notcurses","nspluginwrapper","nsync","ntk","ntl","nudelta","nurl","nushell","nuspell","nut","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-rtspserver","obs-studio-tytan652","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","ogmtools","oha","oil","okteta","okular","okularpart5","onednn","onefetch","onetbb","onnx","openal","openal-git","openapi-tui","openblas","openblas-lapack","openblas64","opencl-amd","opencl-clover-mesa","opencl-rusticl-mesa","opencv","opencv-cuda","openexr","openh264","openjade","openmpi","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openscad","opensips","opentimelineio","openvkl","openzwave","opnplug-lv2","opnplug-standalone","opnplug-vst","oscpack","osinfo-db-tools","ospray","osquery","ostree","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owncloud-client","oxc-language-server","oxipng","oxlint","oxygen","oxygen5","oxyromon","p7zip","p8-platform","packagekit-qt5","packagekit-qt6","pacman-bintrans","pacman-bintrans-tools","padthv1-lv2","padthv1-standalone","palapeli","pamixer","pangomm-2.48","papilo","paprefs","par2cmdline","pari","parley","parsec-bin","partitionmanager","pastel","patchelf","pavucontrol","pbzip2","pcloudcc-git","pcre","pd-sfizz","pepper-flash","performous","pesign","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-imagick","php-legacy-imagick","physx","picmi","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pipe-rename","pipewire","pipewire-audio","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-zeroconf","piping-server","pixi","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","plymouth-kcm","podman","podman-desktop","poedit","poketex","polari","polkit-kde-agent","polkit-qt5","polkit-qt6","polly","polly-git","polyclipping","polymake","polyphone","pop-bin","pop-launcher","poppler","poppler-glib","poppler-qt5","poppler-qt6","portaudio","portsmf","postgresql","power-profiles-daemon","powerdevil","powerdns-recursor","powershell-bin","powertop","poxml","ppl","ppsspp","presage","presenterm","primecount","primesieve","print-manager","prismlauncher","prison","prjxray-tools-git","procinfo-ng","procs","protobuf","protobuf-21","proton-ge-custom","protonmail-bridge","proxmox-backup-client","proxyboi","ps7_libpicoipp","pstoedit","ptex","ptyxis","pueue","pugixml","pulseaudio-qt","purpose","pwninit","pyflow","pymol","pyside6","pystring","pythia8","python-awscrt","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-cramjam","python-cvxpy","python-cylp","python-debugpy","python-fastnumbers","python-fpylll","python-iminuit","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-materialyoucolor-git","python-mitmproxy-rs","python-ml-dtypes","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-pendulum","python-pikepdf","python-pivy","python-pplpy","python-primecountpy","python-pyarrow","python-pybullet","python-pycapnp","python-pycrdt","python-pycuda","python-pydantic-core","python-pykcs11","python-pymupdf","python-pynormaliz","python-pyopencl","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-webengine","python-pysequoia","python-pythia8","python-qdldl","python-rapidfuzz","python-regress","python-rpds-py","python-rtmidi","python-scipy","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-ulid-transform","python-vigra","python-watchfiles","python-xapian","python-y-py","python-zita-audiotools","python-zita-jacktools","qalculate-gtk","qalculate-qt","qastools","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcad","qcoro-qt5","qcoro-qt6","qd","qemu-arch-extra-git","qemu-audio-dbus","qemu-audio-jack","qemu-audio-pipewire","qemu-block-curl","qemu-block-iscsi","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-display-qxl","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-opengl","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegencpp-cmake","qrtool","qrupdate","qsampler","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtkeychain-qt5","qtkeychain-qt6","qtractor","qucsator-git","quiche","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","radare2","radeon-profile-git","rage-encryption","ragel","rate-mirrors","rathole","rattler-build","rauc","rav1e","rbutil","rbw","rccl","rdfind","re2","re2c","reactphysics3d","reapack","reaper","rebels-in-the-sky","recastnavigation","regexxer","release-plz","remmina","repgrep","repro-env","reproc","retro-gtk","retroarch","rev-plugins","rhit","rhythmbox","rink","rio","ripgrep","riseup-vpn","rkcommon","rkward","rlog","roc-toolkit","rocalution","rocblas","rocfft","rockchip-mpp","rocm-dbgapi","rocm-gdb","rocm-llvm","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rog-control-center","ropr","rosegarden","rpg-cli","rpi-imager","rq","rqbit","rqbit-desktop","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rtaudio","rtmidi","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","rucola","ruff","runescape-launcher","rust","rust-analyzer","rust-bindgen","rust-kanban","rust-script","rustc-demangle","rustic","rustlings","rustow-git","rustscan","rustypaste","rustypaste-cli","rye","ryujinx","rz-cutter","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","samply","sane","satty","sc3-plugins","sccache","scip","sd","sdcc","sddm","sddm-git","sddm-kcm","selene","sentry-cli","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serie","serpl","serproid","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sg-323-clap","sg-323-vst3","sh4d0wup","shaderc","shadowsocks-rust","shapelib","shared-mime-info","sheldon","shiboken6","shotgun","shy","sidplay2-libs","sig","signal-desktop","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","simple-mtpfs","simpleitk","simutrans","simutrans-extended-git","singular","sirocco","skanlite","skanpage","skladnik","slack-electron","sleuthkit","slim","slowhttptest","slumber","smartdns","smartmontools","smb4k","smplayer","snappy","snapshot","soapyaudio","solid","songrec","sonic","sonic-visualiser","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sorcer","sound-gambit","soundtouch","sowing","sox","spatialindex","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","speex","speexdsp","spiped","spirv-cross","spirv-tools","splix","spotify-tui","spytrap-adb","sqlc","sqlx-cli","squashfs-tools","srs","srt","ssdeep","ssh-openpgp-auth","sshd-openpgp-auth","sshx","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","steam","steam-boilr-gui","stellarsolver","step","stk","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stylua","subversion","suil","suitesparse","suitesparse-graphblas","sundials","sunpinyin","supercollider","supergfxctl","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","sweeper","swiftshader-git","swig","switchboard-plug-user-accounts","sws","swww","symengine","sympol","syndication","syndicationd","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysprof","system76-firmware","system76-scheduler","systemc","systemctl-tui","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","tabiew","taglib","taglib1","tangler","taplo-cli","tbtools","tealdeer","teamspeak3-server","tecla","telly-skout","tere","termscp","tesseract","texlab","texlive-bin","texmaker","thin-provisioning-tools","threadweaver","thrift","thunderbird","tickrs","tiny","tinyobjloader","tinyxml2","tlsh","tokei","tokodon","tokodon-git","toml-bombadil","tomlplusplus","tone-bin","topcom","topgrade","tor","totem-pl-parser","tracexec","tracker3","tracker3-miners","tracktion-waveform","tradingview","tree-sitter-cli","trippy","tropy-bin","ttfautohint","ttyper","tui-journal","turbo","twitch-tui","typos","typst","typst-lsp","uchardet","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","umbrello","umu-launcher","unarchiver","uncrustify","unittestpp","unrar","updlockfiles","upower","usbguard","uutils-coreutils","uv","v4l-utils","vale","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vaultwarden","vbindiff","vco-plugins","vcpkg","vdpauinfo","vector","vector-blf","veracrypt","vid.stab","vigra","virtiofsd","virtualbox","virtualbox-kvm","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","viu","vivid","vkbasalt","vlc","vlc-luajit","vmaf","vmpk","vmware-horizon-client","voacapl","volta","vosk-api","vte3","vte4","vtk","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-validation-layers","vulkan-virtio","vvave","wabt","wacomtablet","wah-plugins","wasm-component-ld","wasmer","wasmtime","watchbind","watchexec","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webrtc-audio-processing","webrtc-audio-processing-1","websocat","wezterm","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","wiki-tui","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wireguard-vanity-address","wireplumber","wireshark-qt","wiresmith","wishbone-utils","wl-clip-persist","wl-clipboard-rs","wldash","wluma","woff2","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","worker-build","wp-desktop","wpewebkit","wpmeta","wstunnel","wvdial","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x265","x42-plugins-lv2","x42-plugins-standalone","xapian-core","xcolor","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdvdfs","xemu-git","xerces-c","xfsdump","xh","xmonk.lv2","xplc","xplr","xsd","xsettingsd","xsv","xwaylandvideobridge","yabridge","yabridgectl","yakuake","yaml-cpp","yazi","yazi-git","yoshimi-lv2","yoshimi-standalone","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenith","zenity","zeromq","zerotier-one","zfp","zimg","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zola","zopfli","zoxide","zstd","zxing-cpp","zydis","zynaddsubfx"],"optional_for":["gcin","spglib"],"conflicts_with":[],"replaces":["gcc-libs-multilib","libgphobos"],"download_size":36742103,"installed_size":150407741,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"465482ee79fa656038ec60e1d8868c3fd69420e948468c4714031944befef0a5","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-m2","version":"14.2.1+r32+geccf707e5ce-1","description":"Modula-2 frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":14250147,"installed_size":51390709,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"d9bc49af683cc2e8f79a3464a6ecbc34bfe42a183b684cc3ab58342b33fab12a","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-objc","version":"14.2.1+r32+geccf707e5ce-1","description":"Objective-C front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-objc-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-objc-multilib"],"download_size":26864517,"installed_size":89422561,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0cdd5e43a3c9305b92ea26fb44b96ba17853a9ec5449d005dfa762420b62b9a2","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gcc-rust","version":"14.2.1+r32+geccf707e5ce-1","description":"Rust frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":14753464,"installed_size":53949235,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"9e06bf9329654391c2be8c724c61e23a228f7277951aff0bd9f5cb549d313e28","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gdbm","version":"1.24-1","description":"GNU database library","architecture":"x86_64","url":"https://www.gnu.org/software/gdbm/gdbm.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["libgdbm_compat.so=4-64","libgdbm.so=6-64"],"depends_on":["glibc","sh","readline","libreadline.so=8-64"],"required_by":["avahi","cyrus-sasl","exim","libsasl","man-db","modem-manager-gui","mutt","neomutt","openipmi","perl","php-legacy","pypy","pypy3","python","python39","ruby","ruby2.7","skktools","xkbsel","zsh"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":253050,"installed_size":736860,"packager":"David Runge ","build_date":"Thu 04 Jul 2024 10:47:39 PM +08","md5_sum":null,"sha_256_sum":"2712f2747f887ff19ad4151143e506e80254a0a0db0e8b968adb6634da7800ab","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gettext","version":"0.22.5-1","description":"GNU internationalization library","architecture":"x86_64","url":"https://www.gnu.org/software/gettext/","licenses":["GPL-2.0-only","LGPL-2.0-only","GFDL-1.2-only","GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","acl","sh","libunistring","libxml2"],"optional_deps":[{"name":"git","description":"for autopoint infrastructure updates"}],"required_by":["atril","base","base-devel","bison","cataclysm-dda","criterion","deepin-gettext-tools","engrampa","eom","exiv2","fsv3","gdm-settings","gdm-settings-git","gnome-shell-extension-arc-menu-git","grub","grub-improved-luks2-git","grub-silent","gtranslator","kde-development-environment-meta","kdesdk-thumbnailers","lib32-gettext","libmatekbd","libmatemixer","libmateweather","marco","mate-backgrounds","mate-calc","mate-common","mate-control-center","mate-icon-theme","mate-media","mate-netbook","mate-notification-daemon","mate-panel","mate-polkit","mate-power-manager","mate-screensaver","mate-sensors-applet","mate-session-manager","mate-settings-daemon","mate-system-monitor","mate-terminal","mate-user-guide","mate-user-share","mate-utils","mozo","notion","oversteer","pacman","pacman-git","perl-libintl-perl","perl-locale-gettext","pluma","po4a","poke","poxml","proton-ge-custom","pspp","quilt","t-prot","wine","wine-ge-custom","wine-stable","wine-staging","wine-staging-wow64","wine-staging-wow64-git","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wine-wow64","wine-wow64-git"],"optional_for":["diffoscope","fcitx","libvirt","motion"],"conflicts_with":[],"replaces":[],"download_size":2243952,"installed_size":8053063,"packager":"Tobias Powalowski ","build_date":"Wed 08 May 2024 06:42:49 PM +08","md5_sum":null,"sha_256_sum":"fa858cd8217d2089dd734b0ac6a9d526b7766ed0220cfad5320f91692f4d5d16","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"glib2","version":"2.80.5-1","description":"Low level core library","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libglib-2.0.so=0-64","libgio-2.0.so=0-64","libgirepository-2.0.so=0-64","libgmodule-2.0.so=0-64","libgobject-2.0.so=0-64","libgthread-2.0.so=0-64"],"depends_on":["bash","glibc","libffi","libsysprof-capture","pcre2","util-linux-libs","zlib","libffi.so=8-64","libmount.so=1-64"],"optional_deps":[{"name":"dconf","description":"GSettings storage backend"},{"name":"glib2-devel","description":"development tools"},{"name":"gvfs","description":"most gio functionality"}],"required_by":["64gram-desktop","86box","86box-git","abiword","accerciser","accountsservice","aisleriot","almanah","alsa-scarlett-gui","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","anydesk-bin","anyrun-git","app-icon-preview","appmenu-glib-translator-git","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","arch-update","ardour","ardour-git","arduino-ide","asunder","at-spi2-core","atomix","audacious","audacity","audio-recorder","autotrace","avahi","avldrums.lv2","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","babeltrace","babeltrace2","bemenu-wayland","bemenu-x11","birdfont","blanket","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brltty","budgie-session","bumblebee","bustle","cairo","calf","callaudiod","capnet-assist","castget","cdemu-client","cdemu-daemon","cef-minimal-obs-bin","cemu-git","chatgpt-desktop-bin","chromium-widevine","cinnamon-menus","clapper","colord-gtk","colord-gtk4","conky","conmon","connman","connman-git","connman-gtk","consolekit","contractor","contractor-git","cosmic-files","cosmic-files-git","cosmic-store","cosmic-store-git","cups-browsed","cups-pk-helper","curlftpfs","curtail","czkawka-gui","d-spy","datagrip","datagrip-jre","dataspell","dataspell-jre","dbmail","dbus-c++","dbus-glib","dconf","ddcutil","ddcutil-git","dee","deepin-api","deepin-appearance","deepin-camera","deepin-compressor","deepin-daemon","deepin-dock","deepin-file-manager","deepin-launchpad","deepin-session","deepin-session-ui","deepin-terminal","deepin-util-dfm","deepin-voice-note","deja-dup","deluge-gtk","deskreen","desktop-file-utils","devede","digikam","dino","dino-git","discover","displaycal","dleyna","droidcam","dsniff","dtk6gui","dtkgui","dunst","duperemove","dwarffortress","easytag","ebou","efl","emacs","emacs-nativecomp","emacs-wayland","emby-theater","enchant","eog","eolie","epiphany","etherape","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","fcitx5-gtk","ffmpeg","ffmpeg-full","ffmpeg-obs","file-roller","firefox","firefox-developer-edition","firefox-esr","firewalld","flat-remix-gnome","flatpak","flatpak-builder","flatpak-kcm","flips","fluidsynth","forkgram","fprintd","fractal","fragments","freeciv","freerdp","fs-uae","fsv3","fuseiso","fwupd","gala","gala-git","gambas3-gb-net-smtp","gamehub","gammastep","gammu","gcab","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdk-pixbuf2","gdm","gdm-prime","geary","gedit","gedit-plugins","geeqie","gegl","geoclue","geocode-glib-common","gfeeds","ghostscript","gigedit","giggle","gimp","gimp-plugin-gmic","girara","gitg","gjs","glib-networking","glib-perl","glib2-devel","glibd","glibmm","glibmm-2.68","glycin","glyr","gmime3","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-firmware","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-logs","gnome-mahjongg","gnome-maps","gnome-menus","gnome-mplayer","gnome-multi-writer","gnome-music","gnome-notes","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-extension-desktop-icons-ng","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnome-tweaks","gnome-usage","gnome-user-share","gnote","gnuplot","gobject-introspection","goffice","goland","goland-jre","gom","goobox","goocanvas","google-webdesigner","gpaste","gpgme","granite","granite7","graphene","greetd-regreet","gromit-mpx","grub-customizer","gsound","gspell","gssdp","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtk-sharp-3","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtk4-git","gtkglext","gtksourceview5","gtksourceviewmm","gtranslator","gts","gtuber","guestfs-tools","guitarix","gupnp","gupnp-av","gupnp-dlna","gupnp-igd","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gxml","harfbuzz","harfbuzz-cairo","harfbuzz-utils","haskell-gi","haskell-gi-base","haskell-gi-gio","haskell-gi-glib","haskell-gi-gmodule","haskell-gi-gobject","haskell-gio","haskell-glib","helvum","hexchat","hexter","hotdoc","hyprland","hyprland-git","hyprlock","ibus","ibus-typing-booster","icon-library","iio-sensor-proxy","imagemagick","imagemagick-full-git","imagescan","inkscape","irqbalance","irssi","itk-snap-bin","jack_mixer","jalv","jami-qt","jetbrains-toolbox","jgmenu","jnettop","json-glib","jsonrpc-glib","kamoso","kde-gtk-config","kexi","klavaro","klipperscreen","kondo-ui","kooha","kotatogram-desktop","kotatogram-desktop-git","lan-mouse","lantern-bin","lasem","lensfun","lensfun-git","lib2geom","lib32-glib2","libaccounts-glib","libaccounts-qt","libadwaita","libadwaita-demos","libappimage","libappindicator-gtk2","libappindicator-gtk3","libaxc","libayatana-appindicator","libayatana-indicator","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libcacard","libcalfbox-lss","libcheese","libcheese-git","libclapper","libclapper-gtk","libcloudproviders","libcolord","libdbusmenu-glib","libdex","libdnf","libdsme","libedataserverui4","libfm-extra","libfprint","libgbinder","libgda6","libgda6-mysql","libgda6-postgres","libgda6-sqlcipher","libgdiplus","libgdm","libgdm-plymouth-prime","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgee","libgepub","libgexiv2","libgirepository","libgit2-glib","libglib-testing","libglibutil","libgmobile","libgnome-keyring","libgnt","libgoa","libgrss","libgtop","libgudev","libguestfs","libgusb","libgweather-4","libgxps","libhandy","libibus","libical","libidl2","libinfinity","libinsane","libinstpatch","liblangtag","libldm","liblqr","libmalcontent","libmanette","libmatemixer","libmbim","libmediaart","libmediainfo","libmirage","libmm-glib","libmodulemd","libmpd","libmypaint","libnautilus-extension","libnice","libnids","libnm","libnm-iwd","libnotify","libomemo","libosinfo","libpackagekit-glib","libpamac-aur","libpamac-flatpak","libpanel","libpeas-2","libpinyin","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libproxy","libqrtr-glib","libquvi","libratbag","librda","libreoffice-fresh","libreoffice-still","librepo","librest","librewolf","librsvg","libsearpc","libsecret","libshumate","libsigrokdecode","libslirp","libsmf","libsoup","libsoup3","libspectmorph","libspectrum","libspeechd","libspelling","libwacom","libwacom-surface","libwebsockets","libwireplumber","libwireplumber-git","libwnck","libxfce4util","libxfce4windowing","libxklavier","libxmlb","libxmlbird","light-locker","lightdm","lightdm-gtk-greeter-settings","lightdm-pantheon-greeter","lilypond","loginized","logiops","looking-glass-host-git","loudmouth","loupe","lsp-plugins-gst","lua-lgi","lua51-lgi","lua53-lgi","lutris","lutris-git","lxqt-archiver","malcontent","maliit-framework","mate-menus","mc","mcabber","mdbtools","mednaffe","megatools","meld","metacity","mintlocale","mintstick","mixxx","mmsd-git","modemmanager","moserial","mpv-mpris","msgraph","mtpfs","mtr-gtk","mullvad-browser-bin","munt-smf2wav","muse","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","nautilus","nautilus-image-converter","nautilus-share","nbd","neard","netbird-ui","netplan","networkmanager","networkmanager-iwd","networkmanager-openvpn","newsflash","niri","nm-cloud-setup","nm-iwd-cloud-setup","notion","nwg-icon-picker","nwg-look","nwg-panel","obs-gstreamer","obs-studio-tytan652","ocrfeeder","ofono","opencv","opencv-cuda","opencv2","openipmi","opensc","openscad","orca","osinfo-db-tools","ostree","pacrunner","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-code","pantheon-files","pantheon-geoclue2-agent","pantheon-mail","pantheon-music","pantheon-notifications","pantheon-onboarding","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-screenshot","pantheon-settings-daemon","pantheon-shortcut-overlay","pantheon-tasks","pantheon-terminal","pantheon-videos","paperwork","paprefs","passim","pavucontrol","pdf2svg","pdfarranger","pebbles-git","perf","performous","phoc","phodav","phpstorm","phpstorm-jre","pinentry","pipewire","pipewire-audio","pipewire-pulse","pitivi","plank","plasma-nm","plasma-pa","playerctl","plymouth","poedit","polari","polkit","polkit-consolekit","polkit-qt5","polkit-qt6","pop-bin","pop-gtk-theme-git","poppler-glib","power-profiles-daemon","pqiv","pragha","preload","profanity","profanity-gtk","protonmail-bridge-core","ptyxis","pulseaudio-equalizer-ladspa","puzzles","py3status","pycharm-community-eap","pycharm-community-edition","python-bluepy","python-dasbus","python-dbus","python-dbus-fast","python-dbusmock","python-dleyna","python-gobject","python-manimpango","python-volume_key","pyzy","qalculate-gtk","qemu-arch-extra-git","qemu-audio-dbus","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-gtk","qemu-ui-sdl","qemu-ui-spice-app","qemu-user","qemu-vhost-user-gpu","qt6-base","qt6-multimedia-gstreamer","qt6-webengine","qtcreator","qtkeychain-qt5","qtkeychain-qt6","quickdocs","qxmpp-qt5","qxmpp-qt6","r","rauc","redshift","regexxer","remmina","retro-gtk","rhythmbox","rnote","rofi-emoji","rofi-wayland","rqbit-desktop","rspamd","runescape-launcher","rygel","sane","satty","sdcv","seadrive-daemon","seahorse-nautilus","secrets","sensors-applet","setbfree-lv2","setbfree-standalone","sfizz-lv2","sfizz-vst3","share-preview","shared-mime-info","signal-desktop","signal-desktop-beta","signon-ui","simple-scan","skktools","slirp4netns","snapshot","snes9x-gtk","sofia-sip","solaar","songrec","spectmorph-tools","spice","spice-gtk","spice-vdagent","spot-client","sshfs","startdde","steam-native-runtime","stlink","strawberry","strawberry-full-git","strawberry-git","sublime-music-git","sushi","sway-git","swaybg-git","swayimg","swaylock-git","swaync","swell-foop","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","switcheroo-control","swtpm","syslog-ng","sysprof","system-config-printer","tartube","tblock-gui","tecla","telegram-desktop","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","template-glib","text-engine","themix-theme-materia-git","themix-theme-oomox-git","thunderbird","tio","totem-pl-parser","touchegg","tpm2-abrmd","tracker3","tracker3-miners","tracktion-waveform","tradingview","transmageddon","transmission-remote-gtk","tropy-bin","tuba","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ukui-menus","upower","uresourced","usbguard","usbip","usbredir","vala","vala-panel-appmenu-jayatana-git","vala-panel-appmenu-registrar","vala-panel-appmenu-registrar-git","valabind","vbam-wx","vinagre","vital-synth","vlc","vlc-luajit","vmware-horizon-client","vmware-horizon-mmr","vmware-horizon-rtav","vmware-horizon-smartcard","vmware-horizon-tsdr","vmware-horizon-usb","volume_key","vte3","vte4","wavebox-beta","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webstorm","webstorm-jre","webwatcher-git","weston","wezterm","wingpanel","wingpanel-indicator-a11y","wingpanel-indicator-bluetooth","wingpanel-indicator-datetime","wingpanel-indicator-keyboard","wingpanel-indicator-network","wingpanel-indicator-nightlight","wingpanel-indicator-notifications","wingpanel-indicator-power","wingpanel-indicator-session","wingpanel-indicator-sound","wired","wireplumber","wireshark-cli","wmctrl","wofi","wpebackend-fdo","wpewebkit","wv","wxwidgets-common","wxwidgets-gtk3","x42-plugins-lv2","x42-plugins-standalone","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xemu-git","xfce4-dev-tools","xfce4-docklike-plugin","xpipe","xscreensaver","xss-lock","zenity","zoom"],"optional_for":["clevis","fastfetch","glusterfs","intel-oneapi-basekit","libpulse","mlt","plasma-desktop","suil","visual-studio-code-bin","visual-studio-code-insiders-bin","xnviewmp"],"conflicts_with":[],"replaces":[],"download_size":5096079,"installed_size":38535168,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"45b56f3a1bba361b5175f7b4ca5c986c8d8169bd8f93b3ac2ad0adb677c2e21a","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-devel","version":"2.80.5-1","description":"Low level core library - development files","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glib2","glibc","libelf","python","python-packaging"],"required_by":["ayatana-indicator-power","ayatana-indicator-session","aylurs-gtk-shell-git","gdm-settings","gdm-settings-git"],"optional_for":["glib2"],"conflicts_with":[],"replaces":[],"download_size":161361,"installed_size":1240739,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"1c4ad5b09612421b6b8974dcbda5877c2a94daa42fbec88554e61443d9c80fc2","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glib2-docs","version":"2.80.5-1","description":"Low level core library - documentation","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later","LicenseRef-Public-Domain"],"groups":[],"provides":[],"depends_on":[],"required_by":["gtk-doc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":3355443,"installed_size":66427289,"packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"334e9e6c408dcf5477358426232c09c99fa83d52a5912671e40c6aa0b71d9075","signatures":"B8AC08600F108CDF","extended_data":null},{"repository":"core","name":"glibc","version":"2.40+r16+gaa533d58ff-2","description":"GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["linux-api-headers>=4.10","tzdata","filesystem"],"optional_deps":[{"name":"gd","description":"for memusagestat"},{"name":"perl","description":"for mtrace"}],"required_by":["3cpio","4ti2","7-zip","7-zip-full","86box","86box-git","a2jmidid","a52dec","aalib","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acl","acpi","acpica","add-determinism","adguardhome","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","adms-git","adns","advancecomp","advcpmv","aeolus","aerc","afdko","afl++","age","age-plugin-tkey","age-plugin-tpm","age-plugin-yubikey","aha","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","aisleriot","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alertmanager","ali","alicloud-vault","aliyun-cli","alligator","almanah","alsa-lib","alsa-oss","alsa-plugins","alsa-scarlett-gui","alsa-tools","alsa-utils","amarok","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","aml","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-cmdline-tools-latest","angband","angelfish","angle-grinder","anime-games-launcher-bin","antimicrox","anydesk-bin","aom","apk-tools","apko","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-rebuild-order","arch-repro-status","archinstall","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-cli","arduino-ctags","arduino-fwuploader","arduino-ide","arduino-language-server","argocd","argon2","argtable","arianna","aribb25","arj","ark","arrpc","arti","artikulate","artyfx","ascii","astyle","asunder","asusctl","asymptote","at-spi2-core","at51","atomix","attica","attr","atuin","aubio","audacity","audaspace","audex","audio-recorder","audiocd-kio","audiotube","audit","augustus","aura","aura-git","avldrums.lv2","avogadrolibs","avogadrolibs-qt5","avr-binutils","aws-c-auth","aws-c-cal","aws-c-common","aws-c-compression","aws-c-event-stream","aws-c-http","aws-c-io","aws-c-mqtt","aws-c-s3","aws-c-sdkutils","aws-crt-cpp","aws-sdk-cpp","aws-vault","axel","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","b43-fwcutter","babeld","babeltrace2","babl","babl-git","backuppc","bacon","baidupcs-go","baloo","baloo-widgets","bandwhich","banner","barcode","base","bash","bat","bcc","bcg729","bchoppr","bchunk","bear","bearssl","beep","bemenu","bemenu-ncurses","bemenu-wayland","bemenu-x11","benzene","bespokesynth","bettercap","bfs","bftpd","bibtool","bibutils","bind","binutils","biome","bird","birdfont","bison","bitcoin-daemon","bitcoin-qt","bitcoin-tx","black-hole-solver","blas","blas64","blender","blinken","blisp","bliss","blockbench-bin","blop","blop.lv2","blosc","blosc2","bluedevil","bluez","bluez-cups","bluez-deprecated-tools","bluez-hid2hci","bluez-libs","bluez-mesh","bluez-obex","bluez-qt","bluez-utils","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","bolt-launcher","bomber","bootconfig","bootiso","botan","bovo","bpf","bpf-linker","bpftrace","breeze","breeze-icons","breeze-plymouth","breeze5","breezy","brial","brickadia-launcher","bridge-utils","brltty","brook","brotli","browserpass","bsequencer","bshapr","bslizr","btop","btrfs-progs","bubblewrap","bubblewrap-suid","buckygen","buf","buho","build2","bully","bup","bustle","byacc","bzip2","bzip3","c-ares","c-xsc","cabextract","caddy","cage","cage-git","cairo","calendarsupport","calf","calindori","calligra","canto-curses","cantor","capnproto","capstone","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-audit","cargo-c","cargo-cyclonedx","cargo-deb","cargo-flamegraph","cargo-license","cargo-outdated","cargo-release","cargo-semver-checks","cargo-tarpaulin","carla","carla-git","cartridge-cli","casync","catdoc","catimg","cauchy","cbindgen","cblas","cblas64","ccache","ccd2iso","ccls","cddlib","cdemu-daemon","cdparanoia","cdrdao","cdrtools","cef-minimal-obs-bin","cemu-git","cern-vdt","cervisia","cfitsio","cfssl","charm","chatgpt-desktop-bin","chewing-editor","chezmoi","chitose","chmlib","choosenim","choria-io","chromaprint","chromium-widevine","chrony","chrootuid","chrpath","cilium-cli","citra-git","cjdns","cjson","ckermit","cksfv","clamav","clapper","clash","clazy","clblast","clipgrab","cliphist","cliquer","cloudflare-warp-bin","cloudflared","clthreads","clucene","clxclient","cm256cc","cmake","cmark","cmark-gfm","cmocka","cmt","cni-plugins","cobalt","cockroachdb-bin","codon-bin","coeurl","coin-or-asl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-csdp","coin-or-mp","coin-or-osi","colord-gtk","colord-gtk4","colord-kde","comgr","committed","communicator","compface","composable-kernel","composefs","compsize","confuse","conky","conmon","connman","conntrack-tools","consul","consul-template","container-diff","convertlit","coolercontrol","coordgen","coreutils","coreutils-hybrid-git","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","cowsql","coxeter","cpio","cpp-hocon","cppdap","cppunit","cpufetch","cpupower","cracklib","crane","crawl-ncurses","crawl-tiles","cri-o","crictl","critest","criu","croc","croc-git","crowdsec","cryfs","cryptominisat","csound","csound-plugins","csoundqt","ctags","ctop","ctrtool","cubeb","cue","cuetools","cunit","cups","cups-browsed","cups-filters","cups-pdf","cups-pk-helper","curl-rustls","curlie","cutter","cxxbridge","cycfx2prog","cyrus-sasl","cyrus-sasl-gssapi","cyrus-sasl-ldap","cyrus-sasl-sql","cython","czkawka-cli","czkawka-gui","d-spy","d2","dagger","darling-bin","dart","dart-sass","dasel","dash","dateutils","dav1d","davs2","dbmail","dbmate","dbus-c++","dbus-glib","ddrescue","debugedit","debuginfod","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-compressor","deepin-file-manager","deepin-launchpad","deepin-music","deepin-network-core","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-session","deepin-session-shell","deepin-session-ui","deepin-terminal","deepin-widgets","deepin-wloutput-daemon","deja-dup","deltachat-rpc-server","deskreen","desync","detox","device-mapper","dexed-clap","dexed-standalone","dexed-vst3","dfc","dfrs","dfu-programmer","dhclient","dhcp","dhcpcd","dhcping","dictd","diesel-cli","diffstat","difftastic","diffutils","digikam","din","ding-libs","direnv","discimagecreator-git","discord-canary-electron-bin","discord-chat-exporter-cli","discount","discover","distorm","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","distro-info","dive","djvulibre","dleyna","dma","dmenu","dmidecode","dmtcp","dnscrypt-proxy","dnsmasq","dnssec-tools","docbook2x","docker","docker-machine","doctl","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dolt","dontpanic","doomretro","dos2unix","dosfstools","dotconf","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","droidcam","drone","drone-cli","drone-oss","drone-runner-docker","drone-runner-exec","drone-runner-ssh","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dsniff","dsq","dssi","dtc","dte","dtk6core","dtk6gui","dtk6widget","dtkcore","dtkwidget","dua-cli","duf","duktape","dump_syms","dumpasn1","dune","duplicacy","dust","dvd+rw-tools","dvgrab","dvisvgm","dwayland","e-antic","earlyoom","easy-pdk","easyjson","easytag","easytether-bin","ebook-tools","ebou","ebumeter","ecasound","eclib","ecm-tools","ecos","ed","edid-decode-git","editline","editorconfig-checker","editorconfig-core-c","efibootmgr","efitools","efivar","egl-wayland","eksctl","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elinks","elisa","ell","elvish","embree","emby-ffmpeg","emby-theater","emptyepsilon","enblend-enfuse","encpipe","endless-sky","enet","enscript","entr","eog","epiphany","eq10q","erdtree","erfa","erofs-utils","esbuild","espeakup","espflash","espup","eteroj.lv2","etherape","ethtool","ettercap","ettercap-gtk","eventviews","evilginx","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","evtest","exempi","exfat-utils","exfatprogs","exim","exiv2","expat","expressvpn","extundelete","eza","faac","faad2","fabla","facter","fakeroot","falkon","fastfetch","fatresize","fatsort","faust","fbset","fcitx5-qt","fcrackzip","fdkaac","fdupes","ffcall","fflas-ffpack","ffmpeg","ffmpeg-obs","ffmpegthumbs","fftw","fftw-openmpi","fiery","fig2dev","figlet","file","file-roller","filelight","findnewest","findutils","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","fish-git","flatpak","flatpak-builder","flatpak-kcm","flex","flint","flip-link","flips","flite","flite1","flterm","fltk","fluidsynth","fluxcd","fomp.lv2","foomatic-db-engine","foremost","forgejo","fortune-mod","fossil","fping","fplll","fprintd","fq","fractal","fragments","frameworkintegration","francis","freecell-solver","freeciv","freeglut","freerdp","freerdp2","freetds","freewheeling","frei0r-plugins","fribidi","fricas","frotz-dumb","fsv3","ft2-clone","ftjam","fulcio","furnace","fuse2","fuse3","futuresql","fwupd","fx","fxload","fzy","gala","gamemode","gamescope","gamescope-git","gammaray","gammastep","gap","gap-packages","gavl","gawk","gcc-libs","gcc13-libs","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdb","gdbm","gdcm","gdk-pixbuf2","gdm","gdm-prime","gdu","geary","gedit","gedit-plugins","geeqie","gegl","gen2shp","genxrdpattern","geoclue","geoipupdate","geonkick-lv2","geonkick-standalone","geonkick-vst3","geph4-client","gf2x","gfan","gfold","ghostscript","ghostwriter","ghq","giac","giada","gif2png","giflib","gigedit","giggle","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","girara","git-cinnabar","git-cliff","git-credential-gopass","git-delta","git-evtag","git-smash","git-warp-time","gitg","github-cli","gitlab-gitaly","gitlab-runner","gitleaks","gitoxide","gitui","givaro","gjs","glab","glew","glew1.10","glewlwyd","glib-networking","glib2","glib2-devel","glibc-locales","glibmm-2.68","glider","glow","glpk","glu","glycin","gmic","gmime3","gmp","gmp-ecm","gmsynth.lv2","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-mahjongg","gnome-maps","gnome-mplayer","gnome-multi-writer","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnu-netcat","gnugo","gnupg","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnutls","go-ethereum","go-licenses","go-swagger","go-task","go-tools","go-yq","goaurrpc","gobject-introspection","gocr","gocryptfs","godot-mono","goffice","goimapnotify","gojq","goldendict-webengine-pr-git","gom","gomuks","goobox","goocanvas","google-glog","google-webdesigner","gopass-hibp","gopass-jsonapi","gopass-summon-provider","gopsuinfo","goreleaser","gost","gotop","gotosocial","gox","gpac","gpart","gpaste","gperf","gperftools","gpgme","gpsmanshp","gputils","gqrx","grafana","grafana-agent","grafana-agentctl","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","greetd","greetd-regreet","grep","gron","grub-customizer","gsl","gsm","gsocket","gsound","gssproxy","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtest","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtksourceview5","gtksourceviewmm","gtranslator","gtuber","guestfs-tools","guile1.8","guitarix","gum","gumbo-parser","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gvim","gwenview","gxplugins.lv2","gzip","halibut","harfbuzz","harfbuzz-cairo","harfbuzz-icu","harfbuzz-utils","haruna","harvid","hashcash","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","hatari","haveged","hck","hcloud","hcxdumptool","hdapsd","hdparm","headscale","heaptrack","heimdall","heimdall-grimler-git","helix","helm","helmfile","helvum","hepmc","hexter","hey","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hiredis","hivex","hoel","hostapd","hostess","hotdoc","hound","hplip","hsa-amd-aqlprofile-bin","hsa-rocr","hsakmt-roct","hspell","htmlcxx","http-parser","httptunnel","hugo","hunspell","hurl","hut","hwloc","hydra","hydrogen","hyperv","hyphen","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","i3blocks","i3lock","iaito","iat","icon-library","icu","id3lib","id3v2","iddawc","idle3-tools","iempluginsuite-standalone","iempluginsuite-vst3","igraph","ijs","imagemagick","imagescan","imaginary","imake","imath","imd-git","iml","incidenceeditor","include-what-you-use","indent","index-fm","inetutils","infamousplugins","iniparser","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","insync","intel-metee","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","intel-undervolt","ioping","iotop-c","iperf","iperf3","ipp-usb","iproute2","ipset","iptstate","ipvsadm","irqbalance","irssi","isatapd","isoimagewriter","ispc","istio","itcl3","itinerary","itk-snap-bin","iucode-tool","iwd","j4-dmenu-desktop","jack-example-tools","jack-stdio","jack2","jack2-dbus","jack_delay","jack_mixer","jack_utils","jackett","jackmeter","jackminimix","jacktrip","jalv","jami-daemon","jansson","japa","jasper","java-rxtx","jbig2dec","jbigkit","jc303-clap","jc303-lv2","jc303-vst3","jconvolver","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jdupes","jellyfin-ffmpeg","jemalloc","jhead","jitterentropy","jnoisemeter","jo","joshuto-git","jpegoptim","jq","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","json-c","json-glib","jsonrpc-glib","juce","judy","jujutsu","juk","julius","jxrlib","k3b","k9s","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbd","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcptun","kcpuid","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","keepalived","kernelshark","kexi","keysmith","keyutils","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","klystrack-plus","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmod","kmousetool","kmouth","kmplot","knative-client","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","ko","koko","kolf","kollision","kolourpaint","kommit","kompare","kompose","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krb5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kube-apiserver","kube-controller-manager","kube-linter","kube-proxy","kube-scheduler","kubeadm","kubeconform","kubectl","kubectl-ingress-nginx","kubectx","kubelet","kubeseal","kubo","kubrick","kunitconversion","kup","kuserfeedback","kustomize","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwallet-pam","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","l-smash","labplot","ladspa","lantern-bin","lapack","lapack64","lapacke","lapacke64","lasem","latte-integrale","layer-shell-qt","lazygit","lbzip2","lcalc","ld-lsb","ldproxy","lean4-git","leatherman","legba","lego","lemon","lensfun-git","leocad","less","lf","lf-git","lftp","lhasa","lib32-glibc","lib32-glibc-eac","lib32-glibc-eac-roco","lib32-opencore-amr","lib3mf","libabigail","libabw","libaccounts-glib","libaccounts-qt","libad9361","libadwaita","libadwaita-demos","libaec","libaio","libajantv2","libakonadi","libao","libappimage","libappindicator-gtk2","libappindicator-gtk3","libass","libassuan","libasyncns","libatasmart","libatomic_ops","libavc1394","libavif","libayatana-appindicator","libayatana-indicator","libb2","libb64","libbaseencode","libblastrampoline","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libbluray","libbpf","libbraiding","libbsd","libburn","libc++","libc++abi","libcaca","libcacard","libcalfbox-lss","libcamera","libcamera-ipa","libcamera-tools","libcap","libcap-ng","libcbor","libcdaudio","libcddb","libcdio-paranoia","libcdr","libcerf","libcgif","libck","libclapper","libclapper-gtk","libcli","libcmis","libconfig","libcoverart","libcpuid","libcue","libcups","libcupsfilters","libcutl","libcyaml","libdaemon","libdatachannel","libdatrie","libdbi","libdc1394","libdca","libde265","libdeflate","libdex","libdispatch","libdisplay-info","libdmtx","libdovi","libdrm","libdv","libdvbpsi","libdvdcss","libdvdnav","libdvdread","libe-book","libebur128","libedataserverui4","libedit","libei","libelf","libepoxy","libepubgen","libetebase","libetonyek","libetpan","libev","libevdev","libewf","libexif","libexttextcat","libfabric","libfdk-aac","libffado","libffi","libffi7","libfido2","libfilezilla","libfilteraudio","libfixposix","libfontenc","libforensic1394","libfprint","libfreeaptx","libfreehand","libfreexl","libgcrypt","libgcrypt15","libgda6","libgda6-mysql","libgda6-postgres","libgdm","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgexiv2","libgfshare","libgig","libgirepository","libgit2","libgit2-glib","libgme","libgoa","libgoom2","libgpg-error","libgravatar","libgssglue","libgtop","libguestfs","libgweather-4","libheif","libhomfly","libhx","libical","libice","libiconv","libid3tag","libidn","libidn11","libiio","libimobiledevice","libimobiledevice-git","libimobiledevice-glue","libindi","libinih","libinput","libinsane","libinstpatch","libiptcdata","libirman","libiscsi","libixion","libjodycode","libjpeg-turbo","libjpeg6-turbo","libjuice","libkate","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeccak","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libklvanc-git","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libksba","libkscreen","libksieve","libksysguard","libktorrent","liblangtag","liblc3","libldac","libliftoff","libliftoff-git","libliquidsfz","liblo","liblockfile","liblouis","liblqr","liblscp","liblsp-r3d-glx-lib","libltc","liblzf","libmad","libmalcontent","libmanette","libmatio","libmaxminddb","libmcrypt","libmd","libmediaart","libmediainfo","libmesode","libmicrodns","libmikmod","libmirage","libmms","libmng","libmnl","libmpc","libmpcdec","libmpdclient","libmpeg2","libmspack","libmspub","libmsym","libmtp","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmypaint","libmythes","libnatpmp","libnautilus-extension","libnbd","libndp","libnet","libnfnetlink","libnfs","libnghttp2","libnghttp3","libngtcp2","libnitrokey","libnl","libnm","libnm-iwd","libnova","libnpupnp","libnsl","libnumbertext","libnvidia-container","libodfgen","libogg","libomemo-c","libomxil-bellagio","libopenmpt","libopenshot","libopenshot-audio","libopusenc","liborcus","liborigin","libosinfo","libotr","libp11-kit","libpagemaker","libpaper","libpcap","libpciaccess","libpeas-2","libpg_query","libpgm","libphonenumber","libpillowfight","libpipeline","libpipewire","libplacebo","libplasma","libplist","libplist-git","libpng12","libportal","libportal-qt5","libportal-qt6","libppd","libprocps","libproxy","libpwquality","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libqb","libquotient","libqxp","libraqm","libraw","libraw1394","librda","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreplaygain","libressl","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-blastem","libretro-dolphin","libretro-kronos","libretro-mame","libretro-mame2016","libretro-mesen-git","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-opera-git","libretro-pcsx2","libretro-picodrive","libretro-play","libretro-ppsspp","libretro-sameboy","libretro-stella2014-git","libretro-yabause","librevenge","librewolf","librime","librsvg","librtmp0","librustls","libsamplerate","libsasl","libsbsms","libseccomp","libsecp256k1","libsemigroups","libsepol","libserialport","libshumate","libsidplayfp","libsignal-protocol-c","libsigsegv","libsm","libsmbios","libsndfile","libsodium","libsoup3","libspecbleach","libspectmorph","libspectre","libspelling","libspf2","libspiro","libspnav","libspng","libssh","libstaroffice","libstemmer","libstrophe","libsynctex","libtasn1","libtatsu-git","libthai","libtheora","libtiff","libtiff5","libtirpc","libtommath","libtool","libtraceevent","libtracefs","libtsm","libuecc","libultrahdr","libumem-git","libunibreak","libunistring","libunrar","libunwind","libupnp","libupnpp","liburcu","libusb","libusbmuxd","libusbmuxd-git","libusbsio","libutempter","libuv","libuvc","libva-mesa-driver","libvdpau-va-gl","libverto","libvisio","libvpx","libvpx1.3","libvterm","libvterm-0.1","libwacom","libwacom-surface","libwebp","libwebsockets","libwhereami","libwhich","libwireplumber","libwlocate","libwmf","libwnck","libwpd","libwpg","libwps","libx11","libx86","libxau","libxaw","libxcb","libxcb-git","libxcomposite","libxcrypt","libxcursor","libxcvt","libxcvt-git","libxdamage","libxdg-basedir","libxdmcp","libxext","libxfixes","libxfont2","libxft","libxi","libxinerama","libxisf","libxkbcommon","libxkbcommon-x11","libxkbfile","libxklavier","libxml++-5.0","libxml2","libxmp","libxmu","libxp","libxpm","libxpresent","libxrandr","libxrender","libxres","libxsd-frontend","libxshmfence","libxslt","libxss","libxt","libxtst","libxv","libxvmc","libxxf86vm","libyaml","libytnef","libzen","libzmf","lidia","light-locker","lightdm-pantheon-greeter","lilv","lilypond","limine","linbox","lincity-ng","link-grammar","linux-atm","linuxsampler","linuxtv-dvb-apps","liquid-dsp","liquid-dsp-sse4.1","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","lksctp-tools","lldb-mi","lldpd","llvm-julia","llvm-julia-libs","lm_sensors","lmdb","lmms","lockfile-progs","logcli","lokalize","loki","loki-canary","looking-glass-git","looking-glass-host-git","lorcon","loupe","lout","lowdown","lprint","lpsolve","lrcalc","lrs","lskat","lsof","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lttng-ust2.12","lua-lgi","lua51-lgi","lua53-lgi","luametatex","luau","luppp","lv2file","lv2lint","lxqt-config","lxsplit","ly","lynx","lz4","lzo","m17n-db","m4","m4ri","m4rie","mac","macchanger","macfanctld","maeparser","mailcommon","mailimporter","make","malcontent","maliit-framework","mame","mame-tools","man-db","mandown","marble","marble-common","marble-maps","marble-qt","markdownpart","marknote","masscan","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","mattermost","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","mawk","maxcso","maxcso-git","mbedtls","mbedtls2","mbelib","mbox-importer","mbpfan-git","mbuffer","mc","mcpp","mcqd","md4c","mda.lv2","mdadm","mdf2iso","mediaelch","mednaffe","meek","melange","memcached","memtester","mencoder","mephisto.lv2","merkuro","mesa","mesa-demos","mesa-utils","mesa-vdpau","meshbird","messagelib","metacity","metalog","mgard","mhash","microsocks","midi_matrix.lv2","mihomo","milkytracker","miller","milou","mimalloc","mimetreeparser","mimir","mingw-w64-tools","minieap","miniflux","minikube","minio","minio-client","minitube","miniupnpc","minizip","minizip-ng","minuet","miopen-hip","mixxx","mjpegtools","mkcert","mkinitcpio-busybox","mkinitcpio-nfs-utils","mkvtoolnix-cli","mlocate","mlt","mmctl","mmsrip","mod_dnssd","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","mongodb-tools","moony.lv2","moserial","mosquitto","mp3guessenc-beta","mpc","mpd","mpdecimal","mpfi","mpfr","mplayer","mpv","mpvqt","mscp","msgpack-c","msgraph","msolve","msr-tools","mtdev","mtools","mtr","mtr-gtk","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","mupdf","mupdf-gl","mupdf-tools","muse","musepack-tools","musescore","mutt","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mxml","mympd","mysql-workbench","mystiq","naiveproxy","nano","nanomsg","nanosvg","nasm","nautilus","nautilus-image-converter","nautilus-share","nauty","navidrome","nawk","nbtscan","nccl","ncmpc","ncmpcpp","ncompress","ncspot","ncurses","ncurses5-compat-libs","ndisc6","neard","neatvnc","nebula","neochat","neomutt","neon","neovide","neovide-git","net-tools","netavark","netbird","netbird-management","netbird-signal","netbird-ui","netbrake","nethsm-cli","nethsm-pkcs11","netpbm","netperf","netplan","netsniff-ng","nettle","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","nfsidmap","nginx","nginx-mainline","nginx-mod-njs","nginx-prometheus-exporter","nickel","nickel-language-server","niri","nix","nixpacks","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-repellent","noise-suppression-for-voice","nomacs","nomad","nomad-driver-nspawn","normaliz","notcurses","npth","nrg2iso","nrpe","nspr","nspr-hg","nss","nss-mdns","nsxiv","ntk","ntl","numactl","nushell","nuspell","nut","nvidia-cg-toolkit","nvidia-container-toolkit","nwg-look","nyancat","nyxt","oath-toolkit","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-gstreamer","obs-plugin-looking-glass-git","obs-rtspserver","obs-studio-tytan652","ocaml-augeas","ocaml-csexp","ocaml-intrinsics-kernel","ocaml-pp","ocaml-stdio","ocl-icd","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","oha","oidentd","oil","okteta","okular","okularpart5","onnx","opencl-clover-mesa","opencl-rusticl-mesa","opencore-amr","opencv","opencv-cuda","opendht","openexr","openfec","openfortivpn","openjade","openjpeg2","openlibm","openmpi","openntpd","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openpmix","openscad","opensearch-cli","opensmtpd-filter-rspamd","opensmtpd-filter-senderscore","opensnitch","openssh","openssl","openssl-1.0","openssl-1.1","opentimelineio","opentofu","openucc","openucx","openvkl","openzwave","opera-beta-ffmpeg-codecs","operator-sdk","opnplug-lv2","opnplug-standalone","opnplug-vst","optipng","opus","orc","orcania","oscpack","osinfo-db-tools","ospray","osquery","ostree","osv-scanner","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owl-lisp","owncloud-client","oxygen","oxygen5","oxyromon","p11-kit","p2pool","pack-cli","packagekit-qt5","packagekit-qt6","packer","packwiz-git","pacman","pacman-bintrans","pacman-bintrans-tools","pacman-git","pacoloco","pacquery","pacutils","padthv1-lv2","padthv1-standalone","pahole","palapeli","palp","pam","pam_mount","pam_wrapper","pamixer","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-files","pantheon-geoclue2-agent","pantheon-music","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-settings-daemon","pantheon-videos","paperkey","papilo","pappl","paprefs","pari","parley","partitionmanager","passt","patch","patchmatrix","pavucontrol","pax","pciutils","pcre","pcre2","pcsc-perl","pd","pd-lua","pd-sfizz","pdfcrack","pdnsd","peco","perf","performous","perl","perl-crypt-des","perl-file-fcntllock","perl-io-tty","perl-sub-prototype","perl-term-readkey","pesign","pgbouncer","pgpdump","phodav","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-igbinary","php-imagick","php-legacy-igbinary","php-legacy-imagick","php-legacy-redis","php-redis","picard","picmi","picocom","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pinentry","pingu","pint","pipe-rename","pipectl","pipewire","pipewire-audio","pipewire-ffado","pipewire-jack","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-v4l2","pipewire-x11-bell","pipewire-zeroconf","pitivi","pixiewps","pixman","pkgconf","planarity","plank","plantri","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","playerctl","plfit","plumber","plymouth","plymouth-kcm","podman","podman-desktop","poedit","polari","polkit","polkit-kde-agent","polkit-qt5","polkit-qt6","polly-git","polymake","polyphone","pop-bin","pop-launcher","popeye","poppler","poppler-glib","poppler-qt5","poppler-qt6","popt","portaudio","portmidi","portsmf","posix","postfix","postfix-cdb","postfix-ldap","postfix-lmdb","postfix-mongodb","postfix-mysql","postfix-pcre","postfix-pgsql","postfix-sqlite","postgresql","postgresql-libs","potrace","power-profiles-daemon","powerdevil","powerline","powershell-bin","poxml","ppl","ppp","ppsspp","pqiv","premake","presage","primecount","primesieve","print-manager","prismlauncher","prison","processing","procinfo-ng","procps-ng","procs","profanity","profanity-gtk","proftpd","prometheus","prometheus-bird-exporter","prometheus-blackbox-exporter","prometheus-elasticsearch-exporter","prometheus-ipmi-exporter","prometheus-json-exporter","prometheus-memcached-exporter","prometheus-mysqld-exporter","prometheus-node-exporter","prometheus-nut-exporter","prometheus-postgres-exporter","prometheus-smartctl-exporter","prometheus-smokeping-prober","prometheus-snmp-exporter","prometheus-ssl-exporter","prometheus-systemd-exporter","prometheus-unbound-exporter","prometheus-varnish-exporter","promtail","protobuf","protobuf-21","protonmail-bridge","protonmail-bridge-core","proxychains-ng","proxytunnel","prrte","pt2-clone","ptyxis","pulseaudio-qt","pulumi","pup","purpose","puzzles","pv","pwgen","pwninit","pwru","pyside6","pythia8","python-aioquic","python-asyncpg","python-aubio","python-audit","python-autobahn","python-awscrt","python-axolotl-curve25519","python-blosc2","python-capng","python-cbor2","python-ciso8601","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-coverage","python-cramjam","python-crc32c","python-crcmod","python-cvxopt","python-cvxpy","python-cwcwidth","python-cylp","python-cypari2","python-cysignals","python-cytoolz","python-datrie","python-dbus","python-dbus-fast","python-debugpy","python-ecos","python-evdev","python-falcon","python-fastbencode","python-fastnumbers","python-fastparquet","python-fpylll","python-gammu","python-gmpy2","python-gobject","python-gpgme","python-gssapi","python-igraph","python-iminuit","python-iwlib","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-lxc","python-markupsafe","python-materialyoucolor-git","python-miniupnpc","python-mitmproxy-rs","python-ml-dtypes","python-multidict","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-osqp","python-patiencediff","python-pendulum","python-pikepdf","python-pillow","python-pillowfight","python-pivy","python-pplpy","python-primecountpy","python-psutil","python-psycopg2","python-pyalsa","python-pyarrow","python-pybluez","python-pycapnp","python-pycosat","python-pycrdt","python-pycuda","python-pycups","python-pycurl","python-pydantic-core","python-pyerfa","python-pygame","python-pygit2","python-pykcs11","python-pyliblo","python-pylorcon2","python-pymongo","python-pymupdf","python-pynacl","python-pynormaliz","python-pyopencl","python-pyqt5-sip","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-sip","python-pyqt6-webengine","python-pyrsistent","python-pyscipopt","python-pysequoia","python-pytables","python-pythia8","python-pywayland","python-pywlroots","python-qdldl","python-qrencode","python-rapidfuzz","python-rcssmin","python-reflink","python-regress","python-rjsmin","python-rpds-py","python-rtmidi","python-scipy","python-scrypt","python-scs","python-simplejson","python-sqlalchemy","python-sqlalchemy1.4","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-tornado","python-tpm2-pytss","python-ulid-transform","python-urwid","python-uvloop","python-vigra","python-volume_key","python-watchfiles","python-webrtcvad","python-xapian","python-xkbcommon","python-xmlsec","python-y-py","python-yaml","python-yara","python-yarl","python-zita-audiotools","python-zita-jacktools","python-zope-interface","python-zope-proxy","python-zope-security","python-zopfli","qalculate-gtk","qalculate-qt","qastools","qbe","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcoro-qt5","qcoro-qt6","qd","qemu-audio-alsa","qemu-audio-dbus","qemu-audio-jack","qemu-audio-oss","qemu-audio-pa","qemu-audio-pipewire","qemu-audio-sdl","qemu-audio-spice","qemu-block-curl","qemu-block-dmg","qemu-block-gluster","qemu-block-gluster-git","qemu-block-iscsi","qemu-block-iscsi-git","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-chardev-spice","qemu-common","qemu-guest-agent","qemu-hw-display-qxl","qemu-hw-display-virtio-gpu","qemu-hw-display-virtio-gpu-gl","qemu-hw-usb-host","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-egl-headless","qemu-ui-gtk","qemu-ui-opengl","qemu-ui-sdl","qemu-ui-spice-app","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qhull","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qprint","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegen-cmake","qrcodegencpp-cmake","qrupdate","qsampler","qsopt-ex","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtile","qtkeychain-qt5","qtkeychain-qt6","qtractor","quota-tools","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","r8168-dkms","r8168-lts","radamsa","radare2","radeon-profile-git","radeontop","radvd","rage-encryption","rankwidth","raptor","rasqal","rauc","rav1e","rbutil","rbw","rccl","rclone","rclone-git","rcs","rdfind","rdma-core","readline","readstat","reapack","reaper","reaver","recastnavigation","recode","redland","redland-storage-mysql","redland-storage-postgresql","redland-storage-sqlite","redland-storage-virtuoso","redshift","redshift-minimal","regexxer","rekor","release-cli","remake","remmina","reprepro","repro-env","repro-get","reproc","reptyr","restic","restic-git","retro-gtk","retroarch","retry","retsnoop","rev-plugins","revive","rgbds","rhash","rhonabwy","rhythmbox","rio","river","rizin","rkcommon","rkward","rlwrap","rnnoise","roc-toolkit","rocalution","rocblas","rocfft","rocm-dbgapi","rocm-gdb","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rofi-wayland","rog-control-center","rootlesskit","ropr","rosegarden","roswell","rpcbind","rpcsvc-proto","rpi-imager","rq","rqbit","rqbit-desktop","rqlite","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rt-tests","rtaudio","rtl-sdr","rtl-sdr-git","rtmidi","rtmpdump","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","ruby-erb","ruby-pg","ruby-racc","ruby-rugged","ruby-thin","ruff","run-parts","runescape-launcher","rust","rustc-demangle","rustic","rustow-git","rygel","rz-ghidra","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","sane","sane-airscan","satty","sbc","sbsigntools","sc3-plugins","scaleway-cli","scanmem","scc","sccache","schedtool","scip","scponly","scrcpy","scrypt","sddm","sddm-git","sddm-kcm","sdl12-compat-git","sdl2","sdparm","seadrive-daemon","seahorse-nautilus","sed","selene","senpai","sensors-applet","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serd","serie","setbfree-lv2","setbfree-standalone","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sfsexp","sg-323-clap","sg-323-vst3","sg3_utils","sh4d0wup","shaderc","shadow","shadowsocks-rust","shadowsocks-v2ray-plugin","shared-mime-info","shared_meataxe","sharutils","sheldon","sherlock.lv2","shfmt","shfs-utils","shiboken6","shine","shntool","shuffle","signal-desktop","signify","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","sile","simple-scan","singular","sip4","sipcalc","sirocco","skaffold","skanlite","skanpage","skate","skladnik","slack-electron","slack-term","sleuthkit","slirp4netns","slowhttptest","slurm-llnl","smb4k","smplayer","snappy","snapshot","snd","sniffnet","soapyaudio","socat","sofia-sip","soft-serve","softmaker-office-2024-bin","soju","solid","songrec","sonic-visualiser","sonivox","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sops","sorcer","sord","sound-gambit","sowing","spandsp","spawn-fcgi","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","spglib","spin","spire-agent","spire-server","spot-client","spytrap-adb","sqlc","sqlite","sqlite-analyzer","sqlite-tcl","squashfs-tools","squashfuse","sratom","srrdb-terminal-client","srs-state-threads","ssh-openpgp-auth","ssh-tpm-agent","sshd-openpgp-auth","sshx","sslh","sslscan","sslsplit","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","startdde","startup-notification","staticcheck","stdoutisatty","steam","stellarsolver","step","step-ca","step-cli","stern","stk","stlink","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stumpwm","subversion","sudo","sudo-git","suil","suitesparse","suitesparse-graphblas","sundials","supercollider","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","svt-av1","svt-av1-git","svt-hevc","svt-vp9","sway-git","swaybg-git","swayidle-git","swaylock-git","sweeper","swell-foop","swh-plugins","swig","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","sws","swww","symengine","symlinks","symmetrica","sympol","sympow","syncthing","syncthing-discosrv","syncthing-relaysrv","syndication","synology-drive","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysfsutils","syslog-ng","sysprof","system-config-printer","system76-firmware","system76-scheduler","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","t1utils","tabiew","tachyon","taglib","taglib1","tailscale","talhelper","talkfilters","talloc","talosctl","tangler","tanka","tar","tbtools","tcc","tcpdump","tcplay","tcsh","tdb","tea","teams","teamspeak3-server","tecla","tekton-cli","telegraf","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","telly-skout","tempo","termshark","terraform","terragrunt","testu01","texlab","texlive-bin","texmaker","text-engine","tflint","tgpt","thc-ipv6","threadweaver","thunderbird","tidy","time","timescaledb-tune","timidity++","tiny","tinycdb","tinycompress","tinyproxy","tinyssh","tinyxml2","tio","tlsh","tmon","tnftp","tokodon","tokodon-git","tomlplusplus","toolame","topcom","tor","totem-pl-parser","tpm2-pkcs11","tpm2-tools","trace-cmd","traceroute","tracker3","tracker3-miners","tracktion-waveform","tradingview","traefik","tre","tree","tree-sitter-git","trivy","tropy-bin","trurl","tslib","ttfautohint","tty-clock","tuba","tup","turbo","turbostat","twolame","typst","typst-lsp","uavs3d-git","ucl","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ulfius","umbrello","umoci","umu-launcher","umurmur","unarj","unbound","unibilium","unicorn","unixodbc","unrar","unrar-free","unrtf","up","updlockfiles","upower","upterm","usbguard","usbip","usbutils","util-linux","util-linux-libs","uutils-coreutils","uv","uwsgi","uwsgi-plugin-cgi","uwsgi-plugin-lua51","uwsgi-plugin-mono","uwsgi-plugin-php","uwsgi-plugin-php-legacy","uwsgi-plugin-psgi","uwsgi-plugin-pypy","uwsgi-plugin-python","uwsgi-plugin-rack","uwsgi-plugin-webdav","uwsgi-plugin-zabbix","uwufetch","v2ray","vala","valabind","vale","valgrind","vals","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vault","vaultwarden","vcpkg","vde2","vector-blf","vegeta","veracrypt","verdict","vhs","vid.stab","vifm","vigra","vim","vimiv","vinagre","vinegar","vinegar-git","virtiofsd","virtualbox","virtualbox-guest-utils","virtualbox-guest-utils-nox","virtualbox-kvm","visitors","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","vivaldi-ffmpeg-codecs","vlang-git","vlc","vlc-luajit","vm.lv2","vmpk","vo-amrwbenc","volta","volume_key","vpnc","vscodium","vscodium-git","vsftpd","vte-common","vte3","vte4","vtk","vulkan-icd-loader","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","vultr-cli","vvave","wabt","wacomtablet","wakatime","wasm-component-ld","watchexec","wavemon","wavpack","waybar","wayland","wayland-chromium","wayland-git","wayland-utils","waylock","wayvnc","wcslib","webhook","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","websocat","weston","wezterm","wgcf","wget","which","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","whowatch","wiiuse","wildmidi","winbox","wireguard-vanity-address","wireplumber","wireproxy","wireshark-cli","wireshark-qt","wiresmith","wishbone-utils","wit","wl-clip-persist","wl-mirror","wldash","wlr-randr","wlroots-git","wluma","wob","wofi","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","wolfssl","woodpecker-agent","woodpecker-cli","woodpecker-server","worker-build","workerd","wpa_supplicant","wpewebkit","wrangler","wstunnel","wv","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x264","x42-plugins-lv2","x42-plugins-standalone","x86_energy_perf_policy","xapian-core","xavs2","xaw3d","xcb-util","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-renderutil","xcb-util-wm","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdg-desktop-portal-wlr","xemu-git","xevd","xeve","xf86-input-elographics","xf86-input-evdev","xf86-input-libinput","xf86-input-libinput-git","xf86-input-void","xf86-input-wacom","xf86-video-amdgpu","xf86-video-ati","xf86-video-dummy","xf86-video-fbdev","xf86-video-intel","xf86-video-nouveau","xf86-video-qxl","xf86-video-sisusb","xf86-video-vesa","xf86-video-vmware","xf86-video-voodoo","xfsdump","xjadeo","xmlsec","xmonad-dbus","xmonad-utils","xmonk.lv2","xmrig","xmrig-donateless","xorg-appres","xorg-bdftopcf","xorg-font-util","xorg-fonttosfnt","xorg-iceauth","xorg-mkfontscale","xorg-server","xorg-server-xephyr","xorg-server-xnest","xorg-server-xvfb","xorg-sessreg","xorg-x11perf","xorg-xauth","xorg-xbiff","xorg-xclipboard","xorg-xconsole","xorg-xdm","xorg-xedit","xorg-xev","xorg-xeyes","xorg-xfontsel","xorg-xkbcomp","xorg-xkbutils","xorg-xload","xorg-xlsfonts","xorg-xman","xorg-xmessage","xorg-xpr","xorg-xprop","xorg-xrdb","xorg-xrefresh","xorg-xwayland","xorg-xwd","xorgxrdp","xscreensaver","xsd","xss-lock","xsv","xtmsplit","xtrlock","xvidcore","xvkbd","xwax","xwaylandvideobridge","xxhash","yabridge","yabridgectl","yaegi","yajl","yakuake","yamdi","yaml-cpp","yamlfmt","yara","yasm","yder","ydotool","yggdrasil","yoshimi-lv2","yoshimi-standalone","yubico-piv-tool","yubikey-touch-detector","yyjson","yyjson-git","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenity","zeromq","zfp","zh-autoconvert","zimg","ziproxy","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zix","zk","zlib","zlib-ng","zmap","zopfli","zoxide","zps","zrepl-git","zsa-wally-cli","zsh-theme-powerlevel10k-git","zstd","zsync","zxing-cpp","zycore-c","zynaddsubfx","zzuf"],"optional_for":["tzdata"],"conflicts_with":[],"replaces":[],"download_size":10359930,"installed_size":49954160,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"c87c0e71fd03472918dc052b5833d5568ab62866e8259d28ab453ffc4bcf8291","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"glibc-locales","version":"2.40+r16+gaa533d58ff-2","description":"Pregenerated locales for GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc=2.40+r16+gaa533d58ff"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":12247367,"installed_size":231672381,"packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"7d6e57f5a634f5002ced415fef3435efe7b91855cc6ab9f9b4c620f041eb2170","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gmp","version":"6.3.0-2","description":"A free library for arbitrary precision arithmetic","architecture":"x86_64","url":"https://gmplib.org/","licenses":["GPL-2.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc"],"required_by":["4ti2","afpfs-ng","bigloo","blender","cddlib","cgal","clasp-cl-git","cln","coreutils","coreutils-hybrid-git","cryptominisat","dnsmasq","e-antic","ecl","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","epiphany","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","flint","fplll","gambas3-gb-gmp","gap","gfan","ghc-libs","giac","givaro","glpk","gmp-ecm","gnuradio","gnustep-base","gnutls","guile","guile1.8","guile2.2","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","igraph","iml","jellyfin-ffmpeg","john","kcalc","latte-integrale","lean4-git","lib32-gmp","libisl","libktorrent","libmpc","libpoly","libqalculate","libtomcrypt","lidia","looking-glass-git","lrs","maude","maxima-sbcl","miktex","minetest-git","minetest-server-git","mlton","mpfi","mpfr","msolve","nettle","nftables","normaliz","ntl","ocaml-zarith","openpgp-ca","openpgp-ca-restd","openscad","papilo","pari","polymake","polyml","ppl","python-fpylll","python-gmpy2","python-johnnycanencrypt","python-pplpy","python-pycryptodome","python-pysequoia","python-symengine","qsopt-ex","rocm-gdb","ruby","ruby2.7","sagemath","scip","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","sh4d0wup","singular","snd","soplex","ssh-openpgp-auth","sshd-openpgp-auth","stress-ng","strongswan","suitesparse","symengine","sympol","texlive-bin","topcom","xmap-git","xmonad-utils","yices","zmap"],"optional_for":["crystal"],"conflicts_with":[],"replaces":[],"download_size":453498,"installed_size":1061550,"packager":"Antonio Rojas ","build_date":"Wed 17 Apr 2024 06:01:38 PM +08","md5_sum":null,"sha_256_sum":"286c23ed38d46f803a19d06ca46dc67d96805f7805f7b9818cf9c0ca65a69326","signatures":"7A4E76095D8A52E4","extended_data":null},{"repository":"core","name":"gnupg","version":"2.4.5-4","description":"Complete and free implementation of the OpenPGP standard","architecture":"x86_64","url":"https://www.gnupg.org/","licenses":["BSD-2-Clause","BSD-3-Clause","BSD-4-Clause","CC0-1.0","GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.1-or-later","LGPL-3.0-or-later OR GPL-2.0-or-later","MIT","Unicode-TOU"],"groups":[],"provides":[],"depends_on":["glibc","gnutls","libgcrypt","libgpg-error","libksba","libldap","libusb","pinentry","sh","sqlite","tpm2-tss","zlib","bzip2","libbz2.so=1.0-64","libassuan","libassuan.so=9-64","npth","libnpth.so=0-64","readline","libreadline.so=8-64"],"optional_deps":[{"name":"pcsclite","description":"for using scdaemon not with the gnupg internal card driver"}],"required_by":["archlinux-repro","browserpass","debian-archive-keyring","debian-ports-archive-keyring","distrobuilder","duplicity","gpgit","gpgme","grub2-signing-extension","jetring","nitrocli","pacman","pacman-git","pass","perl-gnupg-interface","playonlinux","python-gnupg","python-gnupginterface","python-ipalib","repose","thunderbird","tomb-git","torbrowser-launcher","ubuntu-keyring","visual-studio-code-bin","visual-studio-code-insiders-bin"],"optional_for":["archiso","archiso-git","debootstrap","diffoscope","in-toto","keepass-plugin-keeagent","mkinitcpio-archiso","mkosi","mkosi-git","notmuch","s3cmd","yadm","yubikey-touch-detector"],"conflicts_with":[],"replaces":[],"download_size":2820669,"installed_size":10160701,"packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:31:38 AM +08","md5_sum":null,"sha_256_sum":"36a028db83e02c22de6ec8d32608ec08d88ca9b4a60edfeac7656b81d3114052","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gnutls","version":"3.8.7-1","description":"A library which provides a secure layer over a reliable transport layer","architecture":"x86_64","url":"https://www.gnutls.org/","licenses":["GPL-3.0-or-later AND LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc","gcc-libs","gmp","libtasn1","zlib","nettle","libp11-kit","libidn2","zstd","libidn2.so=0-64","libunistring","brotli"],"optional_deps":[{"name":"tpm2-tss","description":"support for TPM2 wrapped keys"}],"required_by":["apt","aria2","ario","chrony","claws-mail","connman","connman-git","criu","cups","dnsdist","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","emby-ffmpeg","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","fwupd","gcr-4","glewlwyd","glib-networking","gloox","gnome-control-center","gnupg","gnustep-base","gsasl","gtk-vnc","gwenhywfar","haskell-gnutls","hefur","jami-daemon","jellyfin-ffmpeg","knot","knot-resolver","lftp","lib32-gnutls","libcamera","libcups","libcurl-gnutls","libetpan","libfilezilla","libgadu","libinfinity","libjcat","libmicrohttpd","libnbd","libnice","libpamac-aur","libpamac-flatpak","librelp","librtmp0","libvirt","libvncserver","libzip","loudmouth","mailutils","mpop","nbd","neatvnc","neomutt","nullmailer","openconnect","opendht","pamac-aur","pamac-flatpak","passim","pkcs11-helper","powerdns","ptyxis","qemu-arch-extra-git","qemu-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-user","qpdf","radcli","rhonabwy","rpi-imager","rtmpdump","samba","sane-airscan","smbclient","squid","swtpm","task","taskd","tigervnc","ulfius","valent-git","vlc","vlc-git","vlc-luajit","vte3","vte4","weechat","wget","wget2","wine-staging-wow64","wine-staging-wow64-git","wine-wow64","wine-wow64-git","wireshark-cli","xfce4-mailwatch-plugin","xmlsec","yaz","zeromq"],"optional_for":["anope","inspircd","proton-ge-custom","rsyslog","systemd","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git"],"conflicts_with":[],"replaces":[],"download_size":2873098,"installed_size":5809111,"packager":"Andreas Radke ","build_date":"Fri 16 Aug 2024 02:36:43 AM +08","md5_sum":null,"sha_256_sum":"d165671649ec7a3dde47f8c5fd2273f46498edecd69c11c3ebd994f005c7a302","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"gpgme","version":"1.23.2-6","description":"A C wrapper library for GnuPG","architecture":"x86_64","url":"https://www.gnupg.org/related_software/gpgme/","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later","LGPL-2.1-or-later","MIT"],"groups":[],"provides":["libgpgme.so=11-64","libgpgmepp.so=6-64"],"depends_on":["gcc-libs","glib2","glibc","libassuan","libgpg-error","gnupg>=2"],"required_by":["akonadi-calendar","almanah","balsa","claws-mail","cri-o","dino","dino-git","firefox-extension-mailvelope","flatpak","fwknop","geany-plugins","gitg","gmime3","gpg-crypter","gpg-tui","himalaya","isoimagewriter","kdepim-addons","kget","kleopatra","kmail","kmymoney","kwallet","kwallet5","libcryptui","libdnf","libjcat","libkleo","libreoffice-fresh","libreoffice-still","librepo","mailcommon","mcabber","merkuro","messagelib","mimetreeparser","mutt","neomutt","ostree","pacman","pacman-git","plasma-pass","podman","poppler","profanity","profanity-gtk","python-gpgme","qgpgme-qt6","reprepro","ripasso","ruby-gpgme","samba","seahorse","seahorse-nautilus","skopeo","volume_key","wget2"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":488724,"installed_size":1523015,"packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:26:09 AM +08","md5_sum":null,"sha_256_sum":"c9e4bb089881eb1ab1c4d73b2f42ebca4878126603e6e730d30277e285d06e68","signatures":"9B7A287D9A2EC608","extended_data":null},{"repository":"core","name":"gpm","version":"1.20.7.r38.ge82d1a6-6","description":"A mouse server for the console and xterm","architecture":"x86_64","url":"https://www.nico.schottelius.org/software/gpm/","licenses":["GPL"],"groups":[],"provides":["libgpm.so=2-64"],"depends_on":["bash","procps-ng"],"required_by":["aalib","brltty","dosemu","elinks","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","gvim","lib32-gpm","libnewt","links","mc","notcurses","vim","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":138997,"installed_size":402831,"packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:19:03 AM +08","md5_sum":null,"sha_256_sum":"95b97f61aacc075e85465a7d5e1c99d1b249b4eba63081a170482cdc8791f799","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"grep","version":"3.11-1","description":"A string search utility","architecture":"x86_64","url":"https://www.gnu.org/software/grep/","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","pcre2"],"required_by":["aconfmgr-git","ani-cli","arch-install-scripts","base","base-devel","bashtop","bootiso","checksec","devtools","dracut","easy-rsa","git","grml-zsh-config","gsocket","gzip","keycloak","mkinitcpio","pacman","pacman-git","posix","quickemu","redis","tdrop","themix-export-spotify-git","themix-icons-gnome-colors-git","themix-theme-materia-git","themix-theme-oomox-git","ugit","usbctl","valkey","wikiman","ytfzf-git"],"optional_for":["pciutils"],"conflicts_with":[],"replaces":[],"download_size":239175,"installed_size":911319,"packager":"Sébastien Luttringer ","build_date":"Mon 15 May 2023 07:06:38 AM +08","md5_sum":"838cdf1eac9d7734eaa113e8248a4e88","sha_256_sum":"aeb2d51c03190e24d4c021b43bbdb41aef69a28dff314743aade26e288e07a48","signatures":"E5BB298470AD4E41","extended_data":null},{"repository":"core","name":"groff","version":"1.23.0-7","description":"GNU troff text-formatting system","architecture":"x86_64","url":"https://www.gnu.org/software/groff/groff.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["perl","gcc-libs"],"optional_deps":[{"name":"netpbm","description":"for use together with man -H command interaction in browsers"},{"name":"psutils","description":"for use together with man -H command interaction in browsers"},{"name":"libxaw","description":"for gxditview"},{"name":"perl-file-homedir","description":"for use with glilypond"}],"required_by":["base-devel","man-db"],"optional_for":["cgit","cgit-aurweb","haskell-pandoc","linuxdoc-tools","pandoc-bin"],"conflicts_with":[],"replaces":[],"download_size":2369781,"installed_size":9269411,"packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:19:27 PM +08","md5_sum":null,"sha_256_sum":"374fef7746a4d372ef2da8773769ee6c669382ac79bd73aedc8bafebaf366ffe","signatures":"771DF6627EDF681F","extended_data":null},{"repository":"core","name":"grub","version":"2:2.12-2","description":"GNU GRand Unified Bootloader (2)","architecture":"x86_64","url":"https://www.gnu.org/software/grub/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"depends_on":["sh","xz","gettext","device-mapper"],"optional_deps":[{"name":"freetype2","description":"For grub-mkfont usage"},{"name":"fuse3","description":"For grub-mount usage"},{"name":"dosfstools","description":"For grub-mkrescue FAT FS and EFI support"},{"name":"lzop","description":"For grub-mkrescue LZO support"},{"name":"efibootmgr","description":"For grub-install EFI support"},{"name":"libisoburn","description":"Provides xorriso for generating grub rescue iso using grub-mkrescue"},{"name":"os-prober","description":"To detect other OSes when generating grub.cfg in BIOS systems"},{"name":"mtools","description":"For grub-mkrescue FAT FS support"}],"required_by":["breeze-grub","dracula-grub-theme-git","grub-btrfs","grub-customizer","grub-theme-stylish-color-1080p-git","grub-theme-stylish-color-2k-git","grub-theme-stylish-color-4k-git","grub-theme-stylish-color-ultrawide-git","grub-theme-stylish-color-ultrawide2k-git","grub-theme-stylish-white-1080p-git","grub-theme-stylish-white-2k-git","grub-theme-stylish-white-4k-git","grub-theme-stylish-white-ultrawide-git","grub-theme-stylish-white-ultrawide2k-git","grub-theme-stylish-whitesur-1080p-git","grub-theme-stylish-whitesur-2k-git","grub-theme-stylish-whitesur-4k-git","grub-theme-stylish-whitesur-ultrawide-git","grub-theme-stylish-whitesur-ultrawide2k-git","grub-theme-tela-color-1080p-git","grub-theme-tela-color-2k-git","grub-theme-tela-color-4k-git","grub-theme-tela-color-ultrawide-git","grub-theme-tela-color-ultrawide2k-git","grub-theme-tela-white-1080p-git","grub-theme-tela-white-2k-git","grub-theme-tela-white-4k-git","grub-theme-tela-white-ultrawide-git","grub-theme-tela-white-ultrawide2k-git","grub-theme-tela-whitesur-1080p-git","grub-theme-tela-whitesur-2k-git","grub-theme-tela-whitesur-4k-git","grub-theme-tela-whitesur-ultrawide-git","grub-theme-tela-whitesur-ultrawide2k-git","grub-theme-vimix","grub-theme-vimix-color-1080p-git","grub-theme-vimix-color-2k-git","grub-theme-vimix-color-4k-git","grub-theme-vimix-color-ultrawide-git","grub-theme-vimix-color-ultrawide2k-git","grub-theme-vimix-white-1080p-git","grub-theme-vimix-white-2k-git","grub-theme-vimix-white-4k-git","grub-theme-vimix-white-ultrawide-git","grub-theme-vimix-white-ultrawide2k-git","grub-theme-vimix-whitesur-1080p-git","grub-theme-vimix-whitesur-2k-git","grub-theme-vimix-whitesur-4k-git","grub-theme-vimix-whitesur-ultrawide-git","grub-theme-vimix-whitesur-ultrawide2k-git","grub-theme-whitesur-color-1080p-git","grub-theme-whitesur-color-2k-git","grub-theme-whitesur-color-4k-git","grub-theme-whitesur-white-1080p-git","grub-theme-whitesur-white-2k-git","grub-theme-whitesur-white-4k-git","grub-theme-whitesur-whitesur-1080p-git","grub-theme-whitesur-whitesur-2k-git","grub-theme-whitesur-whitesur-4k-git","grub2-signing-extension","libguestfs","penguins-eggs","update-grub","woeusb","woeusb-ng"],"optional_for":["archiso","archiso-git","memtest86-efi","mkosi-git","rauc"],"conflicts_with":["grub-common","grub-bios","grub-emu","grub-efi-x86_64","grub-legacy"],"replaces":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"download_size":7172259,"installed_size":35305553,"packager":"Christian Hesse ","build_date":"Sun 17 Mar 2024 03:09:18 AM +08","md5_sum":"39513e40e6eb9647f8b34a61a9c84d64","sha_256_sum":"2b751fb81000bb31802939a571e10aa165c88988efdc82dc1bfcbf26309be949","signatures":"6D42BDD116E0068F","extended_data":null},{"repository":"core","name":"gssproxy","version":"0.9.2-1","description":"GSSAPI Proxy","architecture":"x86_64","url":"https://github.com/gssapi/gssproxy","licenses":["custom: MIT"],"groups":[],"provides":[],"depends_on":["libverto-module-base","popt","ding-libs","systemd-libs","krb5","glibc"],"required_by":["nfs-utils"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":99235,"installed_size":256532,"packager":"Andreas Radke ","build_date":"Fri 20 Oct 2023 03:19:23 AM +08","md5_sum":"e39782f173878afa516f65fad4927553","sha_256_sum":"77b87d1b00e33b3550e780b8a137422240e8b2575166fbf7937efa3c36adae05","signatures":"94657AB20F2A092B","extended_data":null},{"repository":"core","name":"guile","version":"3.0.10-1","description":"Portable, embeddable Scheme implementation written in C","architecture":"x86_64","url":"https://www.gnu.org/software/guile/","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["gmp","ncurses","libunistring","gc","libffi","libxcrypt"],"required_by":["aarch64-linux-gnu-gdb","aisleriot","arm-none-eabi-gdb","autogen","avr-gdb","crash","gdb","gdb-common","gnucash","lm32-elf-gdb","make","or1k-elf-gdb","ppc64le-elf-gdb","remake","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sh2-elf-gdb","slib","xbindkeys","zrythm"],"optional_for":["graphviz","weechat"],"conflicts_with":[],"replaces":[],"download_size":8713666,"installed_size":57388564,"packager":"Frederik Schwan ","build_date":"Mon 24 Jun 2024 04:16:00 PM +08","md5_sum":null,"sha_256_sum":"bf4d1b474045a88c7ad97b1ce56e8dd5786e5a10de02a8d33dc8f041edc8d01d","signatures":"9D4C5AA15426DA0A","extended_data":null},{"repository":"core","name":"gzip","version":"1.13-4","description":"GNU compression utility","architecture":"x86_64","url":"https://www.gnu.org/software/gzip/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","bash","coreutils","sed","grep"],"optional_deps":[{"name":"less","description":"zless support"},{"name":"util-linux","description":"zmore support"},{"name":"diffutils","description":"zdiff/zcmp support"}],"required_by":["amavisd-new","arch-wiki-lite","base","base-devel","clonezilla","engrampa","hwdetect","logrotate","nethack","posix-xsi","quilt","texinfo"],"optional_for":["atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","man-db","mkinitcpio","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":84346,"installed_size":159088,"packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:42:51 PM +08","md5_sum":null,"sha_256_sum":"0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a","signatures":"6D42BDD116E0068F","extended_data":null}] +[{"repository":"core","name":"acl","version":"2.3.2-1","description":"Access control list utilities, libraries and headers","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/acl","licenses":["LGPL"],"groups":["kde-applications","kde-sdk"],"provides":["xfsacl","libacl.so=1-64"],"depends_on":["glibc"],"optional_deps":[{"name":"testing","description":"this is a test description"},{"name":"name-with-no-description","description":""}],"required_by":["advcpmv","bfs","borg","borg2","bup","casync","cdrtools","clifm-git","coreutils","coreutils-hybrid-git","cups","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","gettext","incus","incus-tools","kio","krusader","lib32-acl","libarchive","libisofs","logrotate","lxd","proftpd","proxmox-backup-client","rsync","rsync-reflink","sed","shadow","snapper","spice-gtk","systemd","tar","udisks2","udisks2-btrfs","udisks2-lvm2","vim","vis","xfsdump"],"optional_for":["diffoscope","mkosi","mkosi-git"],"conflicts_with":["xfsacl"],"replaces":["xfsacl"],"download_size":"137.78 KiB","installed_size":"329.98 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jan 2024 04:57:20 PM +08","md5_sum":"33d329308c838e76498e4eac7e603291","sha_256_sum":"cbfb71e8ba9aca9e51cbdfd77d0ec51371eb865a9a098c77e2c6046962e6ae0a","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":141086,"installed_size_bytes":337899,"build_date_epoch":1706144240},{"repository":"core","name":"amd-ucode","version":"20240809.59460076-1","description":"Microcode update image for AMD CPUs","architecture":"any","url":"https://gitlab.com/kernel-firmware/linux-firmware","licenses":["custom"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"59.22 KiB","installed_size":"158.98 KiB","packager":"Tobias Powalowski ","build_date":"Mon 12 Aug 2024 02:43:48 AM +08","md5_sum":null,"sha_256_sum":"c04893e8d8defdc2ccfa29c09b2599906291a12b5e470aff9e4a80e43bece68e","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":60641,"installed_size_bytes":162795,"build_date_epoch":1723455828},{"repository":"core","name":"archlinux-keyring","version":"20240709-1","description":"Arch Linux PGP keyring","architecture":"any","url":"https://gitlab.archlinux.org/archlinux/archlinux-keyring/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["pacman"],"required_by":["base","base-devel","chaotic-keyring"],"optional_for":["mkosi-git"],"conflicts_with":[],"replaces":[],"download_size":"1198.18 KiB","installed_size":"1709.20 KiB","packager":"Christian Hesse ","build_date":"Wed 10 Jul 2024 05:31:37 AM +08","md5_sum":null,"sha_256_sum":"a6f573fc97fc21b55504a4d75d010257792847a5b87f19edff4ffb662f6f53a2","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":1226936,"installed_size_bytes":1750220,"build_date_epoch":1720614697},{"repository":"core","name":"argon2","version":"20190702-6","description":"A password-hashing function (reference C implementation)","architecture":"x86_64","url":"https://github.com/P-H-C/phc-winner-argon2","licenses":["Apache","custom:CC0"],"groups":[],"provides":["libargon2.so=1-64"],"depends_on":["glibc"],"required_by":["cryptsetup","keepassxc","opendht","php","php-legacy","python-argon2-cffi-bindings","unrealircd","znc"],"optional_for":["keepass","tomb-git"],"conflicts_with":[],"replaces":[],"download_size":"33.33 KiB","installed_size":"106.02 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 12:53:38 AM +08","md5_sum":null,"sha_256_sum":"467da2efdcef1bab8403ece5895794539b983ea7de664105a2dc821c68e8ba13","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":34129,"installed_size_bytes":108564,"build_date_epoch":1721807618},{"repository":"core","name":"attr","version":"2.5.2-1","description":"Extended attribute support library for ACL support","architecture":"x86_64","url":"https://savannah.nongnu.org/projects/attr","licenses":["LGPL"],"groups":[],"provides":["xfsattr","libattr.so=1-64"],"depends_on":["glibc"],"required_by":["advcpmv","bcachefs-tools-git","coreutils","coreutils-hybrid-git","glusterfs","lib32-attr","patch","proton-ge-custom","shadow","shake","toybox","wine-ge-custom","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","xfsdump"],"optional_for":[],"conflicts_with":["xfsattr"],"replaces":["xfsattr"],"download_size":"68.41 KiB","installed_size":"216.00 KiB","packager":"Christian Hesse ","build_date":"Sun 14 Jan 2024 10:58:15 PM +08","md5_sum":"50de36b6ebed40dd90f6c42cfb698b53","sha_256_sum":"83bcd58b066492f1242be41fa3f5750586d9eb7d8424a776e9fd6a8c5a496948","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":70051,"installed_size_bytes":221184,"build_date_epoch":1705301895},{"repository":"core","name":"audit","version":"4.0.2-2","description":"Userspace components of the audit framework","architecture":"x86_64","url":"https://people.redhat.com/sgrubb/audit","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":["libaudit.so=1-64","libauparse.so=0-64"],"depends_on":["glibc","krb5","libkrb5.so=3-64","libgssapi_krb5.so=2-64","libcap-ng","libcap-ng.so=0-64"],"optional_deps":[{"name":"libldap","description":"for audispd-zos-remote"},{"name":"sh","description":"for augenrules"}],"required_by":["apparmor","aravis","dbus","dbus-broker","gdm","gdm-prime","ksystemlog","networkmanager","networkmanager-iwd","osquery","pam","perf","python-audit","shadow","systemd","trace-cmd","usbguard"],"optional_for":["clevis"],"conflicts_with":[],"replaces":[],"download_size":"395.15 KiB","installed_size":"1053.22 KiB","packager":"David Runge ","build_date":"Wed 04 Sep 2024 03:56:53 PM +08","md5_sum":null,"sha_256_sum":"9933298fff9e3866509e25091e02e25533f0a3d27b9964b35503c2ad3f58c47a","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":404633,"installed_size_bytes":1078497,"build_date_epoch":1725490613},{"repository":"core","name":"autoconf","version":"2.72-1","description":"A GNU tool for automatically configuring source code","architecture":"any","url":"https://www.gnu.org/software/autoconf","licenses":["GPL2","GPL3","custom"],"groups":[],"provides":[],"depends_on":["awk","m4","diffutils","perl","sh"],"required_by":["argbash","autoconf-archive","base-devel","mate-common"],"optional_for":["asdf-vm","bauh"],"conflicts_with":[],"replaces":[],"download_size":"650.53 KiB","installed_size":"2277.08 KiB","packager":"Antonio Rojas ","build_date":"Sat 23 Dec 2023 08:16:19 AM +08","md5_sum":"cc7e1d210723d19fac4db93d89c77336","sha_256_sum":"44afcc89c89548bede040ae09e66ece236dc99202458bc22866bc3d490df4345","signatures":"7A4E76095D8A52E4","extended_data":null,"download_size_bytes":666142,"installed_size_bytes":2331729,"build_date_epoch":1703348179},{"repository":"core","name":"automake","version":"1.17-1","description":"A GNU tool for automatically creating Makefiles","architecture":"any","url":"https://www.gnu.org/software/automake","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["perl","bash"],"required_by":["base-devel","mate-common"],"optional_for":["asdf-vm","autoconf-archive","bauh"],"conflicts_with":[],"replaces":[],"download_size":"626.63 KiB","installed_size":"1654.66 KiB","packager":"Lukas Fleischer ","build_date":"Sat 20 Jul 2024 05:26:35 PM +08","md5_sum":null,"sha_256_sum":"71f691855fb6d1edc61e365f40c6dfd704d2af27a9a2828e753eb92cf2e03c9d","signatures":"A91764759326B440","extended_data":null,"download_size_bytes":641669,"installed_size_bytes":1694371,"build_date_epoch":1721521595},{"repository":"core","name":"b43-fwcutter","version":"019-5","description":"firmware extractor for the b43 kernel module","architecture":"x86_64","url":"https://wireless.wiki.kernel.org/en/users/Drivers/b43","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["glibc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"17.07 KiB","installed_size":"44.78 KiB","packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:49:54 PM +08","md5_sum":null,"sha_256_sum":"8d8dc6f758afafdae33498321f0d14d82dff166d9dde58414f855491535fb396","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":17479,"installed_size_bytes":45854,"build_date_epoch":1719884994},{"repository":"core","name":"base","version":"3-2","description":"Minimal package set to define a basic Arch Linux installation","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["filesystem","gcc-libs","glibc","bash","coreutils","file","findutils","gawk","grep","procps-ng","sed","tar","gettext","pciutils","psmisc","shadow","util-linux","bzip2","gzip","xz","licenses","pacman","archlinux-keyring","systemd","systemd-sysvcompat","iputils","iproute2"],"optional_deps":[{"name":"linux","description":"bare metal support"}],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.31 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Sun 08 Oct 2023 09:15:41 AM +08","md5_sum":"9fde97a64c7825c959d498235cede216","sha_256_sum":"25da12f0347e4bef6c215dcd32b6495beb86010a8c7e40828167b95f56639061","signatures":"3B94A80E50A477C7","extended_data":null,"download_size_bytes":2365,"build_date_epoch":1696781741},{"repository":"core","name":"base-devel","version":"1-2","description":"Basic tools to build Arch Linux packages","architecture":"any","url":"https://www.archlinux.org","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["archlinux-keyring","autoconf","automake","binutils","bison","debugedit","fakeroot","file","findutils","flex","gawk","gcc","gettext","grep","groff","gzip","libtool","m4","make","pacman","patch","pkgconf","sed","sudo","texinfo","which"],"required_by":["multilib-devel"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.05 KiB","installed_size":"0.00 KiB","packager":"Antonio Rojas ","build_date":"Sat 07 Sep 2024 03:08:35 AM +08","md5_sum":null,"sha_256_sum":"412a2effe23751e1c11b2fa68155f1a29ecea5d9dc8ea8cef4e87b7b429d3201","signatures":"7A4E76095D8A52E4","extended_data":null,"download_size_bytes":2099,"build_date_epoch":1725703715},{"repository":"core","name":"bash","version":"5.2.032-2","description":"The GNU Bourne Again shell","architecture":"x86_64","url":"https://www.gnu.org/software/bash/bash.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["sh"],"depends_on":["readline","libreadline.so=8-64","glibc","ncurses"],"optional_deps":[{"name":"bash-completion","description":"for tab completion"}],"required_by":["4ti2","9base","acme.sh","aconfmgr-git","acpid","adljack","afl++","alpine-chroot-install","alvr","ammonite","ananicy","android-ndk","android-sdk-build-tools","ankama-launcher","ant","antiword","antlr4","anything-sync-daemon","apparmor","apt","arch-install-scripts","arch-update","arch-wiki-lite","archiso","archiso-git","archivetools","archlinux-contrib","archlinux-java-run","ardour","ardour-git","arduino-ide","ark","asus-kbd-backlight","at-spi2-core","atop","audio-convert","aurutils","autoconf","autoconf-git","automake","base","bash-completion","bashburn","bashrun","bashtop","bat-extras","bats","bats-assert","bats-file","bats-support","bcachefs-tools","bcc-tools","bees","betterlockscreen","bind","bison","blender","blesh","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","booster","booster-git","bootiso","briar-desktop","brickadia-launcher","bup","bzip2","bzip3","ca-certificates-utils","cairo","carla","cfs-zen-tweaks","chaotic-neofetch-git","checksec","cjdns","clamav","clazy","clevis","cloud-guest-utils","cloud-image-utils","cloud-init","cmake-extras-git","codon-bin","cosmic-session","cpupower","cronie","crowdsec","cscope","cups-filters","db","db5.3","debtap","deepin-kwin","dejagnu","deltachat-desktop","devtools","dhclient","dhcpcd","dialog","dictd","diffutils","digikam","discord-chat-exporter-cli","distrobox","djvulibre","dkms","dmenu","dmtcp","doas-sudo-shim","dracut","drawio-desktop","dtc","e2fsprogs","easy-rsa","ebook-tools","ecl","ed","elfutils","emovix","epsxe","epubcheck","etc-update","exim","fakechroot","fakeroot","fastjet","faust","ffcast","fflas-ffpack","fftw","fig2dev","figlet","findutils","fio","firefox","firefox-developer-edition","firefox-esr","firrtl","flatpak","flex","fltk","foomatic-db-engine","freecell-solver","freedm-git","freedoom-git","freetype2","fricas","fwupd","fzf","gap","gap-packages","gawk","gdbm","gdm","gdm-prime","gedit","geeqie","geogebra","geos","gettext","ghidra","givaro","glib2","gnome-common","gnome-flashback","gnome-session","gnome-settings-daemon","gnome-shell","gnome-subtitles","gnuchess","gnupg","godot-mono-git","gpgit","gpm","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grails","grub","gsl","gsocket","gtk-sharp-3","gtk-update-icon-cache","gtk4","gzip","haskell-dataenc","haskell-extensible-exceptions","haskell-filemanip","haskell-hashtables","haskell-hosc","haskell-microspec","hblock","hdapsd","hdf5","hdf5-openmpi","heaptrack","hepmc","hepmc2","hip-runtime-amd","hipify-clang","hivex","hotdoc","hplip","httrack","hunspell","hwdetect","hydra","hyprshot","i3lock-fancy-git","ibus-typing-booster","icons-in-terminal-git","icu","icu69","ifplugd","ijs","imagescan","incron","intel-oneapi-common","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intellij-idea-community-edition","ipman","iptables","iptables-nft","ipvsadm","irpf","ispell","iverilog-git","jadx","java-runtime-common","jellyfin-server","jenv","jmol","jpeg-archive","jruby","js115","js128","js91","jython","kafka","kakasi","kde-cli-tools","kde-dev-scripts","kde-gtk-config","kdepim-addons","kdevelop","keychain","keycloak","keyutils","kinfocenter","klipperscreen","kmix","kommit","konsole","konversation","krb5","kubetail","kwallet-pam","lantern-bin","laptop-detect","lftp","lib32-libltdl","libassuan","libcamera","libchardet","libcups","libdca","libeatmydata","libgpg-error","libguestfs","libiodbc","libksba","libmbim","libmikmod","libnet","liboggz","libpcap","libpng","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","librewolf","libteam","libtool","libusb-compat","libxml2","libxslt","lightdm-gtk-greeter-settings","linbox","lksctp-tools","lm_sensors","lmms","lsb-release","ltex-ls-bin","lua-language-server","lua-luarepl","lua51-luarepl","lua52-luarepl","lua53-luarepl","lvm2","lxc","lynis","m4","mame","man-db","maven","mbedtls","mc","mcfly","mediathekview","mellite","meson","mill","minicom","miniupnpc","minq-ananicy-git","mjpegtools","mk-configure","mkinitcpio","mkinitcpio-archiso","mkinitcpio-systemd-tool","mkosi","mono","mtools","mullvad-browser-bin","mumble-server","mysql","mysql-clients","ncurses5-compat-libs","neofetch","neofetch-git","neovim-symlinks","netpbm","nfs-utils","nikto","nim","nm-cloud-setup","nm-iwd-cloud-setup","nnn","nnn-nerd","nomachine","npth","nspr","nspr-hg","nss","nss-hg","nuget","nvidia-prime","openapi-diff","openapi-generator","openresolv","openzwave","os-prober","os-prober-btrfs","osquery","ostree","p7zip","pacman","pacman-git","pacman-offline","pahole","pakka","pantheon-files","papirus-folders","pari","pass","pastel-docs","pax-utils","paxtest","pcre","pd","pdftk","perf","pesign","pipewire-jack","pipewire-module-xrdp","pipewire-v4l2","pkgconf","plantuml","plantuml-server","plasma-sdk","plasma-workspace","play.it","plymouth","plymouth-git","pm-utils","podman-docker","ponysay","pop-launcher","pop-launcher-git","posix","postfix","postgresql","pps-tools","preload","prettyping","processing","profile-cleaner","profile-sync-daemon","pulseaudio-control","pulseaudio-equalizer-ladspa","pycharm-community-edition","pyenv","pythia8","python-playwright","qemu-guest-agent","qtcreator","quarto-cli-bin","quilt","r","radare2","rasqal","rauc","rcs","rdma-core","redland","redo-sh","refind","reflector-simple","remmina","river","rizin","rkhunter","rocm-clang-ocl","rocm-gdb","roswell","rp-pppoe","rpmextract","rtirq","ruby-build","rust","sane","sbt","schedtoold","screenfetch","sdcc","sddm","sddm-git","sdedit","sdparm","serproid","sgml-common","shattered-pixel-dungeon","shunit2","singular","smali","smartmontools","solr","source-highlight","sowing","speakup-utils","spirv-tools","sqlcl","sqlmap","ssacli","ssh-tools","steam","steam-native-runtime","steamcmd","steamtinkerlaunch","stumpwm-contrib-git","subversion","switchboard-plug-security-privacy","sympow","syslog-ng","system-config-printer","systemd","taglib","taglib1","termv-git","testssl.sh","texinfo","texlive-bin","tgt","toolbox","tor","tracker3","tradingview","translate-shell","translate-toolkit","transmageddon","tropy-bin","txt2man","ufetch-git","ugit","umu-launcher","unifetch","unzip","usbctl","uuid","vala","valabind","ventoy-bin","vis","vkd3d-proton-mingw-git","vlc","vlc-luajit","vnstat","voacapl","vpnc","wcurl","wezterm","which","wireguard-tools","wireless-regdb","wl-mirror","wqy-zenhei","wv","wxwidgets-gtk3","wxwidgets-qt5","x2goserver","xapian-core","xdg-user-dirs","xdg-utils","xdm-archlinux","xfsprogs","xmlsec","xonotic-data","xorg-server","xorg-server-xvfb","xorg-x11perf","xorg-xdm","xorg-xpr","xosd","xssstate","xsudo-git","xwax","xz","yabridge","yodl","yosys","z","zaproxy","zramswap"],"optional_for":["a2jmidid","alsa-oss","alsa-utils","audit","btrbk","ecasound","gcin","hatari","ipxe","kernelshark","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","libkkc","lokalize","mdadm","mumble","mympd","ncurses","niri","nvm","openssh","passt","pcre2","rt-tests","skim","tzdata","unbound","usbutils","vim-csound","vim-runtime","wit"],"conflicts_with":[],"replaces":[],"download_size":"1859.23 KiB","installed_size":"9419.19 KiB","packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 01:59:54 PM +08","md5_sum":null,"sha_256_sum":"a067b212c273e1102ee9f85b916ed354760937d886b67d20b246253b2d2bbd6b","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":1903851,"installed_size_bytes":9645250,"build_date_epoch":1724792394},{"repository":"core","name":"binutils","version":"2.43+r4+g7999dae6961-1","description":"A set of programs to assemble and manipulate binary and object files","architecture":"x86_64","url":"https://www.gnu.org/software/binutils/","licenses":["GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.0-or-later","LGPL-3.0-or-later","GFDL-1.3","FSFAP"],"groups":[],"provides":["libctf.so=0-64","libgprofng.so=0-64","libsframe.so=1-64"],"depends_on":["glibc","jansson","libelf","zlib","zstd"],"optional_deps":[{"name":"debuginfod","description":"for debuginfod server/client functionality"}],"required_by":["0ad","base-devel","bootiso","bpf","bpftrace","checksec","debtap","devtools","dracut-hook-uefi","flatpak-builder","fpc","gcc","gcc13","gdb-dashboard","gsocket","imd-git","kcov","libabigail","looking-glass-git","looking-glass-host-git","mkinitcpio","namcap","openucx","peda","perf","posix","posix-software-development","rebuild-detector","rmlint","sbctl","systemd-ukify","systemd-ukify-git","vmware-horizon-client"],"optional_for":["bauh","crash","diffoscope","dracut","hotspot","inxi","xarchiver","xarchiver-gtk2"],"conflicts_with":["binutils-multilib"],"replaces":["binutils-multilib"],"download_size":"7.65 MiB","installed_size":"41.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:32:39 AM +08","md5_sum":null,"sha_256_sum":"6702f58e662908cbd5a86d554363348c2ab5c2e5e594f9d07d5627d16fda57b7","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":8021606,"installed_size_bytes":43285217,"build_date_epoch":1722943959},{"repository":"core","name":"bison","version":"3.8.2-6","description":"The GNU general-purpose parser generator","architecture":"x86_64","url":"https://www.gnu.org/software/bison/bison.html","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh","gettext"],"required_by":["base-devel","posix-c-development"],"optional_for":["bauh"],"conflicts_with":[],"replaces":[],"download_size":"772.49 KiB","installed_size":"2598.64 KiB","packager":"Leonidas Spyropoulos ","build_date":"Sat 24 Jun 2023 06:03:51 PM +08","md5_sum":"41fc9c90033977614d66eadc7361d455","sha_256_sum":"91de470c3a723f3cbf615abc9fc6fbd3075aaf5a978820db6550eae151a0afbd","signatures":"59E43E106B247368","extended_data":null,"download_size_bytes":791029,"installed_size_bytes":2661007,"build_date_epoch":1687655031},{"repository":"core","name":"brotli","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":["libbrotlicommon.so=1-64","libbrotlidec.so=1-64","libbrotlienc.so=1-64"],"depends_on":["glibc"],"required_by":["android-tools","arrow","chromium","cpp-httplib-compiled","curl","curl-rustls","dvisvgm","dwarfs","electron23","electron30","electron31","electron32","elinks","exiv2","freetype2","gnutls","godot","godot-mono","lib32-brotli","libjxl","libjxl-git","libsoup","libsoup3","links","lynx","nginx-mainline-mod-brotli","nginx-mod-brotli","nix","nodejs","nodejs-lts-hydrogen","nodejs-lts-iron","peazip","perl-io-compress-brotli","podman-desktop","python-brotlicffi","qt6-base","suyu-dev-qt6-git","tracktion-waveform","ungoogled-chromium","wget2","wireshark-cli","woff2"],"optional_for":["apache","engrampa","lighttpd"],"conflicts_with":[],"replaces":[],"download_size":"384.67 KiB","installed_size":"996.63 KiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"2f7ce0251b13c348ddaa16b03b25cd2c27a110b54402d8a0494811f44af0f2a6","signatures":"C06086337C50773E","extended_data":null,"download_size_bytes":393902,"installed_size_bytes":1020549,"build_date_epoch":1712224043},{"repository":"core","name":"brotli-testdata","version":"1.1.0-2","description":"Generic-purpose lossless compression algorithm - test data","architecture":"x86_64","url":"https://github.com/google/brotli","licenses":["MIT"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"6.13 MiB","installed_size":"14.76 MiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Apr 2024 02:47:23 AM +08","md5_sum":null,"sha_256_sum":"10007017b62e5a0d465e1a180662fcc3ecd2a335ce7870409676e55722ada693","signatures":"C06086337C50773E","extended_data":null,"download_size_bytes":6427770,"installed_size_bytes":15476981,"build_date_epoch":1712224043},{"repository":"core","name":"btrfs-progs","version":"6.10.1-2","description":"Btrfs filesystem utilities","architecture":"x86_64","url":"https://btrfs.readthedocs.io","licenses":["GPL-2.0-only"],"groups":[],"provides":["btrfs-progs-unstable"],"depends_on":["glibc","util-linux-libs","lzo","zlib","zstd","libgcrypt","systemd-libs"],"optional_deps":[{"name":"python","description":"libbtrfsutil python bindings"},{"name":"e2fsprogs","description":"btrfs-convert"}],"required_by":["archinstall","btrbk","btrfs-assistant","btrfs-assistant-git","btrfs-snapshots-git","btrfsmaintenance","buttermanager","distrobuilder","grub-btrfs","libblockdev-btrfs","libguestfs","refind-btrfs","rusnapshot-git","snap-pac","snap-sync","snapper","udisks2-btrfs"],"optional_for":["cri-o","devtools","docker","dracut","gparted","incus","incus-tools","libblockdev-fs","lxd","mkosi","mkosi-git","podman","schroot","timeshift","udisks2"],"conflicts_with":["btrfs-progs-unstable"],"replaces":["btrfs-progs-unstable"],"download_size":"1213.13 KiB","installed_size":"6661.96 KiB","packager":"Tobias Powalowski ","build_date":"Tue 27 Aug 2024 08:52:23 PM +08","md5_sum":null,"sha_256_sum":"3e6ffcac374877c8a1b449429a2458d14b0a53ab6eb5aaafab10392a011fd833","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":1242245,"installed_size_bytes":6821847,"build_date_epoch":1724817143},{"repository":"core","name":"bzip2","version":"1.0.8-6","description":"A high-quality data compression program","architecture":"x86_64","url":"https://sourceware.org/bzip2/","licenses":["BSD"],"groups":[],"provides":["libbz2.so=1.0-64"],"depends_on":["glibc","sh"],"required_by":["adios2","amavisd-new","apt","arrow","base","boost-libs","botan","cargo-dist","cargo-make","cargo-pgrx","cargo-tauri","clamav","clonezilla","coin-or-coinutils","czkawka-cli","czkawka-gui","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","doomseeker","dovecot","dpkg","dra","elinks","emby-ffmpeg","espup","ext4magic","fbreader","felix-rs","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","file","flightcore","fnm","fox","freeciv","freetype2","fsarchiver","gambas3-gb-compress","gimp","git-cinnabar","gnupg","goldendict-webengine-pr-git","goxlr-utility","graphicsmagick","grass","gst-plugins-bad","gst-plugins-good","gtkwave","gtkwave-gtk3-tcl","handbrake","handbrake-cli","handbrake-nvenc-cli","haskell-bz2","haskell-bzlib","httplz","imagemagick","imagemagick-full-git","imlib2","irrlicht","irrlicht-docs","iverilog","iverilog-git","jellyfin-ffmpeg","karchive","karchive5","krokiet","lib32-bzip2","libarchive","libelf","libewf","libgringotts","libgsf","libmirage","libosmium","libretro-dolphin","libretro-play","libsolv","libunarr","libzip","links","ludusavi","lynx","mairix","mariadb","mariadb-lts","maturin","miktex","miniserve","minizip-ng","miopen-hip","mpd","munge","netcdf","nix-init","openpgp-ca","openpgp-ca-restd","ouch","pacman-bintrans","pacman-bintrans-tools","partimage","pbzip2","pcre","pcre2","perl-compress-bzip2","pgpdump","pixi","pyflow","pypy","pypy3","python","python-cramjam","python-johnnycanencrypt","python-osmium","python-pysequoia","python-pytables","python39","qemu-block-dmg","qemu-git","qemu-headless-git","qsopt-ex","quilt","r","rage-encryption","rattler-build","rbutil","reprepro","rocksdb","routino","rye","sentry-cli","sequoia-chameleon-gnupg","sequoia-sop","sequoia-sq","sh4d0wup","simutrans","slade","sonic-visualiser","ssh-openpgp-auth","sshd-openpgp-auth","tarsnap","thunderbird","tracktion-waveform","ugrep","unarchiver","unzip","wasm-pack","wget2","wit","yelp","zeroc-ice","zip"],"optional_for":["3cpio","android-ndk","atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","mkinitcpio","unp","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":"58.38 KiB","installed_size":"145.00 KiB","packager":"Christian Hesse ","build_date":"Mon 18 Mar 2024 06:29:13 AM +08","md5_sum":"93dc36daf50abe23faeafbfb3c8c828f","sha_256_sum":"8779003d659c441b952095c19907603a738c1366f25cc51be3fd139fa4e95748","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":59781,"installed_size_bytes":148480,"build_date_epoch":1710768553},{"repository":"core","name":"ca-certificates","version":"20240618-1","description":"Common CA certificates - default providers","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["ca-certificates-mozilla"],"required_by":["arch-audit","aria2","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-cacert<=20140824-4"],"replaces":["ca-certificates-cacert<=20140824-4"],"download_size":"2.08 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"982005bd5ecc998c05f561b57bb58b4457407779727e3c3d59e926d34a8b0712","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":2129,"build_date_epoch":1718789800},{"repository":"core","name":"ca-certificates-mozilla","version":"3.104-1","description":"Mozilla's set of trusted CA certificates","architecture":"x86_64","url":"https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS","licenses":["MPL-2.0"],"groups":[],"provides":[],"depends_on":["ca-certificates-utils>=20181109-3"],"required_by":["ca-certificates"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"387.42 KiB","installed_size":"1069.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Sat 31 Aug 2024 07:36:20 AM +08","md5_sum":null,"sha_256_sum":"37e07a5d347ff9c68157bec8729c4c50f6fa538bbdb612e03166cf59ce8ca3ff","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":396718,"installed_size_bytes":1094656,"build_date_epoch":1725114980},{"repository":"core","name":"ca-certificates-utils","version":"20240618-1","description":"Common CA certificates (utilities)","architecture":"any","url":"https://src.fedoraproject.org/rpms/ca-certificates","licenses":["GPL-2.0-or-later"],"groups":[],"provides":["ca-certificates","ca-certificates-java"],"depends_on":["bash","coreutils","findutils","p11-kit"],"required_by":["arch-audit","aria2","ca-certificates-icp_br","ca-certificates-mozilla","certbot","cloud-image-utils","curl","curl-rustls","ffsend-bin","gitlab-runner","godot","godot-mono","google-webdesigner","inadyn","jdk","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jre","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jre8","jre8-openjdk-headless","lib32-neon","mono","neon","netbird-management","perl-lwp-protocol-https","perl-mozilla-ca","python-certifi","python-httplib2","python-requests","qca-qt5","qca-qt6","system76-firmware","wget2"],"optional_for":["lib32-openssl","libpurple","libressl","mkosi-git","neomutt","openssl","openssl-1.0","surf-git","trojan","wget"],"conflicts_with":["ca-certificates-java"],"replaces":["ca-certificates-java"],"download_size":"10.81 KiB","installed_size":"13.63 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Wed 19 Jun 2024 02:36:40 AM +08","md5_sum":null,"sha_256_sum":"aabd5b2b7030716ccdd465d607e734e851fe4a01adf8293a3968fe22eb89ce9b","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":11069,"installed_size_bytes":13957,"build_date_epoch":1718789800},{"repository":"core","name":"coreutils","version":"9.5-2","description":"The basic file, shell and text manipulation utilities of the GNU operating system","architecture":"x86_64","url":"https://www.gnu.org/software/coreutils/","licenses":["GPL-3.0-or-later","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["acl","attr","glibc","gmp","libcap","openssl"],"required_by":["afl-utils","alpine-chroot-install","ant","arch-install-scripts","archinstall","base","bashtop","bats","bootiso","ca-certificates-utils","checksec","devtools","diffoscope","dkms","dmenu","dracut","garuda-update","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","grml-zsh-config","gsocket","gzip","hwdetect","i3lock-fancy-git","inxi","java-runtime-common","keycloak","linux","linux-cachyos","linux-cachyos-bore","linux-cachyos-lts","linux-clear","linux-hardened","linux-lqx","linux-lts","linux-lts515","linux-mainline","linux-mainline-x64v3","linux-nitrous","linux-rt","linux-rt-lts","linux-vfio","linux-vfio-lts","linux-vfio-x64v3","linux-xanmod-edge-x64v3","linux-xanmod-lts","linux-xanmod-rt","linux-xanmod-x64v2","linux-zen","linux-znver2","linux-znver3","linux-znver4","luarocks","mariadb","mariadb-lts","minieap","mintstick","mkinitcpio","netctl","p11-kit","pacman","pacman-git","perf","perl-libintl-perl","posix","posix-xsi","quickemu","rpmextract","tblock-gui","tdrop","testssl.sh","usbctl","util-linux","wikiman","xsudo-git","zshdb"],"optional_for":["usbutils"],"conflicts_with":[],"replaces":[],"download_size":"2.75 MiB","installed_size":"15.87 MiB","packager":"Tobias Powalowski ","build_date":"Fri 30 Aug 2024 07:57:19 PM +08","md5_sum":null,"sha_256_sum":"6038dfa8f09380d65d3df7119b19dde96ab20f983b95b1056861aae1fef947b5","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":2883584,"installed_size_bytes":16640901,"build_date_epoch":1725073039},{"repository":"core","name":"cracklib","version":"2.10.2-1","description":"Password Checking Library","architecture":"x86_64","url":"https://github.com/cracklib/cracklib","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","zlib"],"required_by":["389-ds-base","deepin-pw-check","lib32-cracklib","libpwquality"],"optional_for":["mariadb","mariadb-lts","xkcdpass"],"conflicts_with":[],"replaces":[],"download_size":"275.46 KiB","installed_size":"925.81 KiB","packager":"Tobias Powalowski ","build_date":"Tue 06 Aug 2024 02:39:50 PM +08","md5_sum":null,"sha_256_sum":"692c691ea08066bac8ae2423dd6f332a3e1bb040f9ae615e206d5ad13df98175","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":282071,"installed_size_bytes":948029,"build_date_epoch":1722980390},{"repository":"core","name":"cryptsetup","version":"2.7.5-1","description":"Userspace setup tool for transparent encryption of block devices using dm-crypt","architecture":"x86_64","url":"https://gitlab.com/cryptsetup/cryptsetup/","licenses":["GPL"],"groups":[],"provides":["libcryptsetup.so=12-64"],"depends_on":["device-mapper","libdevmapper.so=1.02-64","openssl","popt","util-linux-libs","libuuid.so=1-64","json-c","libjson-c.so=5-64","argon2","libargon2.so"],"required_by":["archinstall","deepin-file-manager","libblockdev-crypto","luksmeta","mkinitcpio-utils","osquery","pam_mount","stratisd","systemd","tomb-git","volume_key","yubikey-full-disk-encryption","zulucrypt"],"optional_for":["clevis","dracut","hwdetect","mkinitcpio-systemd-tool","mkosi-git","rauc"],"conflicts_with":["mkinitcpio<38-1"],"replaces":[],"download_size":"753.85 KiB","installed_size":"2997.09 KiB","packager":"Christian Hesse ","build_date":"Tue 03 Sep 2024 06:09:57 PM +08","md5_sum":null,"sha_256_sum":"7f603f586ccb21d946408ffe2f6011a3b0025e3051dfa70dbedb02a8a96476f3","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":771942,"installed_size_bytes":3069020,"build_date_epoch":1725412197},{"repository":"core","name":"curl","version":"8.9.1-2","description":"command line tool and library for transferring data with URLs","architecture":"x86_64","url":"https://curl.se/","licenses":["MIT"],"groups":[],"provides":["libcurl.so=4-64"],"depends_on":["ca-certificates","brotli","libbrotlidec.so=1-64","krb5","libgssapi_krb5.so=2-64","libidn2","libidn2.so=0-64","libnghttp2","libnghttp2.so=14-64","libnghttp3","libnghttp3.so=9-64","libpsl","libpsl.so=5-64","libssh2","libssh2.so=1-64","zlib","libz.so=1-64","zstd","libzstd.so=1-64","openssl","libcrypto.so=3-64","libssl.so=3-64"],"required_by":["0ad","across","ani-cli","appstream","appstream-glib","arch-update","archlinux-repro","ardour","ardour-git","ario","asdf-vm","asymptote","audacious-plugins","aura","aura-git","auracle-git","aurutils","aws-sdk-cpp","barrier-headless","betterdiscordctl-git","boinc","boinc-nox","bootiso","btfs","cairo-dock","cargo-c","cargo-clone","cargo-crev","cargo-geiger","cargo-generate","cargo-outdated","cargo-shuttle","cargo-tarpaulin","cargo-udeps","castget","casync","cclive","cemu-git","cfitsio","choosenim","clamav","clamav-unofficial-sigs","cmake","cmake-git","coeurl","conky","cryfs","csound","curlftpfs","curlie","ddclient","ddnet","dehydrated","devtools","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dovecot","dtools","dub","efl","element","elinks","emulationstation","espflash","espup","ettercap","ettercap-gtk","exiv2","facter","fbreader","fcitx-cloudpinyin","fcitx5-chinese-addons","feh","fisher","flashplugin","flatpak","flatpak-builder","flickcurl","freeciv","freeipa-client","freeoffice","ftl-sdk","fwupd","gambas3-gb-net-curl","gammu","gdal","gerbera","giac","git","git-cinnabar","github-desktop","gitlab-runner","glyr","gmic","gmt","gnome-notes","gpredict","gst-plugins-bad","guitarix","hblock","hcxtools","hlsdl","html-xml-utils","hurl","hw-probe","icaclient","imhex","jp2a","kcov","kicad","kicad-git","klavaro","kodi","kodi-git","kodi-gles","kodi-stable-git","lastpass-cli","leatherman","lib32-curl","libclastfm","libcmis","libcurl-compat","libcurl-gnutls","libdatovka","libelf","libgphoto2","libindi","libkiwix","libkolabxml","liblphobos","libmediainfo","libmodsecurity","libnpupnp","liboauth","libofa","libofx","libproxy","libqalculate","libquvi","librdkafka","libreoffice-dev-bin","libreoffice-fresh","libreoffice-still","librepo","libresprite-git","libreswan","libsixel","libupnpp","libxmlrpc","llvm-libs","lnav","lokinet","luarocks","lutris","lutris-git","lv2lint","lxpanel","lxpanel-gtk3","manaplus","mcpelauncher-linux-git","megaglest","megatools","mesonlsp","micromamba","minetest","minetest-git","minetest-server","minetest-server-git","moc-pulse","mongodb","mpd","mpdscribble","musikcube","mysql-workbench","ncmpcpp","netcdf","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","netcdf-openmpi","netsurf","networkmanager","networkmanager-iwd","newsboat","nheko-git","nix","nix-init","nm-cloud-setup","nm-iwd-cloud-setup","nspluginwrapper","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-backgroundremoval","obs-streamfx-unstable","obs-studio","obs-studio-git","obs-studio-stable","obs-studio-tytan652","octave","odamex-git","odr-dabmux-git","onlyoffice-bin","openrct2","opl-synth","osbuild","osdlyrics","ostree","p2pool","pacman","pacman-git","pacredir","pacrunner","pakka","passenger","path-of-building-community-git","percona-server","phoenicis-playonlinux","php","php-legacy","pianobar","pkgfile","pokerth","polybar","polybar-git","poppler","powerdns","powerdns-recursor","profanity","profanity-gtk","proj","psensor","python-pycurl","python-tensorflow","python-tensorflow-cuda","python-tensorflow-opt","python-tensorflow-opt-cuda","qemu-block-curl","qemu-git","qemu-headless-git","qemu-tools","qmmp","r","raptor","rauc","reapack","release-plz","remmina","rhonabwy","rink","rng-tools","roswell","rpcs3-git","rpi-imager","rtorrent","ruby-patron","rust","rustup","rustup-git","s3fs-fuse","sabnzbd","sane","scummvm","scummvm-git","seadrive-daemon","sentry-native","sheldon","siril-git","slurm-llnl","smooth","softmaker-office-2024-bin","soundwire","speedtest++","spring","springlobby","srb2kart","sssd","steam","steam-native-runtime","strongswan","sunshine","supertux","supertuxkart","sword","sysdig","syslog-ng","tensorflow","tensorflow-cuda","tensorflow-opt","tensorflow-opt-cuda","termv-git","tesseract","tinyemu","toxic","tpm2-tools","tpm2-tss","transmission-cli","transmission-gtk","transmission-qt","transmission-remote-gtk","trurl","typst-lsp","uget","ulfius","umu-launcher","unrealircd","vagrant","vcpkg","viking","virtualbox","virtualbox-kvm","vorbis-tools","warsow","wasm-pack","wcurl","weechat","wpscan","wxwidgets-common","xerces-c","xfce4-screenshooter","xine-ui","xonotic","xrootd","xtrabackup","ytfzf","ytfzf-git","yubico-c","yubico-c-client","zabbix-agent","zabbix-agent2","zabbix-proxy","zabbix-server","zapret-common-git","zellij"],"optional_for":["apache","bashtop","claws-mail","clevis","curlew","deadbeef","deadbeef-git","fio","freeradius","gap-packages","gcin","gimp-git","gpgit","inxi","ispin","mariadb","mariadb-lts","mkinitcpio-archiso","mkosi-git","monitoring-plugins","nextcloud","opensips","pciutils","surf-git","systemd","tor-router","translate-shell","vicious","wps-office","wps-office-cn","xmms2"],"conflicts_with":[],"replaces":[],"download_size":"1112.47 KiB","installed_size":"1916.32 KiB","packager":"Leonidas Spyropoulos ","build_date":"Mon 05 Aug 2024 03:53:07 PM +08","md5_sum":null,"sha_256_sum":"816d521855ba751ad814499e4fc68a00d49182a1e622307e5d33a873f0fbc0a4","signatures":"244740D17C7FD0EC","extended_data":null,"download_size_bytes":1139169,"installed_size_bytes":1962311,"build_date_epoch":1722898387},{"repository":"core","name":"dash","version":"0.5.12-1","description":"POSIX compliant shell that aims to be as small as possible","architecture":"x86_64","url":"http://gondor.apana.org.au/~herbert/dash/","licenses":["BSD"],"groups":[],"provides":[],"depends_on":["glibc","libedit","libedit.so=0-64"],"required_by":["dashbinsh"],"optional_for":["dracut"],"conflicts_with":[],"replaces":[],"download_size":"82.51 KiB","installed_size":"153.90 KiB","packager":"Levente Polyak ","build_date":"Sat 25 Feb 2023 12:34:46 AM +08","md5_sum":"0368b51e48997a1b3e23faca23101eaa","sha_256_sum":"28622213069475e022656a627bff1891e8ee986d7b539eb4f3af620a8c7e27f4","signatures":"FC1B547C8D8172C8","extended_data":null,"download_size_bytes":84490,"installed_size_bytes":157593,"build_date_epoch":1677314086},{"repository":"core","name":"db","version":"6.2.32-1","description":"The Berkeley DB embedded database system","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["AGPL3"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["apt","isync","opendkim","python-bsddb"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":"1360.35 KiB","installed_size":"7336.65 KiB","packager":"Frederik Schwan ","build_date":"Sun 11 Dec 2022 02:39:34 AM +08","md5_sum":"dac58b30bebd81ea97e54b23eb6a2d74","sha_256_sum":"a0013dbb897620edca8736676b7b2ee4b854ef9479a1555f69557cac58187581","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":1392998,"installed_size_bytes":7512729,"build_date_epoch":1670755174},{"repository":"core","name":"db5.3","version":"5.3.28-5","description":"The Berkeley DB embedded database system v5.3","architecture":"x86_64","url":"https://www.oracle.com/technology/software/products/berkeley-db/index.html","licenses":["custom:sleepycat"],"groups":[],"provides":[],"depends_on":["gcc-libs","sh"],"required_by":["389-ds-base","bitcoin-daemon","bitcoin-qt","bitcoin-tx","bogofilter","bogofilter-db","inn","jack2","jnettop","perl","perl-berkeleydb","reprepro","swi-prolog"],"optional_for":["bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","iproute2"],"conflicts_with":[],"replaces":[],"download_size":"1212.97 KiB","installed_size":"6609.88 KiB","packager":"Frederik Schwan ","build_date":"Wed 01 May 2024 11:27:30 PM +08","md5_sum":null,"sha_256_sum":"edb56c7d84c438b387a53ee414daff2611f62e4804ec8f2995e17b34437c0a4c","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":1242081,"installed_size_bytes":6768517,"build_date_epoch":1714631250},{"repository":"core","name":"dbus","version":"1.14.10-2","description":"Freedesktop.org message bus system","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["libdbus","libdbus-1.so=3-64"],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["a2jmidid","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","android-emulator","ardour","ardour-git","at-spi2-core","avahi","awesome","awesome-git","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brickadia-launcher","brltty","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cdemu-daemon","cef-minimal-obs-bin","chromium","cloudflare-warp-bin","colord","compiz-core","compiz-gtk","connman","connman-git","consolekit","corectrl","cosmic-applets","cosmic-applets-git","cups","darling-bin","dbus-broker-units","dbus-c++","dbus-daemon-units","dbus-glib","deskreen","displaycal","dnsmasq","dropbox","dunst","efl","emacs","emacs-nativecomp","emacs-ng","emacs-nox","emacs-wayland","emby-theater","eruption","fcitx","filezilla","firedragon","firefox","firefox-developer-edition","firefox-esr","firefox-nightly","firefox-wayland-hg","flatpak","fluidsynth","fnott","fprintd","fyi","gambas3-gb-dbus","gamemode","gnome-mplayer","gnome-online-accounts","gogglesmm","gpu-screen-recorder-git","hplip","imhex","jack2","jack2-dbus","kdeconnect","keymapper-git","kitty","kitty-git","kitty-shell-integration","lib32-dbus","libcupsfilters","libdecor","libglib-testing","libgnome-keyring","libnih","libnvme","libpcap","libpulse","libreoffice-fresh","libreoffice-still","librewolf","libteam","libvirt-dbus","light-locker","malcontent","mangohud","mangohud-git","mmsd-git","modrinth-app-git","mozillavpn","mozillavpn-git","mpd","mullvad-browser-bin","mullvad-vpn-cli","ncspot","neard","obs-studio-tytan652","ofono","osquery","pacrunner","pantheon-default-settings","pantheon-settings-daemon","perl-net-dbus","picom","picom-git","pipewire","pipewire-audio","pipewire-jack-client","pipewire-media-session","pipewire-pulse","pop-bin","pop-launcher","pop-launcher-git","pycharm-community-eap","python-dasbus","python-dbus","python-dbus-fast","python-dbus-next","qt6-base","qt6-webengine","quota-tools","reboot-arch-btw","rescrobbled-git","retroarch","rtkit","runst","signal-desktop","signal-desktop-beta","slurm-llnl","snapper","songrec","sonyheadphonesclient-bin","spice-vdagent","spotify-player","spotifyd","steam","steam-native-runtime","stratisd","strawberry-full-git","strawberry-git","subversion","swaylock-fprintd-git","switchboard-plug-power","system76-firmware","system76-power","systemd","telepathy-glib","telepathy-mission-control","termius","termscp","termusic","thunderbird","thunderbird-beta","tiny","toastify","tradingview","udisks2","umu-launcher","ungoogled-chromium","vita3k-avx-git","vita3k-git","vlc","vlc-luajit","wesnoth","weston","wezterm-git","widelands","wingpanel-indicator-notifications","wired","wldash","wluma","wpa_supplicant","x2goserver","xdg-dbus-proxy","xorg-server","xorg-server-git","zam-plugins-clap","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zbar","zoom"],"optional_for":["alsa-plugins","claws-mail","deadbeef","deadbeef-git","fastfetch","picom","picom-git","utox"],"conflicts_with":["libdbus"],"replaces":["libdbus"],"download_size":"304.86 KiB","installed_size":"910.57 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"c08fa536e28863e35a9591196876faf7","sha_256_sum":"28b519535496a8c8b7885fb2d4c089ca98e34250dfc468aad2267c639026f219","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":312176,"installed_size_bytes":932423,"build_date_epoch":1704525213},{"repository":"core","name":"dbus-broker","version":"36-4","description":"Linux D-Bus Message Broker","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":[],"depends_on":["audit","libcap-ng","expat","systemd-libs","libaudit.so=1-64","libcap-ng.so=0-64","libexpat.so=1-64","libsystemd.so=0-64"],"required_by":["dbus-broker-units"],"optional_for":["at-spi2-core"],"conflicts_with":[],"replaces":[],"download_size":"144.96 KiB","installed_size":"353.90 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"557a742031b10e6d8b76ce2bb98298dbb001ac76b68ee003417f6fceb9ae65bd","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":148439,"installed_size_bytes":362393,"build_date_epoch":1721729390},{"repository":"core","name":"dbus-broker-units","version":"36-4","description":"Linux D-Bus Message Broker - Service units","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["Apache-2.0"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus","dbus-broker"],"required_by":["dbus-units","systemd"],"optional_for":[],"conflicts_with":["dbus-daemon-units"],"replaces":[],"download_size":"2.38 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"bb97bd8f943e581a6c02be0aea368c2faa035f709406bffed77e807e96882e2f","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":2437,"build_date_epoch":1721729390},{"repository":"core","name":"dbus-daemon-units","version":"1.14.10-2","description":"Freedesktop.org message bus system - Service units","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":["dbus-units"],"depends_on":["dbus"],"required_by":["systemd"],"optional_for":[],"conflicts_with":["dbus-broker-units"],"replaces":[],"download_size":"2.87 KiB","installed_size":"0.80 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"79259a029b856b6958749db1a3d0f192","sha_256_sum":"61e184d5fae5ec13073525c6f17c2a630b6892dc8847585d2e454e590dbe5919","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":2938,"installed_size_bytes":819,"build_date_epoch":1704525213},{"repository":"core","name":"dbus-docs","version":"1.14.10-2","description":"Freedesktop.org message bus system - Documentation","architecture":"x86_64","url":"https://wiki.freedesktop.org/www/Software/dbus/","licenses":["AFL-2.1 OR GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":[],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"1329.87 KiB","installed_size":"21471.26 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Fri 05 Jan 2024 11:13:33 PM +08","md5_sum":"1e71d48059b0d86d21a3af48ce4e8191","sha_256_sum":"faed9464ab5a4bfb63ea9a585025a7e0b9fc7d41433a7a75c96ae3d6cd4d3ae1","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":1361786,"installed_size_bytes":21986570,"build_date_epoch":1704525213},{"repository":"core","name":"dbus-units","version":"36-4","description":"D-Bus service units (default provider)","architecture":"x86_64","url":"https://github.com/bus1/dbus-broker/wiki","licenses":["CC0-1.0"],"groups":[],"provides":[],"depends_on":["dbus-broker-units"],"required_by":["systemd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"2.14 KiB","installed_size":"0.00 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Tue 23 Jul 2024 03:09:50 AM +08","md5_sum":null,"sha_256_sum":"eb7a93b615db7183fde62723f8ccb94094ceaab53782cbd63c159ae30ac5ce8a","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":2191,"build_date_epoch":1721729390},{"repository":"core","name":"debugedit","version":"5.0-6","description":"Tool to mangle source locations in .debug files","architecture":"x86_64","url":"https://sourceware.org/debugedit/","licenses":["GPL-3.0-or-later","GPL-2.0-or-later","LGPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","libelf"],"required_by":["base-devel","flatpak-builder","zotero-bin"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"44.01 KiB","installed_size":"105.24 KiB","packager":"Morten Linderud ","build_date":"Sat 04 May 2024 12:15:41 AM +08","md5_sum":null,"sha_256_sum":"dfd548598504d5e1f12296dc49bbbc43976702fdf2700cdd93404e3b4a1992c4","signatures":"9C02FF419FECBE16","extended_data":null,"download_size_bytes":45066,"installed_size_bytes":107765,"build_date_epoch":1714806941},{"repository":"core","name":"debuginfod","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (debuginfod)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","libmicrohttpd","libmicrohttpd.so=12-64","sqlite","libsqlite3.so=0-64"],"optional_deps":[{"name":"elfutils=0.191","description":"for translations"}],"required_by":["pwndbg","valgrind"],"optional_for":["binutils","delve"],"conflicts_with":[],"replaces":[],"download_size":"135.62 KiB","installed_size":"339.33 KiB","packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"337ddacd32f8dcc2f8dcd69232d4c9091ce5617f334d483e5216496dca6e1e4b","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":138874,"installed_size_bytes":347473,"build_date_epoch":1721724196},{"repository":"core","name":"device-mapper","version":"2.03.26-1","description":"Device mapper userspace library and tools","architecture":"x86_64","url":"http://sourceware.org/dm/","licenses":["GPL2","LGPL2.1"],"groups":[],"provides":["libdevmapper.so=1.02-64","libdevmapper-event.so=1.02-64"],"depends_on":["glibc","systemd-libs","libudev.so=1-64"],"required_by":["cri-o","cryptsetup","dmraid","docker","grub","grub-improved-luks2-git","grub-silent","libblockdev-dm","libblockdev-lvm","libblockdev-mpath","libldm","lvm2","mkinitcpio-archiso","multipath-tools","nfs-utils","osquery","parted","podman","skopeo","tcplay","veracrypt","xfsprogs"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"277.59 KiB","installed_size":"756.56 KiB","packager":"Christian Hesse ","build_date":"Sun 25 Aug 2024 03:20:53 AM +08","md5_sum":null,"sha_256_sum":"6ed7fd89d8824cb83f95c7ec55c00485865e836ed30a5c55cc6425c5234b5585","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":284252,"installed_size_bytes":774717,"build_date_epoch":1724581253},{"repository":"core","name":"dialog","version":"1:1.3_20240619-2","description":"A tool to display dialog boxes from shell scripts","architecture":"x86_64","url":"https://invisible-island.net/dialog/","licenses":["LGPL2.1"],"groups":[],"provides":["libdialog.so=15-64"],"depends_on":["sh","ncurses"],"required_by":["python-pythondialog"],"optional_for":["arch-wiki-lite","etc-update","gammu","netctl","texlive-binextra"],"conflicts_with":[],"replaces":[],"download_size":"199.41 KiB","installed_size":"463.88 KiB","packager":"Evangelos Foutras ","build_date":"Mon 01 Jul 2024 02:03:02 AM +08","md5_sum":null,"sha_256_sum":"fc0e81648bd6c38e1ff32db8b5c21ad33bfc8a345d30b0a9be4dcef768c8f6dd","signatures":"51E8B148A9999C34","extended_data":null,"download_size_bytes":204195,"installed_size_bytes":475013,"build_date_epoch":1719824582},{"repository":"core","name":"diffutils","version":"3.10-1","description":"Utility programs used for creating patch files","architecture":"x86_64","url":"https://www.gnu.org/software/diffutils","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","bash"],"required_by":["aconfmgr-git","arch-update","archlinux-repro","autoconf","btrfs-assistant","btrfs-assistant-git","colordiff","dehydrated","devtools","diffoscope","etckeeper","mediawiki","mkinitcpio","pacdiff-pacman-hook-git","pkgdiff","posix","quilt","rcs","steam","umu-launcher","usbctl"],"optional_for":["gzip","khard","pace","pacman-contrib","qmk","terraform"],"conflicts_with":[],"replaces":[],"download_size":"344.62 KiB","installed_size":"1518.90 KiB","packager":"Sébastien Luttringer ","build_date":"Wed 24 May 2023 03:47:08 AM +08","md5_sum":"bd4ad1c815ab296ddeadef8ec6e859a1","sha_256_sum":"88e4705cd3d078c250b6ce94ccdabc48da1a093aa64c0fb0cb832c6ce4797e2d","signatures":"E5BB298470AD4E41","extended_data":null,"download_size_bytes":352890,"installed_size_bytes":1555353,"build_date_epoch":1684925228},{"repository":"core","name":"ding-libs","version":"0.6.2-2","description":"\"DING is not GNU\" helper libraries for SSSD and FreeIPA","architecture":"x86_64","url":"https://github.com/SSSD/ding-libs","licenses":["GPL-3.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["gssproxy","sscg","sssd"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"124.80 KiB","installed_size":"656.41 KiB","packager":"Andreas Radke ","build_date":"Sun 17 Mar 2024 04:54:54 PM +08","md5_sum":"4e62db1a524ead54b52b59c12c12e0f9","sha_256_sum":"e72c72725452ec0287383e847e039777eed504ef1707f09101d795b429c50846","signatures":"94657AB20F2A092B","extended_data":null,"download_size_bytes":127795,"installed_size_bytes":672163,"build_date_epoch":1710719694},{"repository":"core","name":"dmraid","version":"1.0.0.rc16.3-15","description":"Device mapper RAID interface","architecture":"x86_64","url":"https://people.redhat.com/~heinzm/sw/dmraid/","licenses":["GPL-2.0-only"],"groups":[],"provides":[],"depends_on":["device-mapper>=2.0.54"],"optional_for":["dracut"],"conflicts_with":["mkinitcpio<0.7"],"replaces":[],"download_size":"121.92 KiB","installed_size":"314.03 KiB","packager":"Tobias Powalowski ","build_date":"Mon 01 Jul 2024 06:51:09 PM +08","md5_sum":null,"sha_256_sum":"e9a661652d8e4076d2164b77c88f94ebd93dcf16dd66714513621b40e4de86b9","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":124846,"installed_size_bytes":321566,"build_date_epoch":1719885069},{"repository":"core","name":"dnssec-anchors","version":"20190629-4","description":"DNSSEC trust anchors for the root zone","architecture":"any","url":"https://data.iana.org/root-anchors/","licenses":["custom:none"],"groups":[],"provides":[],"depends_on":[],"required_by":["bind","knot-resolver","ldns","unbound"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"3.07 KiB","installed_size":"0.79 KiB","packager":"Jelle van der Waa ","build_date":"Thu 04 Jul 2024 04:15:16 AM +08","md5_sum":null,"sha_256_sum":"648ab7c4ac43421e6f8026128f84fdefcc5ebc0d171d6c723441e4d12c69048e","signatures":"C06086337C50773E","extended_data":null,"download_size_bytes":3143,"installed_size_bytes":808,"build_date_epoch":1720091716},{"repository":"core","name":"dosfstools","version":"4.2-5","description":"DOS filesystem utilities","architecture":"x86_64","url":"https://github.com/dosfstools/dosfstools","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc"],"required_by":["archinstall","archiso","archiso-git","bootiso","clonezilla","distrobuilder","libguestfs","mintstick","penguins-eggs","refind","ventoy-bin","woeusb","woeusb-ng"],"optional_for":["gparted","grub","grub-improved-luks2-git","grub-silent","kpmcore","libblockdev-fs","mkosi-git","rauc","rpi-imager","sedutil","syslinux","udisks2"],"conflicts_with":[],"replaces":[],"download_size":"135.52 KiB","installed_size":"409.22 KiB","packager":"Jelle van der Waa ","build_date":"Sun 25 Aug 2024 02:52:04 AM +08","md5_sum":null,"sha_256_sum":"03a7d8bd939a80418d9744afad00c22b91c4b411bdf9662744647c383a0ec503","signatures":"C06086337C50773E","extended_data":null,"download_size_bytes":138772,"installed_size_bytes":419041,"build_date_epoch":1724579524},{"repository":"core","name":"e2fsprogs","version":"1.47.1-4","description":"Ext2/3/4 filesystem utilities","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":["libcom_err.so=2-64","libe2p.so=2-64","libext2fs.so=2-64","libss.so=2-64"],"depends_on":["sh","util-linux-libs"],"optional_deps":[{"name":"lvm2","description":"for e2scrub"},{"name":"util-linux","description":"for e2scrub"},{"name":"smtp-forwarder","description":"for e2scrub_fail script"}],"required_by":["apptainer","archinstall","archiso","archiso-git","bind","bootiso","deepin-clone","distrobuilder","ext4magic","extundelete","freerdp","fsarchiver","fuse-ext2-git","fuse2fs","krb5","lib32-e2fsprogs","libblockdev-fs","mc","mintstick","nfs-utils","osbuild","quota-tools","schroot","supermin","termius","tomb-git"],"optional_for":["btrfs-progs","diffoscope","dracut","kpmcore","mkosi-git","pjproject","rauc","udisks2"],"conflicts_with":[],"replaces":[],"download_size":"1264.47 KiB","installed_size":"5322.71 KiB","packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"f72a32b7c97ab2dafff65d466d1b91243bf74b55fd5e975584ab4d6299ea13b9","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":1294817,"installed_size_bytes":5450455,"build_date_epoch":1716608691},{"repository":"core","name":"efibootmgr","version":"18-3","description":"Linux user-space application to modify the EFI Boot Manager","architecture":"x86_64","url":"https://github.com/rhboot/efibootmgr","licenses":["GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","popt","efivar","libefiboot.so=1-64","libefivar.so=1-64"],"required_by":["grub-silent","refind","system76-firmware"],"optional_for":["grub","grub-improved-luks2-git","hw-probe","memtest86-efi","rauc","syslinux"],"conflicts_with":[],"replaces":[],"download_size":"30.09 KiB","installed_size":"83.71 KiB","packager":"David Runge ","build_date":"Wed 13 Mar 2024 05:47:21 PM +08","md5_sum":"b28be257dd69d2c324267ccad6b1bab4","sha_256_sum":"6c8024c4b0abbdc3ff87a582ca1730448ef462015d3d0e97249d988f59c66c65","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":30812,"installed_size_bytes":85719,"build_date_epoch":1710377241},{"repository":"core","name":"efivar","version":"39-1","description":"Tools and libraries to work with EFI variables","architecture":"x86_64","url":"https://github.com/rhboot/efivar","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libefiboot.so=1-64","libefisec.so=1-64","libefivar.so=1-64"],"depends_on":["glibc"],"required_by":["dbxtool","efibooteditor","efibooteditor-qt5","efibootmgr","mokutil","pesign"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"144.70 KiB","installed_size":"541.61 KiB","packager":"David Runge ","build_date":"Thu 01 Feb 2024 05:57:25 PM +08","md5_sum":"06ab87bfdac70ba57b6626951a6f9000","sha_256_sum":"16422088da42f1ac562851d06ce86ad659f0775c86d9b1f54fa5a7067f9d636a","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":148172,"installed_size_bytes":554608,"build_date_epoch":1706839045},{"repository":"core","name":"elfutils","version":"0.191-4","description":"Handle ELF object files and DWARF debugging information (utilities)","architecture":"x86_64","url":"https://sourceware.org/elfutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc","libarchive","libarchive.so=13-64","libelf=0.191","sh"],"required_by":["avrdude","babeltrace","flatpak-builder","hotspot","kcov","libabigail","libdwarf","ltrace","namcap","perf","pwninit","rpm-tools","systemtap-git"],"optional_for":["debuginfod","dracut"],"conflicts_with":[],"replaces":[],"download_size":"583.84 KiB","installed_size":"3576.72 KiB","packager":"Frederik Schwan ","build_date":"Tue 23 Jul 2024 01:43:16 AM +08","md5_sum":null,"sha_256_sum":"ecd122522f2abfa532173b36897db0986e586a33198e2b0862e5205b3d382c22","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":597852,"installed_size_bytes":3662561,"build_date_epoch":1721724196},{"repository":"core","name":"expat","version":"2.6.3-2","description":"An XML parser library","architecture":"x86_64","url":"https://libexpat.github.io/","licenses":["MIT"],"groups":[],"provides":["libexpat.so=1-64"],"depends_on":["glibc"],"required_by":["aarch64-linux-gnu-gdb","android-emulator","apr-util","arm-none-eabi-gdb","audacity","augustus","avahi","avr-gdb","blender","blockbench-bin","boca","boinctui","bolt-launcher","brltty","calf","cef-minimal-obs-bin","clasp-cl-git","cmake","dbus","dbus-broker","dbus-glib","deskreen","digikam","dovecot","ejabberd","elinks","emby-ffmpeg","emby-theater","exempi","exiv2","fontconfig","fpc","gdal","gdb","git","insight-toolkit","jack2-dbus","lapce","lapce-git","lftp","lib32-expat","libcomps","libdatovka","libdom","libmesode","libnpupnp","libofa","libosmium","libreoffice-fresh","libreoffice-still","libsolv","libstrophe","libupnpp","libva-mesa-driver","libwmf","lm32-elf-gdb","lua-expat","lua51-expat","lua52-expat","lua53-expat","mame","mesa","mesa-tkg-git","mesa-vdpau","miktex","mpd","mysql-workbench","neon","neovide","nominatim","obs-studio-tytan652","oculante","opencl-clover-mesa","opencl-rusticl-mesa","or1k-elf-gdb","osm2pgsql","paraview","perl-xml-parser","polkit","polkit-consolekit","pop-bin","ppc64le-elf-gdb","profanity","profanity-gtk","pypy","pypy3","python","python-astropy","python-osmium","python39","qgis","qt6-webengine","rfdump","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sdbus-cpp","sdbus-cpp-doc","sh2-elf-gdb","signal-desktop","signal-desktop-beta","skia-sharp","snapcast","subversion","termius","tradingview","vmware-horizon-client","vulkan-intel","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","wayland","wayland-chromium","wayland-git","wxwidgets-common","zeroc-ice"],"optional_for":["dbus-c++","unbound"],"conflicts_with":[],"replaces":[],"download_size":"113.25 KiB","installed_size":"426.08 KiB","packager":"David Runge ","build_date":"Thu 05 Sep 2024 01:19:42 AM +08","md5_sum":null,"sha_256_sum":"6487b7be759572043cf59b7999883be027025c74f003fbca1b5203f1236b181f","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":115968,"installed_size_bytes":436305,"build_date_epoch":1725524382},{"repository":"core","name":"fakeroot","version":"1.36-1","description":"Tool for simulating superuser privileges","architecture":"x86_64","url":"https://tracker.debian.org/pkg/fakeroot","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["glibc","filesystem","sed","util-linux","sh"],"required_by":["anydesk-bin","apptainer","base-devel","debtap","devtools","gnome-shell-extension-arch-update","lib32-fakeroot","reprotest"],"optional_for":["bauh","i3status-rust","i3status-rust-git","pacman-contrib","pacseek"],"conflicts_with":[],"replaces":[],"download_size":"76.42 KiB","installed_size":"141.27 KiB","packager":"Christian Hesse ","build_date":"Fri 16 Aug 2024 01:17:43 AM +08","md5_sum":null,"sha_256_sum":"7bdd5f7580b20ab1574346c673a1d1a1c25aa9a902ef3b9e77944345a934e558","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":78254,"installed_size_bytes":144660,"build_date_epoch":1723796263},{"repository":"core","name":"file","version":"5.45-1","description":"File type identification utility","architecture":"x86_64","url":"https://www.darwinsys.com/file/","licenses":["custom"],"groups":[],"provides":["libmagic.so=1-64"],"depends_on":["glibc","zlib","xz","bzip2","libseccomp","libseccomp.so=2-64","zstd","libzstd.so=1-64"],"required_by":["android-file-transfer","atool","base","base-devel","bootiso","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","carla","carla-git","checksec","clifm-git","ext4magic","feh","file-roller","gerbera","haskell-magic","hyprlock-git","hyprpaper","hyprpaper-git","imhex","keepalived","libmodulemd","lyx","moc-pulse","mpd-notification","nano","osquery","pleroma-bin","posix","python-magic","radare2","radare2-git","ristretto","rizin","rpm-tools","rspamd","sox","subversion","util-linux","vifm","viking","vis","xdg-utils","yara","zathura","zim-tools"],"optional_for":["inxi","libextractor","ranger-git"],"conflicts_with":[],"replaces":[],"download_size":"395.80 KiB","installed_size":"8534.61 KiB","packager":"Sébastien Luttringer ","build_date":"Fri 28 Jul 2023 05:23:09 AM +08","md5_sum":"5e1deb413f19678a56204e3d5e4b3f8a","sha_256_sum":"3ad37e246e893cdf59ae3af862d083c52087c47d3e6210996075ce77d41c5a1a","signatures":"E5BB298470AD4E41","extended_data":null,"download_size_bytes":405299,"installed_size_bytes":8739440,"build_date_epoch":1690546989},{"repository":"core","name":"filesystem","version":"2024.04.07-1","description":"Base Arch Linux files","architecture":"any","url":"https://archlinux.org","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["iana-etc"],"required_by":["base","dracut","fakeroot","glibc","glibc-eac","glibc-eac-roco","mkinitcpio","nethack","plymouth"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"14.02 KiB","installed_size":"22.33 KiB","packager":"David Runge ","build_date":"Mon 08 Apr 2024 02:02:30 AM +08","md5_sum":null,"sha_256_sum":"07acb29650aeaee633edd337af5bfa9c3b3309c9f198e5bad145bd4bbdacc40a","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":14356,"installed_size_bytes":22865,"build_date_epoch":1712566950},{"repository":"core","name":"findutils","version":"4.10.0-2","description":"GNU utilities to locate files","architecture":"x86_64","url":"https://www.gnu.org/software/findutils/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","sh"],"required_by":["anything-sync-daemon","base","base-devel","bash-complete-alias","bootiso","ca-certificates-utils","checksec","devtools","dracut","gradle","gradle-doc","gradle-src","gradle7","gradle7-doc","gradle7-src","java-runtime-common","metals","mkinitcpio","penguins-eggs","posix","profile-cleaner","profile-sync-daemon","quilt","rosenpass","themix-icons-archdroid-git","themix-icons-gnome-colors-git","themix-icons-numix-git","themix-icons-papirus-git","themix-icons-suru-plus-aspromauros-git","themix-icons-suru-plus-git","themix-theme-materia-git","themix-theme-oomox-git","wikiman"],"optional_for":["pacman-contrib"],"conflicts_with":[],"replaces":[],"download_size":"473.38 KiB","installed_size":"1747.66 KiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 03:52:07 PM +08","md5_sum":null,"sha_256_sum":"ba960db631b9e379076d24c336a190f7a9cdbafa2c928544fdb8a819d253d37d","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":484741,"installed_size_bytes":1789603,"build_date_epoch":1724885527},{"repository":"core","name":"flex","version":"2.6.4-5","description":"A tool for generating text-scanning programs","architecture":"x86_64","url":"https://github.com/westes/flex","licenses":["custom"],"groups":[],"provides":[],"depends_on":["glibc","m4","sh"],"required_by":["at","base-devel","ccid","lib32-flex","ming","posix-c-development","splint"],"optional_for":["bauh","linux-atm"],"conflicts_with":[],"replaces":[],"download_size":"307.55 KiB","installed_size":"955.65 KiB","packager":"David Runge ","build_date":"Sat 18 Mar 2023 07:32:09 AM +08","md5_sum":"e9c3f6267b26aefea45af135185a98e2","sha_256_sum":"9fdee0b311ce967927006f523e537670d1be94deee52e0115902cf6087c59e25","signatures":"139B09DA5BF0D338","extended_data":null,"download_size_bytes":314931,"installed_size_bytes":978585,"build_date_epoch":1679149929},{"repository":"core","name":"fuse2fs","version":"1.47.1-4","description":"Ext2/3/4 filesystem driver for FUSE","architecture":"x86_64","url":"http://e2fsprogs.sourceforge.net","licenses":["GPL","LGPL","MIT"],"groups":[],"provides":[],"depends_on":["fuse3","e2fsprogs"],"required_by":["apptainer"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"29.32 KiB","installed_size":"71.58 KiB","packager":"Christian Hesse ","build_date":"Fri 24 May 2024 08:44:51 PM +08","md5_sum":null,"sha_256_sum":"52c213add64f11e3e7adc87985dbe67ebef9b8b7379fe24ee3123b4188f990c0","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":30023,"installed_size_bytes":73297,"build_date_epoch":1716608691},{"repository":"core","name":"gawk","version":"5.3.0-2","description":"GNU version of awk","architecture":"x86_64","url":"https://www.gnu.org/software/gawk/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["awk"],"depends_on":["sh","glibc","mpfr"],"required_by":["aconfmgr-git","aerc","arch-install-scripts","autoconf","autoconf-git","base","base-devel","bashtop","bootiso","cfs-zen-tweaks","chaotic-neofetch-git","check","checksec","devtools","dkms","doas-sudo-shim","dracut","esh","fricas","garuda-update","green-recorder","green-recorder-git","i3lock-fancy-git","lynis","mk-configure","mkinitcpio","pacman","pacman-git","pkgdiff","posix","prettyping","quilt","rofi-pass","rosenpass","sofia-sip","syslog-ng","tdrop","termv-git","translate-shell","tuned","txt2man","ugit","wikiman","xschem","yadm"],"optional_for":["blesh-git","geeqie","geeqie-git","khal","mc","texmacs","vim-runtime"],"conflicts_with":[],"replaces":[],"download_size":"1323.54 KiB","installed_size":"3401.80 KiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:51:08 PM +08","md5_sum":null,"sha_256_sum":"474af00363e5e3ac13e06d2b79e565766823b30edbef81b5abf2a09f1d5dd010","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":1355304,"installed_size_bytes":3483443,"build_date_epoch":1724889068},{"repository":"core","name":"gc","version":"8.2.6-1","description":"A garbage collector for C and C++","architecture":"x86_64","url":"https://www.hboehm.info/gc/","licenses":["LicenseRef-GC","MIT"],"groups":[],"provides":[],"depends_on":["gcc-libs"],"required_by":["asymptote","bigloo","crystal","guile","guile2.2","inkscape","libhomfly","neko","nix","poke","shards","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"234.72 KiB","installed_size":"771.88 KiB","packager":"Frederik Schwan ","build_date":"Sun 04 Feb 2024 06:30:33 PM +08","md5_sum":"903a28bfd90dcf6e2b41b76e989934af","sha_256_sum":"6210a1e7e00d3162f175f9ab318a3da928495210b1ea411dcb66bf5e1f382daf","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":240353,"installed_size_bytes":790405,"build_date_epoch":1707100233},{"repository":"core","name":"gcc","version":"14.2.1+r32+geccf707e5ce-1","description":"The GNU Compiler Collection - C and C++ frontends","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-multilib"],"depends_on":["gcc-libs=14.2.1+r32+geccf707e5ce-1","binutils>=2.28","libmpc","zstd","libisl.so=23-64"],"optional_deps":[{"name":"lib32-gcc-libs","description":"for generating code for 32-bit ABI"}],"required_by":["base-devel","clang","clang-git","clang14","clang17","dkms","dmd","gcc-ada","gcc-d","gcc-fortran","gcc-go","gcc-m2","gcc-objc","gcc-rust","gcovr","ghc","home-assistant","imd-git","intelbacklight-git","ispin","kde-development-environment-meta","ldc","lib32-clang","lib32-clang-git","libgccjit","libreoffice-fresh-sdk","libreoffice-still-sdk","lto-dump","nim","posix-c-development","rust","sh4d0wup","vala","varnish","virtualbox-host-dkms","vital-synth"],"optional_for":["bauh","choosenim","clion","codelite","codelite-unstable","dmd","node-gyp","qmk","spamassassin","xorg-xrdb"],"conflicts_with":[],"replaces":["gcc-multilib"],"download_size":"51.20 MiB","installed_size":"202.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"029e59b707bf7e35f98c7f0d46031f7e78f6e66251b7220980a1fd65081e7858","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":53687091,"installed_size_bytes":212105953,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-ada","version":"14.2.1+r32+geccf707e5ce-1","description":"Ada front-end for GCC (GNAT)","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-ada-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-ada-multilib"],"download_size":"29.60 MiB","installed_size":"150.71 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"83ca73da52a5deb60718edc2a9b2c61b3bc828d58d49c68214da9e24d8082001","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":31037849,"installed_size_bytes":158030888,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-d","version":"14.2.1+r32+geccf707e5ce-1","description":"D frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gdc"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":["orbiton"],"conflicts_with":[],"replaces":["gdc"],"download_size":"19.90 MiB","installed_size":"117.79 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0e9c6e1b7067f0080c784605e0e89c6b96d50d46aefb747f37251dbb996544e4","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":20866662,"installed_size_bytes":123511767,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-fortran","version":"14.2.1+r32+geccf707e5ce-1","description":"Fortran front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-fortran-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["wsjtx"],"optional_for":["hiprand","magma-cuda","magma-hip","openmpi","phoronix-test-suite","r","rocrand","root","root-cuda"],"conflicts_with":[],"replaces":["gcc-fortran-multilib"],"download_size":"13.54 MiB","installed_size":"44.26 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"20b27847342207fd0b652724dd8ed0c503cf0e66492d65671b1420e94c79c635","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":14197719,"installed_size_bytes":46409973,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-go","version":"14.2.1+r32+geccf707e5ce-1","description":"Go front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["go=1.17","gcc-go-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"required_by":["gopls"],"optional_for":["liteide","nixpacks"],"conflicts_with":["go"],"replaces":["gcc-go-multilib"],"download_size":"33.00 MiB","installed_size":"189.53 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"7fee2490ceff374d2d254b187ac824b5be32e0dec6a26442b0d94309f2f7f080","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":34603008,"installed_size_bytes":198736609,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-libs","version":"14.2.1+r32+geccf707e5ce-1","description":"Runtime libraries shipped by GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-libs-multilib","libgo.so=23-64","libgfortran.so=5-64","libgphobos.so=5-64","libubsan.so=1-64","libasan.so=8-64","libtsan.so=2-64","liblsan.so=0-64"],"depends_on":["glibc>=2.27"],"required_by":["3cpio","4ti2","7-zip","86box","86box-git","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acme-redirect","add-determinism","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","advancecomp","aeolus","afdko","afl++","age-plugin-yubikey","agg-2.6-git","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","airshipper","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alligator","alsa-tools","alsa-utils","amarok","amb-plugins","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-build-tools","angelfish","angle-grinder","antimicrox","antlr4-runtime","anydesk-bin","aom","apcupsd","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-repro-status","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-ide","arianna","ark","arrpc","arti","artikulate","artyfx","asciinema-agg","aspell","asplib","assimp","astyle","asusctl","asymptote","at51","atac","atomicparsley","attica","atuin","audacity","audaspace","audex","audiocd-kio","audiofile","audiotube","augeas","aura","aura-git","avisynthplus","avogadrolibs","avogadrolibs-qt5","avr-gcc","aws-crt-cpp","aws-sdk-cpp","ayatana-indicator-datetime","b3sum","babashka-bin","bacon","baloo","baloo-widgets","bandwhich","base","bat","battop","bbpager","bcachefs-tools","bcc","bchoppr","bear","benchmark","bespokesynth","biblesync","bigsh0t","bingrep","binocle","biodiff","biome","bitcoin-daemon","bitcoin-qt","bitcoin-tx","blackbox","blas","blas64","blender","blendr","blinken","bliss","blockbench-bin","blop.lv2","bluedevil","bluez-qt","bob","boinctui","bolt-launcher","bomber","bore","boringtun","botan","bottom","bovo","box2d","boxxy","bpf-linker","bpftop","bpftrace","breeze","breeze5","breezy","brial","brickadia-launcher","brillo","broot","bsequencer","bshapr","bslizr","btop","bubblewrap","bubblewrap-suid","buddy","bugstalker","buho","build2","bupstash","bustle","c++utilities","c-xsc","calendarsupport","calf","caligula","calindori","calligra","cantor","capnproto","caps","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-about","cargo-asm","cargo-audit","cargo-auditable","cargo-binstall","cargo-bloat","cargo-bundle-licenses","cargo-c","cargo-cyclonedx","cargo-deb","cargo-deny","cargo-depgraph","cargo-expand","cargo-flamegraph","cargo-generate-rpm","cargo-hack","cargo-insta","cargo-license","cargo-llvm-cov","cargo-make","cargo-msrv","cargo-ndk","cargo-nextest","cargo-outdated","cargo-pgrx","cargo-public-api","cargo-release","cargo-run-bin","cargo-semver-checks","cargo-show-asm","cargo-shuttle","cargo-sort","cargo-supply-chain","cargo-sweep","cargo-tarpaulin","cargo-tauri","cargo-update","cargo-wizard","cargo-zigbuild","cargo2junit","carla","carla-git","casync","cauchy","cbindgen","ccache","ccls","cdrdao","cef-minimal-obs-bin","cemu-git","cervisia","chatgpt-desktop-bin","check-broken-packages-pacman-hook-git","check-sieve","chess-tui","chiaki","choose","chromaprint","chromium-widevine","citra-git","clamav","clazy","clblast","clipcat","clipgrab","clpeak","clthreads","clucene","clxclient","cm256cc","cmake","cmt","cobalt","cocogitto","codon-bin","coeurl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-mp","coin-or-osi","colord-kde","comgr","committed","communicator","compiler-rt","compiler-rt-git","compiler-rt14","compiler-rt17","composable-kernel","composefs","conky","connman","conserve-git","coolercontrol","coordgen","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","coxeter","cpp-hocon","cppdap","cppunit","crab-hole","crawl-ncurses","crawl-tiles","cri-o","criu","cross","crowdsec","cryfs","crypto++","cryptominisat","csound","csound-plugins","csoundqt","csvlens","ctemplate","ctrtool","cubeb","cudd","cups","cxxbridge","czkawka-cli","czkawka-gui","d-spy","d2","daktilo","darkstat","darts","db","db5.3","dbus-c++","ddrescue","debuginfod","deepin-album","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-clone","deepin-compressor","deepin-device-formatter","deepin-dock","deepin-draw","deepin-editor","deepin-file-manager","deepin-font-manager","deepin-image-editor","deepin-image-viewer","deepin-kwin","deepin-launchpad","deepin-music","deepin-network-core","deepin-pdfium","deepin-picker","deepin-polkit-agent","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-reader","deepin-screen-recorder","deepin-screensaver","deepin-session","deepin-session-shell","deepin-session-ui","deepin-system-monitor","deepin-terminal","deepin-util-dfm","deepin-voice-note","deepin-widgets","deepin-wloutput-daemon","deltachat-rpc-server","deno","deskreen","dexed-clap","dexed-standalone","dexed-vst3","dfrs","diesel-cli","difftastic","digikam","din","discimagecreator-git","discord-chat-exporter-cli","discord-game-sdk","discover","diskus","disorderfs","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","djvulibre","dleyna","dmtcp","dnsdist","dog","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dosbox","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","draco","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dssi","dtk6core","dtk6declarative","dtk6gui","dtk6widget","dtkcore","dtkdeclarative","dtkgui","dtkwidget","dua-cli","ducker","dummyhttp","dump_syms","dust","dvd+rw-tools","dvgrab","dvisvgm","dwarffortress","dwayland","dysk","e-antic","easytag","ebou","ebumeter","ecasound","eclib","edid-decode-git","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elisa","ell","embree","emby-theater","emptyepsilon","emulsion","enblend-enfuse","endless-sky","eog","epiphany","eq10q","erdtree","espflash","espup","eva","evcxr_repl","eventviews","evince","evolution-data-server","evolution-ews","exempi","exiv2","eza","fabla","facter","falkon","fastd","faust","fcgi","fcitx5-qt","fclones","fd","felix-rs","ferium","ferium-gui","fflas-ffpack","ffmpegthumbs","fftw","fiery","fil-plugins","file-roller","filelight","fillets-ng","findomain","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","flac","flatbuffers","flatpak","flatpak-builder","flatpak-kcm","flawz","flightcore","flip-link","flips","fltk","fluidsynth","flxmlrpc","fmt","fnm","fomp.lv2","fplll","fprintd","fractal","fragments","frameworkintegration","francis","freerdp","freewheeling","frei0r-plugins","ft2-clone","furnace","futuresql","fwupd","g2reverb","gambas3-gb-db-sqlite3","gambas3-gb-image-effect","gambas3-gb-xml","gamescope","gamescope-git","gammaray","gap-packages","gc","gcc","gcdmaster","gdb","gdcm","gdm","gdm-prime","gedit","geekbench","geeqie","gegl","genact","gengetopt","genxrdpattern","geoclue","geonkick-lv2","geonkick-standalone","geonkick-vst3","geos","geph4-client","gerbera","gettext","gfan","gflags","gfold","ghostwriter","giac","giada","gigedit","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","gir-to-d","git-bug","git-cinnabar","git-cliff","git-delta","git-evtag","git-grab","git-smash","git-warp-time","gitg","gitlab-exporter","gitoxide","gitu","gitui","givaro","gjs","glibmm-2.68","glslang","glu","glycin","gmic","gmp","gmp-ecm","gn","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-builder","gnome-calendar","gnome-calls","gnome-color-manager","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-initial-setup","gnome-maps","gnome-multi-writer","gnome-online-accounts","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-software","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnustep-base","gnutls","goattracker","goldendict-webengine-pr-git","google-glog","google-webdesigner","gpaste","gperf","gperftools","gpgme","gptfdisk","gqrx","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","grcov","greetd","greetd-agreety","greetd-regreet","greetd-tuigreet","grex","groff","grub-customizer","gsoap","gst-plugin-libcamera","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-good","gstreamer","gtest","gtk4","gtksourceviewmm","gtranslator","guestfs-tools","guichan","guile1.8","guitarix","gupnp-tools","gvfs","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gwenview","gxplugins.lv2","hacksaw","halp","handbrake","handbrake-cli","handbrake-nvenc-cli","hardened_malloc","haruna","haskell-tidal","haskell-tidal-link","havn","hawkeye","hck","heaptrack","heh","heimdall","heimdall-grimler-git","helix","helvum","hepmc","hex","hexpatch","hexyl","highway","highway-git","himalaya","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hm","hplip","hq","hsa-amd-aqlprofile-bin","hsa-rocr","ht-editor","htmlq","hugo","huniq-git","hunspell","hurl","hydrogen","hyperfine","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","iaito","icon-library","icu","icu60","icu69","id3lib","id3v2","iempluginsuite-standalone","iempluginsuite-vst3","igraph","igrep","iir1","imagemagick","imagescan","imath","imgui","impala","incidenceeditor","include-what-you-use","incron","index-fm","infamousplugins","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","intel-compute-runtime","intel-gmmlib","intel-graphics-compiler","intel-media-driver","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","iperf","iptstate","isoimagewriter","ispc","itinerary","itk-snap-bin","iverilog-git","iwd","j4-dmenu-desktop","jack2","jack2-dbus","jack_delay","jackett","jacktrip","jalv","japa","jbig2enc-git","jc303-clap","jc303-lv2","jc303-vst3","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jless","jnoisemeter","john","joshuto-git","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","js91","jsoncpp","jsonrpc-glib","juce","jujutsu","juk","just","jwt-cli","jwt-ui","k3b","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kakoune","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kbt","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","kernelshark","kexi","keymapper-git","keysmith","keystone","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmousetool","kmouth","kmplot","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","koko","kolf","kollision","kolourpaint","kommit","kompare","kondo","kondo-ui","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kubetui","kubie","kubrick","kunitconversion","kup","kuserfeedback","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","kyotocabinet","labplot","ladspa","lan-mouse","lantern-bin","lapack","lapack64","lapce","lapce-git","laszip","laszip2","latte-integrale","layer-shell-qt","lazyjj","lcalc","ldproxy","leatherman","leftwm","leftwm-git","leftwm-nonsystemd","leftwm-nonsystemd-git","leftwm-theme-git","legba","leocad","lftp","lib3mf","libabigail","libabw","libaccounts-qt","libajantv2","libakonadi","libappimage","libayatana-appindicator","libb2","libbacktrace-git","libblockdev-crypto","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-swap","libbraiding","libbs2b","libc++","libc++abi","libcaca","libcamera","libcamera-ipa","libcamera-tools","libcap","libcdio","libcdr","libchardet","libcmis","libconfig","libcoverart","libcupsfilters","libcutl","libdatachannel","libde265","libdex","libdovi","libe-book","libebml","libei","libelf","libelfin","libemf","libepubgen","libetebase","libetonyek","libfabric","libfbclient","libffado","libfilezilla","libfprint","libfpx","libfreehand","libftdi-compat","libgdm","libgdm-prime","libgexiv2","libgig","libgit2","libgme","libgooglepinyin","libgravatar","libguestfs","libgweather-4","libheif","libical","libilbc","libimagequant","libindi","libinih","libixion","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libkscreen","libksieve","libksysguard","libktorrent","libliquidsfz","liblsp-r3d-glx-lib","libmalcontent","libmanette","libmediainfo","libmemcached-awesome","libmfx","libmodplug","libmp4v2","libmspub","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmythes","libnautilus-extension","libnitrokey","libnl","libnm","libnm-iwd","libnpupnp","libnumbertext","libodfgen","libolm","libopenmpt","libopenshot","libopenshot-audio","liborcus","liborigin","libosinfo","libpagemaker","libpeas-2","libphobos","libphonenumber","libpipewire","libplacebo","libplasma","libplist","libplist-git","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libppd","libproxy","libpst","libptytty","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libquotient","libqxp","libraw","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreoffice-still-sdk","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-bsnes","libretro-bsnes-hd","libretro-dolphin","libretro-mesen","libretro-mesen-git","libretro-mesen-s","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-pcsx2","libretro-ppsspp","librevenge","librewolf","librime","librsvg","librustls","libsbsms","libseexpr2","libsemigroups","libshumate","libsidplayfp","libsigc++","libsigc++-3.0","libsoxr","libspectmorph","libspelling","libstaroffice","libstdc++5","libtiff","libtiff4","libultrahdr","libultrahdr-git","libunrar","libupnpp","libusbmuxd","libusbmuxd-git","libva-mesa-driver","libvdpau-va-gl","libvisio","libvoikko","libvolk","libvpl","libvpx","libwhereami","libwireplumber","libwpd","libwpe","libwpg","libwps","libxcomp","libxisf","libxml++-5.0","libxsd-frontend","libyuv","libzen","libzmf","lidia","lilypond","linbox","lincity-ng","linuxsampler","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","live-media","lld","lld17","lldb","lldb-mi","llvm-julia","llvm-julia-libs","llvm-libs","llvm-libs-git","llvm14-libs","llvm17-libs","lmms","log4cplus","log4cpp","lokalize","looking-glass-git","looking-glass-host-git","loupe","lsd","lshw","lskat","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lua-language-server","luajit","luau","lucky-commit","ludusavi","luppp","lurk","lxqt-config","lychee","lzip","lzlib","m4ri","mac","maeparser","mailcommon","mailimporter","malcontent","maliit-framework","mame","mame-tools","mangohud","mangohud-git","marble","marble-common","marble-maps","marble-qt","marisa","markdownpart","marknote","markuplinkchecker","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","mastodon-twitter-sync","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","maxcso","maxcso-git","mbox-importer","mbuffer","mcp-plugins","mcqd","md-tui","mda.lv2","mdbook","mdcat","mediaelch","meilisearch","menyoki","merkuro","mesa","mesa-vdpau","messagelib","milkytracker","milou","mimetreeparser","minecraft-launcher","minisat","miniserve","minitube","minuet","miopen-hip","mirro-rs","mixxx","mjpegtools","mkvtoolnix-cli","mlt","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","monolith","moon","mosquitto","mpd","mpdecimal","mpgtx","mpvqt","mqttui","mscp","msgraph","msolve","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","munt-daemon","muparser","muparserx","muse","musescore","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","mystiq","naiveproxy","nautilus","navidrome","nccl","ncmpc","ncmpcpp","ncspot","ncurses","ncurses5-compat-libs","neochat","neovide","neovide-git","netavark","netcdf-cxx","netcdf-fortran","netcdf-fortran-openmpi","nethogs","nethsm-cli","netpbm","netplan","netscanner","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","ngspice","nickel","nickel-language-server","ninja","niri","nix","nix-init","nixpacks","nload","nlopt","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-suppression-for-voice","nomacs","nomad","normaliz","notcurses","nspluginwrapper","nsync","ntk","ntl","nudelta","nurl","nushell","nuspell","nut","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-rtspserver","obs-studio-tytan652","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","ogmtools","oha","oil","okteta","okular","okularpart5","onednn","onefetch","onetbb","onnx","openal","openal-git","openapi-tui","openblas","openblas-lapack","openblas64","opencl-amd","opencl-clover-mesa","opencl-rusticl-mesa","opencv","opencv-cuda","openexr","openh264","openjade","openmpi","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openscad","opensips","opentimelineio","openvkl","openzwave","opnplug-lv2","opnplug-standalone","opnplug-vst","oscpack","osinfo-db-tools","ospray","osquery","ostree","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owncloud-client","oxc-language-server","oxipng","oxlint","oxygen","oxygen5","oxyromon","p7zip","p8-platform","packagekit-qt5","packagekit-qt6","pacman-bintrans","pacman-bintrans-tools","padthv1-lv2","padthv1-standalone","palapeli","pamixer","pangomm-2.48","papilo","paprefs","par2cmdline","pari","parley","parsec-bin","partitionmanager","pastel","patchelf","pavucontrol","pbzip2","pcloudcc-git","pcre","pd-sfizz","pepper-flash","performous","pesign","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-imagick","php-legacy-imagick","physx","picmi","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pipe-rename","pipewire","pipewire-audio","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-zeroconf","piping-server","pixi","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","plymouth-kcm","podman","podman-desktop","poedit","poketex","polari","polkit-kde-agent","polkit-qt5","polkit-qt6","polly","polly-git","polyclipping","polymake","polyphone","pop-bin","pop-launcher","poppler","poppler-glib","poppler-qt5","poppler-qt6","portaudio","portsmf","postgresql","power-profiles-daemon","powerdevil","powerdns-recursor","powershell-bin","powertop","poxml","ppl","ppsspp","presage","presenterm","primecount","primesieve","print-manager","prismlauncher","prison","prjxray-tools-git","procinfo-ng","procs","protobuf","protobuf-21","proton-ge-custom","protonmail-bridge","proxmox-backup-client","proxyboi","ps7_libpicoipp","pstoedit","ptex","ptyxis","pueue","pugixml","pulseaudio-qt","purpose","pwninit","pyflow","pymol","pyside6","pystring","pythia8","python-awscrt","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-cramjam","python-cvxpy","python-cylp","python-debugpy","python-fastnumbers","python-fpylll","python-iminuit","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-materialyoucolor-git","python-mitmproxy-rs","python-ml-dtypes","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-pendulum","python-pikepdf","python-pivy","python-pplpy","python-primecountpy","python-pyarrow","python-pybullet","python-pycapnp","python-pycrdt","python-pycuda","python-pydantic-core","python-pykcs11","python-pymupdf","python-pynormaliz","python-pyopencl","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-webengine","python-pysequoia","python-pythia8","python-qdldl","python-rapidfuzz","python-regress","python-rpds-py","python-rtmidi","python-scipy","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-ulid-transform","python-vigra","python-watchfiles","python-xapian","python-y-py","python-zita-audiotools","python-zita-jacktools","qalculate-gtk","qalculate-qt","qastools","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcad","qcoro-qt5","qcoro-qt6","qd","qemu-arch-extra-git","qemu-audio-dbus","qemu-audio-jack","qemu-audio-pipewire","qemu-block-curl","qemu-block-iscsi","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-display-qxl","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-opengl","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegencpp-cmake","qrtool","qrupdate","qsampler","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtkeychain-qt5","qtkeychain-qt6","qtractor","qucsator-git","quiche","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","radare2","radeon-profile-git","rage-encryption","ragel","rate-mirrors","rathole","rattler-build","rauc","rav1e","rbutil","rbw","rccl","rdfind","re2","re2c","reactphysics3d","reapack","reaper","rebels-in-the-sky","recastnavigation","regexxer","release-plz","remmina","repgrep","repro-env","reproc","retro-gtk","retroarch","rev-plugins","rhit","rhythmbox","rink","rio","ripgrep","riseup-vpn","rkcommon","rkward","rlog","roc-toolkit","rocalution","rocblas","rocfft","rockchip-mpp","rocm-dbgapi","rocm-gdb","rocm-llvm","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rog-control-center","ropr","rosegarden","rpg-cli","rpi-imager","rq","rqbit","rqbit-desktop","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rtaudio","rtmidi","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","rucola","ruff","runescape-launcher","rust","rust-analyzer","rust-bindgen","rust-kanban","rust-script","rustc-demangle","rustic","rustlings","rustow-git","rustscan","rustypaste","rustypaste-cli","rye","ryujinx","rz-cutter","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","samply","sane","satty","sc3-plugins","sccache","scip","sd","sdcc","sddm","sddm-git","sddm-kcm","selene","sentry-cli","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serie","serpl","serproid","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sg-323-clap","sg-323-vst3","sh4d0wup","shaderc","shadowsocks-rust","shapelib","shared-mime-info","sheldon","shiboken6","shotgun","shy","sidplay2-libs","sig","signal-desktop","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","simple-mtpfs","simpleitk","simutrans","simutrans-extended-git","singular","sirocco","skanlite","skanpage","skladnik","slack-electron","sleuthkit","slim","slowhttptest","slumber","smartdns","smartmontools","smb4k","smplayer","snappy","snapshot","soapyaudio","solid","songrec","sonic","sonic-visualiser","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sorcer","sound-gambit","soundtouch","sowing","sox","spatialindex","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","speex","speexdsp","spiped","spirv-cross","spirv-tools","splix","spotify-tui","spytrap-adb","sqlc","sqlx-cli","squashfs-tools","srs","srt","ssdeep","ssh-openpgp-auth","sshd-openpgp-auth","sshx","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","steam","steam-boilr-gui","stellarsolver","step","stk","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stylua","subversion","suil","suitesparse","suitesparse-graphblas","sundials","sunpinyin","supercollider","supergfxctl","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","sweeper","swiftshader-git","swig","switchboard-plug-user-accounts","sws","swww","symengine","sympol","syndication","syndicationd","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysprof","system76-firmware","system76-scheduler","systemc","systemctl-tui","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","tabiew","taglib","taglib1","tangler","taplo-cli","tbtools","tealdeer","teamspeak3-server","tecla","telly-skout","tere","termscp","tesseract","texlab","texlive-bin","texmaker","thin-provisioning-tools","threadweaver","thrift","thunderbird","tickrs","tiny","tinyobjloader","tinyxml2","tlsh","tokei","tokodon","tokodon-git","toml-bombadil","tomlplusplus","tone-bin","topcom","topgrade","tor","totem-pl-parser","tracexec","tracker3","tracker3-miners","tracktion-waveform","tradingview","tree-sitter-cli","trippy","tropy-bin","ttfautohint","ttyper","tui-journal","turbo","twitch-tui","typos","typst","typst-lsp","uchardet","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","umbrello","umu-launcher","unarchiver","uncrustify","unittestpp","unrar","updlockfiles","upower","usbguard","uutils-coreutils","uv","v4l-utils","vale","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vaultwarden","vbindiff","vco-plugins","vcpkg","vdpauinfo","vector","vector-blf","veracrypt","vid.stab","vigra","virtiofsd","virtualbox","virtualbox-kvm","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","viu","vivid","vkbasalt","vlc","vlc-luajit","vmaf","vmpk","vmware-horizon-client","voacapl","volta","vosk-api","vte3","vte4","vtk","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-validation-layers","vulkan-virtio","vvave","wabt","wacomtablet","wah-plugins","wasm-component-ld","wasmer","wasmtime","watchbind","watchexec","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webrtc-audio-processing","webrtc-audio-processing-1","websocat","wezterm","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","wiki-tui","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wireguard-vanity-address","wireplumber","wireshark-qt","wiresmith","wishbone-utils","wl-clip-persist","wl-clipboard-rs","wldash","wluma","woff2","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","worker-build","wp-desktop","wpewebkit","wpmeta","wstunnel","wvdial","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x265","x42-plugins-lv2","x42-plugins-standalone","xapian-core","xcolor","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdvdfs","xemu-git","xerces-c","xfsdump","xh","xmonk.lv2","xplc","xplr","xsd","xsettingsd","xsv","xwaylandvideobridge","yabridge","yabridgectl","yakuake","yaml-cpp","yazi","yazi-git","yoshimi-lv2","yoshimi-standalone","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenith","zenity","zeromq","zerotier-one","zfp","zimg","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zola","zopfli","zoxide","zstd","zxing-cpp","zydis","zynaddsubfx"],"optional_for":["gcin","spglib"],"conflicts_with":[],"replaces":["gcc-libs-multilib","libgphobos"],"download_size":"35.04 MiB","installed_size":"143.44 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"465482ee79fa656038ec60e1d8868c3fd69420e948468c4714031944befef0a5","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":36742103,"installed_size_bytes":150407741,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-m2","version":"14.2.1+r32+geccf707e5ce-1","description":"Modula-2 frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"13.59 MiB","installed_size":"49.01 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"d9bc49af683cc2e8f79a3464a6ecbc34bfe42a183b684cc3ab58342b33fab12a","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":14250147,"installed_size_bytes":51390709,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-objc","version":"14.2.1+r32+geccf707e5ce-1","description":"Objective-C front-end for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":["gcc-objc-multilib"],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":["gcc-objc-multilib"],"download_size":"25.62 MiB","installed_size":"85.28 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"0cdd5e43a3c9305b92ea26fb44b96ba17853a9ec5449d005dfa762420b62b9a2","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":26864517,"installed_size_bytes":89422561,"build_date_epoch":1722944981},{"repository":"core","name":"gcc-rust","version":"14.2.1+r32+geccf707e5ce-1","description":"Rust frontend for GCC","architecture":"x86_64","url":"https://gcc.gnu.org","licenses":["GPL-3.0-with-GCC-exception","GFDL-1.3-or-later"],"groups":[],"provides":[],"depends_on":["gcc=14.2.1+r32+geccf707e5ce-1","libisl.so=23-64"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"14.07 MiB","installed_size":"51.45 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:49:41 AM +08","md5_sum":null,"sha_256_sum":"9e06bf9329654391c2be8c724c61e23a228f7277951aff0bd9f5cb549d313e28","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":14753464,"installed_size_bytes":53949235,"build_date_epoch":1722944981},{"repository":"core","name":"gdbm","version":"1.24-1","description":"GNU database library","architecture":"x86_64","url":"https://www.gnu.org/software/gdbm/gdbm.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["libgdbm_compat.so=4-64","libgdbm.so=6-64"],"depends_on":["glibc","sh","readline","libreadline.so=8-64"],"required_by":["avahi","cyrus-sasl","exim","libsasl","man-db","modem-manager-gui","mutt","neomutt","openipmi","perl","php-legacy","pypy","pypy3","python","python39","ruby","ruby2.7","skktools","xkbsel","zsh"],"optional_for":["apr-util"],"conflicts_with":[],"replaces":[],"download_size":"247.12 KiB","installed_size":"719.59 KiB","packager":"David Runge ","build_date":"Thu 04 Jul 2024 10:47:39 PM +08","md5_sum":null,"sha_256_sum":"2712f2747f887ff19ad4151143e506e80254a0a0db0e8b968adb6634da7800ab","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":253050,"installed_size_bytes":736860,"build_date_epoch":1720158459},{"repository":"core","name":"gettext","version":"0.22.5-1","description":"GNU internationalization library","architecture":"x86_64","url":"https://www.gnu.org/software/gettext/","licenses":["GPL-2.0-only","LGPL-2.0-only","GFDL-1.2-only","GPL-2.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","acl","sh","libunistring","libxml2"],"optional_deps":[{"name":"git","description":"for autopoint infrastructure updates"}],"required_by":["atril","base","base-devel","bison","cataclysm-dda","criterion","deepin-gettext-tools","engrampa","eom","exiv2","fsv3","gdm-settings","gdm-settings-git","gnome-shell-extension-arc-menu-git","grub","grub-improved-luks2-git","grub-silent","gtranslator","kde-development-environment-meta","kdesdk-thumbnailers","lib32-gettext","libmatekbd","libmatemixer","libmateweather","marco","mate-backgrounds","mate-calc","mate-common","mate-control-center","mate-icon-theme","mate-media","mate-netbook","mate-notification-daemon","mate-panel","mate-polkit","mate-power-manager","mate-screensaver","mate-sensors-applet","mate-session-manager","mate-settings-daemon","mate-system-monitor","mate-terminal","mate-user-guide","mate-user-share","mate-utils","mozo","notion","oversteer","pacman","pacman-git","perl-libintl-perl","perl-locale-gettext","pluma","po4a","poke","poxml","proton-ge-custom","pspp","quilt","t-prot","wine","wine-ge-custom","wine-stable","wine-staging","wine-staging-wow64","wine-staging-wow64-git","wine-tkg-fsync-git","wine-tkg-staging-fsync-git","wine-wow64","wine-wow64-git"],"optional_for":["diffoscope","fcitx","libvirt","motion"],"conflicts_with":[],"replaces":[],"download_size":"2.14 MiB","installed_size":"7.68 MiB","packager":"Tobias Powalowski ","build_date":"Wed 08 May 2024 06:42:49 PM +08","md5_sum":null,"sha_256_sum":"fa858cd8217d2089dd734b0ac6a9d526b7766ed0220cfad5320f91692f4d5d16","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":2243952,"installed_size_bytes":8053063,"build_date_epoch":1715218969},{"repository":"core","name":"glib2","version":"2.80.5-1","description":"Low level core library","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":["libglib-2.0.so=0-64","libgio-2.0.so=0-64","libgirepository-2.0.so=0-64","libgmodule-2.0.so=0-64","libgobject-2.0.so=0-64","libgthread-2.0.so=0-64"],"depends_on":["bash","glibc","libffi","libsysprof-capture","pcre2","util-linux-libs","zlib","libffi.so=8-64","libmount.so=1-64"],"optional_deps":[{"name":"dconf","description":"GSettings storage backend"},{"name":"glib2-devel","description":"development tools"},{"name":"gvfs","description":"most gio functionality"}],"required_by":["64gram-desktop","86box","86box-git","abiword","accerciser","accountsservice","aisleriot","almanah","alsa-scarlett-gui","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","anydesk-bin","anyrun-git","app-icon-preview","appmenu-glib-translator-git","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","arch-update","ardour","ardour-git","arduino-ide","asunder","at-spi2-core","atomix","audacious","audacity","audio-recorder","autotrace","avahi","avldrums.lv2","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","babeltrace","babeltrace2","bemenu-wayland","bemenu-x11","birdfont","blanket","blockbench-bin","bluez","bluez-cups","bluez-deprecated-tools","bluez-obex","bluez-utils","bolt-launcher","brltty","budgie-session","bumblebee","bustle","cairo","calf","callaudiod","capnet-assist","castget","cdemu-client","cdemu-daemon","cef-minimal-obs-bin","cemu-git","chatgpt-desktop-bin","chromium-widevine","cinnamon-menus","clapper","colord-gtk","colord-gtk4","conky","conmon","connman","connman-git","connman-gtk","consolekit","contractor","contractor-git","cosmic-files","cosmic-files-git","cosmic-store","cosmic-store-git","cups-browsed","cups-pk-helper","curlftpfs","curtail","czkawka-gui","d-spy","datagrip","datagrip-jre","dataspell","dataspell-jre","dbmail","dbus-c++","dbus-glib","dconf","ddcutil","ddcutil-git","dee","deepin-api","deepin-appearance","deepin-camera","deepin-compressor","deepin-daemon","deepin-dock","deepin-file-manager","deepin-launchpad","deepin-session","deepin-session-ui","deepin-terminal","deepin-util-dfm","deepin-voice-note","deja-dup","deluge-gtk","deskreen","desktop-file-utils","devede","digikam","dino","dino-git","discover","displaycal","dleyna","droidcam","dsniff","dtk6gui","dtkgui","dunst","duperemove","dwarffortress","easytag","ebou","efl","emacs","emacs-nativecomp","emacs-wayland","emby-theater","enchant","eog","eolie","epiphany","etherape","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","fcitx5-gtk","ffmpeg","ffmpeg-full","ffmpeg-obs","file-roller","firefox","firefox-developer-edition","firefox-esr","firewalld","flat-remix-gnome","flatpak","flatpak-builder","flatpak-kcm","flips","fluidsynth","forkgram","fprintd","fractal","fragments","freeciv","freerdp","fs-uae","fsv3","fuseiso","fwupd","gala","gala-git","gambas3-gb-net-smtp","gamehub","gammastep","gammu","gcab","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdk-pixbuf2","gdm","gdm-prime","geary","gedit","gedit-plugins","geeqie","gegl","geoclue","geocode-glib-common","gfeeds","ghostscript","gigedit","giggle","gimp","gimp-plugin-gmic","girara","gitg","gjs","glib-networking","glib-perl","glib2-devel","glibd","glibmm","glibmm-2.68","glycin","glyr","gmime3","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-firmware","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-logs","gnome-mahjongg","gnome-maps","gnome-menus","gnome-mplayer","gnome-multi-writer","gnome-music","gnome-notes","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-extension-desktop-icons-ng","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnome-tweaks","gnome-usage","gnome-user-share","gnote","gnuplot","gobject-introspection","goffice","goland","goland-jre","gom","goobox","goocanvas","google-webdesigner","gpaste","gpgme","granite","granite7","graphene","greetd-regreet","gromit-mpx","grub-customizer","gsound","gspell","gssdp","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtk-sharp-3","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtk4-git","gtkglext","gtksourceview5","gtksourceviewmm","gtranslator","gts","gtuber","guestfs-tools","guitarix","gupnp","gupnp-av","gupnp-dlna","gupnp-igd","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gxml","harfbuzz","harfbuzz-cairo","harfbuzz-utils","haskell-gi","haskell-gi-base","haskell-gi-gio","haskell-gi-glib","haskell-gi-gmodule","haskell-gi-gobject","haskell-gio","haskell-glib","helvum","hexchat","hexter","hotdoc","hyprland","hyprland-git","hyprlock","ibus","ibus-typing-booster","icon-library","iio-sensor-proxy","imagemagick","imagemagick-full-git","imagescan","inkscape","irqbalance","irssi","itk-snap-bin","jack_mixer","jalv","jami-qt","jetbrains-toolbox","jgmenu","jnettop","json-glib","jsonrpc-glib","kamoso","kde-gtk-config","kexi","klavaro","klipperscreen","kondo-ui","kooha","kotatogram-desktop","kotatogram-desktop-git","lan-mouse","lantern-bin","lasem","lensfun","lensfun-git","lib2geom","lib32-glib2","libaccounts-glib","libaccounts-qt","libadwaita","libadwaita-demos","libappimage","libappindicator-gtk2","libappindicator-gtk3","libaxc","libayatana-appindicator","libayatana-indicator","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libcacard","libcalfbox-lss","libcheese","libcheese-git","libclapper","libclapper-gtk","libcloudproviders","libcolord","libdbusmenu-glib","libdex","libdnf","libdsme","libedataserverui4","libfm-extra","libfprint","libgbinder","libgda6","libgda6-mysql","libgda6-postgres","libgda6-sqlcipher","libgdiplus","libgdm","libgdm-plymouth-prime","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgee","libgepub","libgexiv2","libgirepository","libgit2-glib","libglib-testing","libglibutil","libgmobile","libgnome-keyring","libgnt","libgoa","libgrss","libgtop","libgudev","libguestfs","libgusb","libgweather-4","libgxps","libhandy","libibus","libical","libidl2","libinfinity","libinsane","libinstpatch","liblangtag","libldm","liblqr","libmalcontent","libmanette","libmatemixer","libmbim","libmediaart","libmediainfo","libmirage","libmm-glib","libmodulemd","libmpd","libmypaint","libnautilus-extension","libnice","libnids","libnm","libnm-iwd","libnotify","libomemo","libosinfo","libpackagekit-glib","libpamac-aur","libpamac-flatpak","libpanel","libpeas-2","libpinyin","libportal","libportal-gtk3","libportal-gtk4","libportal-qt5","libportal-qt6","libproxy","libqrtr-glib","libquvi","libratbag","librda","libreoffice-fresh","libreoffice-still","librepo","librest","librewolf","librsvg","libsearpc","libsecret","libshumate","libsigrokdecode","libslirp","libsmf","libsoup","libsoup3","libspectmorph","libspectrum","libspeechd","libspelling","libwacom","libwacom-surface","libwebsockets","libwireplumber","libwireplumber-git","libwnck","libxfce4util","libxfce4windowing","libxklavier","libxmlb","libxmlbird","light-locker","lightdm","lightdm-gtk-greeter-settings","lightdm-pantheon-greeter","lilypond","loginized","logiops","looking-glass-host-git","loudmouth","loupe","lsp-plugins-gst","lua-lgi","lua51-lgi","lua53-lgi","lutris","lutris-git","lxqt-archiver","malcontent","maliit-framework","mate-menus","mc","mcabber","mdbtools","mednaffe","megatools","meld","metacity","mintlocale","mintstick","mixxx","mmsd-git","modemmanager","moserial","mpv-mpris","msgraph","mtpfs","mtr-gtk","mullvad-browser-bin","munt-smf2wav","muse","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mysql-workbench","nautilus","nautilus-image-converter","nautilus-share","nbd","neard","netbird-ui","netplan","networkmanager","networkmanager-iwd","networkmanager-openvpn","newsflash","niri","nm-cloud-setup","nm-iwd-cloud-setup","notion","nwg-icon-picker","nwg-look","nwg-panel","obs-gstreamer","obs-studio-tytan652","ocrfeeder","ofono","opencv","opencv-cuda","opencv2","openipmi","opensc","openscad","orca","osinfo-db-tools","ostree","pacrunner","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-code","pantheon-files","pantheon-geoclue2-agent","pantheon-mail","pantheon-music","pantheon-notifications","pantheon-onboarding","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-screenshot","pantheon-settings-daemon","pantheon-shortcut-overlay","pantheon-tasks","pantheon-terminal","pantheon-videos","paperwork","paprefs","passim","pavucontrol","pdf2svg","pdfarranger","pebbles-git","perf","performous","phoc","phodav","phpstorm","phpstorm-jre","pinentry","pipewire","pipewire-audio","pipewire-pulse","pitivi","plank","plasma-nm","plasma-pa","playerctl","plymouth","poedit","polari","polkit","polkit-consolekit","polkit-qt5","polkit-qt6","pop-bin","pop-gtk-theme-git","poppler-glib","power-profiles-daemon","pqiv","pragha","preload","profanity","profanity-gtk","protonmail-bridge-core","ptyxis","pulseaudio-equalizer-ladspa","puzzles","py3status","pycharm-community-eap","pycharm-community-edition","python-bluepy","python-dasbus","python-dbus","python-dbus-fast","python-dbusmock","python-dleyna","python-gobject","python-manimpango","python-volume_key","pyzy","qalculate-gtk","qemu-arch-extra-git","qemu-audio-dbus","qemu-common","qemu-git","qemu-guest-agent","qemu-guest-agent-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-gtk","qemu-ui-sdl","qemu-ui-spice-app","qemu-user","qemu-vhost-user-gpu","qt6-base","qt6-multimedia-gstreamer","qt6-webengine","qtcreator","qtkeychain-qt5","qtkeychain-qt6","quickdocs","qxmpp-qt5","qxmpp-qt6","r","rauc","redshift","regexxer","remmina","retro-gtk","rhythmbox","rnote","rofi-emoji","rofi-wayland","rqbit-desktop","rspamd","runescape-launcher","rygel","sane","satty","sdcv","seadrive-daemon","seahorse-nautilus","secrets","sensors-applet","setbfree-lv2","setbfree-standalone","sfizz-lv2","sfizz-vst3","share-preview","shared-mime-info","signal-desktop","signal-desktop-beta","signon-ui","simple-scan","skktools","slirp4netns","snapshot","snes9x-gtk","sofia-sip","solaar","songrec","spectmorph-tools","spice","spice-gtk","spice-vdagent","spot-client","sshfs","startdde","steam-native-runtime","stlink","strawberry","strawberry-full-git","strawberry-git","sublime-music-git","sushi","sway-git","swaybg-git","swayimg","swaylock-git","swaync","swell-foop","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","switcheroo-control","swtpm","syslog-ng","sysprof","system-config-printer","tartube","tblock-gui","tecla","telegram-desktop","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","template-glib","text-engine","themix-theme-materia-git","themix-theme-oomox-git","thunderbird","tio","totem-pl-parser","touchegg","tpm2-abrmd","tracker3","tracker3-miners","tracktion-waveform","tradingview","transmageddon","transmission-remote-gtk","tropy-bin","tuba","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ukui-menus","upower","uresourced","usbguard","usbip","usbredir","vala","vala-panel-appmenu-jayatana-git","vala-panel-appmenu-registrar","vala-panel-appmenu-registrar-git","valabind","vbam-wx","vinagre","vital-synth","vlc","vlc-luajit","vmware-horizon-client","vmware-horizon-mmr","vmware-horizon-rtav","vmware-horizon-smartcard","vmware-horizon-tsdr","vmware-horizon-usb","volume_key","vte3","vte4","wavebox-beta","waybar","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","webstorm","webstorm-jre","webwatcher-git","weston","wezterm","wingpanel","wingpanel-indicator-a11y","wingpanel-indicator-bluetooth","wingpanel-indicator-datetime","wingpanel-indicator-keyboard","wingpanel-indicator-network","wingpanel-indicator-nightlight","wingpanel-indicator-notifications","wingpanel-indicator-power","wingpanel-indicator-session","wingpanel-indicator-sound","wired","wireplumber","wireshark-cli","wmctrl","wofi","wpebackend-fdo","wpewebkit","wv","wxwidgets-common","wxwidgets-gtk3","x42-plugins-lv2","x42-plugins-standalone","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xemu-git","xfce4-dev-tools","xfce4-docklike-plugin","xpipe","xscreensaver","xss-lock","zenity","zoom"],"optional_for":["clevis","fastfetch","glusterfs","intel-oneapi-basekit","libpulse","mlt","plasma-desktop","suil","visual-studio-code-bin","visual-studio-code-insiders-bin","xnviewmp"],"conflicts_with":[],"replaces":[],"download_size":"4.86 MiB","installed_size":"36.75 MiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"45b56f3a1bba361b5175f7b4ca5c986c8d8169bd8f93b3ac2ad0adb677c2e21a","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":5096079,"installed_size_bytes":38535168,"build_date_epoch":1724722797},{"repository":"core","name":"glib2-devel","version":"2.80.5-1","description":"Low level core library - development files","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glib2","glibc","libelf","python","python-packaging"],"required_by":["ayatana-indicator-power","ayatana-indicator-session","aylurs-gtk-shell-git","gdm-settings","gdm-settings-git"],"optional_for":["glib2"],"conflicts_with":[],"replaces":[],"download_size":"157.58 KiB","installed_size":"1211.66 KiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"1c4ad5b09612421b6b8974dcbda5877c2a94daa42fbec88554e61443d9c80fc2","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":161361,"installed_size_bytes":1240739,"build_date_epoch":1724722797},{"repository":"core","name":"glib2-docs","version":"2.80.5-1","description":"Low level core library - documentation","architecture":"x86_64","url":"https://gitlab.gnome.org/GNOME/glib","licenses":["LGPL-2.1-or-later","LicenseRef-Public-Domain"],"groups":[],"provides":[],"depends_on":[],"required_by":["gtk-doc"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"3.20 MiB","installed_size":"63.35 MiB","packager":"Jan Alexander Steffens (heftig) ","build_date":"Mon 26 Aug 2024 06:39:57 PM +08","md5_sum":null,"sha_256_sum":"334e9e6c408dcf5477358426232c09c99fa83d52a5912671e40c6aa0b71d9075","signatures":"B8AC08600F108CDF","extended_data":null,"download_size_bytes":3355443,"installed_size_bytes":66427289,"build_date_epoch":1724722797},{"repository":"core","name":"glibc","version":"2.40+r16+gaa533d58ff-2","description":"GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["linux-api-headers>=4.10","tzdata","filesystem"],"optional_deps":[{"name":"gd","description":"for memusagestat"},{"name":"perl","description":"for mtrace"}],"required_by":["3cpio","4ti2","7-zip","7-zip-full","86box","86box-git","a2jmidid","a52dec","aalib","aardvark-dns","abiword","abseil-cpp","accessibility-inspector","accounts-qml-module","accountsservice","acl","acpi","acpica","add-determinism","adguardhome","adios2","adljack","adlplug-lv2","adlplug-standalone","adlplug-vst","adms-git","adns","advancecomp","advcpmv","aeolus","aerc","afdko","afl++","age","age-plugin-tkey","age-plugin-tpm","age-plugin-yubikey","aha","aichat","aida-x-clap","aida-x-lv2","aida-x-standalone","aida-x-vst","aida-x-vst3","aircrack-ng","aisleriot","ajantv2-tools","akonadi","akonadi-calendar","akonadi-calendar-tools","akonadi-contacts","akonadi-import-wizard","akonadi-mime","akonadi-notes","akonadi-search","akonadiconsole","akregator","alertmanager","ali","alicloud-vault","aliyun-cli","alligator","almanah","alsa-lib","alsa-oss","alsa-plugins","alsa-scarlett-gui","alsa-tools","alsa-utils","amarok","ambix-lv2","ambix-standalone","ambix-vst","amdvlk","aml","ams","amsynth-dssi","amsynth-lv2","amsynth-standalone","amsynth-vst","analitza","android-emulator","android-ndk","android-sdk-cmdline-tools-latest","angband","angelfish","angle-grinder","anime-games-launcher-bin","antimicrox","anydesk-bin","aom","apk-tools","apko","app-icon-preview","apparmor","appstream","appstream-generator","appstream-glib","appstream-qt","appstream-qt5","apt","aquamarine","aquamarine-git","arca","arch-audit","arch-rebuild-order","arch-repro-status","archinstall","archlinux-userland-fs-cmp","ardour","ardour-git","arduino-cli","arduino-ctags","arduino-fwuploader","arduino-ide","arduino-language-server","argocd","argon2","argtable","arianna","aribb25","arj","ark","arrpc","arti","artikulate","artyfx","ascii","astyle","asunder","asusctl","asymptote","at-spi2-core","at51","atomix","attica","attr","atuin","aubio","audacity","audaspace","audex","audio-recorder","audiocd-kio","audiotube","audit","augustus","aura","aura-git","avldrums.lv2","avogadrolibs","avogadrolibs-qt5","avr-binutils","aws-c-auth","aws-c-cal","aws-c-common","aws-c-compression","aws-c-event-stream","aws-c-http","aws-c-io","aws-c-mqtt","aws-c-s3","aws-c-sdkutils","aws-crt-cpp","aws-sdk-cpp","aws-vault","axel","ayatana-ido","ayatana-indicator-datetime","ayatana-indicator-keyboard","ayatana-indicator-notifications","ayatana-indicator-power","ayatana-indicator-session","ayatana-indicator-sound","aylurs-gtk-shell","aylurs-gtk-shell-git","b43-fwcutter","babeld","babeltrace2","babl","babl-git","backuppc","bacon","baidupcs-go","baloo","baloo-widgets","bandwhich","banner","barcode","base","bash","bat","bcc","bcg729","bchoppr","bchunk","bear","bearssl","beep","bemenu","bemenu-ncurses","bemenu-wayland","bemenu-x11","benzene","bespokesynth","bettercap","bfs","bftpd","bibtool","bibutils","bind","binutils","biome","bird","birdfont","bison","bitcoin-daemon","bitcoin-qt","bitcoin-tx","black-hole-solver","blas","blas64","blender","blinken","blisp","bliss","blockbench-bin","blop","blop.lv2","blosc","blosc2","bluedevil","bluez","bluez-cups","bluez-deprecated-tools","bluez-hid2hci","bluez-libs","bluez-mesh","bluez-obex","bluez-qt","bluez-utils","bogofilter-db","bogofilter-kyotocabinet","bogofilter-lmdb","bogofilter-sqlite","bolt-launcher","bomber","bootconfig","bootiso","botan","bovo","bpf","bpf-linker","bpftrace","breeze","breeze-icons","breeze-plymouth","breeze5","breezy","brial","brickadia-launcher","bridge-utils","brltty","brook","brotli","browserpass","bsequencer","bshapr","bslizr","btop","btrfs-progs","bubblewrap","bubblewrap-suid","buckygen","buf","buho","build2","bully","bup","bustle","byacc","bzip2","bzip3","c-ares","c-xsc","cabextract","caddy","cage","cage-git","cairo","calendarsupport","calf","calindori","calligra","canto-curses","cantor","capnproto","capstone","cardinal-clap","cardinal-lv2","cardinal-standalone","cardinal-vst","cardinal-vst3","cargo-audit","cargo-c","cargo-cyclonedx","cargo-deb","cargo-flamegraph","cargo-license","cargo-outdated","cargo-release","cargo-semver-checks","cargo-tarpaulin","carla","carla-git","cartridge-cli","casync","catdoc","catimg","cauchy","cbindgen","cblas","cblas64","ccache","ccd2iso","ccls","cddlib","cdemu-daemon","cdparanoia","cdrdao","cdrtools","cef-minimal-obs-bin","cemu-git","cern-vdt","cervisia","cfitsio","cfssl","charm","chatgpt-desktop-bin","chewing-editor","chezmoi","chitose","chmlib","choosenim","choria-io","chromaprint","chromium-widevine","chrony","chrootuid","chrpath","cilium-cli","citra-git","cjdns","cjson","ckermit","cksfv","clamav","clapper","clash","clazy","clblast","clipgrab","cliphist","cliquer","cloudflare-warp-bin","cloudflared","clthreads","clucene","clxclient","cm256cc","cmake","cmark","cmark-gfm","cmocka","cmt","cni-plugins","cobalt","cockroachdb-bin","codon-bin","coeurl","coin-or-asl","coin-or-cbc","coin-or-cgl","coin-or-clp","coin-or-coinutils","coin-or-csdp","coin-or-mp","coin-or-osi","colord-gtk","colord-gtk4","colord-kde","comgr","committed","communicator","compface","composable-kernel","composefs","compsize","confuse","conky","conmon","connman","conntrack-tools","consul","consul-template","container-diff","convertlit","coolercontrol","coordgen","coreutils","coreutils-hybrid-git","cosmic-app-library","cosmic-applets","cosmic-bg","cosmic-comp","cosmic-files","cosmic-greeter","cosmic-launcher","cosmic-notifications","cosmic-osd","cosmic-panel","cosmic-randr","cosmic-screenshot","cosmic-session","cosmic-settings","cosmic-settings-daemon","cosmic-store","cosmic-terminal","cosmic-text-editor","cosmic-workspaces","cotp","cowsql","coxeter","cpio","cpp-hocon","cppdap","cppunit","cpufetch","cpupower","cracklib","crane","crawl-ncurses","crawl-tiles","cri-o","crictl","critest","criu","croc","croc-git","crowdsec","cryfs","cryptominisat","csound","csound-plugins","csoundqt","ctags","ctop","ctrtool","cubeb","cue","cuetools","cunit","cups","cups-browsed","cups-filters","cups-pdf","cups-pk-helper","curl-rustls","curlie","cutter","cxxbridge","cycfx2prog","cyrus-sasl","cyrus-sasl-gssapi","cyrus-sasl-ldap","cyrus-sasl-sql","cython","czkawka-cli","czkawka-gui","d-spy","d2","dagger","darling-bin","dart","dart-sass","dasel","dash","dateutils","dav1d","davs2","dbmail","dbmate","dbus-c++","dbus-glib","ddrescue","debugedit","debuginfod","deepin-appearance","deepin-application-manager","deepin-calculator","deepin-calendar","deepin-camera","deepin-compressor","deepin-file-manager","deepin-launchpad","deepin-music","deepin-network-core","deepin-printer","deepin-qt5integration","deepin-qt5platform-plugins","deepin-qt6integration","deepin-qt6platform-plugins","deepin-session","deepin-session-shell","deepin-session-ui","deepin-terminal","deepin-widgets","deepin-wloutput-daemon","deja-dup","deltachat-rpc-server","deskreen","desync","detox","device-mapper","dexed-clap","dexed-standalone","dexed-vst3","dfc","dfrs","dfu-programmer","dhclient","dhcp","dhcpcd","dhcping","dictd","diesel-cli","diffstat","difftastic","diffutils","digikam","din","ding-libs","direnv","discimagecreator-git","discord-canary-electron-bin","discord-chat-exporter-cli","discount","discover","distorm","distrho-ports-lv2","distrho-ports-vst","distrho-ports-vst3","distro-info","dive","djvulibre","dleyna","dma","dmenu","dmidecode","dmtcp","dnscrypt-proxy","dnsmasq","dnssec-tools","docbook2x","docker","docker-machine","doctl","dolphin","dolphin-emu","dolphin-emu-avx-git","dolphin-emu-git","dolphin-emu-primehack-git","dolphin-emu-tool","dolphin-plugins","dolt","dontpanic","doomretro","dos2unix","dosfstools","dotconf","dotnet-host","dotnet-host-bin","dotnet-runtime","dotnet-runtime-6.0","dotnet-runtime-7.0","dotnet-runtime-bin","dotnet-sdk","dotnet-sdk-6.0","dotnet-sdk-7.0","dotnet-sdk-bin","double-conversion","doxygen","dpf-plugins-clap","dpf-plugins-dssi","dpf-plugins-ladspa","dpf-plugins-lv2","dpf-plugins-standalone","dpf-plugins-vst","dpf-plugins-vst3","dpkg","dragon","dragonfly-reverb-clap","dragonfly-reverb-lv2","dragonfly-reverb-standalone","dragonfly-reverb-vst","dragonfly-reverb-vst3","drkonqi","droidcam","drone","drone-cli","drone-oss","drone-runner-docker","drone-runner-exec","drone-runner-ssh","drumgizmo-lv2","drumgizmo-standalone","drumkv1-lv2","drumkv1-standalone","drumstick","dsniff","dsq","dssi","dtc","dte","dtk6core","dtk6gui","dtk6widget","dtkcore","dtkwidget","dua-cli","duf","duktape","dump_syms","dumpasn1","dune","duplicacy","dust","dvd+rw-tools","dvgrab","dvisvgm","dwayland","e-antic","earlyoom","easy-pdk","easyjson","easytag","easytether-bin","ebook-tools","ebou","ebumeter","ecasound","eclib","ecm-tools","ecos","ed","edid-decode-git","editline","editorconfig-checker","editorconfig-core-c","efibootmgr","efitools","efivar","egl-wayland","eksctl","electron23","electron27","electron28","electron29","electron30","electron31","electron32","element","elephantdsp-roomreverb-clap","elephantdsp-roomreverb-lv2","elephantdsp-roomreverb-vst3","elf2uf2-rs","elfutils","elfx86exts","elinks","elisa","ell","elvish","embree","emby-ffmpeg","emby-theater","emptyepsilon","enblend-enfuse","encpipe","endless-sky","enet","enscript","entr","eog","epiphany","eq10q","erdtree","erfa","erofs-utils","esbuild","espeakup","espflash","espup","eteroj.lv2","etherape","ethtool","ettercap","ettercap-gtk","eventviews","evilginx","evince","evolution","evolution-bogofilter","evolution-data-server","evolution-ews","evolution-spamassassin","evtest","exempi","exfat-utils","exfatprogs","exim","exiv2","expat","expressvpn","extundelete","eza","faac","faad2","fabla","facter","fakeroot","falkon","fastfetch","fatresize","fatsort","faust","fbset","fcitx5-qt","fcrackzip","fdkaac","fdupes","ffcall","fflas-ffpack","ffmpeg","ffmpeg-obs","ffmpegthumbs","fftw","fftw-openmpi","fiery","fig2dev","figlet","file","file-roller","filelight","findnewest","findutils","firecracker","firefox","firefox-developer-edition","firefox-esr","fish","fish-git","flatpak","flatpak-builder","flatpak-kcm","flex","flint","flip-link","flips","flite","flite1","flterm","fltk","fluidsynth","fluxcd","fomp.lv2","foomatic-db-engine","foremost","forgejo","fortune-mod","fossil","fping","fplll","fprintd","fq","fractal","fragments","frameworkintegration","francis","freecell-solver","freeciv","freeglut","freerdp","freerdp2","freetds","freewheeling","frei0r-plugins","fribidi","fricas","frotz-dumb","fsv3","ft2-clone","ftjam","fulcio","furnace","fuse2","fuse3","futuresql","fwupd","fx","fxload","fzy","gala","gamemode","gamescope","gamescope-git","gammaray","gammastep","gap","gap-packages","gavl","gawk","gcc-libs","gcc13-libs","gcdmaster","gcin","gcolor3","gcr","gcr-4","gdb","gdbm","gdcm","gdk-pixbuf2","gdm","gdm-prime","gdu","geary","gedit","gedit-plugins","geeqie","gegl","gen2shp","genxrdpattern","geoclue","geoipupdate","geonkick-lv2","geonkick-standalone","geonkick-vst3","geph4-client","gf2x","gfan","gfold","ghostscript","ghostwriter","ghq","giac","giada","gif2png","giflib","gigedit","giggle","gimp","gimp-plugin-gmic","ginkgo-hpc","ginkgo-hpc-cuda","ginkgo-hpc-hip","girara","git-cinnabar","git-cliff","git-credential-gopass","git-delta","git-evtag","git-smash","git-warp-time","gitg","github-cli","gitlab-gitaly","gitlab-runner","gitleaks","gitoxide","gitui","givaro","gjs","glab","glew","glew1.10","glewlwyd","glib-networking","glib2","glib2-devel","glibc-locales","glibmm-2.68","glider","glow","glpk","glu","glycin","gmic","gmime3","gmp","gmp-ecm","gmsynth.lv2","gnac","gnome-applets","gnome-autoar","gnome-bluetooth-3.0","gnome-boxes","gnome-break-timer","gnome-builder","gnome-calculator","gnome-calendar","gnome-calls","gnome-characters","gnome-color-manager","gnome-connections","gnome-console","gnome-contacts","gnome-control-center","gnome-desktop","gnome-desktop-4","gnome-disk-utility","gnome-flashback","gnome-games","gnome-initial-setup","gnome-keyring","gnome-latex","gnome-mahjongg","gnome-maps","gnome-mplayer","gnome-multi-writer","gnome-online-accounts","gnome-panel","gnome-podcasts","gnome-recipes","gnome-remote-desktop","gnome-session","gnome-settings-daemon","gnome-shell","gnome-shell-pomodoro","gnome-software","gnome-subtitles","gnome-sudoku","gnome-system-monitor","gnome-terminal","gnome-terminal-transparency","gnome-text-editor","gnome-tour","gnote","gnu-netcat","gnugo","gnupg","gnuplot","gnuradio","gnuradio-iqbal","gnuradio-osmosdr","gnutls","go-ethereum","go-licenses","go-swagger","go-task","go-tools","go-yq","goaurrpc","gobject-introspection","gocr","gocryptfs","godot-mono","goffice","goimapnotify","gojq","goldendict-webengine-pr-git","gom","gomuks","goobox","goocanvas","google-glog","google-webdesigner","gopass-hibp","gopass-jsonapi","gopass-summon-provider","gopsuinfo","goreleaser","gost","gotop","gotosocial","gox","gpac","gpart","gpaste","gperf","gperftools","gpgme","gpsmanshp","gputils","gqrx","grafana","grafana-agent","grafana-agentctl","granatier","grantlee","grantlee-editor","grantleetheme","graphite","grass","greetd","greetd-regreet","grep","gron","grub-customizer","gsl","gsm","gsocket","gsound","gssproxy","gst-devtools","gst-devtools-libs","gst-editing-services","gst-libav","gst-plugin-gtk","gst-plugin-libcamera","gst-plugin-msdk","gst-plugin-onnx","gst-plugin-opencv","gst-plugin-pipewire","gst-plugin-qml6","gst-plugin-qmlgl","gst-plugin-qsv","gst-plugin-va","gst-plugin-wpe","gst-plugins-bad","gst-plugins-bad-libs","gst-plugins-base","gst-plugins-base-libs","gst-plugins-good","gst-plugins-ugly","gst-python","gst-rtsp-server","gstreamer","gstreamer-vaapi","gtest","gtk-update-icon-cache","gtk2","gtk3","gtk3-demos","gtk4","gtk4-demos","gtksourceview5","gtksourceviewmm","gtranslator","gtuber","guestfs-tools","guile1.8","guitarix","gum","gumbo-parser","gupnp-tools","gutenprint","gvfs","gvfs-afc","gvfs-dnssd","gvfs-goa","gvfs-google","gvfs-gphoto2","gvfs-mtp","gvfs-nfs","gvfs-onedrive","gvfs-smb","gvfs-wsdd","gvim","gwenview","gxplugins.lv2","gzip","halibut","harfbuzz","harfbuzz-cairo","harfbuzz-icu","harfbuzz-utils","haruna","harvid","hashcash","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","hatari","haveged","hck","hcloud","hcxdumptool","hdapsd","hdparm","headscale","heaptrack","heimdall","heimdall-grimler-git","helix","helm","helmfile","helvum","hepmc","hexter","hey","hip-runtime-amd","hipblas","hipblaslt","hipfft","hipify-clang","hiprand","hipsolver","hipsparse","hiredis","hivex","hoel","hostapd","hostess","hotdoc","hound","hplip","hsa-amd-aqlprofile-bin","hsa-rocr","hsakmt-roct","hspell","htmlcxx","http-parser","httptunnel","hugo","hunspell","hurl","hut","hwloc","hydra","hydrogen","hyperv","hyphen","hyprcursor","hypridle","hyprland","hyprland-git","hyprlang","hyprlang-git","hyprlock","hyprpaper","hyprpicker-git","i3blocks","i3lock","iaito","iat","icon-library","icu","id3lib","id3v2","iddawc","idle3-tools","iempluginsuite-standalone","iempluginsuite-vst3","igraph","ijs","imagemagick","imagescan","imaginary","imake","imath","imd-git","iml","incidenceeditor","include-what-you-use","indent","index-fm","inetutils","infamousplugins","iniparser","inkscape","input-leap-git","input-leap-headless-git","insight-toolkit","insync","intel-metee","intel-npu-driver-bin","intel-oneapi-compiler-shared","intel-oneapi-compiler-shared-runtime","intel-oneapi-compiler-shared-runtime-libs","intel-oneapi-dpcpp-cpp","intel-oneapi-dpcpp-debugger","intel-oneapi-mkl","intel-oneapi-mkl-sycl","intel-oneapi-openmp","intel-oneapi-tbb","intel-oneapi-tcm","intel-undervolt","ioping","iotop-c","iperf","iperf3","ipp-usb","iproute2","ipset","iptstate","ipvsadm","irqbalance","irssi","isatapd","isoimagewriter","ispc","istio","itcl3","itinerary","itk-snap-bin","iucode-tool","iwd","j4-dmenu-desktop","jack-example-tools","jack-stdio","jack2","jack2-dbus","jack_delay","jack_mixer","jack_utils","jackett","jackmeter","jackminimix","jacktrip","jalv","jami-daemon","jansson","japa","jasper","java-rxtx","jbig2dec","jbigkit","jc303-clap","jc303-lv2","jc303-vst3","jconvolver","jdk-openjdk","jdk11-openjdk","jdk17-openjdk","jdk21-openjdk","jdupes","jellyfin-ffmpeg","jemalloc","jhead","jitterentropy","jnoisemeter","jo","joshuto-git","jpegoptim","jq","jre-openjdk","jre-openjdk-headless","jre11-openjdk","jre11-openjdk-headless","jre17-openjdk","jre17-openjdk-headless","jre21-openjdk","jre21-openjdk-headless","jruby","js115","js128","js80p","json-c","json-glib","jsonrpc-glib","juce","judy","jujutsu","juk","julius","jxrlib","k3b","k9s","kaccounts-integration","kaccounts-providers","kactivitymanagerd","kaddressbook","kaffeine","kaidan","kalarm","kalgebra","kalk","kalm","kalzium","kamera","kamoso","kanagram","kapman","kapptemplate","karchive","karchive5","kasts","kate","katomic","kauth","kbackup","kbd","kbibtex","kblackbox","kblocks","kbookmarks","kbounce","kbreakout","kbruch","kcachegrind","kcalc","kcalendarcore","kcalutils","kcharselect","kclock","kcmutils","kcodecs","kcolorchooser","kcolorpicker","kcolorpicker-qt5","kcolorscheme","kcompletion","kconfig","kconfigwidgets","kcontacts","kcoreaddons","kcptun","kcpuid","kcrash","kcron","kdav","kdb","kdbg","kdbusaddons","kddockwidgets-qt6","kde-cdemu-manager","kde-cli-tools","kde-dev-utils","kde-gtk-config","kde-inotify-survey","kdebugsettings","kdeclarative","kdeconnect","kdecoration","kded","kdegraphics-mobipocket","kdegraphics-thumbnailers","kdenetwork-filesharing","kdenlive","kdepim-addons","kdepim-runtime","kdeplasma-addons","kdesdk-kio","kdesdk-thumbnailers","kdesu","kdevelop","kdevelop-pg-qt","kdevelop-php","kdevelop-python","kdf","kdiagram","kdialog","kdiamond","kdiff3","kdiskmark","kdnssd","kdoctools","kdsingleapplication","kdsoap-qt5","kdsoap-qt6","kdsoap-ws-discovery-client","keditbookmarks","keepalived","kernelshark","kexi","keysmith","keyutils","kfilemetadata","kfind","kfourinline","kgamma","kgeography","kget","kglobalaccel","kglobalacceld","kgoldrunner","kgpg","kgraphviewer","kguiaddons","khangman","khealthcertificate","khelpcenter","kholidays","ki18n","kiconthemes","kidentitymanagement","kidletime","kig","kigo","kile","killbots","kimageannotator","kimageannotator-qt5","kimageformats","kimagemapeditor","kimap","kinfocenter","kio","kio-admin","kio-extras","kio-fuse","kio-gdrive","kio-zeroconf","kio5-extras","kirigami","kirigami-addons","kirigami-addons5","kirigami-gallery","kiriki","kismet","kitemmodels","kitemviews","kiten","kitinerary","kjobwidgets","kjots","kjournald","kjumpingcube","klassy-git","klassy-qt5-git","kldap","kleopatra","klettres","klickety","klines","klystrack-plus","kmag","kmahjongg","kmail","kmail-account-wizard","kmailtransport","kmbox","kmenuedit","kmidimon","kmime","kmines","kmix","kmod","kmousetool","kmouth","kmplot","knative-client","knavalbattle","knetwalk","knewstuff","knights","knotifications","knotifyconfig","ko","koko","kolf","kollision","kolourpaint","kommit","kompare","kompose","kongress","konqueror","konquest","konsole","konsolepart5","kontact","kontactinterface","kontrast","konversation","kopeninghours","korganizer","kosmindoormap","kpackage","kparts","kpat","kpeople","kpimtextedit","kpipewire","kpkpass","kplotting","kpmcore","kproperty","kpty","kpublictransport","kqtquickcharts","kquickcharts","kquickimageeditor","kquickimageeditor5","krb5","krdc","krdp","krecorder","krename","kreport","kreversi","krfb","krita","krita-plugin-gmic","krokiet","kronometer","kruler","krunner","krusader","ksanecore","ksanecore5","kscreen","kscreenlocker","kseexpr","kservice","kshisen","kshutdown","ksirk","ksmtp","ksnakeduel","kspaceduel","ksquares","ksshaskpass","kstars","kstatusnotifieritem","ksudoku","ksvg","ksysguard6-git","ksystemlog","ksystemstats","kteatime","ktextaddons","ktextaddons5","ktexteditor","ktexttemplate","ktextwidgets","ktimer","ktimetracker","ktnef","ktorrent","ktouch","ktrip","ktuberling","kturtle","kube-apiserver","kube-controller-manager","kube-linter","kube-proxy","kube-scheduler","kubeadm","kubeconform","kubectl","kubectl-ingress-nginx","kubectx","kubelet","kubeseal","kubo","kubrick","kunitconversion","kup","kuserfeedback","kustomize","kvantum","kvantum-git","kvantum-qt5","kvantum-qt5-git","kwallet","kwallet-pam","kwalletmanager","kwave","kwayland","kwayland-integration","kweather","kweathercore","kwidgetsaddons","kwin","kwindowsystem","kwordquiz","kwrited","kxmlgui","l-smash","labplot","ladspa","lantern-bin","lapack","lapack64","lapacke","lapacke64","lasem","latte-integrale","layer-shell-qt","lazygit","lbzip2","lcalc","ld-lsb","ldproxy","lean4-git","leatherman","legba","lego","lemon","lensfun-git","leocad","less","lf","lf-git","lftp","lhasa","lib32-glibc","lib32-glibc-eac","lib32-glibc-eac-roco","lib32-opencore-amr","lib3mf","libabigail","libabw","libaccounts-glib","libaccounts-qt","libad9361","libadwaita","libadwaita-demos","libaec","libaio","libajantv2","libakonadi","libao","libappimage","libappindicator-gtk2","libappindicator-gtk3","libass","libassuan","libasyncns","libatasmart","libatomic_ops","libavc1394","libavif","libayatana-appindicator","libayatana-indicator","libb2","libb64","libbaseencode","libblastrampoline","libblockdev","libblockdev-btrfs","libblockdev-crypto","libblockdev-dm","libblockdev-fs","libblockdev-loop","libblockdev-lvm","libblockdev-mdraid","libblockdev-mpath","libblockdev-nvdimm","libblockdev-nvme","libblockdev-part","libblockdev-swap","libbluray","libbpf","libbraiding","libbsd","libburn","libc++","libc++abi","libcaca","libcacard","libcalfbox-lss","libcamera","libcamera-ipa","libcamera-tools","libcap","libcap-ng","libcbor","libcdaudio","libcddb","libcdio-paranoia","libcdr","libcerf","libcgif","libck","libclapper","libclapper-gtk","libcli","libcmis","libconfig","libcoverart","libcpuid","libcue","libcups","libcupsfilters","libcutl","libcyaml","libdaemon","libdatachannel","libdatrie","libdbi","libdc1394","libdca","libde265","libdeflate","libdex","libdispatch","libdisplay-info","libdmtx","libdovi","libdrm","libdv","libdvbpsi","libdvdcss","libdvdnav","libdvdread","libe-book","libebur128","libedataserverui4","libedit","libei","libelf","libepoxy","libepubgen","libetebase","libetonyek","libetpan","libev","libevdev","libewf","libexif","libexttextcat","libfabric","libfdk-aac","libffado","libffi","libffi7","libfido2","libfilezilla","libfilteraudio","libfixposix","libfontenc","libforensic1394","libfprint","libfreeaptx","libfreehand","libfreexl","libgcrypt","libgcrypt15","libgda6","libgda6-mysql","libgda6-postgres","libgdm","libgdm-prime","libgedit-amtk","libgedit-gfls","libgedit-gtksourceview","libgedit-tepl","libgexiv2","libgfshare","libgig","libgirepository","libgit2","libgit2-glib","libgme","libgoa","libgoom2","libgpg-error","libgravatar","libgssglue","libgtop","libguestfs","libgweather-4","libheif","libhomfly","libhx","libical","libice","libiconv","libid3tag","libidn","libidn11","libiio","libimobiledevice","libimobiledevice-git","libimobiledevice-glue","libindi","libinih","libinput","libinsane","libinstpatch","libiptcdata","libirman","libiscsi","libixion","libjodycode","libjpeg-turbo","libjpeg6-turbo","libjuice","libkate","libkcddb","libkcompactdisc","libkdcraw","libkdcraw5","libkdegames","libkdepim","libkeccak","libkeduvocdocument","libkexiv2","libkexiv2-qt5","libkeyfinder","libkgapi","libkleo","libklvanc-git","libkmahjongg","libkolabxml","libkomparediff2","libksane","libksane5","libksba","libkscreen","libksieve","libksysguard","libktorrent","liblangtag","liblc3","libldac","libliftoff","libliftoff-git","libliquidsfz","liblo","liblockfile","liblouis","liblqr","liblscp","liblsp-r3d-glx-lib","libltc","liblzf","libmad","libmalcontent","libmanette","libmatio","libmaxminddb","libmcrypt","libmd","libmediaart","libmediainfo","libmesode","libmicrodns","libmikmod","libmirage","libmms","libmng","libmnl","libmpc","libmpcdec","libmpdclient","libmpeg2","libmspack","libmspub","libmsym","libmtp","libmupdf","libmusicbrainz5","libmusicxml","libmwaw","libmypaint","libmythes","libnatpmp","libnautilus-extension","libnbd","libndp","libnet","libnfnetlink","libnfs","libnghttp2","libnghttp3","libngtcp2","libnitrokey","libnl","libnm","libnm-iwd","libnova","libnpupnp","libnsl","libnumbertext","libnvidia-container","libodfgen","libogg","libomemo-c","libomxil-bellagio","libopenmpt","libopenshot","libopenshot-audio","libopusenc","liborcus","liborigin","libosinfo","libotr","libp11-kit","libpagemaker","libpaper","libpcap","libpciaccess","libpeas-2","libpg_query","libpgm","libphonenumber","libpillowfight","libpipeline","libpipewire","libplacebo","libplasma","libplist","libplist-git","libpng12","libportal","libportal-qt5","libportal-qt6","libppd","libprocps","libproxy","libpwquality","libqaccessibilityclient-qt5","libqaccessibilityclient-qt6","libqalculate","libqb","libquotient","libqxp","libraqm","libraw","libraw1394","librda","librdkafka","libre-graph-api","libreoffice-fresh","libreoffice-fresh-sdk","libreoffice-still","libreplaygain","libressl","libretro-beetle-pce","libretro-beetle-pce-fast","libretro-beetle-supergrafx","libretro-blastem","libretro-dolphin","libretro-kronos","libretro-mame","libretro-mame2016","libretro-mesen-git","libretro-mupen64plus-next","libretro-mupen64plus-next-git","libretro-opera-git","libretro-pcsx2","libretro-picodrive","libretro-play","libretro-ppsspp","libretro-sameboy","libretro-stella2014-git","libretro-yabause","librevenge","librewolf","librime","librsvg","librtmp0","librustls","libsamplerate","libsasl","libsbsms","libseccomp","libsecp256k1","libsemigroups","libsepol","libserialport","libshumate","libsidplayfp","libsignal-protocol-c","libsigsegv","libsm","libsmbios","libsndfile","libsodium","libsoup3","libspecbleach","libspectmorph","libspectre","libspelling","libspf2","libspiro","libspnav","libspng","libssh","libstaroffice","libstemmer","libstrophe","libsynctex","libtasn1","libtatsu-git","libthai","libtheora","libtiff","libtiff5","libtirpc","libtommath","libtool","libtraceevent","libtracefs","libtsm","libuecc","libultrahdr","libumem-git","libunibreak","libunistring","libunrar","libunwind","libupnp","libupnpp","liburcu","libusb","libusbmuxd","libusbmuxd-git","libusbsio","libutempter","libuv","libuvc","libva-mesa-driver","libvdpau-va-gl","libverto","libvisio","libvpx","libvpx1.3","libvterm","libvterm-0.1","libwacom","libwacom-surface","libwebp","libwebsockets","libwhereami","libwhich","libwireplumber","libwlocate","libwmf","libwnck","libwpd","libwpg","libwps","libx11","libx86","libxau","libxaw","libxcb","libxcb-git","libxcomposite","libxcrypt","libxcursor","libxcvt","libxcvt-git","libxdamage","libxdg-basedir","libxdmcp","libxext","libxfixes","libxfont2","libxft","libxi","libxinerama","libxisf","libxkbcommon","libxkbcommon-x11","libxkbfile","libxklavier","libxml++-5.0","libxml2","libxmp","libxmu","libxp","libxpm","libxpresent","libxrandr","libxrender","libxres","libxsd-frontend","libxshmfence","libxslt","libxss","libxt","libxtst","libxv","libxvmc","libxxf86vm","libyaml","libytnef","libzen","libzmf","lidia","light-locker","lightdm-pantheon-greeter","lilv","lilypond","limine","linbox","lincity-ng","link-grammar","linux-atm","linuxsampler","linuxtv-dvb-apps","liquid-dsp","liquid-dsp-sse4.1","liquidsfz-lv2","liquidsfz-standalone","liquidshell","litehtml","lksctp-tools","lldb-mi","lldpd","llvm-julia","llvm-julia-libs","lm_sensors","lmdb","lmms","lockfile-progs","logcli","lokalize","loki","loki-canary","looking-glass-git","looking-glass-host-git","lorcon","loupe","lout","lowdown","lprint","lpsolve","lrcalc","lrs","lskat","lsof","lsp-plugins-clap","lsp-plugins-gst","lsp-plugins-ladspa","lsp-plugins-lv2","lsp-plugins-standalone","lsp-plugins-vst","lsp-plugins-vst3","lttng-ust2.12","lua-lgi","lua51-lgi","lua53-lgi","luametatex","luau","luppp","lv2file","lv2lint","lxqt-config","lxsplit","ly","lynx","lz4","lzo","m17n-db","m4","m4ri","m4rie","mac","macchanger","macfanctld","maeparser","mailcommon","mailimporter","make","malcontent","maliit-framework","mame","mame-tools","man-db","mandown","marble","marble-common","marble-maps","marble-qt","markdownpart","marknote","masscan","massif-visualizer","master_me-clap","master_me-ladspa","master_me-lv2","master_me-standalone","master_me-vst","master_me-vst3","masterpdfeditor-free","materialx","matrix-appservice-irc","matrix-synapse","matterbridge","mattermost","maturin","maui-agenda","maui-clip","maui-nota","maui-pix","maui-shelf","maui-station","mauikit","mauikit-accounts","mauikit-archiver","mauikit-calendar","mauikit-documents","mauikit-filebrowsing","mauikit-imagetools","mauikit-terminal","mauikit-texteditor","mauiman","mawk","maxcso","maxcso-git","mbedtls","mbedtls2","mbelib","mbox-importer","mbpfan-git","mbuffer","mc","mcpp","mcqd","md4c","mda.lv2","mdadm","mdf2iso","mediaelch","mednaffe","meek","melange","memcached","memtester","mencoder","mephisto.lv2","merkuro","mesa","mesa-demos","mesa-utils","mesa-vdpau","meshbird","messagelib","metacity","metalog","mgard","mhash","microsocks","midi_matrix.lv2","mihomo","milkytracker","miller","milou","mimalloc","mimetreeparser","mimir","mingw-w64-tools","minieap","miniflux","minikube","minio","minio-client","minitube","miniupnpc","minizip","minizip-ng","minuet","miopen-hip","mixxx","mjpegtools","mkcert","mkinitcpio-busybox","mkinitcpio-nfs-utils","mkvtoolnix-cli","mlocate","mlt","mmctl","mmsrip","mod_dnssd","modemmanager-qt","mold","mold-git","molequeue","monero","monero-gui","mongodb","mongodb-tools","moony.lv2","moserial","mosquitto","mp3guessenc-beta","mpc","mpd","mpdecimal","mpfi","mpfr","mplayer","mpv","mpvqt","mscp","msgpack-c","msgraph","msolve","msr-tools","mtdev","mtools","mtr","mtr-gtk","mtxclient","mullvad-browser-bin","multipath-tools","mumble","mumble-server","munge","mupdf","mupdf-gl","mupdf-tools","muse","musepack-tools","musescore","mutt","mutter","mutter-dynamic-buffering","mutter-performance","mutter-x11-scaling","mxml","mympd","mysql-workbench","mystiq","naiveproxy","nano","nanomsg","nanosvg","nasm","nautilus","nautilus-image-converter","nautilus-share","nauty","navidrome","nawk","nbtscan","nccl","ncmpc","ncmpcpp","ncompress","ncspot","ncurses","ncurses5-compat-libs","ndisc6","neard","neatvnc","nebula","neochat","neomutt","neon","neovide","neovide-git","net-tools","netavark","netbird","netbird-management","netbird-signal","netbird-ui","netbrake","nethsm-cli","nethsm-pkcs11","netpbm","netperf","netplan","netsniff-ng","nettle","networkmanager","networkmanager-iwd","networkmanager-openvpn","networkmanager-qt","new-session-manager","newsflash","nfs-utils","nfsidmap","nginx","nginx-mainline","nginx-mod-njs","nginx-prometheus-exporter","nickel","nickel-language-server","niri","nix","nixpacks","nm-cloud-setup","nm-iwd-cloud-setup","nmap","noise-repellent","noise-suppression-for-voice","nomacs","nomad","nomad-driver-nspawn","normaliz","notcurses","npth","nrg2iso","nrpe","nspr","nspr-hg","nss","nss-mdns","nsxiv","ntk","ntl","numactl","nushell","nuspell","nut","nvidia-cg-toolkit","nvidia-container-toolkit","nwg-look","nyancat","nyxt","oath-toolkit","ob-xd-lv2","ob-xd-standalone","ob-xd-vst3","obs-gstreamer","obs-plugin-looking-glass-git","obs-rtspserver","obs-studio-tytan652","ocaml-augeas","ocaml-csexp","ocaml-intrinsics-kernel","ocaml-pp","ocaml-stdio","ocl-icd","ocrad","odin2-synthesizer-clap","odin2-synthesizer-lv2","odin2-synthesizer-standalone","odin2-synthesizer-vst3","odr-dabmux-git","oha","oidentd","oil","okteta","okular","okularpart5","onnx","opencl-clover-mesa","opencl-rusticl-mesa","opencore-amr","opencv","opencv-cuda","opendht","openexr","openfec","openfortivpn","openjade","openjpeg2","openlibm","openmpi","openntpd","openpgp-ca","openpgp-ca-restd","openpgp-card-ssh-agent","openpgp-card-tool-git","openpgp-card-tools","openpmix","openscad","opensearch-cli","opensmtpd-filter-rspamd","opensmtpd-filter-senderscore","opensnitch","openssh","openssl","openssl-1.0","openssl-1.1","opentimelineio","opentofu","openucc","openucx","openvkl","openzwave","opera-beta-ffmpeg-codecs","operator-sdk","opnplug-lv2","opnplug-standalone","opnplug-vst","optipng","opus","orc","orcania","oscpack","osinfo-db-tools","ospray","osquery","ostree","osv-scanner","ot-cryptid-clap","ot-cryptid-standalone","ot-cryptid-vst3","ot-keys-clap","ot-keys-standalone","ot-keys-vst3","ot-simian-clap","ot-simian-standalone","ot-simian-vst3","ot-urchin-clap","ot-urchin-standalone","ot-urchin-vst3","owl-lisp","owncloud-client","oxygen","oxygen5","oxyromon","p11-kit","p2pool","pack-cli","packagekit-qt5","packagekit-qt6","packer","packwiz-git","pacman","pacman-bintrans","pacman-bintrans-tools","pacman-git","pacoloco","pacquery","pacutils","padthv1-lv2","padthv1-standalone","pahole","palapeli","palp","pam","pam_mount","pam_wrapper","pamixer","pango","pangomm-2.48","pantheon-applications-menu","pantheon-calculator","pantheon-calendar","pantheon-camera","pantheon-files","pantheon-geoclue2-agent","pantheon-music","pantheon-photos","pantheon-polkit-agent","pantheon-print","pantheon-settings-daemon","pantheon-videos","paperkey","papilo","pappl","paprefs","pari","parley","partitionmanager","passt","patch","patchmatrix","pavucontrol","pax","pciutils","pcre","pcre2","pcsc-perl","pd","pd-lua","pd-sfizz","pdfcrack","pdnsd","peco","perf","performous","perl","perl-crypt-des","perl-file-fcntllock","perl-io-tty","perl-sub-prototype","perl-term-readkey","pesign","pgbouncer","pgpdump","phodav","phonon-qt5","phonon-qt5-vlc","phonon-qt6","phonon-qt6-vlc","php-igbinary","php-imagick","php-legacy-igbinary","php-legacy-imagick","php-legacy-redis","php-redis","picard","picmi","picocom","picom-git","pim-data-exporter","pim-sieve-editor","pimcommon","pinentry","pingu","pint","pipe-rename","pipectl","pipewire","pipewire-audio","pipewire-ffado","pipewire-jack","pipewire-jack-client","pipewire-libcamera","pipewire-pulse","pipewire-roc","pipewire-v4l2","pipewire-x11-bell","pipewire-zeroconf","pitivi","pixiewps","pixman","pkgconf","planarity","plank","plantri","plasma-activities","plasma-activities-stats","plasma-applet-window-buttons","plasma-browser-integration","plasma-desktop","plasma-disks","plasma-firewall","plasma-integration","plasma-nm","plasma-pa","plasma-pass","plasma-sdk","plasma-systemmonitor","plasma-thunderbolt","plasma-vault","plasma-welcome","plasma-workspace","plasma5-integration","plasma5support","plasmatube","playerctl","plfit","plumber","plymouth","plymouth-kcm","podman","podman-desktop","poedit","polari","polkit","polkit-kde-agent","polkit-qt5","polkit-qt6","polly-git","polymake","polyphone","pop-bin","pop-launcher","popeye","poppler","poppler-glib","poppler-qt5","poppler-qt6","popt","portaudio","portmidi","portsmf","posix","postfix","postfix-cdb","postfix-ldap","postfix-lmdb","postfix-mongodb","postfix-mysql","postfix-pcre","postfix-pgsql","postfix-sqlite","postgresql","postgresql-libs","potrace","power-profiles-daemon","powerdevil","powerline","powershell-bin","poxml","ppl","ppp","ppsspp","pqiv","premake","presage","primecount","primesieve","print-manager","prismlauncher","prison","processing","procinfo-ng","procps-ng","procs","profanity","profanity-gtk","proftpd","prometheus","prometheus-bird-exporter","prometheus-blackbox-exporter","prometheus-elasticsearch-exporter","prometheus-ipmi-exporter","prometheus-json-exporter","prometheus-memcached-exporter","prometheus-mysqld-exporter","prometheus-node-exporter","prometheus-nut-exporter","prometheus-postgres-exporter","prometheus-smartctl-exporter","prometheus-smokeping-prober","prometheus-snmp-exporter","prometheus-ssl-exporter","prometheus-systemd-exporter","prometheus-unbound-exporter","prometheus-varnish-exporter","promtail","protobuf","protobuf-21","protonmail-bridge","protonmail-bridge-core","proxychains-ng","proxytunnel","prrte","pt2-clone","ptyxis","pulseaudio-qt","pulumi","pup","purpose","puzzles","pv","pwgen","pwninit","pwru","pyside6","pythia8","python-aioquic","python-asyncpg","python-aubio","python-audit","python-autobahn","python-awscrt","python-axolotl-curve25519","python-blosc2","python-capng","python-cbor2","python-ciso8601","python-clarabel","python-cmsis-pack-manager","python-contourpy","python-coverage","python-cramjam","python-crc32c","python-crcmod","python-cvxopt","python-cvxpy","python-cwcwidth","python-cylp","python-cypari2","python-cysignals","python-cytoolz","python-datrie","python-dbus","python-dbus-fast","python-debugpy","python-ecos","python-evdev","python-falcon","python-fastbencode","python-fastnumbers","python-fastparquet","python-fpylll","python-gammu","python-gmpy2","python-gobject","python-gpgme","python-gssapi","python-igraph","python-iminuit","python-iwlib","python-jiter","python-johnnycanencrypt","python-json-stream-rs-tokenizer","python-jupymake","python-levenshtein","python-libcamera","python-libcst","python-llvmlite","python-lupa","python-lxc","python-markupsafe","python-materialyoucolor-git","python-miniupnpc","python-mitmproxy-rs","python-ml-dtypes","python-multidict","python-mupdf","python-nh3","python-numba","python-onnx","python-orjson","python-osmium","python-osqp","python-patiencediff","python-pendulum","python-pikepdf","python-pillow","python-pillowfight","python-pivy","python-pplpy","python-primecountpy","python-psutil","python-psycopg2","python-pyalsa","python-pyarrow","python-pybluez","python-pycapnp","python-pycosat","python-pycrdt","python-pycuda","python-pycups","python-pycurl","python-pydantic-core","python-pyerfa","python-pygame","python-pygit2","python-pykcs11","python-pyliblo","python-pylorcon2","python-pymongo","python-pymupdf","python-pynacl","python-pynormaliz","python-pyopencl","python-pyqt5-sip","python-pyqt6-3d","python-pyqt6-charts","python-pyqt6-datavisualization","python-pyqt6-networkauth","python-pyqt6-sip","python-pyqt6-webengine","python-pyrsistent","python-pyscipopt","python-pysequoia","python-pytables","python-pythia8","python-pywayland","python-pywlroots","python-qdldl","python-qrencode","python-rapidfuzz","python-rcssmin","python-reflink","python-regress","python-rjsmin","python-rpds-py","python-rtmidi","python-scipy","python-scrypt","python-scs","python-simplejson","python-sqlalchemy","python-sqlalchemy1.4","python-symengine","python-systemd","python-tiktoken","python-tlsh","python-tornado","python-tpm2-pytss","python-ulid-transform","python-urwid","python-uvloop","python-vigra","python-volume_key","python-watchfiles","python-webrtcvad","python-xapian","python-xkbcommon","python-xmlsec","python-y-py","python-yaml","python-yara","python-yarl","python-zita-audiotools","python-zita-jacktools","python-zope-interface","python-zope-proxy","python-zope-security","python-zopfli","qalculate-gtk","qalculate-qt","qastools","qbe","qbittorrent","qbittorrent-enhanced","qbittorrent-enhanced-qt5","qbittorrent-nox","qbittorrent-qt5","qbs","qca-qt5","qca-qt6","qcachegrind","qcoro-qt5","qcoro-qt6","qd","qemu-audio-alsa","qemu-audio-dbus","qemu-audio-jack","qemu-audio-oss","qemu-audio-pa","qemu-audio-pipewire","qemu-audio-sdl","qemu-audio-spice","qemu-block-curl","qemu-block-dmg","qemu-block-gluster","qemu-block-gluster-git","qemu-block-iscsi","qemu-block-iscsi-git","qemu-block-nfs","qemu-block-ssh","qemu-chardev-baum","qemu-chardev-spice","qemu-common","qemu-guest-agent","qemu-hw-display-qxl","qemu-hw-display-virtio-gpu","qemu-hw-display-virtio-gpu-gl","qemu-hw-usb-host","qemu-hw-usb-redirect","qemu-hw-usb-smartcard","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-tools","qemu-ui-curses","qemu-ui-dbus","qemu-ui-egl-headless","qemu-ui-gtk","qemu-ui-opengl","qemu-ui-sdl","qemu-ui-spice-app","qemu-ui-spice-core","qemu-user","qemu-vhost-user-gpu","qgpgme-qt6","qhull","qjackctl","qmc2","qmidiarp-lv2","qmidiarp-standalone","qmidictl","qmidinet","qmidiroute","qmlkonsole","qpdf","qprint","qpwgraph","qqc2-breeze-style","qqc2-desktop-style","qqwing","qrcodegen-cmake","qrcodegencpp-cmake","qrupdate","qsampler","qsopt-ex","qsynth","qt-sudo","qt5ct","qt6-3d","qt6-5compat","qt6-base","qt6-charts","qt6-connectivity","qt6-datavis3d","qt6-declarative","qt6-graphs","qt6-grpc","qt6-httpserver","qt6-imageformats","qt6-languageserver","qt6-location","qt6-lottie","qt6-multimedia","qt6-multimedia-ffmpeg","qt6-multimedia-gstreamer","qt6-networkauth","qt6-positioning","qt6-quick3d","qt6-quick3dphysics","qt6-quickeffectmaker","qt6-quicktimeline","qt6-remoteobjects","qt6-scxml","qt6-sensors","qt6-serialbus","qt6-serialport","qt6-shadertools","qt6-speech","qt6-svg","qt6-tools","qt6-virtualkeyboard","qt6-wayland","qt6-webchannel","qt6-webengine","qt6-websockets","qt6-webview","qt6ct","qtcreator","qtile","qtkeychain-qt5","qtkeychain-qt6","qtractor","quota-tools","qxgedit","qxlsx-qt5","qxlsx-qt6","qxmpp-qt5","qxmpp-qt6","r","r2ghidra","r8168-dkms","r8168-lts","radamsa","radare2","radeon-profile-git","radeontop","radvd","rage-encryption","rankwidth","raptor","rasqal","rauc","rav1e","rbutil","rbw","rccl","rclone","rclone-git","rcs","rdfind","rdma-core","readline","readstat","reapack","reaper","reaver","recastnavigation","recode","redland","redland-storage-mysql","redland-storage-postgresql","redland-storage-sqlite","redland-storage-virtuoso","redshift","redshift-minimal","regexxer","rekor","release-cli","remake","remmina","reprepro","repro-env","repro-get","reproc","reptyr","restic","restic-git","retro-gtk","retroarch","retry","retsnoop","rev-plugins","revive","rgbds","rhash","rhonabwy","rhythmbox","rio","river","rizin","rkcommon","rkward","rlwrap","rnnoise","roc-toolkit","rocalution","rocblas","rocfft","rocm-dbgapi","rocm-gdb","rocm-opencl-runtime","rocm-smi-lib","rocminfo","rocrand","rocs","rocsolver","rocsparse","roctracer","rofi-emoji","rofi-wayland","rog-control-center","rootlesskit","ropr","rosegarden","roswell","rpcbind","rpcsvc-proto","rpi-imager","rq","rqbit","rqbit-desktop","rqlite","rshijack","rsibreak","rsop","rspamd","rssguard","rssguard-lite","rt-tests","rtaudio","rtl-sdr","rtl-sdr-git","rtmidi","rtmpdump","rtosc","rubberband","rubberband-ladspa","rubberband-lv2","rubberband-vamp","rubiks","ruby","ruby-erb","ruby-pg","ruby-racc","ruby-rugged","ruby-thin","ruff","run-parts","runescape-launcher","rust","rustc-demangle","rustic","rustow-git","rygel","rz-ghidra","s2n-tls","sad","sagemath","samplv1-lv2","samplv1-standalone","sane","sane-airscan","satty","sbc","sbsigntools","sc3-plugins","scaleway-cli","scanmem","scc","sccache","schedtool","scip","scponly","scrcpy","scrypt","sddm","sddm-git","sddm-kcm","sdl12-compat-git","sdl2","sdparm","seadrive-daemon","seahorse-nautilus","sed","selene","senpai","sensors-applet","sentry-native","sequoia-chameleon-gnupg","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","serd","serie","setbfree-lv2","setbfree-standalone","sfizz-lib","sfizz-lv2","sfizz-standalone","sfizz-vst3","sfsexp","sg-323-clap","sg-323-vst3","sg3_utils","sh4d0wup","shaderc","shadow","shadowsocks-rust","shadowsocks-v2ray-plugin","shared-mime-info","shared_meataxe","sharutils","sheldon","sherlock.lv2","shfmt","shfs-utils","shiboken6","shine","shntool","shuffle","signal-desktop","signify","signon-kwallet-extension","signon-plugin-oauth2","signon-ui","signond","sile","simple-scan","singular","sip4","sipcalc","sirocco","skaffold","skanlite","skanpage","skate","skladnik","slack-electron","slack-term","sleuthkit","slirp4netns","slowhttptest","slurm-llnl","smb4k","smplayer","snappy","snapshot","snd","sniffnet","soapyaudio","socat","sofia-sip","soft-serve","softmaker-office-2024-bin","soju","solid","songrec","sonic-visualiser","sonivox","sonnet","sonobus","sonyheadphonesclient-bin","soplex","sops","sorcer","sord","sound-gambit","sowing","spandsp","spawn-fcgi","spectacle","spectmorph-clap","spectmorph-lv2","spectmorph-tools","spectmorph-vst","speedcrunch","spglib","spin","spire-agent","spire-server","spot-client","spytrap-adb","sqlc","sqlite","sqlite-analyzer","sqlite-tcl","squashfs-tools","squashfuse","sratom","srrdb-terminal-client","srs-state-threads","ssh-openpgp-auth","ssh-tpm-agent","sshd-openpgp-auth","sshx","sslh","sslscan","sslsplit","ssr","stalwart-cli","stalwart-mail","stalwart-mail-old-upgrade","starship","startdde","startup-notification","staticcheck","stdoutisatty","steam","stellarsolver","step","step-ca","step-cli","stern","stk","stlink","stochas-clap","stochas-standalone","stochas-vst3","strawberry","strawberry-full-git","strawberry-git","strike","stumpwm","subversion","sudo","sudo-git","suil","suitesparse","suitesparse-graphblas","sundials","supercollider","surge-xt-clap","surge-xt-standalone","surge-xt-vst3","sushi","suyu-dev-qt6-git","svgpart","svt-av1","svt-av1-git","svt-hevc","svt-vp9","sway-git","swaybg-git","swayidle-git","swaylock-git","sweeper","swell-foop","swh-plugins","swig","switchboard","switchboard-plug-about","switchboard-plug-applications","switchboard-plug-bluetooth","switchboard-plug-datetime","switchboard-plug-desktop","switchboard-plug-display","switchboard-plug-keyboard","switchboard-plug-locale","switchboard-plug-mouse-touchpad","switchboard-plug-network","switchboard-plug-notifications","switchboard-plug-online-accounts","switchboard-plug-parental-controls","switchboard-plug-power","switchboard-plug-printers","switchboard-plug-security-privacy","switchboard-plug-sharing","switchboard-plug-sound","switchboard-plug-user-accounts","switchboard-plug-wacom","sws","swww","symengine","symlinks","symmetrica","sympol","sympow","syncthing","syncthing-discosrv","syncthing-relaysrv","syndication","synology-drive","syntax-highlighting","synthv1-lv2","synthv1-standalone","sysfsutils","syslog-ng","sysprof","system-config-printer","system76-firmware","system76-scheduler","systemd-libs","systemd-libs-git","systemdgenie","systemfd","systemsettings","sz","t1utils","tabiew","tachyon","taglib","taglib1","tailscale","talhelper","talkfilters","talloc","talosctl","tangler","tanka","tar","tbtools","tcc","tcpdump","tcplay","tcsh","tdb","tea","teams","teamspeak3-server","tecla","tekton-cli","telegraf","telepathy-glib","telepathy-idle","telepathy-logger","telepathy-mission-control","telly-skout","tempo","termshark","terraform","terragrunt","testu01","texlab","texlive-bin","texmaker","text-engine","tflint","tgpt","thc-ipv6","threadweaver","thunderbird","tidy","time","timescaledb-tune","timidity++","tiny","tinycdb","tinycompress","tinyproxy","tinyssh","tinyxml2","tio","tlsh","tmon","tnftp","tokodon","tokodon-git","tomlplusplus","toolame","topcom","tor","totem-pl-parser","tpm2-pkcs11","tpm2-tools","trace-cmd","traceroute","tracker3","tracker3-miners","tracktion-waveform","tradingview","traefik","tre","tree","tree-sitter-git","trivy","tropy-bin","trurl","tslib","ttfautohint","tty-clock","tuba","tup","turbo","turbostat","twolame","typst","typst-lsp","uavs3d-git","ucl","udisks2","udisks2-btrfs","udisks2-lvm2","ueberzugpp","uhttpmock","ulfius","umbrello","umoci","umu-launcher","umurmur","unarj","unbound","unibilium","unicorn","unixodbc","unrar","unrar-free","unrtf","up","updlockfiles","upower","upterm","usbguard","usbip","usbutils","util-linux","util-linux-libs","uutils-coreutils","uv","uwsgi","uwsgi-plugin-cgi","uwsgi-plugin-lua51","uwsgi-plugin-mono","uwsgi-plugin-php","uwsgi-plugin-php-legacy","uwsgi-plugin-psgi","uwsgi-plugin-pypy","uwsgi-plugin-python","uwsgi-plugin-rack","uwsgi-plugin-webdav","uwsgi-plugin-zabbix","uwufetch","v2ray","vala","valabind","vale","valgrind","vals","vamp-plugin-sdk","vaporizer2-clap","vaporizer2-lv2","vaporizer2-standalone","vaporizer2-vst3","vapoursynth-plugin-bestsource","vapoursynth-plugin-deblock","vault","vaultwarden","vcpkg","vde2","vector-blf","vegeta","veracrypt","verdict","vhs","vid.stab","vifm","vigra","vim","vimiv","vinagre","vinegar","vinegar-git","virtiofsd","virtualbox","virtualbox-guest-utils","virtualbox-guest-utils-nox","virtualbox-kvm","visitors","visual-studio-code-bin","visual-studio-code-insiders-bin","vital-synth","vivaldi-ffmpeg-codecs","vlang-git","vlc","vlc-luajit","vm.lv2","vmpk","vo-amrwbenc","volta","volume_key","vpnc","vscodium","vscodium-git","vsftpd","vte-common","vte3","vte4","vtk","vulkan-icd-loader","vulkan-intel","vulkan-mesa-layers","vulkan-nouveau","vulkan-radeon","vulkan-swrast","vulkan-virtio","vultr-cli","vvave","wabt","wacomtablet","wakatime","wasm-component-ld","watchexec","wavemon","wavpack","waybar","wayland","wayland-chromium","wayland-git","wayland-utils","waylock","wayvnc","wcslib","webhook","webkit2gtk","webkit2gtk-4.1","webkit2gtk-imgpaste","webkitgtk-6.0","websocat","weston","wezterm","wgcf","wget","which","whisper.cpp","whisper.cpp-clblas","whisper.cpp-cublas","whisper.cpp-openvino","whowatch","wiiuse","wildmidi","winbox","wireguard-vanity-address","wireplumber","wireproxy","wireshark-cli","wireshark-qt","wiresmith","wishbone-utils","wit","wl-clip-persist","wl-mirror","wldash","wlr-randr","wlroots-git","wluma","wob","wofi","wolf-shaper-clap","wolf-shaper-dssi","wolf-shaper-lv2","wolf-shaper-standalone","wolf-shaper-vst","wolf-shaper-vst3","wolfssl","woodpecker-agent","woodpecker-cli","woodpecker-server","worker-build","workerd","wpa_supplicant","wpewebkit","wrangler","wstunnel","wv","wxwidgets-common","wxwidgets-gtk3","wxwidgets-qt5","x264","x42-plugins-lv2","x42-plugins-standalone","x86_energy_perf_policy","xapian-core","xavs2","xaw3d","xcb-util","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-renderutil","xcb-util-wm","xcp","xdg-dbus-proxy","xdg-desktop-portal","xdg-desktop-portal-cosmic","xdg-desktop-portal-dde","xdg-desktop-portal-gnome","xdg-desktop-portal-gtk","xdg-desktop-portal-hyprland","xdg-desktop-portal-kde","xdg-desktop-portal-wlr","xemu-git","xevd","xeve","xf86-input-elographics","xf86-input-evdev","xf86-input-libinput","xf86-input-libinput-git","xf86-input-void","xf86-input-wacom","xf86-video-amdgpu","xf86-video-ati","xf86-video-dummy","xf86-video-fbdev","xf86-video-intel","xf86-video-nouveau","xf86-video-qxl","xf86-video-sisusb","xf86-video-vesa","xf86-video-vmware","xf86-video-voodoo","xfsdump","xjadeo","xmlsec","xmonad-dbus","xmonad-utils","xmonk.lv2","xmrig","xmrig-donateless","xorg-appres","xorg-bdftopcf","xorg-font-util","xorg-fonttosfnt","xorg-iceauth","xorg-mkfontscale","xorg-server","xorg-server-xephyr","xorg-server-xnest","xorg-server-xvfb","xorg-sessreg","xorg-x11perf","xorg-xauth","xorg-xbiff","xorg-xclipboard","xorg-xconsole","xorg-xdm","xorg-xedit","xorg-xev","xorg-xeyes","xorg-xfontsel","xorg-xkbcomp","xorg-xkbutils","xorg-xload","xorg-xlsfonts","xorg-xman","xorg-xmessage","xorg-xpr","xorg-xprop","xorg-xrdb","xorg-xrefresh","xorg-xwayland","xorg-xwd","xorgxrdp","xscreensaver","xsd","xss-lock","xsv","xtmsplit","xtrlock","xvidcore","xvkbd","xwax","xwaylandvideobridge","xxhash","yabridge","yabridgectl","yaegi","yajl","yakuake","yamdi","yaml-cpp","yamlfmt","yara","yasm","yder","ydotool","yggdrasil","yoshimi-lv2","yoshimi-standalone","yubico-piv-tool","yubikey-touch-detector","yyjson","yyjson-git","z3","zam-plugins-clap","zam-plugins-ladspa","zam-plugins-lv2","zam-plugins-standalone","zam-plugins-vst","zam-plugins-vst3","zanshin","zarchive","zbus_xmlgen","zeal","zeal-git","zed","zellij","zenity","zeromq","zfp","zh-autoconvert","zimg","ziproxy","zita-ajbridge","zita-alsa-pcmi","zita-at1","zita-convolver","zita-jclient","zita-njbridge","zita-resampler","zix","zk","zlib","zlib-ng","zmap","zopfli","zoxide","zps","zrepl-git","zsa-wally-cli","zsh-theme-powerlevel10k-git","zstd","zsync","zxing-cpp","zycore-c","zynaddsubfx","zzuf"],"optional_for":["tzdata"],"conflicts_with":[],"replaces":[],"download_size":"9.88 MiB","installed_size":"47.64 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"c87c0e71fd03472918dc052b5833d5568ab62866e8259d28ab453ffc4bcf8291","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":10359930,"installed_size_bytes":49954160,"build_date_epoch":1722942052},{"repository":"core","name":"glibc-locales","version":"2.40+r16+gaa533d58ff-2","description":"Pregenerated locales for GNU C Library","architecture":"x86_64","url":"https://www.gnu.org/software/libc","licenses":["GPL-2.0-or-later","LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc=2.40+r16+gaa533d58ff"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"11.68 MiB","installed_size":"220.94 MiB","packager":"Frederik Schwan ","build_date":"Tue 06 Aug 2024 04:00:52 AM +08","md5_sum":null,"sha_256_sum":"7d6e57f5a634f5002ced415fef3435efe7b91855cc6ab9f9b4c620f041eb2170","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":12247367,"installed_size_bytes":231672381,"build_date_epoch":1722942052},{"repository":"core","name":"gmp","version":"6.3.0-2","description":"A free library for arbitrary precision arithmetic","architecture":"x86_64","url":"https://gmplib.org/","licenses":["GPL-2.0-or-later","LGPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["gcc-libs","glibc"],"required_by":["4ti2","afpfs-ng","bigloo","blender","cddlib","cgal","clasp-cl-git","cln","coreutils","coreutils-hybrid-git","cryptominisat","dnsmasq","e-antic","ecl","emacs","emacs-nativecomp","emacs-nox","emacs-wayland","epiphany","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","flint","fplll","gambas3-gb-gmp","gap","gfan","ghc-libs","giac","givaro","glpk","gmp-ecm","gnuradio","gnustep-base","gnutls","guile","guile1.8","guile2.2","haskell-alsa-core","haskell-alsa-mixer","haskell-hosc","haskell-microspec","haskell-tidal","haskell-tidal-link","igraph","iml","jellyfin-ffmpeg","john","kcalc","latte-integrale","lean4-git","lib32-gmp","libisl","libktorrent","libmpc","libpoly","libqalculate","libtomcrypt","lidia","looking-glass-git","lrs","maude","maxima-sbcl","miktex","minetest-git","minetest-server-git","mlton","mpfi","mpfr","msolve","nettle","nftables","normaliz","ntl","ocaml-zarith","openpgp-ca","openpgp-ca-restd","openscad","papilo","pari","polymake","polyml","ppl","python-fpylll","python-gmpy2","python-johnnycanencrypt","python-pplpy","python-pycryptodome","python-pysequoia","python-symengine","qsopt-ex","rocm-gdb","ruby","ruby2.7","sagemath","scip","sequoia-keyring-linter","sequoia-sop","sequoia-sq","sequoia-sqv","sequoia-wot","sh4d0wup","singular","snd","soplex","ssh-openpgp-auth","sshd-openpgp-auth","stress-ng","strongswan","suitesparse","symengine","sympol","texlive-bin","topcom","xmap-git","xmonad-utils","yices","zmap"],"optional_for":["crystal"],"conflicts_with":[],"replaces":[],"download_size":"442.87 KiB","installed_size":"1036.67 KiB","packager":"Antonio Rojas ","build_date":"Wed 17 Apr 2024 06:01:38 PM +08","md5_sum":null,"sha_256_sum":"286c23ed38d46f803a19d06ca46dc67d96805f7805f7b9818cf9c0ca65a69326","signatures":"7A4E76095D8A52E4","extended_data":null,"download_size_bytes":453498,"installed_size_bytes":1061550,"build_date_epoch":1713402098},{"repository":"core","name":"gnupg","version":"2.4.5-4","description":"Complete and free implementation of the OpenPGP standard","architecture":"x86_64","url":"https://www.gnupg.org/","licenses":["BSD-2-Clause","BSD-3-Clause","BSD-4-Clause","CC0-1.0","GPL-2.0-or-later","GPL-3.0-or-later","LGPL-2.1-or-later","LGPL-3.0-or-later OR GPL-2.0-or-later","MIT","Unicode-TOU"],"groups":[],"provides":[],"depends_on":["glibc","gnutls","libgcrypt","libgpg-error","libksba","libldap","libusb","pinentry","sh","sqlite","tpm2-tss","zlib","bzip2","libbz2.so=1.0-64","libassuan","libassuan.so=9-64","npth","libnpth.so=0-64","readline","libreadline.so=8-64"],"optional_deps":[{"name":"pcsclite","description":"for using scdaemon not with the gnupg internal card driver"}],"required_by":["archlinux-repro","browserpass","debian-archive-keyring","debian-ports-archive-keyring","distrobuilder","duplicity","gpgit","gpgme","grub2-signing-extension","jetring","nitrocli","pacman","pacman-git","pass","perl-gnupg-interface","playonlinux","python-gnupg","python-gnupginterface","python-ipalib","repose","thunderbird","tomb-git","torbrowser-launcher","ubuntu-keyring","visual-studio-code-bin","visual-studio-code-insiders-bin"],"optional_for":["archiso","archiso-git","debootstrap","diffoscope","in-toto","keepass-plugin-keeagent","mkinitcpio-archiso","mkosi","mkosi-git","notmuch","s3cmd","yadm","yubikey-touch-detector"],"conflicts_with":[],"replaces":[],"download_size":"2.69 MiB","installed_size":"9.69 MiB","packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:31:38 AM +08","md5_sum":null,"sha_256_sum":"36a028db83e02c22de6ec8d32608ec08d88ca9b4a60edfeac7656b81d3114052","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":2820669,"installed_size_bytes":10160701,"build_date_epoch":1721305898},{"repository":"core","name":"gnutls","version":"3.8.7-1","description":"A library which provides a secure layer over a reliable transport layer","architecture":"x86_64","url":"https://www.gnutls.org/","licenses":["GPL-3.0-or-later AND LGPL-2.1-or-later"],"groups":[],"provides":[],"depends_on":["glibc","gcc-libs","gmp","libtasn1","zlib","nettle","libp11-kit","libidn2","zstd","libidn2.so=0-64","libunistring","brotli"],"optional_deps":[{"name":"tpm2-tss","description":"support for TPM2 wrapped keys"}],"required_by":["apt","aria2","ario","chrony","claws-mail","connman","connman-git","criu","cups","dnsdist","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","emby-ffmpeg","ffmpeg","ffmpeg-full","ffmpeg-obs","ffmpeg4.4","fwupd","gcr-4","glewlwyd","glib-networking","gloox","gnome-control-center","gnupg","gnustep-base","gsasl","gtk-vnc","gwenhywfar","haskell-gnutls","hefur","jami-daemon","jellyfin-ffmpeg","knot","knot-resolver","lftp","lib32-gnutls","libcamera","libcups","libcurl-gnutls","libetpan","libfilezilla","libgadu","libinfinity","libjcat","libmicrohttpd","libnbd","libnice","libpamac-aur","libpamac-flatpak","librelp","librtmp0","libvirt","libvncserver","libzip","loudmouth","mailutils","mpop","nbd","neatvnc","neomutt","nullmailer","openconnect","opendht","pamac-aur","pamac-flatpak","passim","pkcs11-helper","powerdns","ptyxis","qemu-arch-extra-git","qemu-git","qemu-headless-arch-extra-git","qemu-headless-git","qemu-img","qemu-pr-helper","qemu-system-aarch64","qemu-system-alpha","qemu-system-arm","qemu-system-avr","qemu-system-cris","qemu-system-hppa","qemu-system-loongarch64","qemu-system-m68k","qemu-system-microblaze","qemu-system-mips","qemu-system-nios2","qemu-system-or1k","qemu-system-ppc","qemu-system-riscv","qemu-system-rx","qemu-system-s390x","qemu-system-sh4","qemu-system-sparc","qemu-system-tricore","qemu-system-x86","qemu-system-xtensa","qemu-user","qpdf","radcli","rhonabwy","rpi-imager","rtmpdump","samba","sane-airscan","smbclient","squid","swtpm","task","taskd","tigervnc","ulfius","valent-git","vlc","vlc-git","vlc-luajit","vte3","vte4","weechat","wget","wget2","wine-staging-wow64","wine-staging-wow64-git","wine-wow64","wine-wow64-git","wireshark-cli","xfce4-mailwatch-plugin","xmlsec","yaz","zeromq"],"optional_for":["anope","inspircd","proton-ge-custom","rsyslog","systemd","wine","wine-ge-custom","wine-stable","wine-staging","wine-tkg-fsync-git","wine-tkg-staging-fsync-git"],"conflicts_with":[],"replaces":[],"download_size":"2.74 MiB","installed_size":"5.54 MiB","packager":"Andreas Radke ","build_date":"Fri 16 Aug 2024 02:36:43 AM +08","md5_sum":null,"sha_256_sum":"d165671649ec7a3dde47f8c5fd2273f46498edecd69c11c3ebd994f005c7a302","signatures":"94657AB20F2A092B","extended_data":null,"download_size_bytes":2873098,"installed_size_bytes":5809111,"build_date_epoch":1723801003},{"repository":"core","name":"gpgme","version":"1.23.2-6","description":"A C wrapper library for GnuPG","architecture":"x86_64","url":"https://www.gnupg.org/related_software/gpgme/","licenses":["GPL-2.0-or-later","LGPL-2.0-or-later","LGPL-2.1-or-later","MIT"],"groups":[],"provides":["libgpgme.so=11-64","libgpgmepp.so=6-64"],"depends_on":["gcc-libs","glib2","glibc","libassuan","libgpg-error","gnupg>=2"],"required_by":["akonadi-calendar","almanah","balsa","claws-mail","cri-o","dino","dino-git","firefox-extension-mailvelope","flatpak","fwknop","geany-plugins","gitg","gmime3","gpg-crypter","gpg-tui","himalaya","isoimagewriter","kdepim-addons","kget","kleopatra","kmail","kmymoney","kwallet","kwallet5","libcryptui","libdnf","libjcat","libkleo","libreoffice-fresh","libreoffice-still","librepo","mailcommon","mcabber","merkuro","messagelib","mimetreeparser","mutt","neomutt","ostree","pacman","pacman-git","plasma-pass","podman","poppler","profanity","profanity-gtk","python-gpgme","qgpgme-qt6","reprepro","ripasso","ruby-gpgme","samba","seahorse","seahorse-nautilus","skopeo","volume_key","wget2"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"477.27 KiB","installed_size":"1487.32 KiB","packager":"David Runge ","build_date":"Thu 18 Jul 2024 05:26:09 AM +08","md5_sum":null,"sha_256_sum":"c9e4bb089881eb1ab1c4d73b2f42ebca4878126603e6e730d30277e285d06e68","signatures":"9B7A287D9A2EC608","extended_data":null,"download_size_bytes":488724,"installed_size_bytes":1523015,"build_date_epoch":1721305569},{"repository":"core","name":"gpm","version":"1.20.7.r38.ge82d1a6-6","description":"A mouse server for the console and xterm","architecture":"x86_64","url":"https://www.nico.schottelius.org/software/gpm/","licenses":["GPL"],"groups":[],"provides":["libgpm.so=2-64"],"depends_on":["bash","procps-ng"],"required_by":["aalib","brltty","dosemu","elinks","emacs","emacs-nativecomp","emacs-ng","emacs-ng-git","emacs-nox","emacs-wayland","gvim","lib32-gpm","libnewt","links","mc","notcurses","vim","w3m"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"135.74 KiB","installed_size":"393.39 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:19:03 AM +08","md5_sum":null,"sha_256_sum":"95b97f61aacc075e85465a7d5e1c99d1b249b4eba63081a170482cdc8791f799","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":138997,"installed_size_bytes":402831,"build_date_epoch":1721812743},{"repository":"core","name":"grep","version":"3.11-1","description":"A string search utility","architecture":"x86_64","url":"https://www.gnu.org/software/grep/","licenses":["GPL3"],"groups":[],"provides":[],"depends_on":["glibc","pcre2"],"required_by":["aconfmgr-git","ani-cli","arch-install-scripts","base","base-devel","bashtop","bootiso","checksec","devtools","dracut","easy-rsa","git","grml-zsh-config","gsocket","gzip","keycloak","mkinitcpio","pacman","pacman-git","posix","quickemu","redis","tdrop","themix-export-spotify-git","themix-icons-gnome-colors-git","themix-theme-materia-git","themix-theme-oomox-git","ugit","usbctl","valkey","wikiman","ytfzf-git"],"optional_for":["pciutils"],"conflicts_with":[],"replaces":[],"download_size":"233.57 KiB","installed_size":"889.96 KiB","packager":"Sébastien Luttringer ","build_date":"Mon 15 May 2023 07:06:38 AM +08","md5_sum":"838cdf1eac9d7734eaa113e8248a4e88","sha_256_sum":"aeb2d51c03190e24d4c021b43bbdb41aef69a28dff314743aade26e288e07a48","signatures":"E5BB298470AD4E41","extended_data":null,"download_size_bytes":239175,"installed_size_bytes":911319,"build_date_epoch":1684159598},{"repository":"core","name":"groff","version":"1.23.0-7","description":"GNU troff text-formatting system","architecture":"x86_64","url":"https://www.gnu.org/software/groff/groff.html","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["perl","gcc-libs"],"optional_deps":[{"name":"netpbm","description":"for use together with man -H command interaction in browsers"},{"name":"psutils","description":"for use together with man -H command interaction in browsers"},{"name":"libxaw","description":"for gxditview"},{"name":"perl-file-homedir","description":"for use with glilypond"}],"required_by":["base-devel","man-db"],"optional_for":["cgit","cgit-aurweb","haskell-pandoc","linuxdoc-tools","pandoc-bin"],"conflicts_with":[],"replaces":[],"download_size":"2.26 MiB","installed_size":"8.84 MiB","packager":"Tobias Powalowski ","build_date":"Wed 28 Aug 2024 04:19:27 PM +08","md5_sum":null,"sha_256_sum":"374fef7746a4d372ef2da8773769ee6c669382ac79bd73aedc8bafebaf366ffe","signatures":"771DF6627EDF681F","extended_data":null,"download_size_bytes":2369781,"installed_size_bytes":9269411,"build_date_epoch":1724887167},{"repository":"core","name":"grub","version":"2:2.12-2","description":"GNU GRand Unified Bootloader (2)","architecture":"x86_64","url":"https://www.gnu.org/software/grub/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"depends_on":["sh","xz","gettext","device-mapper"],"optional_deps":[{"name":"freetype2","description":"For grub-mkfont usage"},{"name":"fuse3","description":"For grub-mount usage"},{"name":"dosfstools","description":"For grub-mkrescue FAT FS and EFI support"},{"name":"lzop","description":"For grub-mkrescue LZO support"},{"name":"efibootmgr","description":"For grub-install EFI support"},{"name":"libisoburn","description":"Provides xorriso for generating grub rescue iso using grub-mkrescue"},{"name":"os-prober","description":"To detect other OSes when generating grub.cfg in BIOS systems"},{"name":"mtools","description":"For grub-mkrescue FAT FS support"}],"required_by":["breeze-grub","dracula-grub-theme-git","grub-btrfs","grub-customizer","grub-theme-stylish-color-1080p-git","grub-theme-stylish-color-2k-git","grub-theme-stylish-color-4k-git","grub-theme-stylish-color-ultrawide-git","grub-theme-stylish-color-ultrawide2k-git","grub-theme-stylish-white-1080p-git","grub-theme-stylish-white-2k-git","grub-theme-stylish-white-4k-git","grub-theme-stylish-white-ultrawide-git","grub-theme-stylish-white-ultrawide2k-git","grub-theme-stylish-whitesur-1080p-git","grub-theme-stylish-whitesur-2k-git","grub-theme-stylish-whitesur-4k-git","grub-theme-stylish-whitesur-ultrawide-git","grub-theme-stylish-whitesur-ultrawide2k-git","grub-theme-tela-color-1080p-git","grub-theme-tela-color-2k-git","grub-theme-tela-color-4k-git","grub-theme-tela-color-ultrawide-git","grub-theme-tela-color-ultrawide2k-git","grub-theme-tela-white-1080p-git","grub-theme-tela-white-2k-git","grub-theme-tela-white-4k-git","grub-theme-tela-white-ultrawide-git","grub-theme-tela-white-ultrawide2k-git","grub-theme-tela-whitesur-1080p-git","grub-theme-tela-whitesur-2k-git","grub-theme-tela-whitesur-4k-git","grub-theme-tela-whitesur-ultrawide-git","grub-theme-tela-whitesur-ultrawide2k-git","grub-theme-vimix","grub-theme-vimix-color-1080p-git","grub-theme-vimix-color-2k-git","grub-theme-vimix-color-4k-git","grub-theme-vimix-color-ultrawide-git","grub-theme-vimix-color-ultrawide2k-git","grub-theme-vimix-white-1080p-git","grub-theme-vimix-white-2k-git","grub-theme-vimix-white-4k-git","grub-theme-vimix-white-ultrawide-git","grub-theme-vimix-white-ultrawide2k-git","grub-theme-vimix-whitesur-1080p-git","grub-theme-vimix-whitesur-2k-git","grub-theme-vimix-whitesur-4k-git","grub-theme-vimix-whitesur-ultrawide-git","grub-theme-vimix-whitesur-ultrawide2k-git","grub-theme-whitesur-color-1080p-git","grub-theme-whitesur-color-2k-git","grub-theme-whitesur-color-4k-git","grub-theme-whitesur-white-1080p-git","grub-theme-whitesur-white-2k-git","grub-theme-whitesur-white-4k-git","grub-theme-whitesur-whitesur-1080p-git","grub-theme-whitesur-whitesur-2k-git","grub-theme-whitesur-whitesur-4k-git","grub2-signing-extension","libguestfs","penguins-eggs","update-grub","woeusb","woeusb-ng"],"optional_for":["archiso","archiso-git","memtest86-efi","mkosi-git","rauc"],"conflicts_with":["grub-common","grub-bios","grub-emu","grub-efi-x86_64","grub-legacy"],"replaces":["grub-common","grub-bios","grub-emu","grub-efi-x86_64"],"download_size":"6.84 MiB","installed_size":"33.67 MiB","packager":"Christian Hesse ","build_date":"Sun 17 Mar 2024 03:09:18 AM +08","md5_sum":"39513e40e6eb9647f8b34a61a9c84d64","sha_256_sum":"2b751fb81000bb31802939a571e10aa165c88988efdc82dc1bfcbf26309be949","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":7172259,"installed_size_bytes":35305553,"build_date_epoch":1710670158},{"repository":"core","name":"gssproxy","version":"0.9.2-1","description":"GSSAPI Proxy","architecture":"x86_64","url":"https://github.com/gssapi/gssproxy","licenses":["custom: MIT"],"groups":[],"provides":[],"depends_on":["libverto-module-base","popt","ding-libs","systemd-libs","krb5","glibc"],"required_by":["nfs-utils"],"optional_for":[],"conflicts_with":[],"replaces":[],"download_size":"96.91 KiB","installed_size":"250.52 KiB","packager":"Andreas Radke ","build_date":"Fri 20 Oct 2023 03:19:23 AM +08","md5_sum":"e39782f173878afa516f65fad4927553","sha_256_sum":"77b87d1b00e33b3550e780b8a137422240e8b2575166fbf7937efa3c36adae05","signatures":"94657AB20F2A092B","extended_data":null,"download_size_bytes":99235,"installed_size_bytes":256532,"build_date_epoch":1697797163},{"repository":"core","name":"guile","version":"3.0.10-1","description":"Portable, embeddable Scheme implementation written in C","architecture":"x86_64","url":"https://www.gnu.org/software/guile/","licenses":["GPL"],"groups":[],"provides":[],"depends_on":["gmp","ncurses","libunistring","gc","libffi","libxcrypt"],"required_by":["aarch64-linux-gnu-gdb","aisleriot","arm-none-eabi-gdb","autogen","avr-gdb","crash","gdb","gdb-common","gnucash","lm32-elf-gdb","make","or1k-elf-gdb","ppc64le-elf-gdb","remake","riscv32-elf-gdb","riscv64-elf-gdb","riscv64-linux-gnu-gdb","rocm-gdb","sh2-elf-gdb","slib","xbindkeys","zrythm"],"optional_for":["graphviz","weechat"],"conflicts_with":[],"replaces":[],"download_size":"8.31 MiB","installed_size":"54.73 MiB","packager":"Frederik Schwan ","build_date":"Mon 24 Jun 2024 04:16:00 PM +08","md5_sum":null,"sha_256_sum":"bf4d1b474045a88c7ad97b1ce56e8dd5786e5a10de02a8d33dc8f041edc8d01d","signatures":"9D4C5AA15426DA0A","extended_data":null,"download_size_bytes":8713666,"installed_size_bytes":57388564,"build_date_epoch":1719270960},{"repository":"core","name":"gzip","version":"1.13-4","description":"GNU compression utility","architecture":"x86_64","url":"https://www.gnu.org/software/gzip/","licenses":["GPL-3.0-or-later"],"groups":[],"provides":[],"depends_on":["glibc","bash","coreutils","sed","grep"],"optional_deps":[{"name":"less","description":"zless support"},{"name":"util-linux","description":"zmore support"},{"name":"diffutils","description":"zdiff/zcmp support"}],"required_by":["amavisd-new","arch-wiki-lite","base","base-devel","clonezilla","engrampa","hwdetect","logrotate","nethack","posix-xsi","quilt","texinfo"],"optional_for":["atool","binwalk","cgit","cgit-aurweb","diffoscope","dracut","man-db","mkinitcpio","xarchiver","xarchiver-gtk2"],"conflicts_with":[],"replaces":[],"download_size":"82.37 KiB","installed_size":"155.36 KiB","packager":"Christian Hesse ","build_date":"Wed 24 Jul 2024 02:42:51 PM +08","md5_sum":null,"sha_256_sum":"0a9df51cd89fe14b9d40e0b5bc1c13e505f38cbe65277311e6995f45a4f19b1a","signatures":"6D42BDD116E0068F","extended_data":null,"download_size_bytes":84346,"installed_size_bytes":159088,"build_date_epoch":1721857371}] diff --git a/tests/fixtures/generic/pacman--qii-zstd.json b/tests/fixtures/generic/pacman--qii-zstd.json index 3bdb01b1c..a2737b305 100644 --- a/tests/fixtures/generic/pacman--qii-zstd.json +++ b/tests/fixtures/generic/pacman--qii-zstd.json @@ -1 +1 @@ -[{"name":"zstd","version":"1.5.6-1","description":"Zstandard - Fast real-time compression algorithm","architecture":"x86_64","url":"https://facebook.github.io/zstd/","licenses":["BSD-3-Clause","GPL-2.0-only"],"groups":[],"provides":["libzstd.so=1-64"],"depends_on":["glibc","gcc-libs","zlib","xz","lz4"],"required_by":["android-tools","appstream","avr-gcc","binutils","blender","blosc","boost-libs","btrfs-progs","cloudflare-warp-bin","comgr","curl","dolphin-emu","file","flatpak","gcc","gdal","gnutls","karchive","karchive5","kmod","lib32-zstd","libarchive","libelf","libtiff","libva-mesa-driver","libxmlb","libzip","lld","llvm-libs","mariadb-libs","mesa","mesa-vdpau","minizip-ng","mkinitcpio","mold","netcdf","opencl-clover-mesa","opencl-rusticl-mesa","openucx","postgresql","postgresql-libs","ppsspp","qemu-img","qemu-system-riscv","qemu-system-x86","qgis","qt6-base","qt6-tools","rsync","rustup","squashfs-tools","squashfuse","systemd-libs","tiled","vulkan-radeon","wireshark-cli"],"optional_for":["xarchiver"],"conflicts_with":[],"replaces":[],"installed_size":1563648,"packager":"Levente Polyak ","build_date":"Sat 11 May 2024 06:14:19 AM +08","install_date":"Fri 24 May 2024 09:50:31 AM +08","install_reason":"Installed as a dependency for another package","install_script":"No","validated_by":["Signature"],"extended_data":"pkgtype=pkg"},{"name":"apparmor","version":"3.1.7-4","description":"Mandatory Access Control (MAC) using Linux Security Module (LSM)","architecture":"x86_64","url":"https://gitlab.com/apparmor/apparmor","licenses":["GPL-2.0-only","LGPL-2.0-only","LGPL-2.1-only"],"groups":[],"provides":["libapparmor.so=1-64"],"depends_on":["audit","bash","gcc-libs","glibc","pam","python"],"optional_deps":[{"name":"perl","description":"for perl bindings [installed]"},{"name":"python-notify2","description":"for aa-notify"},{"name":"python-psutil","description":"for aa-notify [installed]"},{"name":"ruby","description":"for ruby bindings"}],"required_by":["firejail"],"optional_for":["podman"],"conflicts_with":[],"replaces":[],"installed_size":4309647,"packager":"Antonio Rojas ","build_date":"Sun 01 Sep 2024 07:43:58 PM +08","install_date":"Thu 05 Sep 2024 06:01:08 AM +08","install_reason":"Explicitly installed","install_script":"No","validated_by":["Signature"],"backup_files":["/etc/apparmor/easyprof.conf [unmodified]","/etc/apparmor/logprof.conf [unmodified]","/etc/apparmor/notify.conf [unmodified]","/etc/apparmor/parser.conf [unmodified]","/etc/apparmor/severity.db [unmodified]","/etc/apparmor.d/abi/3.0 [unmodified]","/etc/apparmor.d/abi/kernel-5.4-outoftree-network [unmodified]","/etc/apparmor.d/abi/kernel-5.4-vanilla [unmodified]","/etc/apparmor.d/abstractions/X [unmodified]","/etc/apparmor.d/abstractions/apache2-common [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/change_profile [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/examine [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/find_mountpoint [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/introspect [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/is_enabled [unmodified]","/etc/apparmor.d/abstractions/aspell [unmodified]","/etc/apparmor.d/abstractions/audio [unmodified]","/etc/apparmor.d/abstractions/authentication [unmodified]","/etc/apparmor.d/abstractions/base [unmodified]","/etc/apparmor.d/abstractions/bash [unmodified]","/etc/apparmor.d/abstractions/consoles [unmodified]","/etc/apparmor.d/abstractions/crypto [unmodified]","/etc/apparmor.d/abstractions/cups-client [unmodified]","/etc/apparmor.d/abstractions/dbus [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-network-manager-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-session [unmodified]","/etc/apparmor.d/abstractions/dbus-session-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-strict [unmodified]","/etc/apparmor.d/abstractions/dconf [unmodified]","/etc/apparmor.d/abstractions/dovecot-common [unmodified]","/etc/apparmor.d/abstractions/dri-common [unmodified]","/etc/apparmor.d/abstractions/dri-enumerate [unmodified]","/etc/apparmor.d/abstractions/enchant [unmodified]","/etc/apparmor.d/abstractions/exo-open [unmodified]","/etc/apparmor.d/abstractions/fcitx [unmodified]","/etc/apparmor.d/abstractions/fcitx-strict [unmodified]","/etc/apparmor.d/abstractions/fonts [unmodified]","/etc/apparmor.d/abstractions/freedesktop.org [unmodified]","/etc/apparmor.d/abstractions/gio-open [unmodified]","/etc/apparmor.d/abstractions/gnome [unmodified]","/etc/apparmor.d/abstractions/gnupg [unmodified]","/etc/apparmor.d/abstractions/groff [unmodified]","/etc/apparmor.d/abstractions/gtk [unmodified]","/etc/apparmor.d/abstractions/gvfs-open [unmodified]","/etc/apparmor.d/abstractions/hosts_access [unmodified]","/etc/apparmor.d/abstractions/ibus [unmodified]","/etc/apparmor.d/abstractions/kde [unmodified]","/etc/apparmor.d/abstractions/kde-globals-write [unmodified]","/etc/apparmor.d/abstractions/kde-icon-cache-write [unmodified]","/etc/apparmor.d/abstractions/kde-language-write [unmodified]","/etc/apparmor.d/abstractions/kde-open5 [unmodified]","/etc/apparmor.d/abstractions/kerberosclient [unmodified]","/etc/apparmor.d/abstractions/ldapclient [unmodified]","/etc/apparmor.d/abstractions/libpam-systemd [unmodified]","/etc/apparmor.d/abstractions/likewise [unmodified]","/etc/apparmor.d/abstractions/mdns [unmodified]","/etc/apparmor.d/abstractions/mesa [unmodified]","/etc/apparmor.d/abstractions/mir [unmodified]","/etc/apparmor.d/abstractions/mozc [unmodified]","/etc/apparmor.d/abstractions/mysql [unmodified]","/etc/apparmor.d/abstractions/nameservice [unmodified]","/etc/apparmor.d/abstractions/nis [unmodified]","/etc/apparmor.d/abstractions/nss-systemd [unmodified]","/etc/apparmor.d/abstractions/nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl [unmodified]","/etc/apparmor.d/abstractions/opencl-common [unmodified]","/etc/apparmor.d/abstractions/opencl-intel [unmodified]","/etc/apparmor.d/abstractions/opencl-mesa [unmodified]","/etc/apparmor.d/abstractions/opencl-nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl-pocl [unmodified]","/etc/apparmor.d/abstractions/openssl [unmodified]","/etc/apparmor.d/abstractions/orbit2 [unmodified]","/etc/apparmor.d/abstractions/p11-kit [unmodified]","/etc/apparmor.d/abstractions/perl [unmodified]","/etc/apparmor.d/abstractions/php [unmodified]","/etc/apparmor.d/abstractions/php-worker [unmodified]","/etc/apparmor.d/abstractions/php5 [unmodified]","/etc/apparmor.d/abstractions/postfix-common [unmodified]","/etc/apparmor.d/abstractions/private-files [unmodified]","/etc/apparmor.d/abstractions/private-files-strict [unmodified]","/etc/apparmor.d/abstractions/python [unmodified]","/etc/apparmor.d/abstractions/qt5 [unmodified]","/etc/apparmor.d/abstractions/qt5-compose-cache-write [unmodified]","/etc/apparmor.d/abstractions/qt5-settings-write [unmodified]","/etc/apparmor.d/abstractions/recent-documents-write [unmodified]","/etc/apparmor.d/abstractions/ruby [unmodified]","/etc/apparmor.d/abstractions/samba [unmodified]","/etc/apparmor.d/abstractions/samba-rpcd [unmodified]","/etc/apparmor.d/abstractions/smbpass [unmodified]","/etc/apparmor.d/abstractions/snap_browsers [unmodified]","/etc/apparmor.d/abstractions/ssl_certs [unmodified]","/etc/apparmor.d/abstractions/ssl_keys [unmodified]","/etc/apparmor.d/abstractions/svn-repositories [unmodified]","/etc/apparmor.d/abstractions/trash [unmodified]","/etc/apparmor.d/abstractions/ubuntu-bittorrent-clients [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/java [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/kde [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/mailto [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/multimedia [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/productivity [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/text-editors [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration-xul [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/user-files [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-feed-readers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-gnome-terminal [unmodified]","/etc/apparmor.d/abstractions/ubuntu-helpers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-konsole [unmodified]","/etc/apparmor.d/abstractions/ubuntu-media-players [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-base [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-launcher [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-messaging [unmodified]","/etc/apparmor.d/abstractions/ubuntu-xterm [unmodified]","/etc/apparmor.d/abstractions/user-download [unmodified]","/etc/apparmor.d/abstractions/user-mail [unmodified]","/etc/apparmor.d/abstractions/user-manpages [unmodified]","/etc/apparmor.d/abstractions/user-tmp [unmodified]","/etc/apparmor.d/abstractions/user-write [unmodified]","/etc/apparmor.d/abstractions/video [unmodified]","/etc/apparmor.d/abstractions/vulkan [unmodified]","/etc/apparmor.d/abstractions/wayland [unmodified]","/etc/apparmor.d/abstractions/web-data [unmodified]","/etc/apparmor.d/abstractions/winbind [unmodified]","/etc/apparmor.d/abstractions/wutmp [unmodified]","/etc/apparmor.d/abstractions/xad [unmodified]","/etc/apparmor.d/abstractions/xdg-desktop [unmodified]","/etc/apparmor.d/abstractions/xdg-open [unmodified]","/etc/apparmor.d/apache2.d/phpsysinfo [unmodified]","/etc/apparmor.d/bin.ping [unmodified]","/etc/apparmor.d/local/README [unmodified]","/etc/apparmor.d/local/bin.ping [unmodified]","/etc/apparmor.d/local/lsb_release [unmodified]","/etc/apparmor.d/local/nvidia_modprobe [unmodified]","/etc/apparmor.d/local/php-fpm [unmodified]","/etc/apparmor.d/local/samba-bgqd [unmodified]","/etc/apparmor.d/local/samba-dcerpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd-classic [unmodified]","/etc/apparmor.d/local/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/local/sbin.klogd [unmodified]","/etc/apparmor.d/local/sbin.syslog-ng [unmodified]","/etc/apparmor.d/local/sbin.syslogd [unmodified]","/etc/apparmor.d/local/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/local/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/local/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/local/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/local/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/local/usr.sbin.identd [unmodified]","/etc/apparmor.d/local/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/local/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/local/usr.sbin.nscd [unmodified]","/etc/apparmor.d/local/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/local/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/local/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/local/zgrep [unmodified]","/etc/apparmor.d/lsb_release [unmodified]","/etc/apparmor.d/nvidia_modprobe [unmodified]","/etc/apparmor.d/php-fpm [unmodified]","/etc/apparmor.d/samba-bgqd [unmodified]","/etc/apparmor.d/samba-dcerpcd [unmodified]","/etc/apparmor.d/samba-rpcd [unmodified]","/etc/apparmor.d/samba-rpcd-classic [unmodified]","/etc/apparmor.d/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/sbin.klogd [unmodified]","/etc/apparmor.d/sbin.syslog-ng [unmodified]","/etc/apparmor.d/sbin.syslogd [unmodified]","/etc/apparmor.d/tunables/alias [unmodified]","/etc/apparmor.d/tunables/apparmorfs [unmodified]","/etc/apparmor.d/tunables/dovecot [unmodified]","/etc/apparmor.d/tunables/etc [unmodified]","/etc/apparmor.d/tunables/global [unmodified]","/etc/apparmor.d/tunables/home [unmodified]","/etc/apparmor.d/tunables/home.d/site.local [unmodified]","/etc/apparmor.d/tunables/kernelvars [unmodified]","/etc/apparmor.d/tunables/multiarch [unmodified]","/etc/apparmor.d/tunables/multiarch.d/site.local [unmodified]","/etc/apparmor.d/tunables/ntpd [unmodified]","/etc/apparmor.d/tunables/proc [unmodified]","/etc/apparmor.d/tunables/run [unmodified]","/etc/apparmor.d/tunables/securityfs [unmodified]","/etc/apparmor.d/tunables/share [unmodified]","/etc/apparmor.d/tunables/sys [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs.d/site.local [unmodified]","/etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/usr.sbin.identd [unmodified]","/etc/apparmor.d/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/usr.sbin.nscd [unmodified]","/etc/apparmor.d/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/usr.sbin.smbd [unmodified]","/etc/apparmor.d/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/zgrep [unmodified]"],"extended_data":"pkgtype=pkg"},{"name":"apulse","version":"0.1.13-1","description":"PulseAudio emulation for ALSA","architecture":"x86_64","url":"https://github.com/i-rinat/apulse","licenses":["custom:MIT"],"groups":[],"provides":[],"depends_on":["alsa-lib","glib2"],"optional_for":[],"conflicts_with":[],"replaces":[],"installed_size":138967,"packager":"Unknown Packager","build_date":"Fri 05 Aug 2022 04:06:57 AM +08","install_date":"Fri 05 Aug 2022 04:07:04 AM +08","install_reason":"Explicitly installed","install_script":"Yes","validated_by":null,"extended_data":null}] +[{"name":"zstd","version":"1.5.6-1","description":"Zstandard - Fast real-time compression algorithm","architecture":"x86_64","url":"https://facebook.github.io/zstd/","licenses":["BSD-3-Clause","GPL-2.0-only"],"groups":[],"provides":["libzstd.so=1-64"],"depends_on":["glibc","gcc-libs","zlib","xz","lz4"],"required_by":["android-tools","appstream","avr-gcc","binutils","blender","blosc","boost-libs","btrfs-progs","cloudflare-warp-bin","comgr","curl","dolphin-emu","file","flatpak","gcc","gdal","gnutls","karchive","karchive5","kmod","lib32-zstd","libarchive","libelf","libtiff","libva-mesa-driver","libxmlb","libzip","lld","llvm-libs","mariadb-libs","mesa","mesa-vdpau","minizip-ng","mkinitcpio","mold","netcdf","opencl-clover-mesa","opencl-rusticl-mesa","openucx","postgresql","postgresql-libs","ppsspp","qemu-img","qemu-system-riscv","qemu-system-x86","qgis","qt6-base","qt6-tools","rsync","rustup","squashfs-tools","squashfuse","systemd-libs","tiled","vulkan-radeon","wireshark-cli"],"optional_for":["xarchiver"],"conflicts_with":[],"replaces":[],"installed_size":"1527.00 KiB","packager":"Levente Polyak ","build_date":"Sat 11 May 2024 06:14:19 AM +08","install_date":"Fri 24 May 2024 09:50:31 AM +08","install_reason":"Installed as a dependency for another package","install_script":"No","validated_by":["Signature"],"extended_data":"pkgtype=pkg","installed_size_bytes":1563648,"build_date_epoch":1715433259,"install_date_epoch":1716569431},{"name":"apparmor","version":"3.1.7-4","description":"Mandatory Access Control (MAC) using Linux Security Module (LSM)","architecture":"x86_64","url":"https://gitlab.com/apparmor/apparmor","licenses":["GPL-2.0-only","LGPL-2.0-only","LGPL-2.1-only"],"groups":[],"provides":["libapparmor.so=1-64"],"depends_on":["audit","bash","gcc-libs","glibc","pam","python"],"optional_deps":[{"name":"perl","description":"for perl bindings [installed]"},{"name":"python-notify2","description":"for aa-notify"},{"name":"python-psutil","description":"for aa-notify [installed]"},{"name":"ruby","description":"for ruby bindings"}],"required_by":["firejail"],"optional_for":["podman"],"conflicts_with":[],"replaces":[],"installed_size":"4.11 MiB","packager":"Antonio Rojas ","build_date":"Sun 01 Sep 2024 07:43:58 PM +08","install_date":"Thu 05 Sep 2024 06:01:08 AM +08","install_reason":"Explicitly installed","install_script":"No","validated_by":["Signature"],"backup_files":["/etc/apparmor/easyprof.conf [unmodified]","/etc/apparmor/logprof.conf [unmodified]","/etc/apparmor/notify.conf [unmodified]","/etc/apparmor/parser.conf [unmodified]","/etc/apparmor/severity.db [unmodified]","/etc/apparmor.d/abi/3.0 [unmodified]","/etc/apparmor.d/abi/kernel-5.4-outoftree-network [unmodified]","/etc/apparmor.d/abi/kernel-5.4-vanilla [unmodified]","/etc/apparmor.d/abstractions/X [unmodified]","/etc/apparmor.d/abstractions/apache2-common [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/change_profile [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/examine [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/find_mountpoint [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/introspect [unmodified]","/etc/apparmor.d/abstractions/apparmor_api/is_enabled [unmodified]","/etc/apparmor.d/abstractions/aspell [unmodified]","/etc/apparmor.d/abstractions/audio [unmodified]","/etc/apparmor.d/abstractions/authentication [unmodified]","/etc/apparmor.d/abstractions/base [unmodified]","/etc/apparmor.d/abstractions/bash [unmodified]","/etc/apparmor.d/abstractions/consoles [unmodified]","/etc/apparmor.d/abstractions/crypto [unmodified]","/etc/apparmor.d/abstractions/cups-client [unmodified]","/etc/apparmor.d/abstractions/dbus [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility [unmodified]","/etc/apparmor.d/abstractions/dbus-accessibility-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-network-manager-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-session [unmodified]","/etc/apparmor.d/abstractions/dbus-session-strict [unmodified]","/etc/apparmor.d/abstractions/dbus-strict [unmodified]","/etc/apparmor.d/abstractions/dconf [unmodified]","/etc/apparmor.d/abstractions/dovecot-common [unmodified]","/etc/apparmor.d/abstractions/dri-common [unmodified]","/etc/apparmor.d/abstractions/dri-enumerate [unmodified]","/etc/apparmor.d/abstractions/enchant [unmodified]","/etc/apparmor.d/abstractions/exo-open [unmodified]","/etc/apparmor.d/abstractions/fcitx [unmodified]","/etc/apparmor.d/abstractions/fcitx-strict [unmodified]","/etc/apparmor.d/abstractions/fonts [unmodified]","/etc/apparmor.d/abstractions/freedesktop.org [unmodified]","/etc/apparmor.d/abstractions/gio-open [unmodified]","/etc/apparmor.d/abstractions/gnome [unmodified]","/etc/apparmor.d/abstractions/gnupg [unmodified]","/etc/apparmor.d/abstractions/groff [unmodified]","/etc/apparmor.d/abstractions/gtk [unmodified]","/etc/apparmor.d/abstractions/gvfs-open [unmodified]","/etc/apparmor.d/abstractions/hosts_access [unmodified]","/etc/apparmor.d/abstractions/ibus [unmodified]","/etc/apparmor.d/abstractions/kde [unmodified]","/etc/apparmor.d/abstractions/kde-globals-write [unmodified]","/etc/apparmor.d/abstractions/kde-icon-cache-write [unmodified]","/etc/apparmor.d/abstractions/kde-language-write [unmodified]","/etc/apparmor.d/abstractions/kde-open5 [unmodified]","/etc/apparmor.d/abstractions/kerberosclient [unmodified]","/etc/apparmor.d/abstractions/ldapclient [unmodified]","/etc/apparmor.d/abstractions/libpam-systemd [unmodified]","/etc/apparmor.d/abstractions/likewise [unmodified]","/etc/apparmor.d/abstractions/mdns [unmodified]","/etc/apparmor.d/abstractions/mesa [unmodified]","/etc/apparmor.d/abstractions/mir [unmodified]","/etc/apparmor.d/abstractions/mozc [unmodified]","/etc/apparmor.d/abstractions/mysql [unmodified]","/etc/apparmor.d/abstractions/nameservice [unmodified]","/etc/apparmor.d/abstractions/nis [unmodified]","/etc/apparmor.d/abstractions/nss-systemd [unmodified]","/etc/apparmor.d/abstractions/nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl [unmodified]","/etc/apparmor.d/abstractions/opencl-common [unmodified]","/etc/apparmor.d/abstractions/opencl-intel [unmodified]","/etc/apparmor.d/abstractions/opencl-mesa [unmodified]","/etc/apparmor.d/abstractions/opencl-nvidia [unmodified]","/etc/apparmor.d/abstractions/opencl-pocl [unmodified]","/etc/apparmor.d/abstractions/openssl [unmodified]","/etc/apparmor.d/abstractions/orbit2 [unmodified]","/etc/apparmor.d/abstractions/p11-kit [unmodified]","/etc/apparmor.d/abstractions/perl [unmodified]","/etc/apparmor.d/abstractions/php [unmodified]","/etc/apparmor.d/abstractions/php-worker [unmodified]","/etc/apparmor.d/abstractions/php5 [unmodified]","/etc/apparmor.d/abstractions/postfix-common [unmodified]","/etc/apparmor.d/abstractions/private-files [unmodified]","/etc/apparmor.d/abstractions/private-files-strict [unmodified]","/etc/apparmor.d/abstractions/python [unmodified]","/etc/apparmor.d/abstractions/qt5 [unmodified]","/etc/apparmor.d/abstractions/qt5-compose-cache-write [unmodified]","/etc/apparmor.d/abstractions/qt5-settings-write [unmodified]","/etc/apparmor.d/abstractions/recent-documents-write [unmodified]","/etc/apparmor.d/abstractions/ruby [unmodified]","/etc/apparmor.d/abstractions/samba [unmodified]","/etc/apparmor.d/abstractions/samba-rpcd [unmodified]","/etc/apparmor.d/abstractions/smbpass [unmodified]","/etc/apparmor.d/abstractions/snap_browsers [unmodified]","/etc/apparmor.d/abstractions/ssl_certs [unmodified]","/etc/apparmor.d/abstractions/ssl_keys [unmodified]","/etc/apparmor.d/abstractions/svn-repositories [unmodified]","/etc/apparmor.d/abstractions/trash [unmodified]","/etc/apparmor.d/abstractions/ubuntu-bittorrent-clients [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/chromium-browser [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/java [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/kde [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/mailto [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/multimedia [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/productivity [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/text-editors [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/ubuntu-integration-xul [unmodified]","/etc/apparmor.d/abstractions/ubuntu-browsers.d/user-files [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-browsers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-console-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-email [unmodified]","/etc/apparmor.d/abstractions/ubuntu-feed-readers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-gnome-terminal [unmodified]","/etc/apparmor.d/abstractions/ubuntu-helpers [unmodified]","/etc/apparmor.d/abstractions/ubuntu-konsole [unmodified]","/etc/apparmor.d/abstractions/ubuntu-media-players [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-base [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-launcher [unmodified]","/etc/apparmor.d/abstractions/ubuntu-unity7-messaging [unmodified]","/etc/apparmor.d/abstractions/ubuntu-xterm [unmodified]","/etc/apparmor.d/abstractions/user-download [unmodified]","/etc/apparmor.d/abstractions/user-mail [unmodified]","/etc/apparmor.d/abstractions/user-manpages [unmodified]","/etc/apparmor.d/abstractions/user-tmp [unmodified]","/etc/apparmor.d/abstractions/user-write [unmodified]","/etc/apparmor.d/abstractions/video [unmodified]","/etc/apparmor.d/abstractions/vulkan [unmodified]","/etc/apparmor.d/abstractions/wayland [unmodified]","/etc/apparmor.d/abstractions/web-data [unmodified]","/etc/apparmor.d/abstractions/winbind [unmodified]","/etc/apparmor.d/abstractions/wutmp [unmodified]","/etc/apparmor.d/abstractions/xad [unmodified]","/etc/apparmor.d/abstractions/xdg-desktop [unmodified]","/etc/apparmor.d/abstractions/xdg-open [unmodified]","/etc/apparmor.d/apache2.d/phpsysinfo [unmodified]","/etc/apparmor.d/bin.ping [unmodified]","/etc/apparmor.d/local/README [unmodified]","/etc/apparmor.d/local/bin.ping [unmodified]","/etc/apparmor.d/local/lsb_release [unmodified]","/etc/apparmor.d/local/nvidia_modprobe [unmodified]","/etc/apparmor.d/local/php-fpm [unmodified]","/etc/apparmor.d/local/samba-bgqd [unmodified]","/etc/apparmor.d/local/samba-dcerpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd [unmodified]","/etc/apparmor.d/local/samba-rpcd-classic [unmodified]","/etc/apparmor.d/local/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/local/sbin.klogd [unmodified]","/etc/apparmor.d/local/sbin.syslog-ng [unmodified]","/etc/apparmor.d/local/sbin.syslogd [unmodified]","/etc/apparmor.d/local/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/local/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/local/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/local/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/local/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/local/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/local/usr.sbin.identd [unmodified]","/etc/apparmor.d/local/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/local/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/local/usr.sbin.nscd [unmodified]","/etc/apparmor.d/local/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbd [unmodified]","/etc/apparmor.d/local/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/local/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/local/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/local/zgrep [unmodified]","/etc/apparmor.d/lsb_release [unmodified]","/etc/apparmor.d/nvidia_modprobe [unmodified]","/etc/apparmor.d/php-fpm [unmodified]","/etc/apparmor.d/samba-bgqd [unmodified]","/etc/apparmor.d/samba-dcerpcd [unmodified]","/etc/apparmor.d/samba-rpcd [unmodified]","/etc/apparmor.d/samba-rpcd-classic [unmodified]","/etc/apparmor.d/samba-rpcd-spoolss [unmodified]","/etc/apparmor.d/sbin.klogd [unmodified]","/etc/apparmor.d/sbin.syslog-ng [unmodified]","/etc/apparmor.d/sbin.syslogd [unmodified]","/etc/apparmor.d/tunables/alias [unmodified]","/etc/apparmor.d/tunables/apparmorfs [unmodified]","/etc/apparmor.d/tunables/dovecot [unmodified]","/etc/apparmor.d/tunables/etc [unmodified]","/etc/apparmor.d/tunables/global [unmodified]","/etc/apparmor.d/tunables/home [unmodified]","/etc/apparmor.d/tunables/home.d/site.local [unmodified]","/etc/apparmor.d/tunables/kernelvars [unmodified]","/etc/apparmor.d/tunables/multiarch [unmodified]","/etc/apparmor.d/tunables/multiarch.d/site.local [unmodified]","/etc/apparmor.d/tunables/ntpd [unmodified]","/etc/apparmor.d/tunables/proc [unmodified]","/etc/apparmor.d/tunables/run [unmodified]","/etc/apparmor.d/tunables/securityfs [unmodified]","/etc/apparmor.d/tunables/share [unmodified]","/etc/apparmor.d/tunables/sys [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs [unmodified]","/etc/apparmor.d/tunables/xdg-user-dirs.d/site.local [unmodified]","/etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.anvil [unmodified]","/etc/apparmor.d/usr.lib.dovecot.auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.config [unmodified]","/etc/apparmor.d/usr.lib.dovecot.deliver [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dict [unmodified]","/etc/apparmor.d/usr.lib.dovecot.director [unmodified]","/etc/apparmor.d/usr.lib.dovecot.doveadm-server [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-auth [unmodified]","/etc/apparmor.d/usr.lib.dovecot.dovecot-lda [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap [unmodified]","/etc/apparmor.d/usr.lib.dovecot.imap-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.lmtp [unmodified]","/etc/apparmor.d/usr.lib.dovecot.log [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve [unmodified]","/etc/apparmor.d/usr.lib.dovecot.managesieve-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3 [unmodified]","/etc/apparmor.d/usr.lib.dovecot.pop3-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.replicator [unmodified]","/etc/apparmor.d/usr.lib.dovecot.script-login [unmodified]","/etc/apparmor.d/usr.lib.dovecot.ssl-params [unmodified]","/etc/apparmor.d/usr.lib.dovecot.stats [unmodified]","/etc/apparmor.d/usr.sbin.apache2 [unmodified]","/etc/apparmor.d/usr.sbin.avahi-daemon [unmodified]","/etc/apparmor.d/usr.sbin.dnsmasq [unmodified]","/etc/apparmor.d/usr.sbin.dovecot [unmodified]","/etc/apparmor.d/usr.sbin.identd [unmodified]","/etc/apparmor.d/usr.sbin.mdnsd [unmodified]","/etc/apparmor.d/usr.sbin.nmbd [unmodified]","/etc/apparmor.d/usr.sbin.nscd [unmodified]","/etc/apparmor.d/usr.sbin.ntpd [unmodified]","/etc/apparmor.d/usr.sbin.smbd [unmodified]","/etc/apparmor.d/usr.sbin.smbldap-useradd [unmodified]","/etc/apparmor.d/usr.sbin.traceroute [unmodified]","/etc/apparmor.d/usr.sbin.winbindd [unmodified]","/etc/apparmor.d/zgrep [unmodified]"],"extended_data":"pkgtype=pkg","installed_size_bytes":4309647,"build_date_epoch":1725245038,"install_date_epoch":1725541268},{"name":"apulse","version":"0.1.13-1","description":"PulseAudio emulation for ALSA","architecture":"x86_64","url":"https://github.com/i-rinat/apulse","licenses":["custom:MIT"],"groups":[],"provides":[],"depends_on":["alsa-lib","glib2"],"optional_for":[],"conflicts_with":[],"replaces":[],"installed_size":"135.71 KiB","packager":"Unknown Packager","build_date":"Fri 05 Aug 2022 04:06:57 AM +08","install_date":"Fri 05 Aug 2022 04:07:04 AM +08","install_reason":"Explicitly installed","install_script":"Yes","validated_by":null,"extended_data":null,"installed_size_bytes":138967,"build_date_epoch":1659697617,"install_date_epoch":1659697624}] diff --git a/tests/fixtures/generic/pacman--si-graphicsmagick.json b/tests/fixtures/generic/pacman--si-graphicsmagick.json index ae3c11cad..9eb0cdc3e 100644 --- a/tests/fixtures/generic/pacman--si-graphicsmagick.json +++ b/tests/fixtures/generic/pacman--si-graphicsmagick.json @@ -1 +1 @@ -[{"repository":"extra","name":"graphicsmagick","version":"1.3.43-1","description":"Image processing system","architecture":"x86_64","url":"http://www.graphicsmagick.org/","licenses":["MIT"],"groups":[],"provides":["Magick.so","libGraphicsMagickWand.so=2-64","libGraphicsMagick.so=3-64","libGraphicsMagick++-Q16.so"],"depends_on":["bzip2","freetype2","lcms2","libltdl","libpng","libsm","libtiff","libwebp","libxext","xz"],"optional_deps":[{"name":"jasper","description":"jp2 module"},{"name":"libwmf","description":"wmf module"},{"name":"libxml2","description":"msl, svg, url modules"},{"name":"ghostscript","description":"pdf, ps modules"},{"name":"libheif","description":"heic module"},{"name":"libjxl","description":"jpeg-xl module"}],"conflicts_with":[],"replaces":[],"download_size":2705326,"installed_size":14648606,"packager":"Caleb Maclennan ","build_date":"Sat 23 Mar 2024 09:55:47 PM CET","validated_by":["MD5 Sum","SHA-256 Sum","Signature"]}] +[{"repository":"extra","name":"graphicsmagick","version":"1.3.43-1","description":"Image processing system","architecture":"x86_64","url":"http://www.graphicsmagick.org/","licenses":["MIT"],"groups":[],"provides":["Magick.so","libGraphicsMagickWand.so=2-64","libGraphicsMagick.so=3-64","libGraphicsMagick++-Q16.so"],"depends_on":["bzip2","freetype2","lcms2","libltdl","libpng","libsm","libtiff","libwebp","libxext","xz"],"optional_deps":[{"name":"jasper","description":"jp2 module"},{"name":"libwmf","description":"wmf module"},{"name":"libxml2","description":"msl, svg, url modules"},{"name":"ghostscript","description":"pdf, ps modules"},{"name":"libheif","description":"heic module"},{"name":"libjxl","description":"jpeg-xl module"}],"conflicts_with":[],"replaces":[],"download_size":"2.58 MiB","installed_size":"13.97 MiB","packager":"Caleb Maclennan ","build_date":"Sat 23 Mar 2024 09:55:47 PM CET","validated_by":["MD5 Sum","SHA-256 Sum","Signature"],"download_size_bytes":2705326,"installed_size_bytes":14648606,"build_date_epoch":1711256147}] From a2b5d413087c9fbfacc9702f5ae98f94e47c1150 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 25 Nov 2024 20:19:40 -0800 Subject: [PATCH 52/52] minor fix to iw-scan to parse more fields --- CHANGELOG | 3 +- docs/parsers/iw_scan.md | 2 +- jc/parsers/iw_scan.py | 7 +- tests/fixtures/centos-7.7/iw-scan0.json | 2 +- tests/fixtures/centos-7.7/iw-scan1.json | 2 +- tests/fixtures/centos-7.7/iw-scan2.json | 1 + tests/fixtures/centos-7.7/iw-scan2.out | 109 ++++++++++++++++++++++++ tests/test_iw_scan.py | 13 ++- 8 files changed, 132 insertions(+), 7 deletions(-) create mode 100644 tests/fixtures/centos-7.7/iw-scan2.json create mode 100644 tests/fixtures/centos-7.7/iw-scan2.out diff --git a/CHANGELOG b/CHANGELOG index f39054205..0211ffaf1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20241124 v1.25.4 +20241125 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) - Add `pacman` command parser - Add `wg show` command parser @@ -11,6 +11,7 @@ jc changelog - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `iw-scan` parser to output more fields (still beta quality) - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name diff --git a/docs/parsers/iw_scan.md b/docs/parsers/iw_scan.md index 9fc82cd9d..53e588689 100644 --- a/docs/parsers/iw_scan.md +++ b/docs/parsers/iw_scan.md @@ -146,4 +146,4 @@ Compatibility: linux Source: [`jc/parsers/iw_scan.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/iw_scan.py) -Version 0.7 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 0.75 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/iw_scan.py b/jc/parsers/iw_scan.py index 90e008af3..1e32a3aa5 100644 --- a/jc/parsers/iw_scan.py +++ b/jc/parsers/iw_scan.py @@ -122,7 +122,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '0.7' + version = '0.75' description = '`iw dev [device] scan` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -298,6 +298,7 @@ def parse(data, raw=False, quiet=False): raw_output = [] section = {} + header = '' if jc.utils.has_data(data): @@ -323,7 +324,9 @@ def parse(data, raw=False, quiet=False): split_line[0] = split_line[0].lower().replace('*', '').replace('(', '')\ .replace(')', '').replace(',', '').replace('-', '_')\ .strip().replace(' ', '_') - section[split_line[0]] = split_line[1].strip() + if split_line[1] == '': + header = split_line[0] + '_' + section[header + split_line[0]] = split_line[1].strip() continue diff --git a/tests/fixtures/centos-7.7/iw-scan0.json b/tests/fixtures/centos-7.7/iw-scan0.json index b141fec4a..2fcf2fd10 100644 --- a/tests/fixtures/centos-7.7/iw-scan0.json +++ b/tests/fixtures/centos-7.7/iw-scan0.json @@ -1 +1 @@ -[{"bssid": "00:19:a9:cd:c6:80", "interface": "wlan0", "freq": 2412, "capability": "ESS ShortPreamble ShortSlotTime (0x0421)", "ssid": "Cisco1240", "supported_rates": [1.0, 2.0, 5.5, 6.0, 9.0, 11.0, 12.0, 18.0], "erp": "", "extended_supported_rates": [24.0, 36.0, 48.0, 54.0], "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "tsf_usec": 2984923701, "beacon_interval_tus": 100, "signal_dbm": -45.0, "last_seen_ms": 429, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1}, {"bssid": "d0:d0:fd:69:ca:70", "interface": "wlan0", "freq": 2462, "capability": "ESS ShortPreamble ShortSlotTime (0x0421)", "ssid": "Cisco1250", "supported_rates": [1.0, 2.0, 5.5, 6.0, 9.0, 11.0, 12.0, 18.0], "erp": "", "extended_supported_rates": [24.0, 36.0, 48.0, 54.0], "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "acm CW 3-7, AIFSN 2, TXOP 1504 usec", "tsf_usec": 2968648942, "beacon_interval_tus": 102, "signal_dbm": -70.0, "last_seen_ms": 328, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11}] +[{"bssid":"00:19:a9:cd:c6:80","interface":"wlan0","freq":2412,"capability":"ESS ShortPreamble ShortSlotTime (0x0421)","ssid":"Cisco1240","supported_rates":[1.0,2.0,5.5,6.0,9.0,11.0,12.0,18.0],"erp":"","extended_supported_rates":[24.0,36.0,48.0,54.0],"wmm":"Parameter version 1","be":"CW 15-1023, AIFSN 3","bk":"CW 15-1023, AIFSN 7","vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","tsf_usec":2984923701,"beacon_interval_tus":100,"signal_dbm":-45.0,"last_seen_ms":429,"selected_rates":[1.0,2.0,5.5,11.0],"ds_parameter_set_channel":1},{"bssid":"d0:d0:fd:69:ca:70","interface":"wlan0","freq":2462,"capability":"ESS ShortPreamble ShortSlotTime (0x0421)","ssid":"Cisco1250","supported_rates":[1.0,2.0,5.5,6.0,9.0,11.0,12.0,18.0],"erp":"","extended_supported_rates":[24.0,36.0,48.0,54.0],"wmm":"Parameter version 1","be":"CW 15-1023, AIFSN 3","bk":"CW 15-1023, AIFSN 7","vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","vo":"acm CW 3-7, AIFSN 2, TXOP 1504 usec","tsf_usec":2968648942,"beacon_interval_tus":102,"signal_dbm":-70.0,"last_seen_ms":328,"selected_rates":[1.0,2.0,5.5,11.0],"ds_parameter_set_channel":11}] diff --git a/tests/fixtures/centos-7.7/iw-scan1.json b/tests/fixtures/centos-7.7/iw-scan1.json index 15993ca57..2d839d583 100644 --- a/tests/fixtures/centos-7.7/iw-scan1.json +++ b/tests/fixtures/centos-7.7/iw-scan1.json @@ -1 +1 @@ -[{"bssid": "ac:22:05:db:4d:5b", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "Hoeheitsgebiet", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "103/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "327fd200-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212106552475, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -57.0, "last_seen_ms": 3520, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "1c:b0:44:75:42:a5", "interface": "wlan0", "freq": 2457, "capability": "ESS Privacy ShortPreamble ShortSlotTime (0x0431)", "ssid": "o2-WLAN38", "supported_rates": [9.0, 18.0, 36.0, 54.0, 1.0, 2.0, 5.5, 11.0], "country": "DE", "erp": "", "capabilities": "1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)", "ht_rx_mcs_rate_indexes_supported": "0-15", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "group_mgmt_cipher_suite": "AES-128-CMAC", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "primary_channel": 10, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "b0493afc-202d-11b2-8a5b-1cb0447542a5", "manufacturer": "Askey", "model": "o2 HomeBox", "model_number": 6741, "serial_number": "A804016507-009096", "primary_device_type": "6-0050f204-1", "device_name": "o2 HomeBox 6741", "config_methods": "Keypad", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108020750, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -70.0, "last_seen_ms": 2050, "selected_rates": [1.0], "obss_scan_activity_threshold_percent": 100.0, "ds_parameter_set_channel": 10, "max_amsdu_length_bytes": 3839, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 16}, {"bssid": "34:2c:c4:34:3b:95", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "Medusa_13", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "90/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212096913717, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -77.0, "last_seen_ms": 13160, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "ac:22:05:e6:ff:41", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy RadioMeasure (0x1011)", "ssid": "UPCCDB29F5", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 3, "channel_utilisation": "87/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108270373, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -41.0, "last_seen_ms": 1750, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "ac:22:05:e6:ff:24", "interface": "wlan0", "freq": 5180, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "UPCCDB29F5", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 36, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 3, "channel_utilisation": "35/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212107576616, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -30.0, "last_seen_ms": 130, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 36, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "a8:d3:f7:96:10:69", "interface": "wlan0", "freq": 2442, "capability": "ESS Privacy ShortPreamble ShortSlotTime (0x0431)", "ssid": "o2-WLAN34", "supported_rates": [9.0, 18.0, 36.0, 54.0, 1.0, 2.0, 5.5, 11.0], "country": "DE", "erp": "", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "primary_channel": 7, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "4e9bd57c-8ebe-46d8-aa04-cdd3994f7288", "manufacturer": "Arcadyan", "model": "o2 HomeBox 6441", "model_number": "IAD 6441", "serial_number": "D512146595", "primary_device_type": "6-0050f204-1", "device_name": "D512146595-A8D3F7", "rf_bands": "0x3", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212107440363, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -81.0, "last_seen_ms": 2630, "selected_rates": [1.0], "obss_scan_activity_threshold_percent": 100.0, "ds_parameter_set_channel": 7, "max_amsdu_length_bytes": 3839, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 16}, {"bssid": "54:fa:3e:87:1f:93", "interface": "wlan0", "freq": 2472, "capability": "ESS Privacy ShortSlotTime APSD (0x0c11)", "ssid": "moin moin", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 13, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "station_count": 1, "channel_utilisation": "26/255", "available_admission_capacity": 31250, "extended_capabilities": "HT Information Exchange Supported", "country": "DE", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "bc329e00-1dd8-11b2-8601-54fa3e871f93", "manufacturer": "Celeno Communication, Inc.", "model": "Celeno Wireless AP 2.4G", "model_number": "CL1800", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "CelenoAP2.4G", "config_methods": "Display, PBC, Keypad", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108698335, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -72.0, "last_seen_ms": 1310, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 13, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": "No"}, {"bssid": "ae:22:15:db:4d:5b", "interface": "wlan0", "freq": 2412, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "103/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212106562854, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -57.0, "last_seen_ms": 3510, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "90:5c:44:d1:34:2f", "interface": "wlan0", "freq": 2437, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPC5144FAF", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "non-HT mixed", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "109/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "30b60e80-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212107263738, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -53.0, "last_seen_ms": 2810, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "92:5c:14:d1:34:2f", "interface": "wlan0", "freq": 2437, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "non-HT mixed", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "109/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212107270871, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -53.0, "last_seen_ms": 2800, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "36:2c:b4:34:3b:95", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "Gast_Medusa_13", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "94/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212075883822, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -77.0, "last_seen_ms": 13150, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "fe:49:2d:20:d8:21", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "tim": "DTIM Count 1 DTIM Period 2 Bitmap Control 0x0 Bitmap[0] 0x0", "erp": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x1ad", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "Extended Channel Switching", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "device_name": "Marion,Laura,Larissas Fire TV...", "primary_device_type": "1-0050f204-9", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "p2p": "Group capa: 0x25, Device capa: 0xab", "unknown_tlv_0x03_6_bytes": "49 2d 20 58 21 dd", "tsf_usec": 212080903764, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -67.0, "last_seen_ms": 29170, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "90:5c:44:db:21:48", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPC614F5E5", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "100/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212077364612, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -76.0, "last_seen_ms": 27640, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "ae:22:15:e6:ff:41", "interface": "wlan0", "freq": 2462, "capability": "ESS RadioMeasure (0x1001)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 3, "channel_utilisation": "87/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212108278788, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -40.0, "last_seen_ms": 1740, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "34:31:c4:b8:2e:85", "interface": "wlan0", "freq": 2437, "capability": "ESS Privacy ShortPreamble ShortSlotTime RadioMeasure (0x1431)", "ssid": "Nexus", "supported_rates": [1.0, 2.0, 5.5, 11.0, 6.0, 9.0, 12.0, 18.0], "tim": "DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0 (+ 1 octet)", "country": "DE", "erp": "", "extended_supported_rates": [36.0, 48.0, 54.0], "station_count": 13, "channel_utilisation": "74/255", "available_admission_capacity": 0, "capabilities": "1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)", "ht_tx/rx_mcs_rate_indexes_supported": "0-23", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported, Extended Channel Switching, TFS, WNM-Sleep Mode, TIM Broadcast, BSS Transition, 6", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "rf_bands": "0x3", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK 00-0f-ac:8", "environment": "Indoor/Outdoor", "tsf_usec": 212081672689, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -83.0, "last_seen_ms": 28400, "selected_rates": [1.0, 2.0, 5.5, 11.0, 6.0, 12.0], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 8}, {"bssid": "92:5c:14:db:21:48", "interface": "wlan0", "freq": 2462, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "111/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212098644532, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -71.0, "last_seen_ms": 11430, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "9c:80:df:31:03:a4", "interface": "wlan0", "freq": 2467, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "o2-WLAN84", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "DE", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "tim": "DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0", "erp": "Barker_Preamble_Mode", "capabilities": "PreAuth 1-PTKSA-RC 1-GTKSA-RC (0x0001)", "ht_rx_mcs_rate_indexes_supported": "0-15, 32", "primary_channel": 12, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "20 MHz", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported", "bss_width_channel_transition_delay_factor": 5, "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "station_count": 768, "channel_utilisation": "33/255", "available_admission_capacity": 4730, "environment": "Indoor/Outdoor", "tsf_usec": 212082583134, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -87.0, "last_seen_ms": 27490, "selected_rates": [1.0, 2.0, 5.5, 11.0], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 12, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "36:2c:94:34:3b:95", "interface": "wlan0", "freq": 2412, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "90/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212096926483, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -84.0, "last_seen_ms": 13150, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "38:43:7d:1c:95:e6", "interface": "wlan0", "freq": 2437, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPCB45EF15", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "tim": "DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0", "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "capabilities": "0x1ac", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "uuid": "30b60e80-1dd2-11b2-8601-8e4aa01a9d4a", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "erp": "Barker_Preamble_Mode", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "station_count": 1, "channel_utilisation": "86/255", "available_admission_capacity": 31250, "environment": "Indoor/Outdoor", "tsf_usec": 212097695148, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -83.0, "last_seen_ms": 12380, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "90:5c:44:db:21:33", "interface": "wlan0", "freq": 5180, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "UPC614F5E5", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 36, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 2, "channel_utilisation": "54/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212107555845, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -88.0, "last_seen_ms": 2510, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 36, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "a8:d3:f7:96:10:6d", "interface": "wlan0", "freq": 5200, "capability": "ESS Privacy SpectrumMgmt ShortSlotTime (0x0511)", "ssid": "o2-WLAN34", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "country": "DE", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_tx/rx_mcs_rate_indexes_supported": "0-31, 33-76", "primary_channel": 40, "secondary_channel_offset": "below", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 1, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "extended_capabilities": "HT Information Exchange Supported, SSID List, 6", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "4e9bd57c-8ebe-46d8-aa04-cdd3994f7288", "manufacturer": "Quantenna", "model": "Topaz", "model_number": "QV840.432", "serial_number": "A8D3F796106D", "primary_device_type": "6-0050f204-1", "device_name": "Reference Design", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "max_mpdu_length": 11454, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "MCS 0-9", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xfffc", "environment": "Indoor/Outdoor", "tsf_usec": 212107799783, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -88.0, "last_seen_ms": 2260, "selected_rates": [6.0, 12.0], "ds_parameter_set_channel": 40, "max_amsdu_length_bytes": 7935, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "90:5c:44:d1:34:20", "interface": "wlan0", "freq": 5220, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "UPC5144FAF", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 44, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 1, "channel_utilisation": "33/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "30b60e80-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212108016406, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -46.0, "last_seen_ms": 2060, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 44, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "ac:22:05:db:4d:22", "interface": "wlan0", "freq": 5220, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "Hoeheitsgebiet", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 44, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 4, "channel_utilisation": "43/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "327fd200-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212108018921, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -68.0, "last_seen_ms": 2020, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 44, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "54:67:51:2c:3d:0a", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPC956E146", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "93/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108254184, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 1820, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "74:31:70:75:f1:e2", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "WLAN-75F122", "supported_rates": [1.0, 2.0, 5.5, 11.0, 18.0, 24.0, 36.0, 54.0], "erp": "", "erp_d4.0": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x186c", "extended_supported_rates": [6.0, 9.0, 12.0, 48.0], "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "selected_registrar": "0x0", "response_type": "3 (AP)", "uuid": "00000000-0000-0003-0000-74317075f1e2", "manufacturer": "Corporation", "model": "VGV8539JW", "model_number": "1.47.000", "serial_number": "J144024542", "primary_device_type": "6-0050f204-1", "device_name": "Wireless Router(WFA)", "config_methods": "Label, PBC", "rf_bands": "0x3", "tsf_usec": 212098649788, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 11420, "selected_rates": [1.0, 2.0, 5.5, 11.0], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 7935, "minimum_rx_ampdu_time_spacing_usec": 16}, {"bssid": "1c:b0:44:75:42:a8", "interface": "wlan0", "freq": 5220, "capability": "ESS Privacy SpectrumMgmt ShortSlotTime (0x0511)", "ssid": "o2-WLAN38", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "station_count": 5, "channel_utilisation": "55/255", "available_admission_capacity": 65535, "country": "DE", "capabilities": "1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)", "ht_tx/rx_mcs_rate_indexes_supported": "0-31, 33-76", "primary_channel": 44, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 1, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "group_mgmt_cipher_suite": "AES-128-CMAC", "extended_capabilities": "HT Information Exchange Supported, BSS Transition, SSID List, 6", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "b0493afc-202d-11b2-8a5b-1cb0447542a5", "manufacturer": "Askey", "model": "o2 HomeBox", "model_number": 6741, "serial_number": "1CB0447542A8", "primary_device_type": "6-0050f204-1", "device_name": "o2 HomeBox 6741", "config_methods": "Display", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "max_mpdu_length": 11454, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "MCS 0-9", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xfffc", "environment": "Indoor/Outdoor", "tsf_usec": 212108018214, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -89.0, "last_seen_ms": 2060, "selected_rates": [6.0, 12.0], "ds_parameter_set_channel": 44, "max_amsdu_length_bytes": 7935, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}] +[{"bssid":"ac:22:05:db:4d:5b","interface":"wlan0","freq":2412,"capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","information_elements_from_probe_response_frame_ssid":"Hoeheitsgebiet","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 1","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":1,"bss_load_channel_utilisation":"103/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"327fd200-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Ralink Technology, Corp.","bss_load_model":"Ralink Wireless Access Point","bss_load_model_number":"RT2860","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"RalinkAPS","config_methods_rf_bands":"0x1","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20","tsf_usec":212106552475,"beacon_interval_tus":100,"signal_dbm":-57.0,"last_seen_ms":3520},{"bssid":"1c:b0:44:75:42:a5","interface":"wlan0","config_methods_tsf":"212108020750 usec (2d, 10:55:08)","config_methods_freq":2457,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortPreamble ShortSlotTime (0x0431)","config_methods_signal":"-70.00 dBm","config_methods_last_seen":"2050 ms ago","information_elements_from_probe_response_frame_ssid":"o2-WLAN38","information_elements_from_probe_response_frame_supported_rates":"9.0 18.0 36.0 54.0 1.0* 2.0 5.5 11.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 10","information_elements_from_probe_response_frame_country":"DE Environment: Indoor/Outdoor","information_elements_from_probe_response_frame_power_constraint":"0 dB","information_elements_from_probe_response_frame_erp":"","ht_capabilities_capabilities":"1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"16 usec (0x07)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_capabilities_rsn":"Version: 1","ht_capabilities_group_cipher":"CCMP","ht_capabilities_pairwise_ciphers":"CCMP","ht_capabilities_authentication_suites":"PSK","ht_capabilities_group_mgmt_cipher_suite":"AES-128-CMAC","ht_capabilities_extended_supported_rates":"6.0 12.0 24.0 48.0","ht_operation_primary_channel":10,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"overlapping_bss_scan_params_passive_dwell":"20 TUs","overlapping_bss_scan_params_active_dwell":"10 TUs","overlapping_bss_scan_params_channel_width_trigger_scan_interval":"300 s","overlapping_bss_scan_params_scan_passive_total_per_channel":"200 TUs","overlapping_bss_scan_params_scan_active_total_per_channel":"20 TUs","overlapping_bss_scan_params_bss_width_channel_transition_delay_factor":5,"overlapping_bss_scan_params_obss_scan_activity_threshold":"100.00 %","overlapping_bss_scan_params_extended_capabilities":"HT Information Exchange Supported","overlapping_bss_scan_params_wmm":"Parameter version 1","overlapping_bss_scan_params_be":"CW 15-1023, AIFSN 3","overlapping_bss_scan_params_bk":"CW 15-1023, AIFSN 7","overlapping_bss_scan_params_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","overlapping_bss_scan_params_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","overlapping_bss_scan_params_wps":"Version: 1.0","overlapping_bss_scan_params_wi_fi_protected_setup_state":"2 (Configured)","overlapping_bss_scan_params_response_type":"3 (AP)","overlapping_bss_scan_params_uuid":"b0493afc-202d-11b2-8a5b-1cb0447542a5","overlapping_bss_scan_params_manufacturer":"Askey","overlapping_bss_scan_params_model":"o2 HomeBox","overlapping_bss_scan_params_model_number":6741,"overlapping_bss_scan_params_serial_number":"A804016507-009096","overlapping_bss_scan_params_primary_device_type":"6-0050f204-1","overlapping_bss_scan_params_device_name":"o2 HomeBox 6741","overlapping_bss_scan_params_config_methods":"Keypad","overlapping_bss_scan_params_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"34:2c:c4:34:3b:95","interface":"wlan0","overlapping_bss_scan_params_tsf":"212096913717 usec (2d, 10:54:56)","overlapping_bss_scan_params_freq":2412,"overlapping_bss_scan_params_beacon_interval":"100 TUs","overlapping_bss_scan_params_capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","overlapping_bss_scan_params_signal":"-77.00 dBm","overlapping_bss_scan_params_last_seen":"13160 ms ago","information_elements_from_probe_response_frame_ssid":"Medusa_13","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 1","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":0,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":0,"bss_load_channel_utilisation":"90/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"314ea500-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Ralink Technology, Corp.","bss_load_model":"Ralink Wireless Access Point","bss_load_model_number":"RT2860","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"RalinkAPS","config_methods_rf_bands":"0x1","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"ac:22:05:e6:ff:41","interface":"wlan0","config_methods_tsf":"212108270373 usec (2d, 10:55:08)","config_methods_freq":2462,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy RadioMeasure (0x1011)","config_methods_signal":"-41.00 dBm","config_methods_last_seen":"1750 ms ago","information_elements_from_probe_response_frame_ssid":"UPCCDB29F5","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 11","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":11,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":3,"bss_load_channel_utilisation":"87/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"314ea500-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Ralink Technology, Corp.","bss_load_model":"Ralink Wireless Access Point","bss_load_model_number":"RT2860","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"RalinkAPS","config_methods_rf_bands":"0x1","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"ac:22:05:e6:ff:24","interface":"wlan0","config_methods_tsf":"212107576616 usec (2d, 10:55:07)","config_methods_freq":5180,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)","config_methods_signal":"-30.00 dBm","config_methods_last_seen":"130 ms ago","information_elements_from_probe_response_frame_ssid":"UPCCDB29F5","information_elements_from_probe_response_frame_supported_rates":"6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 36","information_elements_from_probe_response_frame_power_constraint":"3 dB","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"TKIP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_capabilities_capabilities":"0x6f","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-23, 32","ht_operation_primary_channel":36,"ht_operation_secondary_channel_offset":"above","ht_operation_sta_channel_width":"any","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":6,"vht_capabilities_0x33827930_max_mpdu_length":3895,"vht_capabilities_0x33827930_supported_channel_width":"neither 160 nor 80+80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"MCS 0-9","vht_rx_mcs_set_4_streams":"not supported","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"0 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"MCS 0-9","vht_tx_mcs_set_4_streams":"not supported","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"0 Mbps","vht_operation_channel_width":"1 (80 MHz)","vht_operation_center_freq_segment_1":42,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xffc0","bss_load_station_count":3,"bss_load_channel_utilisation":"35/255","bss_load_available_admission_capacity":"30000 [*32us]","bss_load_wpa":"Version: 1","bss_load_group_cipher":"TKIP","bss_load_pairwise_ciphers":"TKIP","bss_load_authentication_suites":"PSK","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"314ea500-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Marvell","bss_load_model":"WAP","bss_load_model_number":123,"bss_load_serial_number":12345,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"5G wireless AP","config_methods_rf_bands":"0x2","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"a8:d3:f7:96:10:69","interface":"wlan0","config_methods_tsf":"212107440363 usec (2d, 10:55:07)","config_methods_freq":2442,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortPreamble ShortSlotTime (0x0431)","config_methods_signal":"-81.00 dBm","config_methods_last_seen":"2630 ms ago","information_elements_from_probe_response_frame_ssid":"o2-WLAN34","information_elements_from_probe_response_frame_supported_rates":"9.0 18.0 36.0 54.0 1.0* 2.0 5.5 11.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 7","information_elements_from_probe_response_frame_country":"DE Environment: Indoor/Outdoor","information_elements_from_probe_response_frame_power_constraint":"0 dB","information_elements_from_probe_response_frame_erp":"","ht_capabilities_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"16 usec (0x07)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_capabilities_rsn":"Version: 1","ht_capabilities_group_cipher":"CCMP","ht_capabilities_pairwise_ciphers":"CCMP","ht_capabilities_authentication_suites":"PSK","ht_capabilities_extended_supported_rates":"6.0 12.0 24.0 48.0","ht_operation_primary_channel":7,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"nonmember","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"overlapping_bss_scan_params_passive_dwell":"20 TUs","overlapping_bss_scan_params_active_dwell":"10 TUs","overlapping_bss_scan_params_channel_width_trigger_scan_interval":"300 s","overlapping_bss_scan_params_scan_passive_total_per_channel":"200 TUs","overlapping_bss_scan_params_scan_active_total_per_channel":"20 TUs","overlapping_bss_scan_params_bss_width_channel_transition_delay_factor":5,"overlapping_bss_scan_params_obss_scan_activity_threshold":"100.00 %","overlapping_bss_scan_params_extended_capabilities":"HT Information Exchange Supported","overlapping_bss_scan_params_wmm":"Parameter version 1","overlapping_bss_scan_params_be":"CW 15-1023, AIFSN 3","overlapping_bss_scan_params_bk":"CW 15-1023, AIFSN 7","overlapping_bss_scan_params_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","overlapping_bss_scan_params_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","overlapping_bss_scan_params_wps":"Version: 1.0","overlapping_bss_scan_params_wi_fi_protected_setup_state":"2 (Configured)","overlapping_bss_scan_params_response_type":"3 (AP)","overlapping_bss_scan_params_uuid":"4e9bd57c-8ebe-46d8-aa04-cdd3994f7288","overlapping_bss_scan_params_manufacturer":"Arcadyan","overlapping_bss_scan_params_model":"o2 HomeBox 6441","overlapping_bss_scan_params_model_number":"IAD 6441","overlapping_bss_scan_params_serial_number":"D512146595","overlapping_bss_scan_params_primary_device_type":"6-0050f204-1","overlapping_bss_scan_params_device_name":"D512146595-A8D3F7","config_methods_rf_bands":"0x3","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"54:fa:3e:87:1f:93","interface":"wlan0","config_methods_tsf":"212108698335 usec (2d, 10:55:08)","config_methods_freq":2472,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortSlotTime APSD (0x0c11)","config_methods_signal":"-72.00 dBm","config_methods_last_seen":"1310 ms ago","information_elements_from_probe_response_frame_ssid":"moin moin","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 13","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","ht_capabilities_capabilities":"0x1ec","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"No restriction (0x00)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":13,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_wmm":"Parameter version 1","ht_operation_be":"CW 15-1023, AIFSN 3","ht_operation_bk":"CW 15-1023, AIFSN 7","ht_operation_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","ht_operation_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_station_count":1,"bss_load_channel_utilisation":"26/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_extended_capabilities":"HT Information Exchange Supported","bss_load_country":"DE Environment: Indoor/Outdoor","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"bc329e00-1dd8-11b2-8601-54fa3e871f93","bss_load_manufacturer":"Celeno Communication, Inc.","bss_load_model":"Celeno Wireless AP 2.4G","bss_load_model_number":"CL1800","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"CelenoAP2.4G","bss_load_config_methods":"Display, PBC, Keypad","bss_load_rf_bands":"0x1","bss_load_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"ae:22:15:db:4d:5b","interface":"wlan0","bss_load_tsf":"212106562854 usec (2d, 10:55:06)","bss_load_freq":2412,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS ShortSlotTime RadioMeasure (0x1401)","bss_load_signal":"-57.00 dBm","bss_load_last_seen":"3510 ms ago","information_elements_from_probe_response_frame_ssid":"Vodafone Hotspot","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 1","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":1,"bss_load_channel_utilisation":"103/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor"},{"bssid":"90:5c:44:d1:34:2f","interface":"wlan0","bss_load_tsf":"212107263738 usec (2d, 10:55:07)","bss_load_freq":2437,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","bss_load_signal":"-53.00 dBm","bss_load_last_seen":"2810 ms ago","bss_load_ssid":"UPC5144FAF","bss_load_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","bss_load_ds_parameter_set":"channel 6","bss_load_erp":"Barker_Preamble_Mode","bss_load_extended_supported_rates":"6.0 12.0 24.0 48.0","bss_load_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":6,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"non-HT mixed","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":1,"bss_load_channel_utilisation":"109/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"30b60e80-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Ralink Technology, Corp.","bss_load_model":"Ralink Wireless Access Point","bss_load_model_number":"RT2860","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"RalinkAPS","config_methods_rf_bands":"0x1","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"92:5c:14:d1:34:2f","interface":"wlan0","config_methods_tsf":"212107270871 usec (2d, 10:55:07)","config_methods_freq":2437,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS ShortSlotTime RadioMeasure (0x1401)","config_methods_signal":"-53.00 dBm","config_methods_last_seen":"2800 ms ago","information_elements_from_probe_response_frame_ssid":"Vodafone Hotspot","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 6","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":6,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"non-HT mixed","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":1,"bss_load_channel_utilisation":"109/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor"},{"bssid":"36:2c:b4:34:3b:95","interface":"wlan0","bss_load_tsf":"212075883822 usec (2d, 10:54:35)","bss_load_freq":2412,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","bss_load_signal":"-77.00 dBm","bss_load_last_seen":"13150 ms ago","information_elements_from_probe_response_frame_ssid":"Gast_Medusa_13","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 1","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":0,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":0,"bss_load_channel_utilisation":"94/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor"},{"bssid":"fe:49:2d:20:d8:21","interface":"wlan0","bss_load_tsf":"212080903764 usec (2d, 10:54:40)","bss_load_freq":2412,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortSlotTime (0x0411)","bss_load_signal":"-67.00 dBm","bss_load_last_seen":"29170 ms ago","information_elements_from_probe_response_frame_ssid":"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00","information_elements_from_probe_response_frame_supported_rates":"6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 1","information_elements_from_probe_response_frame_tim":"DTIM Count 1 DTIM Period 2 Bitmap Control 0x0 Bitmap[0] 0x0","information_elements_from_probe_response_frame_erp":"","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"CCMP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"16-PTKSA-RC 1-GTKSA-RC (0x000c)","ht_capabilities_capabilities":"0x1ad","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":1,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":0,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"Extended Channel Switching","ht_operation_wps":"Version: 1.0","ht_operation_wi_fi_protected_setup_state":"2 (Configured)","ht_operation_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20","ht_operation_device_name":"Marion,Laura,Larissas Fire TV...","ht_operation_primary_device_type":"1-0050f204-9","ht_operation_wmm":"Parameter version 1","ht_operation_be":"CW 15-1023, AIFSN 3","ht_operation_bk":"CW 15-1023, AIFSN 7","ht_operation_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","ht_operation_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","ht_operation_p2p":"Group capa: 0x25, Device capa: 0xab","ht_operation_unknown_tlv_0x03_6_bytes":"49 2d 20 58 21 dd"},{"bssid":"90:5c:44:db:21:48","interface":"wlan0","ht_operation_tsf":"212077364612 usec (2d, 10:54:37)","ht_operation_freq":2462,"ht_operation_beacon_interval":"100 TUs","ht_operation_capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","ht_operation_signal":"-76.00 dBm","ht_operation_last_seen":"27640 ms ago","information_elements_from_probe_response_frame_ssid":"UPC614F5E5","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 11","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":11,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":1,"bss_load_channel_utilisation":"100/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"314ea500-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Ralink Technology, Corp.","bss_load_model":"Ralink Wireless Access Point","bss_load_model_number":"RT2860","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"RalinkAPS","config_methods_rf_bands":"0x1","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"ae:22:15:e6:ff:41","interface":"wlan0","config_methods_tsf":"212108278788 usec (2d, 10:55:08)","config_methods_freq":2462,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS RadioMeasure (0x1001)","config_methods_signal":"-40.00 dBm","config_methods_last_seen":"1740 ms ago","information_elements_from_probe_response_frame_ssid":"Vodafone Hotspot","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 11","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":11,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":3,"bss_load_channel_utilisation":"87/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor"},{"bssid":"34:31:c4:b8:2e:85","interface":"wlan0","bss_load_tsf":"212081672689 usec (2d, 10:54:41)","bss_load_freq":2437,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortPreamble ShortSlotTime RadioMeasure (0x1431)","bss_load_signal":"-83.00 dBm","bss_load_last_seen":"28400 ms ago","information_elements_from_probe_response_frame_ssid":"Nexus","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 6.0* 9.0 12.0* 18.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 6","information_elements_from_probe_response_frame_tim":"DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0 (+ 1 octet)","information_elements_from_probe_response_frame_country":"DE Environment: Indoor/Outdoor","information_elements_from_probe_response_frame_erp":"","information_elements_from_probe_response_frame_extended_supported_rates":"24.0* 36.0 48.0 54.0","bss_load_station_count":13,"bss_load_channel_utilisation":"74/255","bss_load_available_admission_capacity":"0 [*32us]","ht_capabilities_capabilities":"0x1ad","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"8 usec (0x06)","ht_capabilities_ht_tx/rx_mcs_rate_indexes_supported":"0-23","ht_operation_primary_channel":6,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"nonmember","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"overlapping_bss_scan_params_passive_dwell":"20 TUs","overlapping_bss_scan_params_active_dwell":"10 TUs","overlapping_bss_scan_params_channel_width_trigger_scan_interval":"300 s","overlapping_bss_scan_params_scan_passive_total_per_channel":"200 TUs","overlapping_bss_scan_params_scan_active_total_per_channel":"20 TUs","overlapping_bss_scan_params_bss_width_channel_transition_delay_factor":5,"overlapping_bss_scan_params_obss_scan_activity_threshold":"0.25 %","overlapping_bss_scan_params_extended_capabilities":"HT Information Exchange Supported, Extended Channel Switching, TFS, WNM-Sleep Mode, TIM Broadcast, BSS Transition, 6","overlapping_bss_scan_params_wmm":"Parameter version 1","overlapping_bss_scan_params_be":"CW 15-1023, AIFSN 3","overlapping_bss_scan_params_bk":"CW 15-1023, AIFSN 7","overlapping_bss_scan_params_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","overlapping_bss_scan_params_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","overlapping_bss_scan_params_wps":"Version: 1.0","overlapping_bss_scan_params_wi_fi_protected_setup_state":"2 (Configured)","overlapping_bss_scan_params_rf_bands":"0x3","overlapping_bss_scan_params_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20","overlapping_bss_scan_params_rsn":"Version: 1","overlapping_bss_scan_params_group_cipher":"CCMP","overlapping_bss_scan_params_pairwise_ciphers":"CCMP","overlapping_bss_scan_params_authentication_suites":"PSK 00-0f-ac:8","overlapping_bss_scan_params_capabilities":"1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)"},{"bssid":"92:5c:14:db:21:48","interface":"wlan0","overlapping_bss_scan_params_tsf":"212098644532 usec (2d, 10:54:58)","overlapping_bss_scan_params_freq":2462,"overlapping_bss_scan_params_beacon_interval":"100 TUs","overlapping_bss_scan_params_capability":"ESS ShortSlotTime RadioMeasure (0x1401)","overlapping_bss_scan_params_signal":"-71.00 dBm","overlapping_bss_scan_params_last_seen":"11430 ms ago","information_elements_from_probe_response_frame_ssid":"Vodafone Hotspot","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 11","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":11,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":1,"bss_load_channel_utilisation":"111/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor"},{"bssid":"9c:80:df:31:03:a4","interface":"wlan0","bss_load_tsf":"212082583134 usec (2d, 10:54:42)","bss_load_freq":2467,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortSlotTime (0x0411)","bss_load_signal":"-87.00 dBm","bss_load_last_seen":"27490 ms ago","information_elements_from_probe_response_frame_ssid":"o2-WLAN84","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 12","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"DE Environment: Indoor/Outdoor","information_elements_from_probe_response_frame_wps":"Version: 1.0","information_elements_from_probe_response_frame_wi_fi_protected_setup_state":"2 (Configured)","information_elements_from_probe_response_frame_tim":"DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","ht_capabilities_capabilities":"0x106e","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15, 32","ht_operation_primary_channel":12,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"20 MHz","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported","overlapping_bss_scan_params_passive_dwell":"20 TUs","overlapping_bss_scan_params_active_dwell":"10 TUs","overlapping_bss_scan_params_channel_width_trigger_scan_interval":"300 s","overlapping_bss_scan_params_scan_passive_total_per_channel":"200 TUs","overlapping_bss_scan_params_scan_active_total_per_channel":"20 TUs","overlapping_bss_scan_params_bss_width_channel_transition_delay_factor":5,"overlapping_bss_scan_params_obss_scan_activity_threshold":"0.25 %","overlapping_bss_scan_params_rsn":"Version: 1","overlapping_bss_scan_params_group_cipher":"CCMP","overlapping_bss_scan_params_pairwise_ciphers":"CCMP","overlapping_bss_scan_params_authentication_suites":"PSK","overlapping_bss_scan_params_capabilities":"PreAuth 1-PTKSA-RC 1-GTKSA-RC (0x0001)","overlapping_bss_scan_params_wmm":"Parameter version 1","overlapping_bss_scan_params_be":"CW 15-1023, AIFSN 3","overlapping_bss_scan_params_bk":"CW 15-1023, AIFSN 7","overlapping_bss_scan_params_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","overlapping_bss_scan_params_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_station_count":768,"bss_load_channel_utilisation":"33/255","bss_load_available_admission_capacity":"4730 [*32us]"},{"bssid":"36:2c:94:34:3b:95","interface":"wlan0","bss_load_tsf":"212096926483 usec (2d, 10:54:56)","bss_load_freq":2412,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS ShortSlotTime RadioMeasure (0x1401)","bss_load_signal":"-84.00 dBm","bss_load_last_seen":"13150 ms ago","bss_load_ssid":"Vodafone Hotspot","bss_load_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","bss_load_ds_parameter_set":"channel 1","bss_load_erp":"Barker_Preamble_Mode","bss_load_extended_supported_rates":"6.0 12.0 24.0 48.0","bss_load_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":0,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":0,"bss_load_channel_utilisation":"90/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec"},{"bssid":"38:43:7d:1c:95:e6","interface":"wlan0","bss_load_tsf":"212097695148 usec (2d, 10:54:57)","bss_load_freq":2437,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","bss_load_signal":"-83.00 dBm","bss_load_last_seen":"12380 ms ago","information_elements_from_probe_response_frame_ssid":"UPCB45EF15","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 6","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","information_elements_from_probe_response_frame_tim":"DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0","information_elements_from_probe_response_frame_wpa":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"TKIP","information_elements_from_probe_response_frame_pairwise_ciphers":"TKIP CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","information_elements_from_probe_response_frame_wps":"Version: 1.0","information_elements_from_probe_response_frame_wi_fi_protected_setup_state":"2 (Configured)","information_elements_from_probe_response_frame_uuid":"30b60e80-1dd2-11b2-8601-8e4aa01a9d4a","information_elements_from_probe_response_frame_rf_bands":"0x1","information_elements_from_probe_response_frame_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":6,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","ht_operation_wmm":"Parameter version 1","ht_operation_be":"CW 15-1023, AIFSN 3","ht_operation_bk":"CW 15-1023, AIFSN 7","ht_operation_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","ht_operation_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_station_count":1,"bss_load_channel_utilisation":"86/255","bss_load_available_admission_capacity":"31250 [*32us]"},{"bssid":"90:5c:44:db:21:33","interface":"wlan0","bss_load_tsf":"212107555845 usec (2d, 10:55:07)","bss_load_freq":5180,"bss_load_beacon_interval":"100 TUs","bss_load_capability":"ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)","bss_load_signal":"-88.00 dBm","bss_load_last_seen":"2510 ms ago","information_elements_from_probe_response_frame_ssid":"UPC614F5E5","information_elements_from_probe_response_frame_supported_rates":"6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 36","information_elements_from_probe_response_frame_power_constraint":"3 dB","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"TKIP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_capabilities_capabilities":"0x6f","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-23, 32","ht_operation_primary_channel":36,"ht_operation_secondary_channel_offset":"above","ht_operation_sta_channel_width":"any","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":6,"vht_capabilities_0x33827930_max_mpdu_length":3895,"vht_capabilities_0x33827930_supported_channel_width":"neither 160 nor 80+80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"MCS 0-9","vht_rx_mcs_set_4_streams":"not supported","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"0 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"MCS 0-9","vht_tx_mcs_set_4_streams":"not supported","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"0 Mbps","vht_operation_channel_width":"1 (80 MHz)","vht_operation_center_freq_segment_1":42,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xffc0","bss_load_station_count":2,"bss_load_channel_utilisation":"54/255","bss_load_available_admission_capacity":"30000 [*32us]","bss_load_wpa":"Version: 1","bss_load_group_cipher":"TKIP","bss_load_pairwise_ciphers":"TKIP","bss_load_authentication_suites":"PSK","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"314ea500-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Marvell","bss_load_model":"WAP","bss_load_model_number":123,"bss_load_serial_number":12345,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"5G wireless AP","config_methods_rf_bands":"0x2","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"a8:d3:f7:96:10:6d","interface":"wlan0","config_methods_tsf":"212107799783 usec (2d, 10:55:07)","config_methods_freq":5200,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy SpectrumMgmt ShortSlotTime (0x0511)","config_methods_signal":"-88.00 dBm","config_methods_last_seen":"2260 ms ago","information_elements_from_probe_response_frame_ssid":"o2-WLAN34","information_elements_from_probe_response_frame_supported_rates":"6.0* 9.0 12.0* 18.0 24.0 36.0 48.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 40","information_elements_from_probe_response_frame_country":"DE Environment: Indoor/Outdoor","information_elements_from_probe_response_frame_power_constraint":"0 dB","ht_capabilities_capabilities":"0x86f","ht_capabilities_max_amsdu_length":"7935 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_tx/rx_mcs_rate_indexes_supported":"0-31, 33-76","ht_operation_primary_channel":40,"ht_operation_secondary_channel_offset":"below","ht_operation_sta_channel_width":"any","ht_operation_rifs":0,"ht_operation_ht_protection":"nonmember","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":1,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wmm":"Parameter version 1","ht_operation_be":"CW 15-1023, AIFSN 3","ht_operation_bk":"CW 15-1023, AIFSN 7","ht_operation_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","ht_operation_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","ht_operation_rsn":"Version: 1","ht_operation_group_cipher":"CCMP","ht_operation_pairwise_ciphers":"CCMP","ht_operation_authentication_suites":"PSK","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, SSID List, 6","ht_operation_wps":"Version: 1.0","ht_operation_wi_fi_protected_setup_state":"2 (Configured)","ht_operation_response_type":"3 (AP)","ht_operation_uuid":"4e9bd57c-8ebe-46d8-aa04-cdd3994f7288","ht_operation_manufacturer":"Quantenna","ht_operation_model":"Topaz","ht_operation_model_number":"QV840.432","ht_operation_serial_number":"A8D3F796106D","ht_operation_primary_device_type":"6-0050f204-1","ht_operation_device_name":"Reference Design","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20","vht_capabilities_0x3fcb7832_max_mpdu_length":11454,"vht_capabilities_0x3fcb7832_supported_channel_width":"neither 160 nor 80+80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"MCS 0-9","vht_rx_mcs_set_4_streams":"MCS 0-9","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"0 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"MCS 0-9","vht_tx_mcs_set_4_streams":"MCS 0-9","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"0 Mbps","vht_operation_channel_width":"1 (80 MHz)","vht_operation_center_freq_segment_1":42,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xfffc"},{"bssid":"90:5c:44:d1:34:20","interface":"wlan0","vht_operation_tsf":"212108016406 usec (2d, 10:55:08)","vht_operation_freq":5220,"vht_operation_beacon_interval":"100 TUs","vht_operation_capability":"ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)","vht_operation_signal":"-46.00 dBm","vht_operation_last_seen":"2060 ms ago","information_elements_from_probe_response_frame_ssid":"UPC5144FAF","information_elements_from_probe_response_frame_supported_rates":"6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 44","information_elements_from_probe_response_frame_power_constraint":"3 dB","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"TKIP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_capabilities_capabilities":"0x6f","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-23, 32","ht_operation_primary_channel":44,"ht_operation_secondary_channel_offset":"above","ht_operation_sta_channel_width":"any","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":6,"vht_capabilities_0x33827930_max_mpdu_length":3895,"vht_capabilities_0x33827930_supported_channel_width":"neither 160 nor 80+80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"MCS 0-9","vht_rx_mcs_set_4_streams":"not supported","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"0 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"MCS 0-9","vht_tx_mcs_set_4_streams":"not supported","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"0 Mbps","vht_operation_channel_width":"1 (80 MHz)","vht_operation_center_freq_segment_1":42,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xffc0","bss_load_station_count":1,"bss_load_channel_utilisation":"33/255","bss_load_available_admission_capacity":"30000 [*32us]","bss_load_wpa":"Version: 1","bss_load_group_cipher":"TKIP","bss_load_pairwise_ciphers":"TKIP","bss_load_authentication_suites":"PSK","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"30b60e80-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Marvell","bss_load_model":"WAP","bss_load_model_number":123,"bss_load_serial_number":12345,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"5G wireless AP","config_methods_rf_bands":"0x2","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"ac:22:05:db:4d:22","interface":"wlan0","config_methods_tsf":"212108018921 usec (2d, 10:55:08)","config_methods_freq":5220,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)","config_methods_signal":"-68.00 dBm","config_methods_last_seen":"2020 ms ago","information_elements_from_probe_response_frame_ssid":"Hoeheitsgebiet","information_elements_from_probe_response_frame_supported_rates":"6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 44","information_elements_from_probe_response_frame_power_constraint":"3 dB","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"TKIP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_capabilities_capabilities":"0x6f","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-23, 32","ht_operation_primary_channel":44,"ht_operation_secondary_channel_offset":"above","ht_operation_sta_channel_width":"any","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_extended_capabilities":6,"vht_capabilities_0x33827930_max_mpdu_length":3895,"vht_capabilities_0x33827930_supported_channel_width":"neither 160 nor 80+80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"MCS 0-9","vht_rx_mcs_set_4_streams":"not supported","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"0 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"MCS 0-9","vht_tx_mcs_set_4_streams":"not supported","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"0 Mbps","vht_operation_channel_width":"1 (80 MHz)","vht_operation_center_freq_segment_1":42,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xffc0","bss_load_station_count":4,"bss_load_channel_utilisation":"43/255","bss_load_available_admission_capacity":"30000 [*32us]","bss_load_wpa":"Version: 1","bss_load_group_cipher":"TKIP","bss_load_pairwise_ciphers":"TKIP","bss_load_authentication_suites":"PSK","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"327fd200-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Marvell","bss_load_model":"WAP","bss_load_model_number":123,"bss_load_serial_number":12345,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"5G wireless AP","config_methods_rf_bands":"0x2","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"54:67:51:2c:3d:0a","interface":"wlan0","config_methods_tsf":"212108254184 usec (2d, 10:55:08)","config_methods_freq":2462,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortSlotTime RadioMeasure (0x1411)","config_methods_signal":"-80.00 dBm","config_methods_last_seen":"1820 ms ago","information_elements_from_probe_response_frame_ssid":"UPC956E146","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 11","information_elements_from_probe_response_frame_erp":"Barker_Preamble_Mode","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 12.0 24.0 48.0","information_elements_from_probe_response_frame_country":"EU Environment: Indoor/Outdoor","ht_capabilities_capabilities":"0x1ac","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":11,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":0,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":0,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wpa":"Version: 1","ht_operation_group_cipher":"TKIP","ht_operation_pairwise_ciphers":"TKIP CCMP","ht_operation_authentication_suites":"PSK","ht_operation_rsn":"Version: 1","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition","bss_load_station_count":0,"bss_load_channel_utilisation":"93/255","bss_load_available_admission_capacity":"31250 [*32us]","bss_load_wmm":"Parameter version 1","bss_load_be":"CW 15-1023, AIFSN 3","bss_load_bk":"CW 15-1023, AIFSN 7","bss_load_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","bss_load_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","bss_load_country":"EU Environment: Indoor/Outdoor","bss_load_wps":"Version: 1.0","bss_load_wi_fi_protected_setup_state":"2 (Configured)","bss_load_response_type":"3 (AP)","bss_load_uuid":"314ea500-1dd2-11b2-8601-8e4aa01a9d4a","bss_load_manufacturer":"Ralink Technology, Corp.","bss_load_model":"Ralink Wireless Access Point","bss_load_model_number":"RT2860","bss_load_serial_number":12345678,"bss_load_primary_device_type":"6-0050f204-1","bss_load_device_name":"RalinkAPS","config_methods_rf_bands":"0x1","config_methods_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20"},{"bssid":"74:31:70:75:f1:e2","interface":"wlan0","config_methods_tsf":"212098649788 usec (2d, 10:54:58)","config_methods_freq":2462,"config_methods_beacon_interval":"100 TUs","config_methods_capability":"ESS Privacy ShortSlotTime (0x0411)","config_methods_signal":"-80.00 dBm","config_methods_last_seen":"11420 ms ago","information_elements_from_probe_response_frame_ssid":"WLAN-75F122","information_elements_from_probe_response_frame_supported_rates":"1.0* 2.0* 5.5* 11.0* 18.0 24.0 36.0 54.0","information_elements_from_probe_response_frame_ds_parameter_set":"channel 11","information_elements_from_probe_response_frame_erp":"","information_elements_from_probe_response_frame_erp_d4.0":"","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"CCMP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"1-PTKSA-RC 1-GTKSA-RC (0x0000)","information_elements_from_probe_response_frame_extended_supported_rates":"6.0 9.0 12.0 48.0","ht_capabilities_capabilities":"0x186c","ht_capabilities_max_amsdu_length":"7935 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"16 usec (0x07)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":11,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","ht_operation_rifs":1,"ht_operation_ht_protection":"no","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":0,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"overlapping_bss_scan_params_passive_dwell":"20 TUs","overlapping_bss_scan_params_active_dwell":"10 TUs","overlapping_bss_scan_params_channel_width_trigger_scan_interval":"300 s","overlapping_bss_scan_params_scan_passive_total_per_channel":"200 TUs","overlapping_bss_scan_params_scan_active_total_per_channel":"20 TUs","overlapping_bss_scan_params_bss_width_channel_transition_delay_factor":5,"overlapping_bss_scan_params_obss_scan_activity_threshold":"0.25 %","overlapping_bss_scan_params_extended_capabilities":"HT Information Exchange Supported","overlapping_bss_scan_params_wmm":"Parameter version 1","overlapping_bss_scan_params_be":"CW 15-1023, AIFSN 3","overlapping_bss_scan_params_bk":"CW 15-1023, AIFSN 7","overlapping_bss_scan_params_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","overlapping_bss_scan_params_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","overlapping_bss_scan_params_wps":"Version: 1.0","overlapping_bss_scan_params_wi_fi_protected_setup_state":"2 (Configured)","overlapping_bss_scan_params_selected_registrar":"0x0","overlapping_bss_scan_params_response_type":"3 (AP)","overlapping_bss_scan_params_uuid":"00000000-0000-0003-0000-74317075f1e2","overlapping_bss_scan_params_manufacturer":"Corporation","overlapping_bss_scan_params_model":"VGV8539JW","overlapping_bss_scan_params_model_number":"1.47.000","overlapping_bss_scan_params_serial_number":"J144024542","overlapping_bss_scan_params_primary_device_type":"6-0050f204-1","overlapping_bss_scan_params_device_name":"Wireless Router(WFA)","overlapping_bss_scan_params_config_methods":"Label, PBC","overlapping_bss_scan_params_rf_bands":"0x3"},{"bssid":"1c:b0:44:75:42:a8","interface":"wlan0","overlapping_bss_scan_params_tsf":"212108018214 usec (2d, 10:55:08)","overlapping_bss_scan_params_freq":5220,"overlapping_bss_scan_params_beacon_interval":"100 TUs","overlapping_bss_scan_params_capability":"ESS Privacy SpectrumMgmt ShortSlotTime (0x0511)","overlapping_bss_scan_params_signal":"-89.00 dBm","overlapping_bss_scan_params_last_seen":"2060 ms ago","overlapping_bss_scan_params_ssid":"o2-WLAN38","overlapping_bss_scan_params_supported_rates":"6.0* 9.0 12.0* 18.0 24.0 36.0 48.0 54.0","overlapping_bss_scan_params_ds_parameter_set":"channel 44","bss_load_station_count":5,"bss_load_channel_utilisation":"55/255","bss_load_available_admission_capacity":"65535 [*32us]","bss_load_country":"DE Environment: Indoor/Outdoor","bss_load_power_constraint":"0 dB","ht_capabilities_capabilities":"0x86f","ht_capabilities_max_amsdu_length":"7935 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"4 usec (0x05)","ht_capabilities_ht_tx/rx_mcs_rate_indexes_supported":"0-31, 33-76","ht_operation_primary_channel":44,"ht_operation_secondary_channel_offset":"above","ht_operation_sta_channel_width":"any","ht_operation_rifs":0,"ht_operation_ht_protection":"nonmember","ht_operation_non_gf_present":1,"ht_operation_obss_non_gf_present":1,"ht_operation_dual_beacon":0,"ht_operation_dual_cts_protection":0,"ht_operation_stbc_beacon":0,"ht_operation_l_sig_txop_prot":0,"ht_operation_pco_active":0,"ht_operation_pco_phase":0,"ht_operation_wmm":"Parameter version 1","ht_operation_be":"CW 15-1023, AIFSN 3","ht_operation_bk":"CW 15-1023, AIFSN 7","ht_operation_vi":"CW 7-15, AIFSN 2, TXOP 3008 usec","ht_operation_vo":"CW 3-7, AIFSN 2, TXOP 1504 usec","ht_operation_rsn":"Version: 1","ht_operation_group_cipher":"CCMP","ht_operation_pairwise_ciphers":"CCMP","ht_operation_authentication_suites":"PSK","ht_operation_capabilities":"1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)","ht_operation_group_mgmt_cipher_suite":"AES-128-CMAC","ht_operation_extended_capabilities":"HT Information Exchange Supported, BSS Transition, SSID List, 6","ht_operation_wps":"Version: 1.0","ht_operation_wi_fi_protected_setup_state":"2 (Configured)","ht_operation_response_type":"3 (AP)","ht_operation_uuid":"b0493afc-202d-11b2-8a5b-1cb0447542a5","ht_operation_manufacturer":"Askey","ht_operation_model":"o2 HomeBox","ht_operation_model_number":6741,"ht_operation_serial_number":"1CB0447542A8","ht_operation_primary_device_type":"6-0050f204-1","ht_operation_device_name":"o2 HomeBox 6741","ht_operation_config_methods":"Display","ht_operation_unknown_tlv_0x1049_6_bytes":"00 37 2a 00 01 20","vht_capabilities_0x3fcb7832_max_mpdu_length":11454,"vht_capabilities_0x3fcb7832_supported_channel_width":"neither 160 nor 80+80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"MCS 0-9","vht_rx_mcs_set_4_streams":"MCS 0-9","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"0 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"MCS 0-9","vht_tx_mcs_set_4_streams":"MCS 0-9","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"0 Mbps","vht_operation_channel_width":"1 (80 MHz)","vht_operation_center_freq_segment_1":42,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xfffc"}] diff --git a/tests/fixtures/centos-7.7/iw-scan2.json b/tests/fixtures/centos-7.7/iw-scan2.json new file mode 100644 index 000000000..ef362c0e9 --- /dev/null +++ b/tests/fixtures/centos-7.7/iw-scan2.json @@ -0,0 +1 @@ +[{"bssid":"xx:xx:xx:xx:3e:41","interface":"wlan0-1","freq":2412,"capability":"ESS (0x1431)","information_elements_from_probe_response_frame_ssid":"Troubleshooting","information_elements_from_probe_response_frame_rsn":"Version: 1","information_elements_from_probe_response_frame_group_cipher":"CCMP","information_elements_from_probe_response_frame_pairwise_ciphers":"CCMP","information_elements_from_probe_response_frame_authentication_suites":"PSK","information_elements_from_probe_response_frame_capabilities":"16-PTKSA-RC 1-GTKSA-RC (0x000c)","ht_capabilities_capabilities":"0x1ef","ht_capabilities_max_amsdu_length":"3839 bytes","ht_capabilities_minimum_rx_ampdu_time_spacing":"No restriction (0x00)","ht_capabilities_ht_rx_mcs_rate_indexes_supported":"0-15","ht_operation_primary_channel":1,"ht_operation_secondary_channel_offset":"no secondary","ht_operation_sta_channel_width":"20 MHz","vht_capabilities_0x33800192_max_mpdu_length":11454,"vht_capabilities_0x33800192_supported_channel_width":"neither 160 nor 80 80","vht_rx_mcs_set_1_streams":"MCS 0-9","vht_rx_mcs_set_2_streams":"MCS 0-9","vht_rx_mcs_set_3_streams":"not supported","vht_rx_mcs_set_4_streams":"not supported","vht_rx_mcs_set_5_streams":"not supported","vht_rx_mcs_set_6_streams":"not supported","vht_rx_mcs_set_7_streams":"not supported","vht_rx_mcs_set_8_streams":"not supported","vht_rx_mcs_set_vht_rx_highest_supported":"780 Mbps","vht_tx_mcs_set_1_streams":"MCS 0-9","vht_tx_mcs_set_2_streams":"MCS 0-9","vht_tx_mcs_set_3_streams":"not supported","vht_tx_mcs_set_4_streams":"not supported","vht_tx_mcs_set_5_streams":"not supported","vht_tx_mcs_set_6_streams":"not supported","vht_tx_mcs_set_7_streams":"not supported","vht_tx_mcs_set_8_streams":"not supported","vht_tx_mcs_set_vht_tx_highest_supported":"780 Mbps","vht_tx_mcs_set_vht_extended_nss":"not supported","vht_operation_channel_width":"0 (20 or 40 MHz)","vht_operation_center_freq_segment_1":0,"vht_operation_center_freq_segment_2":0,"vht_operation_vht_basic_mcs_set":"0xfffa","he_mac_capabilities_0x010102000040_minimum_payload_size_of_128_bytes":1,"he_mac_capabilities_0x010102000040_he_phy_capabilities":"(0x06304c090c008008020c00):","he_mac_capabilities_0x010102000040_device_class":1,"he_mac_capabilities_0x010102000040_dcm_max_constellation":1,"he_mac_capabilities_0x010102000040_dcm_max_constellation_rx":1,"he_mac_capabilities_0x010102000040_beamformee_sts_<=_80mhz":3,"he_mac_capabilities_0x010102000040_max_nc":1,"he_mac_capabilities_0x010102000040_1_streams":"MCS 0-11","he_mac_capabilities_0x010102000040_2_streams":"MCS 0-11","he_mac_capabilities_0x010102000040_3_streams":"not supported","he_mac_capabilities_0x010102000040_4_streams":"not supported","he_mac_capabilities_0x010102000040_5_streams":"not supported","he_mac_capabilities_0x010102000040_6_streams":"not supported","he_mac_capabilities_0x010102000040_7_streams":"not supported","he_mac_capabilities_0x010102000040_8_streams":"not supported","tsf_usec":608162896731,"beacon_interval_tus":100,"signal_dbm":-54.0,"last_seen_ms":1410}] diff --git a/tests/fixtures/centos-7.7/iw-scan2.out b/tests/fixtures/centos-7.7/iw-scan2.out new file mode 100644 index 000000000..654013caf --- /dev/null +++ b/tests/fixtures/centos-7.7/iw-scan2.out @@ -0,0 +1,109 @@ +BSS xx:xx:xx:xx:3e:41(on wlan0-1) + last seen: 4206.107s [boottime] + TSF: 608162896731 usec (7d, 00:56:02) + freq: 2412 + beacon interval: 100 TUs + capability: ESS (0x1431) + signal: -54.00 dBm + last seen: 1410 ms ago + Information elements from Probe Response frame: + SSID: Troubleshooting + RSN: * Version: 1 + * Group cipher: CCMP + * Pairwise ciphers: CCMP + * Authentication suites: PSK + * Capabilities: 16-PTKSA-RC 1-GTKSA-RC (0x000c) + HT capabilities: + Capabilities: 0x1ef + RX LDPC + HT20/HT40 + SM Power Save disabled + RX HT20 SGI + RX HT40 SGI + TX STBC + RX STBC 1-stream + Max AMSDU length: 3839 bytes + No DSSS/CCK HT40 + Maximum RX AMPDU length 65535 bytes (exponent: 0x003) + Minimum RX AMPDU time spacing: No restriction (0x00) + HT RX MCS rate indexes supported: 0-15 + HT TX MCS rate indexes are undefined + HT operation: + * primary channel: 1 + * secondary channel offset: no secondary + * STA channel width: 20 MHz + VHT capabilities: + VHT Capabilities (0x33800192): + Max MPDU length: 11454 + Supported Channel Width: neither 160 nor 80 80 + RX LDPC + TX STBC + RX antenna pattern consistency + TX antenna pattern consistency + VHT RX MCS set: + 1 streams: MCS 0-9 + 2 streams: MCS 0-9 + 3 streams: not supported + 4 streams: not supported + 5 streams: not supported + 6 streams: not supported + 7 streams: not supported + 8 streams: not supported + VHT RX highest supported: 780 Mbps + VHT TX MCS set: + 1 streams: MCS 0-9 + 2 streams: MCS 0-9 + 3 streams: not supported + 4 streams: not supported + 5 streams: not supported + 6 streams: not supported + 7 streams: not supported + 8 streams: not supported + VHT TX highest supported: 780 Mbps + VHT extended NSS: not supported + VHT operation: + * channel width: 0 (20 or 40 MHz) + * center freq segment 1: 0 + * center freq segment 2: 0 + * VHT basic MCS set: 0xfffa + HE capabilities: + HE MAC Capabilities (0x010102000040): + HTC HE Supported + Minimum Payload size of 128 bytes: 1 + OM Control + A-MSDU in A-MPDU + HE PHY Capabilities: (0x06304c090c008008020c00): + HE40/2.4GHz + HE40/HE80/5GHz + Device Class: 1 + LDPC Coding in Payload + STBC Tx <= 80MHz + STBC Rx <= 80MHz + Full Bandwidth UL MU-MIMO + DCM Max Constellation: 1 + DCM Max Constellation Rx: 1 + Beamformee STS <= 80Mhz: 3 + PPE Threshold Present + Max NC: 1 + 20MHz in 40MHz HE PPDU 2.4GHz + TX 1024-QAM + RX 1024-QAM + HE RX MCS and NSS set <= 80 MHz + 1 streams: MCS 0-11 + 2 streams: MCS 0-11 + 3 streams: not supported + 4 streams: not supported + 5 streams: not supported + 6 streams: not supported + 7 streams: not supported + 8 streams: not supported + HE TX MCS and NSS set <= 80 MHz + 1 streams: MCS 0-11 + 2 streams: MCS 0-11 + 3 streams: not supported + 4 streams: not supported + 5 streams: not supported + 6 streams: not supported + 7 streams: not supported + 8 streams: not supported + PPE Threshold 0x19 0x1c 0xc7 0x71 diff --git a/tests/test_iw_scan.py b/tests/test_iw_scan.py index fb4db26cd..fac85bd0e 100644 --- a/tests/test_iw_scan.py +++ b/tests/test_iw_scan.py @@ -7,7 +7,6 @@ class MyTests(unittest.TestCase): - # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan0.out'), 'r', encoding='utf-8') as f: centos_7_7_iw_scan0 = f.read() @@ -15,6 +14,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan1.out'), 'r', encoding='utf-8') as f: centos_7_7_iw_scan1 = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan2.out'), 'r', encoding='utf-8') as f: + centos_7_7_iw_scan2 = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan0.json'), 'r', encoding='utf-8') as f: centos_7_7_iw_scan0_json = json.loads(f.read()) @@ -22,6 +24,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan1.json'), 'r', encoding='utf-8') as f: centos_7_7_iw_scan1_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan2.json'), 'r', encoding='utf-8') as f: + centos_7_7_iw_scan2_json = json.loads(f.read()) + def test_iw_scan_nodata(self): """ @@ -41,6 +46,12 @@ def test_iw_scan1_centos_7_7(self): """ self.assertEqual(jc.parsers.iw_scan.parse(self.centos_7_7_iw_scan1, quiet=True), self.centos_7_7_iw_scan1_json) + def test_iw_scan2_centos_7_7(self): + """ + Test 'iw_scan' on Centos 7.7 + """ + self.assertEqual(jc.parsers.iw_scan.parse(self.centos_7_7_iw_scan2, quiet=True), self.centos_7_7_iw_scan2_json) + if __name__ == '__main__': unittest.main()