From 59b89ecbd49205a866a4c355e6ef96c21a0603c5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 24 Oct 2023 15:24:33 -0700 Subject: [PATCH 01/60] version bump --- CHANGELOG | 3 +++ jc/lib.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1d64ef46..0a5e0e87 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20231023 v1.23.7 +- xxx + 20231023 v1.23.6 - Fix XML parser for xmltodict library versions < 0.13.0 - Fix `who` command parser for cases when the from field contains spaces diff --git a/jc/lib.py b/jc/lib.py index 4fc15615..ad3498dc 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -9,7 +9,7 @@ from .jc_types import ParserInfoType, JSONDictType from jc import appdirs -__version__ = '1.23.6' +__version__ = '1.23.7' parsers: List[str] = [ 'acpi', diff --git a/setup.py b/setup.py index f92fbe61..e3e9b2e0 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.23.6', + version='1.23.7', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.', From b70025d6d6c9afaa4dc02ecf19a18046a5ebeb7c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 24 Oct 2023 16:17:53 -0700 Subject: [PATCH 02/60] fix for blank target in rule --- CHANGELOG | 4 ++-- jc/parsers/iptables.py | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0a5e0e87..33802f59 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ jc changelog -20231023 v1.23.7 -- xxx +20231024 v1.23.7 +- Fix `iptables` parser for cases where the `target` field is blank in a rule 20231023 v1.23.6 - Fix XML parser for xmltodict library versions < 0.13.0 diff --git a/jc/parsers/iptables.py b/jc/parsers/iptables.py index 7a1d45b2..704756ac 100644 --- a/jc/parsers/iptables.py +++ b/jc/parsers/iptables.py @@ -163,7 +163,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.8' + version = '1.9' description = '`iptables` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -271,6 +271,10 @@ def parse(data, raw=False, quiet=False): continue else: + # sometimes the "target" column is blank. Stuff in a dummy character + if headers[0] == 'target' and line.startswith(' '): + line = '\u2063' + line + rule = line.split(maxsplit=len(headers) - 1) temp_rule = dict(zip(headers, rule)) if temp_rule: @@ -279,7 +283,4 @@ def parse(data, raw=False, quiet=False): if chain: raw_output.append(chain) - if raw: - return raw_output - else: - return _process(raw_output) + return raw_output if raw else _process(raw_output) From 5c6fa5bff62503cdeed4960148485cfa72bd7a07 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 25 Oct 2023 13:37:59 -0700 Subject: [PATCH 03/60] better header row detection --- jc/parsers/vmstat.py | 12 ++++++++---- jc/parsers/vmstat_s.py | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/jc/parsers/vmstat.py b/jc/parsers/vmstat.py index ae004bf6..6f4c9048 100644 --- a/jc/parsers/vmstat.py +++ b/jc/parsers/vmstat.py @@ -121,12 +121,16 @@ Examples: } ] """ +import re import jc.utils +PROCS_HEADER_RE = re.compile(r'^-*procs-* ') +DISK_HEADER_RE = re.compile(r'^-*disk-* ') + class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`vmstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -203,18 +207,18 @@ def parse(data, raw=False, quiet=False): for line in filter(None, data.splitlines()): # detect output type - if not procs and not disk and line.startswith('procs'): + if not procs and not disk and PROCS_HEADER_RE.match(line): procs = True tstamp = '-timestamp-' in line continue - if not procs and not disk and line.startswith('disk'): + if not procs and not disk and DISK_HEADER_RE.match(line): disk = True tstamp = '-timestamp-' in line continue # skip header rows - if (procs or disk) and (line.startswith('procs') or line.startswith('disk')): + if (procs or disk) and (PROCS_HEADER_RE.match(line) or DISK_HEADER_RE.match(line)): continue if 'swpd' in line and 'free' in line and 'buff' in line and 'cache' in line: diff --git a/jc/parsers/vmstat_s.py b/jc/parsers/vmstat_s.py index 4ef4d847..6df5964b 100644 --- a/jc/parsers/vmstat_s.py +++ b/jc/parsers/vmstat_s.py @@ -91,16 +91,20 @@ Examples: {"runnable_procs":"2","uninterruptible_sleeping_procs":"0","virtua...} ... """ +import re import jc.utils from jc.streaming import ( add_jc_meta, streaming_input_type_check, streaming_line_input_type_check, raise_or_yield ) from jc.exceptions import ParseError +PROCS_HEADER_RE = re.compile(r'^-*procs-* ') +DISK_HEADER_RE = re.compile(r'^-*disk-* ') + class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`vmstat` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -182,18 +186,18 @@ def parse(data, raw=False, quiet=False, ignore_exceptions=False): continue # detect output type - if not procs and not disk and line.startswith('procs'): + if not procs and not disk and PROCS_HEADER_RE.match(line): procs = True tstamp = '-timestamp-' in line continue - if not procs and not disk and line.startswith('disk'): + if not procs and not disk and DISK_HEADER_RE.match(line): disk = True tstamp = '-timestamp-' in line continue # skip header rows - if (procs or disk) and (line.startswith('procs') or line.startswith('disk')): + if (procs or disk) and (PROCS_HEADER_RE.match(line) or DISK_HEADER_RE.match(line)): continue if 'swpd' in line and 'free' in line and 'buff' in line and 'cache' in line: From 88649a4e8dd7bcbe146ece637e255c95edfb98ab Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 25 Oct 2023 13:42:19 -0700 Subject: [PATCH 04/60] doc update --- CHANGELOG | 3 ++- docs/parsers/iptables.md | 2 +- docs/parsers/vmstat.md | 2 +- docs/parsers/vmstat_s.md | 2 +- man/jc.1 | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 33802f59..bf1e4b4b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,8 @@ jc changelog -20231024 v1.23.7 +20231025 v1.23.7 - Fix `iptables` parser for cases where the `target` field is blank in a rule +- Fix `vmstat` parsers for some cases where wide output is used 20231023 v1.23.6 - Fix XML parser for xmltodict library versions < 0.13.0 diff --git a/docs/parsers/iptables.md b/docs/parsers/iptables.md index 7c9f7d8f..f23af6f3 100644 --- a/docs/parsers/iptables.md +++ b/docs/parsers/iptables.md @@ -186,4 +186,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/vmstat.md b/docs/parsers/vmstat.md index 9cb361b1..58113f67 100644 --- a/docs/parsers/vmstat.md +++ b/docs/parsers/vmstat.md @@ -149,4 +149,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/vmstat_s.md b/docs/parsers/vmstat_s.md index e443d457..96b318b1 100644 --- a/docs/parsers/vmstat_s.md +++ b/docs/parsers/vmstat_s.md @@ -123,4 +123,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/man/jc.1 b/man/jc.1 index 1b2c24e0..78de1e67 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-10-23 1.23.6 "JSON Convert" +.TH jc 1 2023-10-25 1.23.7 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings From 13a802225bfefbd721602b5c71f609c3b081a3ac Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 25 Oct 2023 16:53:24 -0700 Subject: [PATCH 05/60] add tests --- .../generic/vmstat-extra-wide-streaming.json | 1 + tests/fixtures/generic/vmstat-extra-wide.json | 1 + tests/fixtures/generic/vmstat-extra-wide.out | 4 ++++ tests/test_vmstat.py | 12 ++++++++++++ tests/test_vmstat_s.py | 12 ++++++++++++ 5 files changed, 30 insertions(+) create mode 100644 tests/fixtures/generic/vmstat-extra-wide-streaming.json create mode 100644 tests/fixtures/generic/vmstat-extra-wide.json create mode 100644 tests/fixtures/generic/vmstat-extra-wide.out diff --git a/tests/fixtures/generic/vmstat-extra-wide-streaming.json b/tests/fixtures/generic/vmstat-extra-wide-streaming.json new file mode 100644 index 00000000..df97eae4 --- /dev/null +++ b/tests/fixtures/generic/vmstat-extra-wide-streaming.json @@ -0,0 +1 @@ +[{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2430264,"buffer_mem":1011084,"cache_mem":22658240,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":4,"blocks_out":6,"interrupts":3,"context_switches":5,"user_time":3,"system_time":1,"idle_time":96,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] diff --git a/tests/fixtures/generic/vmstat-extra-wide.json b/tests/fixtures/generic/vmstat-extra-wide.json new file mode 100644 index 00000000..df97eae4 --- /dev/null +++ b/tests/fixtures/generic/vmstat-extra-wide.json @@ -0,0 +1 @@ +[{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2430264,"buffer_mem":1011084,"cache_mem":22658240,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":4,"blocks_out":6,"interrupts":3,"context_switches":5,"user_time":3,"system_time":1,"idle_time":96,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] diff --git a/tests/fixtures/generic/vmstat-extra-wide.out b/tests/fixtures/generic/vmstat-extra-wide.out new file mode 100644 index 00000000..50cd622b --- /dev/null +++ b/tests/fixtures/generic/vmstat-extra-wide.out @@ -0,0 +1,4 @@ +--procs-- -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- + r b swpd free buff cache si so bi bo in cs us sy id wa st + 0 0 0 2430264 1011084 22658240 0 0 4 6 3 5 3 1 96 0 0 + diff --git a/tests/test_vmstat.py b/tests/test_vmstat.py index 689adb10..c82f288c 100644 --- a/tests/test_vmstat.py +++ b/tests/test_vmstat.py @@ -40,6 +40,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long.out'), 'r', encoding='utf-8') as f: ubuntu_18_04_vmstat_1_long = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/vmstat-extra-wide.out'), 'r', encoding='utf-8') as f: + generic_vmstat_extra_wide = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat.json'), 'r', encoding='utf-8') as f: centos_7_7_vmstat_json = json.loads(f.read()) @@ -65,6 +68,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long.json'), 'r', encoding='utf-8') as f: ubuntu_18_04_vmstat_1_long_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/vmstat-extra-wide.json'), 'r', encoding='utf-8') as f: + generic_vmstat_extra_wide_json = json.loads(f.read()) + def test_vmstat_nodata(self): """ @@ -120,6 +126,12 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.vmstat.parse(self.ubuntu_18_04_vmstat_1_long, quiet=True), self.ubuntu_18_04_vmstat_1_long_json) + def test_vmstat_extra_wide(self): + """ + Test 'vmstat -w' with wider output + """ + self.assertEqual(jc.parsers.vmstat.parse(self.generic_vmstat_extra_wide, quiet=True), self.generic_vmstat_extra_wide_json) + if __name__ == '__main__': unittest.main() diff --git a/tests/test_vmstat_s.py b/tests/test_vmstat_s.py index 01ed7a56..9f50d7a9 100644 --- a/tests/test_vmstat_s.py +++ b/tests/test_vmstat_s.py @@ -45,6 +45,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long.out'), 'r', encoding='utf-8') as f: ubuntu_18_04_vmstat_1_long = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/vmstat-extra-wide.out'), 'r', encoding='utf-8') as f: + generic_vmstat_extra_wide = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-streaming.json'), 'r', encoding='utf-8') as f: centos_7_7_vmstat_streaming_json = json.loads(f.read()) @@ -70,6 +73,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long-streaming.json'), 'r', encoding='utf-8') as f: ubuntu_18_04_vmstat_1_long_streaming_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/vmstat-extra-wide-streaming.json'), 'r', encoding='utf-8') as f: + generic_vmstat_extra_wide_streaming_json = json.loads(f.read()) + def test_vmstat_s_nodata(self): """ @@ -131,6 +137,12 @@ class MyTests(unittest.TestCase): """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.ubuntu_18_04_vmstat_1_long.splitlines(), quiet=True)), self.ubuntu_18_04_vmstat_1_long_streaming_json) + def test_vmstat_extra_wide(self): + """ + Test 'vmstat -w' with extra wide output + """ + self.assertEqual(list(jc.parsers.vmstat_s.parse(self.generic_vmstat_extra_wide.splitlines(), quiet=True)), self.generic_vmstat_extra_wide_streaming_json) + if __name__ == '__main__': unittest.main() From 2fcb32e26f96bc5825a6bc7df4fea8aca829b7d8 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 4 Nov 2023 15:19:12 -0700 Subject: [PATCH 06/60] add debian/ubuntu package index support --- jc/parsers/rpm_qi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/parsers/rpm_qi.py b/jc/parsers/rpm_qi.py index bcdfa4eb..e178b35d 100644 --- a/jc/parsers/rpm_qi.py +++ b/jc/parsers/rpm_qi.py @@ -161,7 +161,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.6' + version = '1.7' description = '`rpm -qi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -234,7 +234,7 @@ def parse(data, raw=False, quiet=False): for line in filter(None, data.splitlines()): split_line = line.split(': ', maxsplit=1) - if split_line[0].startswith('Name') and len(split_line) == 2: + 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: From b881ad4ec0ebb43ebd49333388def366ab497309 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 4 Nov 2023 15:58:12 -0700 Subject: [PATCH 07/60] make blank target null --- jc/parsers/iptables.py | 8 +++++++- tests/fixtures/generic/iptables-no-jump.json | 1 + tests/fixtures/generic/iptables-no-jump.out | 4 ++++ tests/test_iptables.py | 12 ++++++++++++ 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 tests/fixtures/generic/iptables-no-jump.json create mode 100644 tests/fixtures/generic/iptables-no-jump.out diff --git a/jc/parsers/iptables.py b/jc/parsers/iptables.py index 704756ac..307315a8 100644 --- a/jc/parsers/iptables.py +++ b/jc/parsers/iptables.py @@ -25,7 +25,7 @@ Schema: "num" integer, "pkts": integer, "bytes": integer, # converted based on suffix - "target": string, + "target": string, # Null if blank "prot": string, "opt": string, # "--" = Null "in": string, @@ -222,6 +222,10 @@ def _process(proc_data): if rule['opt'] == '--': rule['opt'] = None + if 'target' in rule: + if rule['target'] == '': + rule['target'] = None + return proc_data @@ -278,6 +282,8 @@ def parse(data, raw=False, quiet=False): rule = line.split(maxsplit=len(headers) - 1) temp_rule = dict(zip(headers, rule)) if temp_rule: + if temp_rule.get('target') == '\u2063': + temp_rule['target'] = '' chain['rules'].append(temp_rule) if chain: diff --git a/tests/fixtures/generic/iptables-no-jump.json b/tests/fixtures/generic/iptables-no-jump.json new file mode 100644 index 00000000..5a4a4298 --- /dev/null +++ b/tests/fixtures/generic/iptables-no-jump.json @@ -0,0 +1 @@ +[{"chain":"INPUT","rules":[{"target":null,"prot":"udp","opt":null,"source":"anywhere","destination":"anywhere"}]}] diff --git a/tests/fixtures/generic/iptables-no-jump.out b/tests/fixtures/generic/iptables-no-jump.out new file mode 100644 index 00000000..ce6ec3d5 --- /dev/null +++ b/tests/fixtures/generic/iptables-no-jump.out @@ -0,0 +1,4 @@ +Chain INPUT (policy ACCEPT) +target prot opt source destination + udp -- anywhere anywhere + diff --git a/tests/test_iptables.py b/tests/test_iptables.py index 70e98747..26fd6752 100644 --- a/tests/test_iptables.py +++ b/tests/test_iptables.py @@ -45,6 +45,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-raw.out'), 'r', encoding='utf-8') as f: ubuntu_18_4_iptables_raw = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/iptables-no-jump.out'), 'r', encoding='utf-8') as f: + generic_iptables_no_jump = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter.json'), 'r', encoding='utf-8') as f: centos_7_7_iptables_filter_json = json.loads(f.read()) @@ -82,6 +85,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-raw.json'), 'r', encoding='utf-8') as f: ubuntu_18_4_iptables_raw_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/iptables-no-jump.json'), 'r', encoding='utf-8') as f: + generic_iptables_no_jump_json = json.loads(f.read()) + def test_iptables_nodata(self): """ @@ -161,6 +167,12 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_raw, quiet=True), self.ubuntu_18_4_iptables_raw_json) + def test_iptables_no_jump_generic(self): + """ + Test 'sudo iptables' with no jump target + """ + self.assertEqual(jc.parsers.iptables.parse(self.generic_iptables_no_jump, quiet=True), self.generic_iptables_no_jump_json) + if __name__ == '__main__': unittest.main() From fd283f6cf7528b40ae8df9f3bbcc7e11a79c3db5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 4 Nov 2023 16:02:02 -0700 Subject: [PATCH 08/60] doc update --- CHANGELOG | 3 ++- docs/parsers/iptables.md | 2 +- docs/parsers/rpm_qi.md | 2 +- man/jc.1 | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index bf1e4b4b..6ddad1ef 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog -20231025 v1.23.7 +20231104 v1.23.7 +- Add `deb-packages` parser for Debian/Ubuntu Package Index files - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used diff --git a/docs/parsers/iptables.md b/docs/parsers/iptables.md index f23af6f3..6fa8a6bf 100644 --- a/docs/parsers/iptables.md +++ b/docs/parsers/iptables.md @@ -30,7 +30,7 @@ Schema: "num" integer, "pkts": integer, "bytes": integer, # converted based on suffix - "target": string, + "target": string, # Null if blank "prot": string, "opt": string, # "--" = Null "in": string, diff --git a/docs/parsers/rpm_qi.md b/docs/parsers/rpm_qi.md index a2ec798a..bca0436d 100644 --- a/docs/parsers/rpm_qi.md +++ b/docs/parsers/rpm_qi.md @@ -184,4 +184,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/man/jc.1 b/man/jc.1 index 78de1e67..a362c4b2 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-10-25 1.23.7 "JSON Convert" +.TH jc 1 2023-11-04 1.23.7 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings From e0c75a9b6bf54973f89e75a1146d9ed2559cb7ad Mon Sep 17 00:00:00 2001 From: Ingo Weinmann Date: Tue, 14 Nov 2023 22:47:56 +0100 Subject: [PATCH 09/60] #482 Quickfix to parse mount output --- jc/parsers/mount.py | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/jc/parsers/mount.py b/jc/parsers/mount.py index ef8a49dc..65cd5ebc 100644 --- a/jc/parsers/mount.py +++ b/jc/parsers/mount.py @@ -70,6 +70,8 @@ Example: ... ] """ +import re + import jc.utils @@ -133,15 +135,25 @@ def _linux_parse(data): for entry in data: output_line = {} - parsed_line = entry.split() - output_line['filesystem'] = parsed_line[0] - output_line['mount_point'] = parsed_line[2] - output_line['type'] = parsed_line[4] - output_line['options'] = parsed_line[5].lstrip('(').rstrip(')').split(',') + pattern = re.compile( + r''' + (?P\S+)\s+ + on\s+ + (?P.*?)\s+ + type\s+ + (?P\S+)\s+ + \((?P.*?)\)\s*''', + re.VERBOSE) + match = pattern.match(entry) + groups = match.groupdict() + + output_line['filesystem'] = groups["filesystem"] + output_line['mount_point'] = groups["mount_point"] + output_line['type'] = groups["type"] + output_line['options'] = groups["options"].split(',') output.append(output_line) - return output def _aix_parse(data): From c78a4bb6555534184bcc927b7ac75f8b154e28bf Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 14 Nov 2023 15:17:31 -0800 Subject: [PATCH 10/60] mount fix for spaces in mountpoint name --- CHANGELOG | 3 ++- docs/parsers/mount.md | 2 +- jc/parsers/mount.py | 14 ++++++++------ man/jc.1 | 2 +- .../generic/mount-spaces-in-mountpoint.json | 1 + .../generic/mount-spaces-in-mountpoint.out | 1 + tests/test_mount.py | 12 ++++++++++++ 7 files changed, 26 insertions(+), 9 deletions(-) create mode 100644 tests/fixtures/generic/mount-spaces-in-mountpoint.json create mode 100644 tests/fixtures/generic/mount-spaces-in-mountpoint.out diff --git a/CHANGELOG b/CHANGELOG index 6ddad1ef..5573d12c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,10 @@ jc changelog -20231104 v1.23.7 +20231114 v1.23.7 - Add `deb-packages` parser for Debian/Ubuntu Package Index files - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used +- Fix `mount` parser for cases with spaces in the mount point name 20231023 v1.23.6 - Fix XML parser for xmltodict library versions < 0.13.0 diff --git a/docs/parsers/mount.md b/docs/parsers/mount.md index 04e355b0..756bc795 100644 --- a/docs/parsers/mount.md +++ b/docs/parsers/mount.md @@ -98,4 +98,4 @@ Returns: ### Parser Information Compatibility: linux, darwin, freebsd, aix -Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/mount.py b/jc/parsers/mount.py index 65cd5ebc..945ed81a 100644 --- a/jc/parsers/mount.py +++ b/jc/parsers/mount.py @@ -77,7 +77,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.8' + version = '1.9' description = '`mount` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -149,11 +149,13 @@ def _linux_parse(data): match = pattern.match(entry) groups = match.groupdict() - output_line['filesystem'] = groups["filesystem"] - output_line['mount_point'] = groups["mount_point"] - output_line['type'] = groups["type"] - output_line['options'] = groups["options"].split(',') - output.append(output_line) + if groups: + output_line['filesystem'] = groups["filesystem"] + output_line['mount_point'] = groups["mount_point"] + output_line['type'] = groups["type"] + output_line['options'] = groups["options"].split(',') + output.append(output_line) + return output def _aix_parse(data): diff --git a/man/jc.1 b/man/jc.1 index a362c4b2..70de735b 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-11-04 1.23.7 "JSON Convert" +.TH jc 1 2023-11-14 1.23.7 "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/mount-spaces-in-mountpoint.json b/tests/fixtures/generic/mount-spaces-in-mountpoint.json new file mode 100644 index 00000000..c4db756a --- /dev/null +++ b/tests/fixtures/generic/mount-spaces-in-mountpoint.json @@ -0,0 +1 @@ +[{"filesystem":"/dev/sda1","mount_point":"/media/ingo/Ubuntu 22.04.3 LTS amd64","type":"iso9660","options":["ro","nosuid","nodev","relatime","nojoliet","check=s","map=n","blocksize=2048","uid=1000","gid=1000","dmode=500","fmode=400","iocharset=utf8","uhelper=udisks2"]}] diff --git a/tests/fixtures/generic/mount-spaces-in-mountpoint.out b/tests/fixtures/generic/mount-spaces-in-mountpoint.out new file mode 100644 index 00000000..2d217ace --- /dev/null +++ b/tests/fixtures/generic/mount-spaces-in-mountpoint.out @@ -0,0 +1 @@ +/dev/sda1 on /media/ingo/Ubuntu 22.04.3 LTS amd64 type iso9660 (ro,nosuid,nodev,relatime,nojoliet,check=s,map=n,blocksize=2048,uid=1000,gid=1000,dmode=500,fmode=400,iocharset=utf8,uhelper=udisks2) diff --git a/tests/test_mount.py b/tests/test_mount.py index 73effd1d..f1d6bca9 100644 --- a/tests/test_mount.py +++ b/tests/test_mount.py @@ -24,6 +24,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/aix-7.1/mount.out'), 'r', encoding='utf-8') as f: aix_7_1_mount = f.read() + 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() + # 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()) @@ -40,6 +43,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/aix-7.1/mount.json'), 'r', encoding='utf-8') as f: aix_7_1_mount_json = json.loads(f.read()) + 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()) + def test_mount_nodata(self): """ @@ -77,6 +83,12 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.mount.parse(self.aix_7_1_mount, quiet=True), self.aix_7_1_mount_json) + def test_mount_spaces_in_mountpoint(self): + """ + Test 'mount' with spaces in the mountpoint + """ + self.assertEqual(jc.parsers.mount.parse(self.generic_mount_spaces_in_mountpoint, quiet=True), self.generic_mount_spaces_in_mountpoint_json) + if __name__ == '__main__': unittest.main() From 7951366117cee50c4329fde8c9654d95cfcc5484 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 17 Nov 2023 12:06:43 -0800 Subject: [PATCH 11/60] remove old unused line --- readmegen.py | 1 - 1 file changed, 1 deletion(-) diff --git a/readmegen.py b/readmegen.py index 592f48b3..60c69187 100755 --- a/readmegen.py +++ b/readmegen.py @@ -7,7 +7,6 @@ from jinja2 import Environment, FileSystemLoader file_loader = FileSystemLoader('templates') env = Environment(loader=file_loader) template = env.get_template('readme_template') -# output = template.render(jc=jc.cli.about_jc()) output = template.render(parsers=jc.lib.all_parser_info(), info=jc.cli.JcCli.about_jc()) From b5c22c6e530a5ef7c13f7ebd9356f548e0eb7840 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 21 Nov 2023 14:40:43 -0800 Subject: [PATCH 12/60] add deb-packages-index parser --- CHANGELOG | 2 +- README.md | 1 + completions/jc_bash_completion.sh | 2 +- completions/jc_zsh_completion.sh | 3 +- jc/lib.py | 1 + jc/parsers/deb_packages_index.py | 148 ++++++++++++++++++++++++++++++ jc/parsers/rpm_qi.py | 4 +- man/jc.1 | 7 +- 8 files changed, 162 insertions(+), 6 deletions(-) create mode 100644 jc/parsers/deb_packages_index.py diff --git a/CHANGELOG b/CHANGELOG index 5573d12c..a173e596 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ jc changelog 20231114 v1.23.7 -- Add `deb-packages` parser for Debian/Ubuntu Package Index files +- Add `deb-packages-index` parser for Debian/Ubuntu Package Index files - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used - Fix `mount` parser for cases with spaces in the mount point name diff --git a/README.md b/README.md index ffe0b816..eb9de856 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ option. | `--csv-s` | CSV file streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/csv_s) | | `--date` | `date` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/date) | | `--datetime-iso` | ISO 8601 Datetime string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/datetime_iso) | +| `--deb-packages-index` | Debian Packages Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/deb_packages_index) | | `--df` | `df` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/df) | | `--dig` | `dig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/dig) | | `--dir` | `dir` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/dir) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 35ab01d0..20fd4f4b 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -4,7 +4,7 @@ _jc() jc_about_options jc_about_mod_options jc_help_options jc_special_options jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 --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 eedc3453..9728a3b3 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -112,7 +112,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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' @@ -136,6 +136,7 @@ _jc() { '--csv-s:CSV file streaming parser' '--date:`date` command parser' '--datetime-iso:ISO 8601 Datetime string parser' + '--deb-packages-index:Debian Packages Index file parser' '--df:`df` command parser' '--dig:`dig` command parser' '--dir:`dir` command parser' diff --git a/jc/lib.py b/jc/lib.py index ad3498dc..f15db38b 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -34,6 +34,7 @@ parsers: List[str] = [ 'csv-s', 'date', 'datetime-iso', + 'deb-packages-index', 'df', 'dig', 'dir', diff --git a/jc/parsers/deb_packages_index.py b/jc/parsers/deb_packages_index.py new file mode 100644 index 00000000..7b282882 --- /dev/null +++ b/jc/parsers/deb_packages_index.py @@ -0,0 +1,148 @@ +"""jc - JSON Convert Debian Packages Index file parser + +Usage (cli): + + $ cat Packages | jc --deb-packages-index + +Usage (module): + + import jc + result = jc.parse('deb_packages_index', deb_package_index_output) + +Schema: + + [ + { + "package": string, + "version": string, + "architecture": string, + "section": string, + "priority": string, + "installed_size": integer, + "maintainer": string, + "description": string, + "homepage": string, + "depends": string, + "conflicts": string, + "replaces": string, + "vcs_git": string, + "sha256": string, + "size": integer, + "vcs_git": string, + "filename": string + } + ] + +Examples: + + $ cat Packages | jc --deb-packages-index + [ + { + "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", + "size": 21937036, + "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." + }, + { + "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-func...", + "conflicts": "azure-functions-core-tools-2, azure-functions-co...", + "replaces": "azure-functions-core-tools-2, azure-functions-cor...", + "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", + "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", + "size": 124417844, + "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." + } + ] + + $ cat Packages | jc --deb-packages-index -r + [ + { + "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", + "size": "21937036", + "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." + }, + { + "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-func...", + "conflicts": "azure-functions-core-tools-2, azure-functions-co...", + "replaces": "azure-functions-core-tools-2, azure-functions-cor...", + "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", + "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", + "size": "124417844", + "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." + } + ] +""" +from typing import List +from jc.jc_types import JSONDictType +import jc.parsers.rpm_qi as rpm_qi + + +class info(): + """Provides parser metadata (version, author, etc.)""" + version = '1.0' + description = 'Debian Packages Index file parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + details = 'Using the rpm-qi parser' + compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] + tags = ['file'] + + +__version__ = info.version + + +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. + """ + # This parser is an alias of rpm_qi.py + rpm_qi.info.compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] + rpm_qi.info.tags = ['file'] + return rpm_qi.parse(data, raw, quiet) diff --git a/jc/parsers/rpm_qi.py b/jc/parsers/rpm_qi.py index e178b35d..3251c38b 100644 --- a/jc/parsers/rpm_qi.py +++ b/jc/parsers/rpm_qi.py @@ -185,7 +185,7 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ - int_list = {'epoch', 'size'} + int_list = {'epoch', 'size', 'installed_size'} for entry in proc_data: for key in entry: @@ -247,7 +247,7 @@ def parse(data, raw=False, quiet=False): desc_entry = False if len(split_line) == 2: - entry_obj[split_line[0].strip().lower().replace(' ', '_')] = split_line[1].strip() + entry_obj[split_line[0].strip().lower().replace(' ', '_').replace('-', '_')] = split_line[1].strip() if line.startswith('Description :'): desc_entry = True diff --git a/man/jc.1 b/man/jc.1 index 70de735b..16092272 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-11-14 1.23.7 "JSON Convert" +.TH jc 1 2023-11-21 1.23.7 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -147,6 +147,11 @@ CSV file streaming parser \fB--datetime-iso\fP ISO 8601 Datetime string parser +.TP +.B +\fB--deb-packages-index\fP +Debian Packages Index file parser + .TP .B \fB--df\fP From 1cb80f15c2c88a255c16ab0f6d19c2b18f903995 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 21 Nov 2023 14:51:37 -0800 Subject: [PATCH 13/60] add tests --- docs/parsers/deb_packages_index.md | 138 + .../fixtures/generic/deb-packages-index.json | 1 + tests/fixtures/generic/deb-packages-index.out | 29735 ++++++++++++++++ tests/test_deb_packages_index.py | 47 + 4 files changed, 29921 insertions(+) create mode 100644 docs/parsers/deb_packages_index.md create mode 100644 tests/fixtures/generic/deb-packages-index.json create mode 100644 tests/fixtures/generic/deb-packages-index.out create mode 100644 tests/test_deb_packages_index.py diff --git a/docs/parsers/deb_packages_index.md b/docs/parsers/deb_packages_index.md new file mode 100644 index 00000000..ea718414 --- /dev/null +++ b/docs/parsers/deb_packages_index.md @@ -0,0 +1,138 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.deb\_packages\_index + +jc - JSON Convert Debian Packages Index file parser + +Usage (cli): + + $ cat Packages | jc --deb-packages-index + +Usage (module): + + import jc + result = jc.parse('deb_packages_index', deb_package_index_output) + +Schema: + + [ + { + "package": string, + "version": string, + "architecture": string, + "section": string, + "priority": string, + "installed_size": integer, + "maintainer": string, + "description": string, + "homepage": string, + "depends": string, + "conflicts": string, + "replaces": string, + "vcs_git": string, + "sha256": string, + "size": integer, + "vcs_git": string, + "filename": string + } + ] + +Examples: + + $ cat Packages | jc --deb-packages-index + [ + { + "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", + "size": 21937036, + "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." + }, + { + "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-func...", + "conflicts": "azure-functions-core-tools-2, azure-functions-co...", + "replaces": "azure-functions-core-tools-2, azure-functions-cor...", + "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", + "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", + "size": 124417844, + "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." + } + ] + + $ cat Packages | jc --deb-packages-index -r + [ + { + "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", + "size": "21937036", + "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." + }, + { + "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-func...", + "conflicts": "azure-functions-core-tools-2, azure-functions-co...", + "replaces": "azure-functions-core-tools-2, azure-functions-cor...", + "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", + "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", + "size": "124417844", + "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." + } + ] + + + +### parse + +```python +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. + +### Parser Information +Compatibility: linux, darwin, cygwin, win32, aix, freebsd + +Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/tests/fixtures/generic/deb-packages-index.json b/tests/fixtures/generic/deb-packages-index.json new file mode 100644 index 00000000..6d770e27 --- /dev/null +++ b/tests/fixtures/generic/deb-packages-index.json @@ -0,0 +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"}] diff --git a/tests/fixtures/generic/deb-packages-index.out b/tests/fixtures/generic/deb-packages-index.out new file mode 100644 index 00000000..73e8897f --- /dev/null +++ b/tests/fixtures/generic/deb-packages-index.out @@ -0,0 +1,29735 @@ +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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 + 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/home). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Provides server for Microsoft System Center Operations Manager. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + 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/home). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + Dbus client for talking to MSAL broker +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Azure blob storage based private APT repositories +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + This package, specifically dcap_quoteprov.so, is loaded by the DCAP stack to + locate certification and revocation information for SGX platforms hosted + by Microsoft Azure. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Procmon is a Linux reimagining of the classic Procmon tool from the Sysinternals suite of tools for Windows. Procmon provides a convenient and efficient way for Linux developers to trace the syscall activity on the system. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure blob storage based private APT repositories +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + 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/home). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure blob storage based private APT repositories +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + Version 9.0.1035.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + omi server +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + omi server +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The mssql-server-sqliosim package contains the sqliosim tool. You can use sqliosim to perform reliability and integrity checks on disk subsystems intended for use with the Microsoft SQL Server Relational Database Engine. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + This package provides 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Version 9.1.1230.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + UnixODBC is an implementation of the Open Database Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package contains isql, a command-line tool that allows SQL commands + to be entered interactively. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + This package provides an ODBC driver that can connect to 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + omi server +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is requires the SDK and Agent components. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + This repository is currently in a **Public Preview** state. During this phase, all DO components + found in this repo will be supported for 90 days beyond the release date of a new release. At + the end of the 90 day window, we will not guarantee support for the previous version. Please plan + to migrate to the new DO components within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 9 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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) + This package provides an ODBC driver that can connect to 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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + This package contains the development files (headers and libraries) for + unixODBC, an implementation of the Open DataBase Connectivity interface + for Unix systems. You should not need to install this package unless + you intend to develop C language applications which use ODBC, or to + compile ODBC-using applications from source. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + DESCRIPTION + =========== + . + This is an installer created using CPack (https://cmake.org). No additional installation instructions provided. + . + . +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + Provides server for Microsoft System Center 2012 Operations Manager. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is requires the SDK and Agent components. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + This repository is currently in a **Public Preview** state. During this phase, all DO components + found in this repo will be supported for 90 days beyond the release date of a new release. At + the end of the 90 day window, we will not guarantee support for the previous version. Please plan + to migrate to the new DO components within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 9 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + in order to trust Kevlar for Linux repositories and packages +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + Version 9.1.1642.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + Version 1.4.2 of Service Fabric SDK Common for linux +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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 + Microsoft Authentication Broker for Linux. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Provides server for Microsoft System Center Operations Manager. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Version 9.1.1388.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Authentication Broker for Linux. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + Azure blob storage based private APT repositories +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + This package, specifically dcap_quoteprov.so, is loaded by the DCAP stack to + locate certification and revocation information for SGX platforms hosted + by Microsoft Azure. +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 + UnixODBC is an implementation of the Open DataBase Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package provides the UnixODBC shared library, libodbc; and + libodbctxt.so, a sample driver that reads from and writes to flat text + files. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + 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/home). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + Microsoft Authentication Broker for Linux. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + This package, specifically dcap_quoteprov.so, is loaded by the DCAP stack to + locate certification and revocation information for SGX platforms hosted + by Microsoft Azure. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the odbcinst helper tool, which allows ODBC driver + packages to install their own driver settings. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + This package provides an ODBC driver that can connect to 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + Sets up an Azure VM for hibernation, by creating and maintaining a + swap file with the proper size, setting up bootloader parameters, + etc. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Provides server for Microsoft System Center Operations Manager. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Version 9.1.1206.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is requires the SDK and Agent components. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + This repository is currently in a **Public Preview** state. During this phase, all DO components + found in this repo will be supported for 90 days beyond the release date of a new release. At + the end of the 90 day window, we will not guarantee support for the previous version. Please plan + to migrate to the new DO components within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 9 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + This package provides an ODBC driver that can connect to 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + UnixODBC is an implementation of the Open DataBase Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package provides the UnixODBC shared library, libodbc; and + libodbctxt.so, a sample driver that reads from and writes to flat text + files. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the odbcinst helper tool, which allows ODBC driver + packages to install their own driver settings. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Version 9.1.1457.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + This package contains the development files (headers and libraries) for + unixODBC, an implementation of the Open DataBase Connectivity interface + for Unix systems. You should not need to install this package unless + you intend to develop C language applications which use ODBC, or to + compile ODBC-using applications from source. +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 + UnixODBC is an implementation of the Open Database Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package contains isql, a command-line tool that allows SQL commands + to be entered interactively. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Version 9.0.1103.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + Azure blob storage based private APT repositories +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 + runc is a 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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + This package, specifically dcap_quoteprov.so, is loaded by the DCAP stack to + locate certification and revocation information for SGX platforms hosted + by Microsoft Azure. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + This package contains the libodbcinst library from unixodbc, a library + used by ODBC drivers for reading their configuration settings from + /etc/odbc.ini and ~/.odbc.ini. + . + Also contained in this package are the driver setup plugins, which + describe the features supported by individual ODBC drivers. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + DESCRIPTION + =========== + . + This is an installer created using CPack (https://cmake.org). No additional installation instructions provided. + . + . +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + This package provides an ODBC driver that can connect to 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + This package provides an ODBC driver that can connect to 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + Azure blob storage based private APT repositories +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + A set of Linux shell scripts to install Percept related Debian packages and also provision user configurations to make the device available to connect with Azure Percept resources. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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. + It consists of a cross-platform command-line shell and associated scripting language. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Provides server for Microsoft System Center 2012 Operations Manager. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + omi server +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + This package, specifically dcap_quoteprov.so, is loaded by the DCAP stack to + locate certification and revocation information for SGX platforms hosted + by Microsoft Azure. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + This package provides 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + Microsoft Authentication Broker for Linux. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + runc is a 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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + UnixODBC is an implementation of the Open Database Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package contains isql, a command-line tool that allows SQL commands + to be entered interactively. +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 + This package contains the libodbcinst library from unixodbc, a library + used by ODBC drivers for reading their configuration settings from + /etc/odbc.ini and ~/.odbc.ini. + . + Also contained in this package are the driver setup plugins, which + describe the features supported by individual ODBC drivers. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + runc is a 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + omi server +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + Version 9.0.1260.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + This package, specifically dcap_quoteprov.so, is loaded by the DCAP stack to + locate certification and revocation information for SGX platforms hosted + by Microsoft Azure. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + omi server +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package contains the development files (headers and libraries) for + unixODBC, an implementation of the Open DataBase Connectivity interface + for Unix systems. You should not need to install this package unless + you intend to develop C language applications which use ODBC, or to + compile ODBC-using applications from source. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + This package contains the libodbcinst library from unixodbc, a library + used by ODBC drivers for reading their configuration settings from + /etc/odbc.ini and ~/.odbc.ini. + . + Also contained in this package are the driver setup plugins, which + describe the features supported by individual ODBC drivers. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Dbus client for talking to microsoft-identity-broker +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + runc is a 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 + in order to trust Kevlar for Linux repositories and packages +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 + Version 9.0.1056.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + Provides server for Microsoft System Center Operations Manager. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Version 9.1.1625.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the odbcinst helper tool, which allows ODBC driver + packages to install their own driver settings. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + This package provides 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is requires the SDK and Agent components. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + This repository is currently in a **Public Preview** state. During this phase, all DO components + found in this repo will be supported for 90 days beyond the release date of a new release. At + the end of the 90 day window, we will not guarantee support for the previous version. Please plan + to migrate to the new DO components within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 9 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=main) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=main) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=main) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=main)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=main) | + . + ## Contact + . + 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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Provides server for Microsoft System Center Operations Manager. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Version 9.1.1592.1 of Service Fabric package for Linux Ubuntu 20+ and equivalent. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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) + This package provides 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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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 + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + Azure blob storage based private APT repositories +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + UnixODBC is an implementation of the Open DataBase Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package provides the UnixODBC shared library, libodbc; and + libodbctxt.so, a sample driver that reads from and writes to flat text + files. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + omi server +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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + runc is a 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 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + This package provides an ODBC driver that can connect to 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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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 + runc is a 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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Runtime. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Microsoft Authentication Broker for Linux. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + 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/home). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +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) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +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 + runc is a 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. + It consists of a cross-platform command-line shell and associated scripting language. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + 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/home). We happily accept issues and PRs. +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 + in order to trust Kevlar for Linux repositories and packages +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 + Microsoft Authentication Broker for Linux. +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 + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +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 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. 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/core). We happily accept issues and PRs. +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) + Microsoft Defender Advanced Threat Protection (ATP) is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +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 + Microsoft Authentication Broker for Linux. +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 + 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/home). We happily accept issues and PRs. +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 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +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 + diff --git a/tests/test_deb_packages_index.py b/tests/test_deb_packages_index.py new file mode 100644 index 00000000..47dfe21d --- /dev/null +++ b/tests/test_deb_packages_index.py @@ -0,0 +1,47 @@ +import os +import unittest +import json +from typing import Dict +from jc.parsers.deb_packages_index import parse + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + f_in: Dict = {} + f_json: Dict = {} + + @classmethod + def setUpClass(cls): + fixtures = { + 'deb_packages_index': ( + 'fixtures/generic/deb-packages-index.out', + 'fixtures/generic/deb-packages-index.json') + } + + for file, filepaths in fixtures.items(): + with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \ + open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b: + cls.f_in[file] = a.read() + cls.f_json[file] = json.loads(b.read()) + + + def test_deb_packages_index_nodata(self): + """ + Test 'deb_packages_index' with no data + """ + self.assertEqual(parse('', quiet=True), []) + + + def test_deb_packages_index(self): + """ + Test 'deb_packages_index' + """ + self.assertEqual( + parse(self.f_in['deb_packages_index'], quiet=True), + self.f_json['deb_packages_index'] + ) + + +if __name__ == '__main__': + unittest.main() From bf63ac93c6715566c7366715fee72fdf887606ed Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 21 Nov 2023 15:01:04 -0800 Subject: [PATCH 14/60] add Photon linux --- README.md | 1 + templates/readme_template | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index eb9de856..2f9809fc 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ pip3 install jc | NixOS linux | `nix-env -iA nixpkgs.jc` or `nix-env -iA nixos.jc` | | Guix System linux | `guix install jc` | | Gentoo Linux | `emerge dev-python/jc` | +| Photon linux | `tdnf install jc` | | macOS | `brew install jc` | | FreeBSD | `portsnap fetch update && cd /usr/ports/textproc/py-jc && make install clean` | | Ansible filter plugin | `ansible-galaxy collection install community.general` | diff --git a/templates/readme_template b/templates/readme_template index 4ce8318d..eb38c0a6 100644 --- a/templates/readme_template +++ b/templates/readme_template @@ -120,6 +120,7 @@ pip3 install jc | NixOS linux | `nix-env -iA nixpkgs.jc` or `nix-env -iA nixos.jc` | | Guix System linux | `guix install jc` | | Gentoo Linux | `emerge dev-python/jc` | +| Photon linux | `tdnf install jc` | | macOS | `brew install jc` | | FreeBSD | `portsnap fetch update && cd /usr/ports/textproc/py-jc && make install clean` | | Ansible filter plugin | `ansible-galaxy collection install community.general` | From b7270517bdb963ce1e486e5a115c5a2476144610 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 11:49:04 -0800 Subject: [PATCH 15/60] add tune2fs parser --- README.md | 1 + completions/jc_bash_completion.sh | 4 +- completions/jc_zsh_completion.sh | 6 +- jc/lib.py | 1 + jc/parsers/tune2fs.py | 299 ++++++++++++++++++++++++++ man/jc.1 | 7 +- tests/fixtures/generic/tune2fs-l.json | 1 + tests/fixtures/generic/tune2fs-l.out | 48 +++++ tests/test_tune2fs.py | 47 ++++ 9 files changed, 409 insertions(+), 5 deletions(-) create mode 100644 jc/parsers/tune2fs.py create mode 100644 tests/fixtures/generic/tune2fs-l.json create mode 100644 tests/fixtures/generic/tune2fs-l.out create mode 100644 tests/test_tune2fs.py diff --git a/README.md b/README.md index 2f9809fc..cb5de84e 100644 --- a/README.md +++ b/README.md @@ -288,6 +288,7 @@ option. | `--top-s` | `top -b` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/top_s) | | `--tracepath` | `tracepath` and `tracepath6` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/tracepath) | | `--traceroute` | `traceroute` and `traceroute6` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/traceroute) | +| `--tune2fs` | `tune2fs -l` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/tune2fs) | | `--udevadm` | `udevadm info` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/udevadm) | | `--ufw` | `ufw status` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw) | | `--ufw-appinfo` | `ufw app info [application]` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw_appinfo) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 20fd4f4b..18ceb313 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 9728a3b3..0b975f47 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) + jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 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.' @@ -96,6 +96,7 @@ _jc() { 'tracepath6:run "tracepath6" command with magic syntax.' 'traceroute:run "traceroute" command with magic syntax.' 'traceroute6:run "traceroute6" command with magic syntax.' + 'tune2fs:run "tune2fs" command with magic syntax.' 'udevadm:run "udevadm" command with magic syntax.' 'ufw:run "ufw" command with magic syntax.' 'uname:run "uname" command with magic syntax.' @@ -112,7 +113,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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' @@ -295,6 +296,7 @@ _jc() { '--top-s:`top -b` command streaming parser' '--tracepath:`tracepath` and `tracepath6` command parser' '--traceroute:`traceroute` and `traceroute6` command parser' + '--tune2fs:`tune2fs -l` command parser' '--udevadm:`udevadm info` command parser' '--ufw:`ufw status` command parser' '--ufw-appinfo:`ufw app info [application]` command parser' diff --git a/jc/lib.py b/jc/lib.py index f15db38b..cb7cfe80 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -194,6 +194,7 @@ parsers: List[str] = [ 'top-s', 'tracepath', 'traceroute', + 'tune2fs', 'udevadm', 'ufw', 'ufw-appinfo', diff --git a/jc/parsers/tune2fs.py b/jc/parsers/tune2fs.py new file mode 100644 index 00000000..ab58e1c5 --- /dev/null +++ b/jc/parsers/tune2fs.py @@ -0,0 +1,299 @@ +"""jc - JSON Convert `tune2fs -l` command output parser + +Usage (cli): + + $ tune2fs -l /dev/xvda4 | jc --tune2fs + +or + + $ jc tune2fs -l /dev/xvda4 + +Usage (module): + + import jc + result = jc.parse('tune2fs', tune2fs_command_output) + +Schema: + + { + "version": string, + "filesystem_volume_name": string, + "last_mounted_on": string, + "filesystem_uuid": string, + "filesystem_magic_number": string, + "filesystem_revision_number": string, + "filesystem_features": [ + string + ], + "filesystem_flags": string, + "default_mount_options": string, + "filesystem_state": string, + "errors_behavior": string, + "filesystem_os_type": string, + "inode_count": integer, + "block_count": integer, + "reserved_block_count": integer, + "free_blocks": integer, + "free_inodes": integer, + "first_block": integer, + "block_size": integer, + "fragment_size": integer, + "group_descriptor_size": integer, + "reserved_gdt_blocks": integer, + "blocks_per_group": integer, + "fragments_per_group": integer, + "inodes_per_group": integer, + "inode_blocks_per_group": integer, + "flex_block_group_size": integer, + "filesystem_created": string, + "filesystem_created_epoch": integer, + "filesystem_created_epoch_utc": integer, + "last_mount_time": string, + "last_mount_time_epoch": integer, + "last_mount_time_epoch_utc": integer, + "last_write_time": string, + "last_write_time_epoch": integer, + "last_write_time_epoch_utc": integer, + "mount_count": integer, + "maximum_mount_count": integer, + "last_checked": string, + "last_checked_epoch": integer, + "last_checked_epoch_utc": integer, + "check_interval": string, + "lifetime_writes": string, + "reserved_blocks_uid": string, + "reserved_blocks_gid": string, + "first_inode": integer, + "inode_size": integer, + "required_extra_isize": integer, + "desired_extra_isize": integer, + "journal_inode": integer, + "default_directory_hash": string, + "directory_hash_seed": string, + "journal_backup": string, + "checksum_type": string, + "checksum": string + } + +Examples: + + $ tune2fs | jc --tune2fs -p + { + "version": "1.46.2 (28-Feb-2021)", + "filesystem_volume_name": "", + "last_mounted_on": "/home", + "filesystem_uuid": "5fb78e1a-b214-44e2-a309-8e35116d8dd6", + "filesystem_magic_number": "0xEF53", + "filesystem_revision_number": "1 (dynamic)", + "filesystem_features": [ + "has_journal", + "ext_attr", + "resize_inode", + "dir_index", + "filetype", + "needs_recovery", + "extent", + "64bit", + "flex_bg", + "sparse_super", + "large_file", + "huge_file", + "dir_nlink", + "extra_isize", + "metadata_csum" + ], + "filesystem_flags": "signed_directory_hash", + "default_mount_options": "user_xattr acl", + "filesystem_state": "clean", + "errors_behavior": "Continue", + "filesystem_os_type": "Linux", + "inode_count": 3932160, + "block_count": 15728640, + "reserved_block_count": 786432, + "free_blocks": 15198453, + "free_inodes": 3864620, + "first_block": 0, + "block_size": 4096, + "fragment_size": 4096, + "group_descriptor_size": 64, + "reserved_gdt_blocks": 1024, + "blocks_per_group": 32768, + "fragments_per_group": 32768, + "inodes_per_group": 8192, + "inode_blocks_per_group": 512, + "flex_block_group_size": 16, + "filesystem_created": "Mon Apr 6 15:10:37 2020", + "last_mount_time": "Mon Sep 19 15:16:20 2022", + "last_write_time": "Mon Sep 19 15:16:20 2022", + "mount_count": 14, + "maximum_mount_count": -1, + "last_checked": "Fri Apr 8 15:24:22 2022", + "check_interval": "0 ()", + "lifetime_writes": "203 GB", + "reserved_blocks_uid": "0 (user root)", + "reserved_blocks_gid": "0 (group root)", + "first_inode": 11, + "inode_size": 256, + "required_extra_isize": 32, + "desired_extra_isize": 32, + "journal_inode": 8, + "default_directory_hash": "half_md4", + "directory_hash_seed": "67d5358d-723d-4ce3-b3c0-30ddb433ad9e", + "journal_backup": "inode blocks", + "checksum_type": "crc32c", + "checksum": "0x7809afff", + "filesystem_created_epoch": 1586211037, + "filesystem_created_epoch_utc": null, + "last_mount_time_epoch": 1663625780, + "last_mount_time_epoch_utc": null, + "last_write_time_epoch": 1663625780, + "last_write_time_epoch_utc": null, + "last_checked_epoch": 1649456662, + "last_checked_epoch_utc": null + } + + $ tune2fs | jc --tune2fs -p -r + { + "version": "1.46.2 (28-Feb-2021)", + "filesystem_volume_name": "", + "last_mounted_on": "/home", + "filesystem_uuid": "5fb78e1a-b214-44e2-a309-8e35116d8dd6", + "filesystem_magic_number": "0xEF53", + "filesystem_revision_number": "1 (dynamic)", + "filesystem_features": "has_journal ext_attr resize_inode dir_index filetype needs_recovery extent 64bit flex_bg sparse_super large_file huge_file dir_nlink extra_isize metadata_csum", + "filesystem_flags": "signed_directory_hash", + "default_mount_options": "user_xattr acl", + "filesystem_state": "clean", + "errors_behavior": "Continue", + "filesystem_os_type": "Linux", + "inode_count": "3932160", + "block_count": "15728640", + "reserved_block_count": "786432", + "free_blocks": "15198453", + "free_inodes": "3864620", + "first_block": "0", + "block_size": "4096", + "fragment_size": "4096", + "group_descriptor_size": "64", + "reserved_gdt_blocks": "1024", + "blocks_per_group": "32768", + "fragments_per_group": "32768", + "inodes_per_group": "8192", + "inode_blocks_per_group": "512", + "flex_block_group_size": "16", + "filesystem_created": "Mon Apr 6 15:10:37 2020", + "last_mount_time": "Mon Sep 19 15:16:20 2022", + "last_write_time": "Mon Sep 19 15:16:20 2022", + "mount_count": "14", + "maximum_mount_count": "-1", + "last_checked": "Fri Apr 8 15:24:22 2022", + "check_interval": "0 ()", + "lifetime_writes": "203 GB", + "reserved_blocks_uid": "0 (user root)", + "reserved_blocks_gid": "0 (group root)", + "first_inode": "11", + "inode_size": "256", + "required_extra_isize": "32", + "desired_extra_isize": "32", + "journal_inode": "8", + "default_directory_hash": "half_md4", + "directory_hash_seed": "67d5358d-723d-4ce3-b3c0-30ddb433ad9e", + "journal_backup": "inode blocks", + "checksum_type": "crc32c", + "checksum": "0x7809afff" + } +""" +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 = '`tune2fs -l` command parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + compatible = ['linux'] + tags = ['command'] + magic_commands = ['tune2fs -l'] + + +__version__ = info.version + + +def _process(proc_data: JSONDictType) -> JSONDictType: + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (Dictionary) raw structured data to process + + Returns: + + Dictionary. Structured to conform to the schema. + """ + int_list = {'inode_count', 'block_count', 'reserved_block_count', 'free_blocks', + 'free_inodes', 'first_block', 'block_size', 'fragment_size', + 'group_descriptor_size', 'reserved_gdt_blocks', 'blocks_per_group', + 'fragments_per_group', 'inodes_per_group', 'inode_blocks_per_group', + 'flex_block_group_size', 'mount_count', 'maximum_mount_count', + 'first_inode', 'inode_size', 'required_extra_isize', 'desired_extra_isize', + 'journal_inode'} + + datetime_list = {'filesystem_created', 'last_mount_time', 'last_write_time', 'last_checked'} + + for key in proc_data: + if key in int_list: + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) + + for key in proc_data.copy(): + if key in datetime_list: + dt = jc.utils.timestamp(proc_data[key], (1000,)) + proc_data[key + '_epoch'] = dt.naive + proc_data[key + '_epoch_utc'] = dt.utc + + if 'filesystem_features' in proc_data: + proc_data['filesystem_features'] = proc_data['filesystem_features'].split() + + return proc_data + + +def parse( + data: str, + raw: bool = False, + quiet: bool = False +) -> 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: + + Dictionary. Raw or processed structured data. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: Dict = {} + + if jc.utils.has_data(data): + + for line in filter(None, data.splitlines()): + + if line.startswith('tune2fs '): + raw_output['version'] = line.split(maxsplit=1)[1] + continue + + linesplit = line.split(':', maxsplit=1) + key = linesplit[0].lower().replace(' ', '_').replace('#', 'number') + val = linesplit[1].strip() + raw_output[key] = val + + return raw_output if raw else _process(raw_output) diff --git a/man/jc.1 b/man/jc.1 index 16092272..22f1f7c5 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-11-21 1.23.7 "JSON Convert" +.TH jc 1 2023-11-23 1.23.7 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -947,6 +947,11 @@ TOML file parser \fB--traceroute\fP `traceroute` and `traceroute6` command parser +.TP +.B +\fB--tune2fs\fP +`tune2fs -l` command parser + .TP .B \fB--udevadm\fP diff --git a/tests/fixtures/generic/tune2fs-l.json b/tests/fixtures/generic/tune2fs-l.json new file mode 100644 index 00000000..31cf6466 --- /dev/null +++ b/tests/fixtures/generic/tune2fs-l.json @@ -0,0 +1 @@ +{"version":"1.46.2 (28-Feb-2021)","filesystem_volume_name":"","last_mounted_on":"/home","filesystem_uuid":"5fb78e1a-b214-44e2-a309-8e35116d8dd6","filesystem_magic_number":"0xEF53","filesystem_revision_number":"1 (dynamic)","filesystem_features":["has_journal","ext_attr","resize_inode","dir_index","filetype","needs_recovery","extent","64bit","flex_bg","sparse_super","large_file","huge_file","dir_nlink","extra_isize","metadata_csum"],"filesystem_flags":"signed_directory_hash","default_mount_options":"user_xattr acl","filesystem_state":"clean","errors_behavior":"Continue","filesystem_os_type":"Linux","inode_count":3932160,"block_count":15728640,"reserved_block_count":786432,"free_blocks":15198453,"free_inodes":3864620,"first_block":0,"block_size":4096,"fragment_size":4096,"group_descriptor_size":64,"reserved_gdt_blocks":1024,"blocks_per_group":32768,"fragments_per_group":32768,"inodes_per_group":8192,"inode_blocks_per_group":512,"flex_block_group_size":16,"filesystem_created":"Mon Apr 6 15:10:37 2020","last_mount_time":"Mon Sep 19 15:16:20 2022","last_write_time":"Mon Sep 19 15:16:20 2022","mount_count":14,"maximum_mount_count":-1,"last_checked":"Fri Apr 8 15:24:22 2022","check_interval":"0 ()","lifetime_writes":"203 GB","reserved_blocks_uid":"0 (user root)","reserved_blocks_gid":"0 (group root)","first_inode":11,"inode_size":256,"required_extra_isize":32,"desired_extra_isize":32,"journal_inode":8,"default_directory_hash":"half_md4","directory_hash_seed":"67d5358d-723d-4ce3-b3c0-30ddb433ad9e","journal_backup":"inode blocks","checksum_type":"crc32c","checksum":"0x7809afff","filesystem_created_epoch":1586211037,"filesystem_created_epoch_utc":null,"last_mount_time_epoch":1663625780,"last_mount_time_epoch_utc":null,"last_write_time_epoch":1663625780,"last_write_time_epoch_utc":null,"last_checked_epoch":1649456662,"last_checked_epoch_utc":null} diff --git a/tests/fixtures/generic/tune2fs-l.out b/tests/fixtures/generic/tune2fs-l.out new file mode 100644 index 00000000..32c23644 --- /dev/null +++ b/tests/fixtures/generic/tune2fs-l.out @@ -0,0 +1,48 @@ +tune2fs 1.46.2 (28-Feb-2021) +Filesystem volume name: +Last mounted on: /home +Filesystem UUID: 5fb78e1a-b214-44e2-a309-8e35116d8dd6 +Filesystem magic number: 0xEF53 +Filesystem revision #: 1 (dynamic) +Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery extent 64bit flex_bg sparse_super large_file huge_file dir_nlink extra_isize metadata_csum +Filesystem flags: signed_directory_hash +Default mount options: user_xattr acl +Filesystem state: clean +Errors behavior: Continue +Filesystem OS type: Linux +Inode count: 3932160 +Block count: 15728640 +Reserved block count: 786432 +Free blocks: 15198453 +Free inodes: 3864620 +First block: 0 +Block size: 4096 +Fragment size: 4096 +Group descriptor size: 64 +Reserved GDT blocks: 1024 +Blocks per group: 32768 +Fragments per group: 32768 +Inodes per group: 8192 +Inode blocks per group: 512 +Flex block group size: 16 +Filesystem created: Mon Apr 6 15:10:37 2020 +Last mount time: Mon Sep 19 15:16:20 2022 +Last write time: Mon Sep 19 15:16:20 2022 +Mount count: 14 +Maximum mount count: -1 +Last checked: Fri Apr 8 15:24:22 2022 +Check interval: 0 () +Lifetime writes: 203 GB +Reserved blocks uid: 0 (user root) +Reserved blocks gid: 0 (group root) +First inode: 11 +Inode size: 256 +Required extra isize: 32 +Desired extra isize: 32 +Journal inode: 8 +Default directory hash: half_md4 +Directory Hash Seed: 67d5358d-723d-4ce3-b3c0-30ddb433ad9e +Journal backup: inode blocks +Checksum type: crc32c +Checksum: 0x7809afff + diff --git a/tests/test_tune2fs.py b/tests/test_tune2fs.py new file mode 100644 index 00000000..98d5802f --- /dev/null +++ b/tests/test_tune2fs.py @@ -0,0 +1,47 @@ +import os +import unittest +import json +from typing import Dict +from jc.parsers.tune2fs import parse + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + f_in: Dict = {} + f_json: Dict = {} + + @classmethod + def setUpClass(cls): + fixtures = { + 'tune2fs': ( + 'fixtures/generic/tune2fs-l.out', + 'fixtures/generic/tune2fs-l.json') + } + + for file, filepaths in fixtures.items(): + with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \ + open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b: + cls.f_in[file] = a.read() + cls.f_json[file] = json.loads(b.read()) + + + def test_tune2fs_nodata(self): + """ + Test 'tune2fs' with no data + """ + self.assertEqual(parse('', quiet=True), {}) + + + def test_tune2fs_l(self): + """ + Test 'tune2fs -l' + """ + self.assertEqual( + parse(self.f_in['tune2fs'], quiet=True), + self.f_json['tune2fs'] + ) + + +if __name__ == '__main__': + unittest.main() From 3ed44a26d92b169a34a6009439350b457492b23e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 11:51:04 -0800 Subject: [PATCH 16/60] doc update --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index a173e596..3975b5c4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ jc changelog 20231114 v1.23.7 - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files +- Add `tune2fs` command parser - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used - Fix `mount` parser for cases with spaces in the mount point name From 941bfe272447337917a3b93254a16cb8409875e9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 11:59:12 -0800 Subject: [PATCH 17/60] update szenius/set-timezone to v1.2 --- .github/workflows/pythonapp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 7d6ae2c3..5b2994c6 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: "Set up timezone to America/Los_Angeles" - uses: szenius/set-timezone@v1.0 + uses: szenius/set-timezone@v1.2 with: timezoneLinux: "America/Los_Angeles" timezoneMacos: "America/Los_Angeles" From 5f4136b943c218792b77a397882fff56e04dd8ef Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 12:00:58 -0800 Subject: [PATCH 18/60] run tests --- jc/parsers/tune2fs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jc/parsers/tune2fs.py b/jc/parsers/tune2fs.py index ab58e1c5..28398a1b 100644 --- a/jc/parsers/tune2fs.py +++ b/jc/parsers/tune2fs.py @@ -1,5 +1,7 @@ """jc - JSON Convert `tune2fs -l` command output parser +force tests + Usage (cli): $ tune2fs -l /dev/xvda4 | jc --tune2fs From 79e4f3a7610b997d3e42caba810f4e022e5cc8dc Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 12:05:03 -0800 Subject: [PATCH 19/60] doc update --- CHANGELOG | 1 + jc/parsers/tune2fs.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3975b5c4..0eb7572c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ jc changelog 20231114 v1.23.7 - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files - Add `tune2fs` command parser +- Update timezone change in Github Actions for node v16 requirement - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used - Fix `mount` parser for cases with spaces in the mount point name diff --git a/jc/parsers/tune2fs.py b/jc/parsers/tune2fs.py index 28398a1b..ab58e1c5 100644 --- a/jc/parsers/tune2fs.py +++ b/jc/parsers/tune2fs.py @@ -1,7 +1,5 @@ """jc - JSON Convert `tune2fs -l` command output parser -force tests - Usage (cli): $ tune2fs -l /dev/xvda4 | jc --tune2fs From 2358c883d08e62c0c8b98fd5cfbbaf2d048db539 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 12:07:54 -0800 Subject: [PATCH 20/60] remove unused type annotation import --- jc/parsers/tune2fs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/tune2fs.py b/jc/parsers/tune2fs.py index ab58e1c5..3b090493 100644 --- a/jc/parsers/tune2fs.py +++ b/jc/parsers/tune2fs.py @@ -203,7 +203,7 @@ Examples: "checksum": "0x7809afff" } """ -from typing import List, Dict +from typing import Dict from jc.jc_types import JSONDictType import jc.utils From dfd19f38f3fdaf94c67251efc42df9f60d2bbe1d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 12:12:05 -0800 Subject: [PATCH 21/60] doc update --- docs/parsers/tune2fs.md | 234 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 docs/parsers/tune2fs.md diff --git a/docs/parsers/tune2fs.md b/docs/parsers/tune2fs.md new file mode 100644 index 00000000..ad2c60dc --- /dev/null +++ b/docs/parsers/tune2fs.md @@ -0,0 +1,234 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.tune2fs + +jc - JSON Convert `tune2fs -l` command output parser + +Usage (cli): + + $ tune2fs -l /dev/xvda4 | jc --tune2fs + +or + + $ jc tune2fs -l /dev/xvda4 + +Usage (module): + + import jc + result = jc.parse('tune2fs', tune2fs_command_output) + +Schema: + + { + "version": string, + "filesystem_volume_name": string, + "last_mounted_on": string, + "filesystem_uuid": string, + "filesystem_magic_number": string, + "filesystem_revision_number": string, + "filesystem_features": [ + string + ], + "filesystem_flags": string, + "default_mount_options": string, + "filesystem_state": string, + "errors_behavior": string, + "filesystem_os_type": string, + "inode_count": integer, + "block_count": integer, + "reserved_block_count": integer, + "free_blocks": integer, + "free_inodes": integer, + "first_block": integer, + "block_size": integer, + "fragment_size": integer, + "group_descriptor_size": integer, + "reserved_gdt_blocks": integer, + "blocks_per_group": integer, + "fragments_per_group": integer, + "inodes_per_group": integer, + "inode_blocks_per_group": integer, + "flex_block_group_size": integer, + "filesystem_created": string, + "filesystem_created_epoch": integer, + "filesystem_created_epoch_utc": integer, + "last_mount_time": string, + "last_mount_time_epoch": integer, + "last_mount_time_epoch_utc": integer, + "last_write_time": string, + "last_write_time_epoch": integer, + "last_write_time_epoch_utc": integer, + "mount_count": integer, + "maximum_mount_count": integer, + "last_checked": string, + "last_checked_epoch": integer, + "last_checked_epoch_utc": integer, + "check_interval": string, + "lifetime_writes": string, + "reserved_blocks_uid": string, + "reserved_blocks_gid": string, + "first_inode": integer, + "inode_size": integer, + "required_extra_isize": integer, + "desired_extra_isize": integer, + "journal_inode": integer, + "default_directory_hash": string, + "directory_hash_seed": string, + "journal_backup": string, + "checksum_type": string, + "checksum": string + } + +Examples: + + $ tune2fs | jc --tune2fs -p + { + "version": "1.46.2 (28-Feb-2021)", + "filesystem_volume_name": "", + "last_mounted_on": "/home", + "filesystem_uuid": "5fb78e1a-b214-44e2-a309-8e35116d8dd6", + "filesystem_magic_number": "0xEF53", + "filesystem_revision_number": "1 (dynamic)", + "filesystem_features": [ + "has_journal", + "ext_attr", + "resize_inode", + "dir_index", + "filetype", + "needs_recovery", + "extent", + "64bit", + "flex_bg", + "sparse_super", + "large_file", + "huge_file", + "dir_nlink", + "extra_isize", + "metadata_csum" + ], + "filesystem_flags": "signed_directory_hash", + "default_mount_options": "user_xattr acl", + "filesystem_state": "clean", + "errors_behavior": "Continue", + "filesystem_os_type": "Linux", + "inode_count": 3932160, + "block_count": 15728640, + "reserved_block_count": 786432, + "free_blocks": 15198453, + "free_inodes": 3864620, + "first_block": 0, + "block_size": 4096, + "fragment_size": 4096, + "group_descriptor_size": 64, + "reserved_gdt_blocks": 1024, + "blocks_per_group": 32768, + "fragments_per_group": 32768, + "inodes_per_group": 8192, + "inode_blocks_per_group": 512, + "flex_block_group_size": 16, + "filesystem_created": "Mon Apr 6 15:10:37 2020", + "last_mount_time": "Mon Sep 19 15:16:20 2022", + "last_write_time": "Mon Sep 19 15:16:20 2022", + "mount_count": 14, + "maximum_mount_count": -1, + "last_checked": "Fri Apr 8 15:24:22 2022", + "check_interval": "0 ()", + "lifetime_writes": "203 GB", + "reserved_blocks_uid": "0 (user root)", + "reserved_blocks_gid": "0 (group root)", + "first_inode": 11, + "inode_size": 256, + "required_extra_isize": 32, + "desired_extra_isize": 32, + "journal_inode": 8, + "default_directory_hash": "half_md4", + "directory_hash_seed": "67d5358d-723d-4ce3-b3c0-30ddb433ad9e", + "journal_backup": "inode blocks", + "checksum_type": "crc32c", + "checksum": "0x7809afff", + "filesystem_created_epoch": 1586211037, + "filesystem_created_epoch_utc": null, + "last_mount_time_epoch": 1663625780, + "last_mount_time_epoch_utc": null, + "last_write_time_epoch": 1663625780, + "last_write_time_epoch_utc": null, + "last_checked_epoch": 1649456662, + "last_checked_epoch_utc": null + } + + $ tune2fs | jc --tune2fs -p -r + { + "version": "1.46.2 (28-Feb-2021)", + "filesystem_volume_name": "", + "last_mounted_on": "/home", + "filesystem_uuid": "5fb78e1a-b214-44e2-a309-8e35116d8dd6", + "filesystem_magic_number": "0xEF53", + "filesystem_revision_number": "1 (dynamic)", + "filesystem_features": "has_journal ext_attr resize_inode dir_index filetype needs_recovery extent 64bit flex_bg sparse_super large_file huge_file dir_nlink extra_isize metadata_csum", + "filesystem_flags": "signed_directory_hash", + "default_mount_options": "user_xattr acl", + "filesystem_state": "clean", + "errors_behavior": "Continue", + "filesystem_os_type": "Linux", + "inode_count": "3932160", + "block_count": "15728640", + "reserved_block_count": "786432", + "free_blocks": "15198453", + "free_inodes": "3864620", + "first_block": "0", + "block_size": "4096", + "fragment_size": "4096", + "group_descriptor_size": "64", + "reserved_gdt_blocks": "1024", + "blocks_per_group": "32768", + "fragments_per_group": "32768", + "inodes_per_group": "8192", + "inode_blocks_per_group": "512", + "flex_block_group_size": "16", + "filesystem_created": "Mon Apr 6 15:10:37 2020", + "last_mount_time": "Mon Sep 19 15:16:20 2022", + "last_write_time": "Mon Sep 19 15:16:20 2022", + "mount_count": "14", + "maximum_mount_count": "-1", + "last_checked": "Fri Apr 8 15:24:22 2022", + "check_interval": "0 ()", + "lifetime_writes": "203 GB", + "reserved_blocks_uid": "0 (user root)", + "reserved_blocks_gid": "0 (group root)", + "first_inode": "11", + "inode_size": "256", + "required_extra_isize": "32", + "desired_extra_isize": "32", + "journal_inode": "8", + "default_directory_hash": "half_md4", + "directory_hash_seed": "67d5358d-723d-4ce3-b3c0-30ddb433ad9e", + "journal_backup": "inode blocks", + "checksum_type": "crc32c", + "checksum": "0x7809afff" + } + + + +### parse + +```python +def parse(data: str, raw: bool = False, quiet: bool = False) -> 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: + + Dictionary. Raw or processed structured data. + +### Parser Information +Compatibility: linux + +Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) From 82ee4d7b30d11bcb23a0845d6e5b1301efc92de3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 14:52:06 -0800 Subject: [PATCH 22/60] add debconf-show parser --- CHANGELOG | 1 + README.md | 1 + completions/jc_bash_completion.sh | 4 +- completions/jc_zsh_completion.sh | 6 +- jc/lib.py | 1 + jc/parsers/debconf_show.py | 108 ++++++++++++++++++++++++ man/jc.1 | 5 ++ tests/fixtures/generic/debconf-show.out | 18 ++++ 8 files changed, 140 insertions(+), 4 deletions(-) create mode 100644 jc/parsers/debconf_show.py create mode 100644 tests/fixtures/generic/debconf-show.out diff --git a/CHANGELOG b/CHANGELOG index 0eb7572c..b2e8fd4a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ jc changelog 20231114 v1.23.7 - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files +- Add `debconf-show` command parser - Add `tune2fs` command parser - Update timezone change in Github Actions for node v16 requirement - Fix `iptables` parser for cases where the `target` field is blank in a rule diff --git a/README.md b/README.md index cb5de84e..cb2b9982 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ option. | `--date` | `date` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/date) | | `--datetime-iso` | ISO 8601 Datetime string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/datetime_iso) | | `--deb-packages-index` | Debian Packages Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/deb_packages_index) | +| `--debconf-show` | `debconf-show` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/debconf_show) | | `--df` | `df` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/df) | | `--dig` | `dig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/dig) | | `--dir` | `dir` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/dir) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 18ceb313..1a692e90 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --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 0b975f47..72638c74 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date df dig dmidecode dpkg du env 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 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 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 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.' @@ -22,6 +22,7 @@ _jc() { 'cksum:run "cksum" command with magic syntax.' 'crontab:run "crontab" command with magic syntax.' 'date:run "date" command with magic syntax.' + 'debconf-show:run "debconf-show" command with magic syntax.' 'df:run "df" command with magic syntax.' 'dig:run "dig" command with magic syntax.' 'dmidecode:run "dmidecode" command with magic syntax.' @@ -113,7 +114,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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' @@ -138,6 +139,7 @@ _jc() { '--date:`date` command parser' '--datetime-iso:ISO 8601 Datetime string parser' '--deb-packages-index:Debian Packages Index file parser' + '--debconf-show:`debconf-show` command parser' '--df:`df` command parser' '--dig:`dig` command parser' '--dir:`dir` command parser' diff --git a/jc/lib.py b/jc/lib.py index cb7cfe80..ba057347 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -35,6 +35,7 @@ parsers: List[str] = [ 'date', 'datetime-iso', 'deb-packages-index', + 'debconf-show', 'df', 'dig', 'dir', diff --git a/jc/parsers/debconf_show.py b/jc/parsers/debconf_show.py new file mode 100644 index 00000000..51b9f22b --- /dev/null +++ b/jc/parsers/debconf_show.py @@ -0,0 +1,108 @@ +"""jc - JSON Convert `debconf-show` command output parser + +Usage (cli): + + $ debconf-show | jc --debconf-show + +or + + $ jc debconf-show + +Usage (module): + + import jc + result = jc.parse('debconf_show', debconf_show_command_output) + +Schema: + + [ + { + "debconf-show": string, + "bar": boolean, + "baz": integer + } + ] + +Examples: + + $ debconf-show | jc --debconf-show -p + [] + + $ debconf-show | jc --debconf-show -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 = '`debconf-show` command parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + compatible = ['linux'] + tags = ['command'] + magic_commands = ['debconf-show'] + + +__version__ = info.version + + +def _process(proc_data: JSONDictType) -> List[JSONDictType]: + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (Dictionary) raw structured data to process + + Returns: + + List of Dictionaries. Structured to conform to the schema. + """ + 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 = [] + + if jc.utils.has_data(data): + + for line in filter(None, data.splitlines()): + output_line: Dict = {} + splitline = line.split(':', maxsplit=1) + + output_line['asked'] = splitline[0].startswith('*') + packagename, key = splitline[0].split('/', maxsplit=1) + packagename = packagename[2:] + key = key.replace('-', '_') + val = splitline[1].strip() + output_line['packagename'] = packagename + output_line['name'] = key + output_line['value'] = val + + raw_output.append(output_line) + + return raw_output if raw else _process(raw_output) diff --git a/man/jc.1 b/man/jc.1 index 22f1f7c5..17f78423 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -152,6 +152,11 @@ ISO 8601 Datetime string parser \fB--deb-packages-index\fP Debian Packages Index file parser +.TP +.B +\fB--debconf-show\fP +`debconf-show` command parser + .TP .B \fB--df\fP diff --git a/tests/fixtures/generic/debconf-show.out b/tests/fixtures/generic/debconf-show.out new file mode 100644 index 00000000..a24ef115 --- /dev/null +++ b/tests/fixtures/generic/debconf-show.out @@ -0,0 +1,18 @@ +* onlyoffice/jwt-secret: aL8ei2iereuzee7cuJ6Cahjah1ixee2ah + onlyoffice/db-pwd: (password omitted) +* onlyoffice/rabbitmq-pwd: (password omitted) +* onlyoffice/ds-port: 80 +* onlyoffice/docservice-port: 8000 +* onlyoffice/jwt-enabled: true +* onlyoffice/remove-db: false +* onlyoffice/jwt-header: Authorization +* onlyoffice/db-port: 5432 +* onlyoffice/rabbitmq-user: onlyoffice +* onlyoffice/example-port: 3000 +* onlyoffice/db-name: onlyoffice +* onlyoffice/db-host: localhost +* onlyoffice/db-type: postgres +* onlyoffice/rabbitmq-host: localhost +* onlyoffice/db-user: onlyoffice +* onlyoffice/rabbitmq-proto: amqp +* onlyoffice/cluster-mode: false From 1cd723b48fba0746365bfa320987b27c339c7113 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 23 Nov 2023 15:19:14 -0800 Subject: [PATCH 23/60] add tests --- docs/parsers/debconf_show.md | 64 ++++++++++++++++++++++++ tests/fixtures/generic/debconf-show.json | 1 + tests/test_debconf_show.py | 47 +++++++++++++++++ 3 files changed, 112 insertions(+) create mode 100644 docs/parsers/debconf_show.md create mode 100644 tests/fixtures/generic/debconf-show.json create mode 100644 tests/test_debconf_show.py diff --git a/docs/parsers/debconf_show.md b/docs/parsers/debconf_show.md new file mode 100644 index 00000000..8d45ebdc --- /dev/null +++ b/docs/parsers/debconf_show.md @@ -0,0 +1,64 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.debconf\_show + +jc - JSON Convert `debconf-show` command output parser + +Usage (cli): + + $ debconf-show | jc --debconf-show + +or + + $ jc debconf-show + +Usage (module): + + import jc + result = jc.parse('debconf_show', debconf_show_command_output) + +Schema: + + [ + { + "debconf-show": string, + "bar": boolean, + "baz": integer + } + ] + +Examples: + + $ debconf-show | jc --debconf-show -p + [] + + $ debconf-show | jc --debconf-show -p -r + [] + + + +### parse + +```python +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. + +### Parser Information +Compatibility: linux + +Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/tests/fixtures/generic/debconf-show.json b/tests/fixtures/generic/debconf-show.json new file mode 100644 index 00000000..e31fcab1 --- /dev/null +++ b/tests/fixtures/generic/debconf-show.json @@ -0,0 +1 @@ +[{"asked":true,"packagename":"onlyoffice","name":"jwt_secret","value":"aL8ei2iereuzee7cuJ6Cahjah1ixee2ah"},{"asked":false,"packagename":"onlyoffice","name":"db_pwd","value":"(password omitted)"},{"asked":true,"packagename":"onlyoffice","name":"rabbitmq_pwd","value":"(password omitted)"},{"asked":true,"packagename":"onlyoffice","name":"ds_port","value":"80"},{"asked":true,"packagename":"onlyoffice","name":"docservice_port","value":"8000"},{"asked":true,"packagename":"onlyoffice","name":"jwt_enabled","value":"true"},{"asked":true,"packagename":"onlyoffice","name":"remove_db","value":"false"},{"asked":true,"packagename":"onlyoffice","name":"jwt_header","value":"Authorization"},{"asked":true,"packagename":"onlyoffice","name":"db_port","value":"5432"},{"asked":true,"packagename":"onlyoffice","name":"rabbitmq_user","value":"onlyoffice"},{"asked":true,"packagename":"onlyoffice","name":"example_port","value":"3000"},{"asked":true,"packagename":"onlyoffice","name":"db_name","value":"onlyoffice"},{"asked":true,"packagename":"onlyoffice","name":"db_host","value":"localhost"},{"asked":true,"packagename":"onlyoffice","name":"db_type","value":"postgres"},{"asked":true,"packagename":"onlyoffice","name":"rabbitmq_host","value":"localhost"},{"asked":true,"packagename":"onlyoffice","name":"db_user","value":"onlyoffice"},{"asked":true,"packagename":"onlyoffice","name":"rabbitmq_proto","value":"amqp"},{"asked":true,"packagename":"onlyoffice","name":"cluster_mode","value":"false"}] diff --git a/tests/test_debconf_show.py b/tests/test_debconf_show.py new file mode 100644 index 00000000..c271852e --- /dev/null +++ b/tests/test_debconf_show.py @@ -0,0 +1,47 @@ +import os +import unittest +import json +from typing import Dict +from jc.parsers.debconf_show import parse + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + f_in: Dict = {} + f_json: Dict = {} + + @classmethod + def setUpClass(cls): + fixtures = { + 'debconf_show': ( + 'fixtures/generic/debconf-show.out', + 'fixtures/generic/debconf-show.json') + } + + for file, filepaths in fixtures.items(): + with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \ + open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b: + cls.f_in[file] = a.read() + cls.f_json[file] = json.loads(b.read()) + + + def test_debconf_show_nodata(self): + """ + Test 'debconf_show' with no data + """ + self.assertEqual(parse('', quiet=True), []) + + + def test_debconf_show_centos_7_7(self): + """ + Test 'debconf_show onlyoffice-documentserver' + """ + self.assertEqual( + parse(self.f_in['debconf_show'], quiet=True), + self.f_json['debconf_show'] + ) + + +if __name__ == '__main__': + unittest.main() From 71db67ef49560e018106fae8f1c02b4fab97a1ca Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee Date: Fri, 24 Nov 2023 23:08:10 +0530 Subject: [PATCH 24/60] refactor: acpi parser: adhere code to the happy path to avoid nested branches (#488) * refactor: acpi parser: keep working code in happy path to avoid nested branches * fix: use elif for branches marked charging and discharging --------- Co-authored-by: Kelly Brazil --- jc/parsers/acpi.py | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/jc/parsers/acpi.py b/jc/parsers/acpi.py index 1457aecb..74901803 100644 --- a/jc/parsers/acpi.py +++ b/jc/parsers/acpi.py @@ -337,19 +337,15 @@ def parse(data, raw=False, quiet=False): output_line['state'] = 'Not charging' output_line['charge_percent'] = line.split()[-1].rstrip('%,') - if 'Charging' in line \ - or 'Discharging' in line \ - or 'Full' in line: - + if any(word in line for word in ('Charging', 'Discharging', 'Full')): output_line['state'] = line.split()[2][:-1] output_line['charge_percent'] = line.split()[3].rstrip('%,') - if 'will never fully discharge' in line: + if 'will never fully discharge' in line or 'rate information unavailable' in line: pass - elif 'rate information unavailable' not in line: - if 'Charging' in line: - output_line['until_charged'] = line.split()[4] - if 'Discharging' in line: - output_line['charge_remaining'] = line.split()[4] + elif 'Charging' in line: + output_line['until_charged'] = line.split()[4] + elif 'Discharging' in line: + output_line['charge_remaining'] = line.split()[4] if 'design capacity' in line: output_line['design_capacity_mah'] = line.split()[4] @@ -359,10 +355,7 @@ def parse(data, raw=False, quiet=False): if obj_type == 'Adapter': output_line['type'] = obj_type output_line['id'] = obj_id - if 'on-line' in line: - output_line['on-line'] = True - else: - output_line['on-line'] = False + output_line['on-line'] = 'on-line' in line if obj_type == 'Thermal': output_line['type'] = obj_type From 40fa78a9669bfafc59e9b8d3c7f1a9bdc3e76ad9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 24 Nov 2023 09:44:03 -0800 Subject: [PATCH 25/60] version bump --- docs/parsers/acpi.md | 2 +- jc/parsers/acpi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/parsers/acpi.md b/docs/parsers/acpi.md index 82d57965..c040cdeb 100644 --- a/docs/parsers/acpi.md +++ b/docs/parsers/acpi.md @@ -250,4 +250,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/acpi.py b/jc/parsers/acpi.py index 74901803..8b3a080d 100644 --- a/jc/parsers/acpi.py +++ b/jc/parsers/acpi.py @@ -227,7 +227,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.6' + version = '1.7' description = '`acpi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' From 1c60f5355e880d8f7dc00847d3939e7453bf7b05 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 24 Nov 2023 09:45:56 -0800 Subject: [PATCH 26/60] convert one more field to integer --- CHANGELOG | 3 ++- docs/parsers/tune2fs.md | 1 + jc/parsers/tune2fs.py | 3 ++- man/jc.1 | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b2e8fd4a..60045dd0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,10 +1,11 @@ jc changelog -20231114 v1.23.7 +20231124 v1.23.7 - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files - Add `debconf-show` command parser - Add `tune2fs` command parser - Update timezone change in Github Actions for node v16 requirement +- Refactor `acpi` command parser for code cleanup - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used - Fix `mount` parser for cases with spaces in the mount point name diff --git a/docs/parsers/tune2fs.md b/docs/parsers/tune2fs.md index ad2c60dc..732c5edb 100644 --- a/docs/parsers/tune2fs.md +++ b/docs/parsers/tune2fs.md @@ -38,6 +38,7 @@ Schema: "inode_count": integer, "block_count": integer, "reserved_block_count": integer, + "overhead_clusters": integer, "free_blocks": integer, "free_inodes": integer, "first_block": integer, diff --git a/jc/parsers/tune2fs.py b/jc/parsers/tune2fs.py index 3b090493..9637733b 100644 --- a/jc/parsers/tune2fs.py +++ b/jc/parsers/tune2fs.py @@ -33,6 +33,7 @@ Schema: "inode_count": integer, "block_count": integer, "reserved_block_count": integer, + "overhead_clusters": integer, "free_blocks": integer, "free_inodes": integer, "first_block": integer, @@ -240,7 +241,7 @@ def _process(proc_data: JSONDictType) -> JSONDictType: 'fragments_per_group', 'inodes_per_group', 'inode_blocks_per_group', 'flex_block_group_size', 'mount_count', 'maximum_mount_count', 'first_inode', 'inode_size', 'required_extra_isize', 'desired_extra_isize', - 'journal_inode'} + 'journal_inode', 'overhead_clusters'} datetime_list = {'filesystem_created', 'last_mount_time', 'last_write_time', 'last_checked'} diff --git a/man/jc.1 b/man/jc.1 index 17f78423..9a38377c 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-11-23 1.23.7 "JSON Convert" +.TH jc 1 2023-11-24 1.23.7 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings From f44260603ed657a1ee3bc8252b2a7774e26fd0a3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 24 Nov 2023 10:38:33 -0800 Subject: [PATCH 27/60] doc update --- docs/parsers/debconf_show.md | 61 ++++++++++++++++++++++++++++++------ jc/parsers/debconf_show.py | 61 ++++++++++++++++++++++++++++++------ 2 files changed, 102 insertions(+), 20 deletions(-) diff --git a/docs/parsers/debconf_show.md b/docs/parsers/debconf_show.md index 8d45ebdc..8d0bfd51 100644 --- a/docs/parsers/debconf_show.md +++ b/docs/parsers/debconf_show.md @@ -7,11 +7,11 @@ jc - JSON Convert `debconf-show` command output parser Usage (cli): - $ debconf-show | jc --debconf-show + $ debconf-show onlyoffice-documentserver | jc --debconf-show or - $ jc debconf-show + $ jc debconf-show onlyoffice-documentserver Usage (module): @@ -22,19 +22,60 @@ Schema: [ { - "debconf-show": string, - "bar": boolean, - "baz": integer + "asked": boolean, + "packagename": string, + "name": string, + "value": string } ] Examples: - $ debconf-show | jc --debconf-show -p - [] - - $ debconf-show | jc --debconf-show -p -r - [] + $ debconf-show onlyoffice-documentserver | jc --debconf-show -p + [ + { + "asked": true, + "packagename": "onlyoffice", + "name": "jwt_secret", + "value": "aL8ei2iereuzee7cuJ6Cahjah1ixee2ah" + }, + { + "asked": false, + "packagename": "onlyoffice", + "name": "db_pwd", + "value": "(password omitted)" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "rabbitmq_pwd", + "value": "(password omitted)" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "db_port", + "value": "5432" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "db_user", + "value": "onlyoffice" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "rabbitmq_proto", + "value": "amqp" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "cluster_mode", + "value": "false" + } + ] diff --git a/jc/parsers/debconf_show.py b/jc/parsers/debconf_show.py index 51b9f22b..a4dfc8d6 100644 --- a/jc/parsers/debconf_show.py +++ b/jc/parsers/debconf_show.py @@ -2,11 +2,11 @@ Usage (cli): - $ debconf-show | jc --debconf-show + $ debconf-show onlyoffice-documentserver | jc --debconf-show or - $ jc debconf-show + $ jc debconf-show onlyoffice-documentserver Usage (module): @@ -17,19 +17,60 @@ Schema: [ { - "debconf-show": string, - "bar": boolean, - "baz": integer + "asked": boolean, + "packagename": string, + "name": string, + "value": string } ] Examples: - $ debconf-show | jc --debconf-show -p - [] - - $ debconf-show | jc --debconf-show -p -r - [] + $ debconf-show onlyoffice-documentserver | jc --debconf-show -p + [ + { + "asked": true, + "packagename": "onlyoffice", + "name": "jwt_secret", + "value": "aL8ei2iereuzee7cuJ6Cahjah1ixee2ah" + }, + { + "asked": false, + "packagename": "onlyoffice", + "name": "db_pwd", + "value": "(password omitted)" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "rabbitmq_pwd", + "value": "(password omitted)" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "db_port", + "value": "5432" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "db_user", + "value": "onlyoffice" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "rabbitmq_proto", + "value": "amqp" + }, + { + "asked": true, + "packagename": "onlyoffice", + "name": "cluster_mode", + "value": "false" + } + ] """ from typing import List, Dict from jc.jc_types import JSONDictType From 3de6eac1ad72768b592c1cc9d72b4ffb43a089d5 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 28 Nov 2023 21:15:40 +0200 Subject: [PATCH 28/60] swapon parser (#383) (#489) * swapon parser * revert lib * fix lib * Added tests * Fix tests --------- Co-authored-by: Kelly Brazil --- .gitignore | 1 + jc/lib.py | 1 + jc/parsers/swapon.py | 176 ++++++++++++++++++++++ tests/fixtures/generic/swapon-all-v1.json | 1 + tests/fixtures/generic/swapon-all-v1.out | 2 + tests/fixtures/generic/swapon-all-v2.json | 1 + tests/fixtures/generic/swapon-all-v2.out | 2 + tests/test_swapon.py | 42 ++++++ 8 files changed, 226 insertions(+) create mode 100644 jc/parsers/swapon.py create mode 100644 tests/fixtures/generic/swapon-all-v1.json create mode 100644 tests/fixtures/generic/swapon-all-v1.out create mode 100644 tests/fixtures/generic/swapon-all-v2.json create mode 100644 tests/fixtures/generic/swapon-all-v2.out create mode 100644 tests/test_swapon.py diff --git a/.gitignore b/.gitignore index 3732a1e5..878b8e5c 100755 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ build/ .github/ .vscode/ _config.yml +.venv diff --git a/jc/lib.py b/jc/lib.py index ba057347..cb2240db 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -177,6 +177,7 @@ parsers: List[str] = [ 'sshd-conf', 'stat', 'stat-s', + 'swapon', 'sysctl', 'syslog', 'syslog-s', diff --git a/jc/parsers/swapon.py b/jc/parsers/swapon.py new file mode 100644 index 00000000..1d2d1c6d --- /dev/null +++ b/jc/parsers/swapon.py @@ -0,0 +1,176 @@ +"""jc - JSON Convert `swapon` command output parser + +> Note: Must use `swapon` + +Usage (cli): + + $ swapon | jc --swapon + +or + + $ jc swapon + +Usage (module): + + import jc + result = jc.parse('swapon', uname_command_output) + +Schema: + + [ + { + "name": string, + "type": string, + "size": int, + "used": int, + "priority": int, + } + ] + +Example: + + $ swapon | jc --swapon + [ + { + "name": "/swapfile", + "type": "file", + "size": 1073741824, + "used": 0, + "priority": -2 + } + ] +""" +from enum import Enum +from jc.exceptions import ParseError +import jc.utils +from typing import List, Dict, Union + + +class info: + """Provides parser metadata (version, author, etc.)""" + + version = "1.0" + description = "`swapon` command parser" + author = "Roey Darwish Dror" + author_email = "roey.ghost@gmail.com" + compatible = ["linux", "freebsd"] + magic_commands = ["swapon"] + tags = ["command"] + + +__version__ = info.version + +_Value = Union[str, int] +_Entry = Dict[str, _Value] + + +class _Column(Enum): + NAME = "name" + TYPE = "type" + SIZE = "size" + USED = "used" + PRIO = "priority" + LABEL = "label" + UUID = "uuid" + + @classmethod + def from_header(cls, header: str) -> "_Column": + if (header == "NAME") or (header == "Filename"): + return cls.NAME + elif (header == "TYPE") or (header == "Type"): + return cls.TYPE + elif (header == "SIZE") or (header == "Size"): + return cls.SIZE + elif (header == "USED") or (header == "Used"): + return cls.USED + elif (header == "PRIO") or (header == "Priority"): + return cls.PRIO + elif header == "LABEL": + return cls.LABEL + elif header == "UUID": + return cls.UUID + else: + raise ParseError(f"Unknown header: {header}") + + +def _parse_size(size: str) -> int: + power = None + if size[-1] == "B": + power = 0 + if size[-1] == "K": + power = 1 + elif size[-1] == "M": + power = 2 + elif size[-1] == "G": + power = 3 + elif size[-1] == "T": + power = 4 + + multiplier = 1024**power if power is not None else 1024 + + return (int(size[:-1]) if power is not None else int(size)) * multiplier + + +def _value(value: str, column: _Column) -> _Value: + if column == _Column.SIZE or column == _Column.USED: + return _parse_size(value) + elif column == _Column.PRIO: + return int(value) + else: + return value + + +def _process(proc_data: List[Dict]) -> List[Dict]: + """ + 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. + """ + return proc_data + + +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[_Entry]: + """ + 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: + + Dictionary. Raw or processed structured data. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: List[dict] = [] + + if jc.utils.has_data(data): + lines = iter(data.splitlines()) + headers = next(lines) + columns = headers.split() + for line in lines: + line = line.split() + diff = len(columns) - len(line) + if not 0 <= diff <= 2: + raise ParseError( + f"Number of columns ({len(line)}) in line does not match number of headers ({len(columns)})" + ) + + document: _Entry = {} + for column, value in zip(columns, line): + column = _Column.from_header(column) + document[column.value] = _value(value, column) + + raw_output.append(document) + + return raw_output if raw else _process(raw_output) diff --git a/tests/fixtures/generic/swapon-all-v1.json b/tests/fixtures/generic/swapon-all-v1.json new file mode 100644 index 00000000..2fbe6b72 --- /dev/null +++ b/tests/fixtures/generic/swapon-all-v1.json @@ -0,0 +1 @@ +[{"name":"/swap.img","type":"file","size":2147483648,"used":2097152,"priority":-2,"uuid":"0918d27e-3907-471d-abb8-45fa49ae059c"}] diff --git a/tests/fixtures/generic/swapon-all-v1.out b/tests/fixtures/generic/swapon-all-v1.out new file mode 100644 index 00000000..df9a73ae --- /dev/null +++ b/tests/fixtures/generic/swapon-all-v1.out @@ -0,0 +1,2 @@ +NAME TYPE SIZE USED PRIO UUID LABEL +/swap.img file 2G 2M -2 0918d27e-3907-471d-abb8-45fa49ae059c diff --git a/tests/fixtures/generic/swapon-all-v2.json b/tests/fixtures/generic/swapon-all-v2.json new file mode 100644 index 00000000..fc6f3cbf --- /dev/null +++ b/tests/fixtures/generic/swapon-all-v2.json @@ -0,0 +1 @@ +[{"name":"/swapfile","type":"file","size":1073741824,"used":524288,"priority":-2}] diff --git a/tests/fixtures/generic/swapon-all-v2.out b/tests/fixtures/generic/swapon-all-v2.out new file mode 100644 index 00000000..2c0111da --- /dev/null +++ b/tests/fixtures/generic/swapon-all-v2.out @@ -0,0 +1,2 @@ +NAME TYPE SIZE USED PRIO UUID LABEL +/swapfile file 1024M 512K -2 diff --git a/tests/test_swapon.py b/tests/test_swapon.py new file mode 100644 index 00000000..447f4ee3 --- /dev/null +++ b/tests/test_swapon.py @@ -0,0 +1,42 @@ +import os +import unittest +import json +from typing import Dict +from jc.parsers.swapon import parse + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class Swapon(unittest.TestCase): + f_in: Dict = {} + f_json: Dict = {} + + @classmethod + def setUpClass(cls): + fixtures = { + "swapon_all": ("fixtures/generic/swapon-all-v1.out", "fixtures/generic/swapon-all-v1.json"), + "swapon_all_v2": ("fixtures/generic/swapon-all-v2.out", "fixtures/generic/swapon-all-v2.json"), + } + + for file, filepaths in fixtures.items(): + with open(os.path.join(THIS_DIR, filepaths[0]), "r", encoding="utf-8") as a, open( + os.path.join(THIS_DIR, filepaths[1]), "r", encoding="utf-8" + ) as b: + cls.f_in[file] = a.read() + cls.f_json[file] = json.loads(b.read()) + + def test_swapon_all(self): + """ + Test 'swapon --output-all' + """ + self.assertEqual(parse(self.f_in["swapon_all"], quiet=True), self.f_json["swapon_all"]) + + def test_swapon_all_v2(self): + """ + Test 'swapon --output-all' + """ + self.assertEqual(parse(self.f_in["swapon_all_v2"], quiet=True), self.f_json["swapon_all_v2"]) + + +if __name__ == "__main__": + unittest.main() From 2a88f2be6bd88b8a5f7f30b25d81db289f4c112f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 28 Nov 2023 11:21:13 -0800 Subject: [PATCH 29/60] fix mypy issues --- jc/parsers/swapon.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jc/parsers/swapon.py b/jc/parsers/swapon.py index 1d2d1c6d..2e4100f0 100644 --- a/jc/parsers/swapon.py +++ b/jc/parsers/swapon.py @@ -158,8 +158,8 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[_Entry]: lines = iter(data.splitlines()) headers = next(lines) columns = headers.split() - for line in lines: - line = line.split() + for each_line in lines: + line = each_line.split() diff = len(columns) - len(line) if not 0 <= diff <= 2: raise ParseError( @@ -167,8 +167,8 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[_Entry]: ) document: _Entry = {} - for column, value in zip(columns, line): - column = _Column.from_header(column) + for each_column, value in zip(columns, line): + column = _Column.from_header(each_column) document[column.value] = _value(value, column) raw_output.append(document) From 572a3207cd1f51617b3babb4d0867182eee7cdc4 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 28 Nov 2023 11:23:47 -0800 Subject: [PATCH 30/60] doc update --- CHANGELOG | 3 +- README.md | 1 + completions/jc_bash_completion.sh | 4 +- completions/jc_zsh_completion.sh | 6 ++- docs/parsers/swapon.md | 71 +++++++++++++++++++++++++++++++ man/jc.1 | 7 ++- 6 files changed, 86 insertions(+), 6 deletions(-) create mode 100644 docs/parsers/swapon.md diff --git a/CHANGELOG b/CHANGELOG index 60045dd0..b4a70693 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,9 @@ jc changelog -20231124 v1.23.7 +20231128 v1.23.7 - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files - Add `debconf-show` command parser +- Add `swapon` command parser - Add `tune2fs` command parser - Update timezone change in Github Actions for node v16 requirement - Refactor `acpi` command parser for code cleanup diff --git a/README.md b/README.md index cb2b9982..c74b6233 100644 --- a/README.md +++ b/README.md @@ -271,6 +271,7 @@ option. | `--sshd-conf` | `sshd` config file and `sshd -T` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/sshd_conf) | | `--stat` | `stat` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/stat) | | `--stat-s` | `stat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/stat_s) | +| `--swapon` | `swapon` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/swapon) | | `--sysctl` | `sysctl` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/sysctl) | | `--syslog` | Syslog RFC 5424 string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/syslog) | | `--syslog-s` | Syslog RFC 5424 string streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/syslog_s) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 1a692e90..c0e8b7ab 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 72638c74..3f64c20a 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 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 arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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.' @@ -88,6 +88,7 @@ _jc() { 'sshd:run "sshd" command with magic syntax.' 'stat:run "stat" command with magic syntax.' 'sum:run "sum" command with magic syntax.' + 'swapon:run "swapon" command with magic syntax.' 'sysctl:run "sysctl" command with magic syntax.' 'systemctl:run "systemctl" command with magic syntax.' 'systeminfo:run "systeminfo" command with magic syntax.' @@ -114,7 +115,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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' @@ -280,6 +281,7 @@ _jc() { '--sshd-conf:`sshd` config file and `sshd -T` command parser' '--stat:`stat` command parser' '--stat-s:`stat` command streaming parser' + '--swapon:`swapon` command parser' '--sysctl:`sysctl` command parser' '--syslog:Syslog RFC 5424 string parser' '--syslog-s:Syslog RFC 5424 string streaming parser' diff --git a/docs/parsers/swapon.md b/docs/parsers/swapon.md new file mode 100644 index 00000000..5bdf30b0 --- /dev/null +++ b/docs/parsers/swapon.md @@ -0,0 +1,71 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.swapon + +jc - JSON Convert `swapon` command output parser + +> Note: Must use `swapon` + +Usage (cli): + + $ swapon | jc --swapon + +or + + $ jc swapon + +Usage (module): + + import jc + result = jc.parse('swapon', uname_command_output) + +Schema: + + [ + { + "name": string, + "type": string, + "size": int, + "used": int, + "priority": int, + } + ] + +Example: + + $ swapon | jc --swapon + [ + { + "name": "/swapfile", + "type": "file", + "size": 1073741824, + "used": 0, + "priority": -2 + } + ] + + + +### parse + +```python +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[_Entry] +``` + +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: + + Dictionary. Raw or processed structured data. + +### Parser Information +Compatibility: linux, freebsd + +Version 1.0 by Roey Darwish Dror (roey.ghost@gmail.com) diff --git a/man/jc.1 b/man/jc.1 index 9a38377c..8c4242ff 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-11-24 1.23.7 "JSON Convert" +.TH jc 1 2023-11-28 1.23.7 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -862,6 +862,11 @@ SRT file parser \fB--stat-s\fP `stat` command streaming parser +.TP +.B +\fB--swapon\fP +`swapon` command parser + .TP .B \fB--sysctl\fP From 29b012e66d89d75973d910b5cb92805065c175fe Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 4 Dec 2023 19:55:07 +0200 Subject: [PATCH 31/60] Add support for Python 3.12 (#492) Co-authored-by: Kelly Brazil --- .github/workflows/pythonapp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 5b2994c6..bdcfae72 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-20.04, windows-latest] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 From 8b94c326de090f2156944cf19040eff59287121f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 4 Dec 2023 09:59:28 -0800 Subject: [PATCH 32/60] add no data test --- tests/test_swapon.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_swapon.py b/tests/test_swapon.py index 447f4ee3..41c36b46 100644 --- a/tests/test_swapon.py +++ b/tests/test_swapon.py @@ -25,6 +25,12 @@ class Swapon(unittest.TestCase): cls.f_in[file] = a.read() cls.f_json[file] = json.loads(b.read()) + def test_foo_nodata(self): + """ + Test 'foo' with no data + """ + self.assertEqual(parse('', quiet=True), []) + def test_swapon_all(self): """ Test 'swapon --output-all' From 5ddd4f0e86d39468bec5d1af94363517d4ab9d8c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 4 Dec 2023 11:33:04 -0800 Subject: [PATCH 33/60] version bump to 1.24.0 --- jc/lib.py | 2 +- man/jc.1 | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jc/lib.py b/jc/lib.py index cb2240db..37b7c02d 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -9,7 +9,7 @@ from .jc_types import ParserInfoType, JSONDictType from jc import appdirs -__version__ = '1.23.7' +__version__ = '1.24.0' parsers: List[str] = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index 8c4242ff..8a627407 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-11-28 1.23.7 "JSON Convert" +.TH jc 1 2023-12-04 1.24.0 "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 e3e9b2e0..0eaa64f8 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.23.7', + version='1.24.0', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.', From d5a8b4eed25d7f0cd277dd6cbb232c831a0bc366 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 4 Dec 2023 11:35:37 -0800 Subject: [PATCH 34/60] remove deprecated iso-datetime parser --- CHANGELOG | 3 +- jc/lib.py | 1 - jc/parsers/iso_datetime.py | 46 ----------------------------- tests/test_iso_datetime.py | 60 -------------------------------------- 4 files changed, 2 insertions(+), 108 deletions(-) delete mode 100644 jc/parsers/iso_datetime.py delete mode 100644 tests/test_iso_datetime.py diff --git a/CHANGELOG b/CHANGELOG index b4a70693..b845b4b5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,10 +1,11 @@ jc changelog -20231128 v1.23.7 +20231128 v1.24.0 - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files - Add `debconf-show` command parser - Add `swapon` command parser - Add `tune2fs` command parser +- Remove `iso-datetime` parser (use `datetime-iso` instead) - Update timezone change in Github Actions for node v16 requirement - Refactor `acpi` command parser for code cleanup - Fix `iptables` parser for cases where the `target` field is blank in a rule diff --git a/jc/lib.py b/jc/lib.py index 37b7c02d..cb4a6ee0 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -71,7 +71,6 @@ parsers: List[str] = [ 'ip-address', 'iptables', 'ip-route', - 'iso-datetime', 'iw-scan', 'iwconfig', 'jar-manifest', diff --git a/jc/parsers/iso_datetime.py b/jc/parsers/iso_datetime.py deleted file mode 100644 index b4294e9e..00000000 --- a/jc/parsers/iso_datetime.py +++ /dev/null @@ -1,46 +0,0 @@ -"""jc - JSON Convert ISO 8601 Datetime string parser - -This parser has been renamed to datetime-iso (cli) or datetime_iso (module). - -This parser will be removed in a future version, so please start using -the new parser name. -""" -from jc.parsers import datetime_iso -import jc.utils - - -class info(): - """Provides parser metadata (version, author, etc.)""" - version = '1.1' - description = 'Deprecated - please use datetime-iso' - author = 'Kelly Brazil' - author_email = 'kellyjonbrazil@gmail.com' - details = 'Deprecated - please use datetime-iso' - compatible = ['linux', 'aix', 'freebsd', 'darwin', 'win32', 'cygwin'] - tags = ['standard', 'string'] - deprecated = True - - -__version__ = info.version - - -def parse(data, raw=False, quiet=False): - """ - This parser is deprecated and calls datetime_iso. Please use datetime_iso - directly. This parser will be removed in the future. - - Parameters: - - data: (string) text data to parse - raw: (boolean) unprocessed output if True - quiet: (boolean) suppress warning messages if True - - Returns: - - Dictionary. Raw or processed structured data. - """ - jc.utils.warning_message([ - 'iso-datetime parser is deprecated. Please use datetime-iso instead.' - ]) - - return datetime_iso.parse(data, raw=raw, quiet=quiet) diff --git a/tests/test_iso_datetime.py b/tests/test_iso_datetime.py deleted file mode 100644 index dd381694..00000000 --- a/tests/test_iso_datetime.py +++ /dev/null @@ -1,60 +0,0 @@ -import unittest -import json -import jc.parsers.iso_datetime - - -class MyTests(unittest.TestCase): - def test_iso_datetime_nodata(self): - """ - Test 'iso_datetime' with no data - """ - self.assertEqual(jc.parsers.iso_datetime.parse('', quiet=True), {}) - - - def test_iso_datetime_z(self): - """ - Test ISO datetime string with Z timezone - """ - data = r'2007-04-05T14:30Z' - expected = json.loads(r'''{"year":2007,"month":"Apr","month_num":4,"day":5,"weekday":"Thu","weekday_num":4,"hour":2,"hour_24":14,"minute":30,"second":0,"microsecond":0,"period":"PM","utc_offset":"+0000","day_of_year":95,"week_of_year":14,"iso":"2007-04-05T14:30:00+00:00","timestamp":1175783400}''') - self.assertEqual(jc.parsers.iso_datetime.parse(data, quiet=True), expected) - - - def test_iso_datetime_microseconds(self): - """ - Test ISO datetime string with Z timezone - """ - data = r'2007-04-05T14:30.555Z' - expected = json.loads(r'''{"year":2007,"month":"Apr","month_num":4,"day":5,"weekday":"Thu","weekday_num":4,"hour":2,"hour_24":14,"minute":0,"second":30,"microsecond":555000,"period":"PM","utc_offset":"+0000","day_of_year":95,"week_of_year":14,"iso":"2007-04-05T14:00:30.555000+00:00","timestamp":1175781630}''') - self.assertEqual(jc.parsers.iso_datetime.parse(data, quiet=True), expected) - - - def test_iso_datetime_plus_offset(self): - """ - Test ISO datetime string with + offset - """ - data = r'2007-04-05T14:30+03:30' - expected = json.loads(r'''{"year":2007,"month":"Apr","month_num":4,"day":5,"weekday":"Thu","weekday_num":4,"hour":2,"hour_24":14,"minute":30,"second":0,"microsecond":0,"period":"PM","utc_offset":"+0330","day_of_year":95,"week_of_year":14,"iso":"2007-04-05T14:30:00+03:30","timestamp":1175770800}''') - self.assertEqual(jc.parsers.iso_datetime.parse(data, quiet=True), expected) - - - def test_iso_datetime_negative_offset(self): - """ - Test ISO datetime string with - offset - """ - data = r'2007-04-05T14:30-03:30' - expected = json.loads(r'''{"year":2007,"month":"Apr","month_num":4,"day":5,"weekday":"Thu","weekday_num":4,"hour":2,"hour_24":14,"minute":30,"second":0,"microsecond":0,"period":"PM","utc_offset":"-0330","day_of_year":95,"week_of_year":14,"iso":"2007-04-05T14:30:00-03:30","timestamp":1175796000}''') - self.assertEqual(jc.parsers.iso_datetime.parse(data, quiet=True), expected) - - - def test_iso_datetime_nocolon_offset(self): - """ - Test ISO datetime string with no colon offset - """ - data = r'2007-04-05T14:30+0300' - expected = json.loads(r'''{"year":2007,"month":"Apr","month_num":4,"day":5,"weekday":"Thu","weekday_num":4,"hour":2,"hour_24":14,"minute":30,"second":0,"microsecond":0,"period":"PM","utc_offset":"+0300","day_of_year":95,"week_of_year":14,"iso":"2007-04-05T14:30:00+03:00","timestamp":1175772600}''') - self.assertEqual(jc.parsers.iso_datetime.parse(data, quiet=True), expected) - - -if __name__ == '__main__': - unittest.main() From 1b1bc462229861a422d72394377e236c8b7ba75e Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 4 Dec 2023 23:03:15 +0200 Subject: [PATCH 35/60] Remove redundant Python 2 code (#493) Co-authored-by: Kelly Brazil --- jc/appdirs.py | 9 +- jc/parsers/asn1crypto/_inet.py | 8 +- jc/parsers/asn1crypto/_iri.py | 53 ++---- jc/parsers/asn1crypto/_ordereddict.py | 135 -------------- jc/parsers/asn1crypto/_types.py | 22 +-- jc/parsers/asn1crypto/core.py | 139 ++++++-------- jc/parsers/asn1crypto/keys.py | 12 +- jc/parsers/asn1crypto/parser.py | 15 +- jc/parsers/asn1crypto/pem.py | 16 +- jc/parsers/asn1crypto/util.py | 249 ++++---------------------- jc/parsers/asn1crypto/x509.py | 24 +-- jc/parsers/pbPlist/StrParse.py | 8 +- jc/parsers/pbPlist/pbParser.py | 10 +- jc/parsers/pbPlist/pbRoot.py | 2 +- 14 files changed, 153 insertions(+), 549 deletions(-) diff --git a/jc/appdirs.py b/jc/appdirs.py index 73075765..f32bc1a0 100644 --- a/jc/appdirs.py +++ b/jc/appdirs.py @@ -45,10 +45,6 @@ __version_info__ = tuple(int(segment) for segment in __version__.split(".")) import sys import os -PY3 = sys.version_info[0] == 3 - -if PY3: - unicode = str if sys.platform.startswith('java'): import platform @@ -490,10 +486,7 @@ def _get_win_folder_from_registry(csidl_name): registry for this guarantees us the correct answer for all CSIDL_* names. """ - if PY3: - import winreg as _winreg - else: - import _winreg + import winreg as _winreg shell_folder_name = { "CSIDL_APPDATA": "AppData", diff --git a/jc/parsers/asn1crypto/_inet.py b/jc/parsers/asn1crypto/_inet.py index 045ba561..7550bf5d 100644 --- a/jc/parsers/asn1crypto/_inet.py +++ b/jc/parsers/asn1crypto/_inet.py @@ -5,7 +5,7 @@ import socket import struct from ._errors import unwrap -from ._types import byte_cls, bytes_to_list, str_cls, type_name +from ._types import type_name def inet_ntop(address_family, packed_ip): @@ -33,7 +33,7 @@ def inet_ntop(address_family, packed_ip): repr(address_family) )) - if not isinstance(packed_ip, byte_cls): + if not isinstance(packed_ip, bytes): raise TypeError(unwrap( ''' packed_ip must be a byte string, not %s @@ -52,7 +52,7 @@ def inet_ntop(address_family, packed_ip): )) if address_family == socket.AF_INET: - return '%d.%d.%d.%d' % tuple(bytes_to_list(packed_ip)) + return '%d.%d.%d.%d' % tuple(list(packed_ip)) octets = struct.unpack(b'!HHHHHHHH', packed_ip) @@ -106,7 +106,7 @@ def inet_pton(address_family, ip_string): repr(address_family) )) - if not isinstance(ip_string, str_cls): + if not isinstance(ip_string, str): raise TypeError(unwrap( ''' ip_string must be a unicode string, not %s diff --git a/jc/parsers/asn1crypto/_iri.py b/jc/parsers/asn1crypto/_iri.py index 7394b4d5..cbd1bb17 100644 --- a/jc/parsers/asn1crypto/_iri.py +++ b/jc/parsers/asn1crypto/_iri.py @@ -13,25 +13,16 @@ from __future__ import unicode_literals, division, absolute_import, print_functi from encodings import idna # noqa import codecs import re -import sys from ._errors import unwrap -from ._types import byte_cls, str_cls, type_name, bytes_to_list, int_types +from ._types import type_name -if sys.version_info < (3,): - from urlparse import urlsplit, urlunsplit - from urllib import ( - quote as urlquote, - unquote as unquote_to_bytes, - ) - -else: - from urllib.parse import ( - quote as urlquote, - unquote_to_bytes, - urlsplit, - urlunsplit, - ) +from urllib.parse import ( + quote as urlquote, + unquote_to_bytes, + urlsplit, + urlunsplit, +) def iri_to_uri(value, normalize=False): @@ -48,7 +39,7 @@ def iri_to_uri(value, normalize=False): A byte string of the ASCII-encoded URI """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' value must be a unicode string, not %s @@ -57,19 +48,7 @@ def iri_to_uri(value, normalize=False): )) scheme = None - # Python 2.6 doesn't split properly is the URL doesn't start with http:// or https:// - if sys.version_info < (2, 7) and not value.startswith('http://') and not value.startswith('https://'): - real_prefix = None - prefix_match = re.match('^[^:]*://', value) - if prefix_match: - real_prefix = prefix_match.group(0) - value = 'http://' + value[len(real_prefix):] - parsed = urlsplit(value) - if real_prefix: - value = real_prefix + value[7:] - scheme = _urlquote(real_prefix[:-3]) - else: - parsed = urlsplit(value) + parsed = urlsplit(value) if scheme is None: scheme = _urlquote(parsed.scheme) @@ -81,7 +60,7 @@ def iri_to_uri(value, normalize=False): password = _urlquote(parsed.password, safe='!$&\'()*+,;=') port = parsed.port if port is not None: - port = str_cls(port).encode('ascii') + port = str(port).encode('ascii') netloc = b'' if username is not None: @@ -112,7 +91,7 @@ def iri_to_uri(value, normalize=False): path = '' output = urlunsplit((scheme, netloc, path, query, fragment)) - if isinstance(output, str_cls): + if isinstance(output, str): output = output.encode('latin1') return output @@ -128,7 +107,7 @@ def uri_to_iri(value): A unicode string of the IRI """ - if not isinstance(value, byte_cls): + if not isinstance(value, bytes): raise TypeError(unwrap( ''' value must be a byte string, not %s @@ -148,7 +127,7 @@ def uri_to_iri(value): if hostname: hostname = hostname.decode('idna') port = parsed.port - if port and not isinstance(port, int_types): + if port and not isinstance(port, int): port = port.decode('ascii') netloc = '' @@ -160,7 +139,7 @@ def uri_to_iri(value): if hostname is not None: netloc += hostname if port is not None: - netloc += ':' + str_cls(port) + netloc += ':' + str(port) path = _urlunquote(parsed.path, remap=['/'], preserve=True) query = _urlunquote(parsed.query, remap=['&', '='], preserve=True) @@ -182,7 +161,7 @@ def _iri_utf8_errors_handler(exc): resume at) """ - bytes_as_ints = bytes_to_list(exc.object[exc.start:exc.end]) + bytes_as_ints = list(exc.object[exc.start:exc.end]) replacements = ['%%%02x' % num for num in bytes_as_ints] return (''.join(replacements), exc.end) @@ -230,7 +209,7 @@ def _urlquote(string, safe=''): string = re.sub('%[0-9a-fA-F]{2}', _extract_escape, string) output = urlquote(string.encode('utf-8'), safe=safe.encode('utf-8')) - if not isinstance(output, byte_cls): + if not isinstance(output, bytes): output = output.encode('ascii') # Restore the existing quoted values that we extracted diff --git a/jc/parsers/asn1crypto/_ordereddict.py b/jc/parsers/asn1crypto/_ordereddict.py index 2f18ab5a..e69de29b 100644 --- a/jc/parsers/asn1crypto/_ordereddict.py +++ b/jc/parsers/asn1crypto/_ordereddict.py @@ -1,135 +0,0 @@ -# Copyright (c) 2009 Raymond Hettinger -# -# Permission is hereby granted, free of charge, to any person -# obtaining a copy of this software and associated documentation files -# (the "Software"), to deal in the Software without restriction, -# including without limitation the rights to use, copy, modify, merge, -# publish, distribute, sublicense, and/or sell copies of the Software, -# and to permit persons to whom the Software is furnished to do so, -# subject to the following conditions: -# -# The above copyright notice and this permission notice shall be -# included in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -# HOLDERS BE 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. - -import sys - -if not sys.version_info < (2, 7): - - from collections import OrderedDict - -else: - - from UserDict import DictMixin - - class OrderedDict(dict, DictMixin): - - def __init__(self, *args, **kwds): - if len(args) > 1: - raise TypeError('expected at most 1 arguments, got %d' % len(args)) - try: - self.__end - except AttributeError: - self.clear() - self.update(*args, **kwds) - - def clear(self): - self.__end = end = [] - end += [None, end, end] # sentinel node for doubly linked list - self.__map = {} # key --> [key, prev, next] - dict.clear(self) - - def __setitem__(self, key, value): - if key not in self: - end = self.__end - curr = end[1] - curr[2] = end[1] = self.__map[key] = [key, curr, end] - dict.__setitem__(self, key, value) - - def __delitem__(self, key): - dict.__delitem__(self, key) - key, prev, next_ = self.__map.pop(key) - prev[2] = next_ - next_[1] = prev - - def __iter__(self): - end = self.__end - curr = end[2] - while curr is not end: - yield curr[0] - curr = curr[2] - - def __reversed__(self): - end = self.__end - curr = end[1] - while curr is not end: - yield curr[0] - curr = curr[1] - - def popitem(self, last=True): - if not self: - raise KeyError('dictionary is empty') - if last: - key = reversed(self).next() - else: - key = iter(self).next() - value = self.pop(key) - return key, value - - def __reduce__(self): - items = [[k, self[k]] for k in self] - tmp = self.__map, self.__end - del self.__map, self.__end - inst_dict = vars(self).copy() - self.__map, self.__end = tmp - if inst_dict: - return (self.__class__, (items,), inst_dict) - return self.__class__, (items,) - - def keys(self): - return list(self) - - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.iterkeys - itervalues = DictMixin.itervalues - iteritems = DictMixin.iteritems - - def __repr__(self): - if not self: - return '%s()' % (self.__class__.__name__,) - return '%s(%r)' % (self.__class__.__name__, self.items()) - - def copy(self): - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - if isinstance(other, OrderedDict): - if len(self) != len(other): - return False - for p, q in zip(self.items(), other.items()): - if p != q: - return False - return True - return dict.__eq__(self, other) - - def __ne__(self, other): - return not self == other diff --git a/jc/parsers/asn1crypto/_types.py b/jc/parsers/asn1crypto/_types.py index b9ca8cc7..b5d5b7bf 100644 --- a/jc/parsers/asn1crypto/_types.py +++ b/jc/parsers/asn1crypto/_types.py @@ -2,28 +2,10 @@ from __future__ import unicode_literals, division, absolute_import, print_function import inspect -import sys -if sys.version_info < (3,): - str_cls = unicode # noqa - byte_cls = str - int_types = (int, long) # noqa - - def bytes_to_list(byte_string): - return [ord(b) for b in byte_string] - - chr_cls = chr - -else: - str_cls = str - byte_cls = bytes - int_types = int - - bytes_to_list = list - - def chr_cls(num): - return bytes([num]) +def chr_cls(num): + return bytes([num]) def type_name(value): diff --git a/jc/parsers/asn1crypto/core.py b/jc/parsers/asn1crypto/core.py index 2e7d5098..6d3a2e24 100644 --- a/jc/parsers/asn1crypto/core.py +++ b/jc/parsers/asn1crypto/core.py @@ -48,8 +48,10 @@ Other type classes are defined that help compose the types listed above. from __future__ import unicode_literals, division, absolute_import, print_function +from collections import OrderedDict from datetime import datetime, timedelta from fractions import Fraction +from io import BytesIO import binascii import copy import math @@ -58,22 +60,10 @@ import sys from . import _teletex_codec from ._errors import unwrap -from ._ordereddict import OrderedDict -from ._types import type_name, str_cls, byte_cls, int_types, chr_cls +from ._types import type_name, chr_cls from .parser import _parse, _dump_header from .util import int_to_bytes, int_from_bytes, timezone, extended_datetime, create_timezone, utc_with_dst -if sys.version_info <= (3,): - from cStringIO import StringIO as BytesIO - - range = xrange # noqa - _PY2 = True - -else: - from io import BytesIO - - _PY2 = False - _teletex_codec.register() @@ -220,7 +210,7 @@ class Asn1Value(object): An instance of the current class """ - if not isinstance(encoded_data, byte_cls): + if not isinstance(encoded_data, bytes): raise TypeError('encoded_data must be a byte string, not %s' % type_name(encoded_data)) spec = None @@ -291,7 +281,7 @@ class Asn1Value(object): cls = self.__class__ # Allow explicit to be specified as a simple 2-element tuple # instead of requiring the user make a nested tuple - if cls.explicit is not None and isinstance(cls.explicit[0], int_types): + if cls.explicit is not None and isinstance(cls.explicit[0], int): cls.explicit = (cls.explicit, ) if hasattr(cls, '_setup'): self._setup() @@ -299,7 +289,7 @@ class Asn1Value(object): # Normalize tagging values if explicit is not None: - if isinstance(explicit, int_types): + if isinstance(explicit, int): if class_ is None: class_ = 'context' explicit = (class_, explicit) @@ -309,7 +299,7 @@ class Asn1Value(object): tag = None if implicit is not None: - if isinstance(implicit, int_types): + if isinstance(implicit, int): if class_ is None: class_ = 'context' implicit = (class_, implicit) @@ -336,11 +326,11 @@ class Asn1Value(object): if explicit is not None: # Ensure we have a tuple of 2-element tuples - if len(explicit) == 2 and isinstance(explicit[1], int_types): + if len(explicit) == 2 and isinstance(explicit[1], int): explicit = (explicit, ) for class_, tag in explicit: invalid_class = None - if isinstance(class_, int_types): + if isinstance(class_, int): if class_ not in CLASS_NUM_TO_NAME_MAP: invalid_class = class_ else: @@ -356,7 +346,7 @@ class Asn1Value(object): repr(invalid_class) )) if tag is not None: - if not isinstance(tag, int_types): + if not isinstance(tag, int): raise TypeError(unwrap( ''' explicit tag must be an integer, not %s @@ -379,7 +369,7 @@ class Asn1Value(object): repr(class_) )) if tag is not None: - if not isinstance(tag, int_types): + if not isinstance(tag, int): raise TypeError(unwrap( ''' implicit tag must be an integer, not %s @@ -445,10 +435,7 @@ class Asn1Value(object): A unicode string """ - if _PY2: - return self.__bytes__() - else: - return self.__unicode__() + return self.__unicode__() def __repr__(self): """ @@ -456,10 +443,7 @@ class Asn1Value(object): A unicode string """ - if _PY2: - return '<%s %s b%s>' % (type_name(self), id(self), repr(self.dump())) - else: - return '<%s %s %s>' % (type_name(self), id(self), repr(self.dump())) + return '<%s %s %s>' % (type_name(self), id(self), repr(self.dump())) def __bytes__(self): """ @@ -609,10 +593,7 @@ class Asn1Value(object): elif hasattr(self, 'chosen'): self.chosen.debug(nest_level + 2) else: - if _PY2 and isinstance(self.native, byte_cls): - print('%s Native: b%s' % (prefix, repr(self.native))) - else: - print('%s Native: %s' % (prefix, self.native)) + print('%s Native: %s' % (prefix, self.native)) def dump(self, force=False): """ @@ -1058,7 +1039,7 @@ class Choice(Asn1Value): A instance of the current class """ - if not isinstance(encoded_data, byte_cls): + if not isinstance(encoded_data, bytes): raise TypeError('encoded_data must be a byte string, not %s' % type_name(encoded_data)) value, _ = _parse_build(encoded_data, spec=cls, spec_params=kwargs, strict=strict) @@ -1425,17 +1406,11 @@ class Concat(object): def __str__(self): """ - Since str is different in Python 2 and 3, this calls the appropriate - method, __unicode__() or __bytes__() - :return: A unicode string """ - if _PY2: - return self.__bytes__() - else: - return self.__unicode__() + return self.__unicode__() def __bytes__(self): """ @@ -1684,7 +1659,7 @@ class Primitive(Asn1Value): A byte string """ - if not isinstance(value, byte_cls): + if not isinstance(value, bytes): raise TypeError(unwrap( ''' %s value must be a byte string, not %s @@ -1784,7 +1759,7 @@ class AbstractString(Constructable, Primitive): A unicode string """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be a unicode string, not %s @@ -1915,7 +1890,7 @@ class Integer(Primitive, ValueMap): ValueError - when an invalid value is passed """ - if isinstance(value, str_cls): + if isinstance(value, str): if self._map is None: raise ValueError(unwrap( ''' @@ -1935,7 +1910,7 @@ class Integer(Primitive, ValueMap): value = self._reverse_map[value] - elif not isinstance(value, int_types): + elif not isinstance(value, int): raise TypeError(unwrap( ''' %s value must be an integer or unicode string when a name_map @@ -2004,7 +1979,7 @@ class _IntegerBitString(object): # return an empty chunk, for cases like \x23\x80\x00\x00 return [] - unused_bits_len = ord(self.contents[0]) if _PY2 else self.contents[0] + unused_bits_len = self.contents[0] value = int_from_bytes(self.contents[1:]) bits = (len(self.contents) - 1) * 8 @@ -2135,7 +2110,7 @@ class BitString(_IntegerBitString, Constructable, Castable, Primitive, ValueMap) if key in value: bits[index] = 1 - value = ''.join(map(str_cls, bits)) + value = ''.join(map(str, bits)) elif value.__class__ == tuple: if self._map is None: @@ -2146,7 +2121,7 @@ class BitString(_IntegerBitString, Constructable, Castable, Primitive, ValueMap) if bit: name = self._map.get(index, index) self._native.add(name) - value = ''.join(map(str_cls, value)) + value = ''.join(map(str, value)) else: raise TypeError(unwrap( @@ -2220,7 +2195,7 @@ class BitString(_IntegerBitString, Constructable, Castable, Primitive, ValueMap) A boolean if the bit is set """ - is_int = isinstance(key, int_types) + is_int = isinstance(key, int) if not is_int: if not isinstance(self._map, dict): raise ValueError(unwrap( @@ -2266,7 +2241,7 @@ class BitString(_IntegerBitString, Constructable, Castable, Primitive, ValueMap) ValueError - when _map is not set or the key name is invalid """ - is_int = isinstance(key, int_types) + is_int = isinstance(key, int) if not is_int: if self._map is None: raise ValueError(unwrap( @@ -2365,7 +2340,7 @@ class OctetBitString(Constructable, Castable, Primitive): ValueError - when an invalid value is passed """ - if not isinstance(value, byte_cls): + if not isinstance(value, bytes): raise TypeError(unwrap( ''' %s value must be a byte string, not %s @@ -2435,7 +2410,7 @@ class OctetBitString(Constructable, Castable, Primitive): List with one tuple, consisting of a byte string and an integer (unused bits) """ - unused_bits_len = ord(self.contents[0]) if _PY2 else self.contents[0] + unused_bits_len = self.contents[0] if not unused_bits_len: return [(self.contents[1:], ())] @@ -2448,11 +2423,11 @@ class OctetBitString(Constructable, Castable, Primitive): raise ValueError('Bit string has {0} unused bits'.format(unused_bits_len)) mask = (1 << unused_bits_len) - 1 - last_byte = ord(self.contents[-1]) if _PY2 else self.contents[-1] + last_byte = self.contents[-1] # zero out the unused bits in the last byte. zeroed_byte = last_byte & ~mask - value = self.contents[1:-1] + (chr(zeroed_byte) if _PY2 else bytes((zeroed_byte,))) + value = self.contents[1:-1] + bytes((zeroed_byte,)) unused_bits = _int_to_bit_tuple(last_byte & mask, unused_bits_len) @@ -2505,7 +2480,7 @@ class IntegerBitString(_IntegerBitString, Constructable, Castable, Primitive): ValueError - when an invalid value is passed """ - if not isinstance(value, int_types): + if not isinstance(value, int): raise TypeError(unwrap( ''' %s value must be a positive integer, not %s @@ -2570,7 +2545,7 @@ class OctetString(Constructable, Castable, Primitive): A byte string """ - if not isinstance(value, byte_cls): + if not isinstance(value, bytes): raise TypeError(unwrap( ''' %s value must be a byte string, not %s @@ -2654,7 +2629,7 @@ class IntegerOctetString(Constructable, Castable, Primitive): ValueError - when an invalid value is passed """ - if not isinstance(value, int_types): + if not isinstance(value, int): raise TypeError(unwrap( ''' %s value must be a positive integer, not %s @@ -2752,7 +2727,7 @@ class ParsableOctetString(Constructable, Castable, Primitive): A byte string """ - if not isinstance(value, byte_cls): + if not isinstance(value, bytes): raise TypeError(unwrap( ''' %s value must be a byte string, not %s @@ -2904,7 +2879,7 @@ class ParsableOctetBitString(ParsableOctetString): ValueError - when an invalid value is passed """ - if not isinstance(value, byte_cls): + if not isinstance(value, bytes): raise TypeError(unwrap( ''' %s value must be a byte string, not %s @@ -2934,7 +2909,7 @@ class ParsableOctetBitString(ParsableOctetString): A byte string """ - unused_bits_len = ord(self.contents[0]) if _PY2 else self.contents[0] + unused_bits_len = self.contents[0] if unused_bits_len: raise ValueError('ParsableOctetBitString should have no unused bits') @@ -3007,7 +2982,7 @@ class ObjectIdentifier(Primitive, ValueMap): type_name(cls) )) - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' value must be a unicode string, not %s @@ -3045,7 +3020,7 @@ class ObjectIdentifier(Primitive, ValueMap): type_name(cls) )) - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' value must be a unicode string, not %s @@ -3079,7 +3054,7 @@ class ObjectIdentifier(Primitive, ValueMap): ValueError - when an invalid value is passed """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be a unicode string, not %s @@ -3153,24 +3128,22 @@ class ObjectIdentifier(Primitive, ValueMap): part = 0 for byte in self.contents: - if _PY2: - byte = ord(byte) part = part * 128 part += byte & 127 # Last byte in subidentifier has the eighth bit set to 0 if byte & 0x80 == 0: if len(output) == 0: if part >= 80: - output.append(str_cls(2)) - output.append(str_cls(part - 80)) + output.append(str(2)) + output.append(str(part - 80)) elif part >= 40: - output.append(str_cls(1)) - output.append(str_cls(part - 40)) + output.append(str(1)) + output.append(str(part - 40)) else: - output.append(str_cls(0)) - output.append(str_cls(part)) + output.append(str(0)) + output.append(str(part)) else: - output.append(str_cls(part)) + output.append(str(part)) part = 0 self._dotted = '.'.join(output) @@ -3240,7 +3213,7 @@ class Enumerated(Integer): ValueError - when an invalid value is passed """ - if not isinstance(value, int_types) and not isinstance(value, str_cls): + if not isinstance(value, int) and not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be an integer or a unicode string, not %s @@ -3249,7 +3222,7 @@ class Enumerated(Integer): type_name(value) )) - if isinstance(value, str_cls): + if isinstance(value, str): if value not in self._reverse_map: raise ValueError(unwrap( ''' @@ -3507,7 +3480,7 @@ class Sequence(Asn1Value): if self.children is None: self._parse_children() - if not isinstance(key, int_types): + if not isinstance(key, int): if key not in self._field_map: raise KeyError(unwrap( ''' @@ -3554,7 +3527,7 @@ class Sequence(Asn1Value): if self.children is None: self._parse_children() - if not isinstance(key, int_types): + if not isinstance(key, int): if key not in self._field_map: raise KeyError(unwrap( ''' @@ -3605,7 +3578,7 @@ class Sequence(Asn1Value): if self.children is None: self._parse_children() - if not isinstance(key, int_types): + if not isinstance(key, int): if key not in self._field_map: raise KeyError(unwrap( ''' @@ -4003,7 +3976,7 @@ class Sequence(Asn1Value): encoded using """ - if not isinstance(field_name, str_cls): + if not isinstance(field_name, str): raise TypeError(unwrap( ''' field_name must be a unicode string, not %s @@ -4051,7 +4024,7 @@ class Sequence(Asn1Value): try: name = self._fields[index][0] except (IndexError): - name = str_cls(index) + name = str(index) self._native[name] = child.native except (ValueError, TypeError) as e: self._native = None @@ -4879,7 +4852,7 @@ class AbstractTime(AbstractString): A dict with the parsed values """ - string = str_cls(self) + string = str(self) m = self._TIMESTRING_RE.match(string) if not m: @@ -5018,8 +4991,6 @@ class UTCTime(AbstractTime): raise ValueError('Year of the UTCTime is not in range [1950, 2049], use GeneralizedTime instead') value = value.strftime('%y%m%d%H%M%SZ') - if _PY2: - value = value.decode('ascii') AbstractString.set(self, value) # Set it to None and let the class take care of converting the next @@ -5117,8 +5088,6 @@ class GeneralizedTime(AbstractTime): fraction = '' value = value.strftime('%Y%m%d%H%M%S') + fraction + 'Z' - if _PY2: - value = value.decode('ascii') AbstractString.set(self, value) # Set it to None and let the class take care of converting the next @@ -5340,7 +5309,7 @@ def _build_id_tuple(params, spec): else: required_class = 2 required_tag = params['implicit'] - if required_class is not None and not isinstance(required_class, int_types): + if required_class is not None and not isinstance(required_class, int): required_class = CLASS_NAME_TO_NUM_MAP[required_class] required_class = params.get('class_', required_class) diff --git a/jc/parsers/asn1crypto/keys.py b/jc/parsers/asn1crypto/keys.py index b4a87aea..e7aaa2e4 100644 --- a/jc/parsers/asn1crypto/keys.py +++ b/jc/parsers/asn1crypto/keys.py @@ -20,7 +20,7 @@ import hashlib import math from ._errors import unwrap, APIException -from ._types import type_name, byte_cls +from ._types import type_name from .algos import _ForceNullParameters, DigestAlgorithm, EncryptionAlgorithm, RSAESOAEPParams, RSASSAPSSParams from .core import ( Any, @@ -582,7 +582,7 @@ class ECPrivateKey(Sequence): if self._key_size is None: # Infer the key_size from the existing private key if possible pkey_contents = self['private_key'].contents - if isinstance(pkey_contents, byte_cls) and len(pkey_contents) > 1: + if isinstance(pkey_contents, bytes) and len(pkey_contents) > 1: self.set_key_size(len(self['private_key'].contents)) elif self._key_size is not None: @@ -744,7 +744,7 @@ class PrivateKeyInfo(Sequence): A PrivateKeyInfo object """ - if not isinstance(private_key, byte_cls) and not isinstance(private_key, Asn1Value): + if not isinstance(private_key, bytes) and not isinstance(private_key, Asn1Value): raise TypeError(unwrap( ''' private_key must be a byte string or Asn1Value, not %s @@ -1112,7 +1112,7 @@ class PublicKeyInfo(Sequence): A PublicKeyInfo object """ - if not isinstance(public_key, byte_cls) and not isinstance(public_key, Asn1Value): + if not isinstance(public_key, bytes) and not isinstance(public_key, Asn1Value): raise TypeError(unwrap( ''' public_key must be a byte string or Asn1Value, not %s @@ -1268,7 +1268,7 @@ class PublicKeyInfo(Sequence): """ if self._sha1 is None: - self._sha1 = hashlib.sha1(byte_cls(self['public_key'])).digest() + self._sha1 = hashlib.sha1(bytes(self['public_key'])).digest() return self._sha1 @property @@ -1279,7 +1279,7 @@ class PublicKeyInfo(Sequence): """ if self._sha256 is None: - self._sha256 = hashlib.sha256(byte_cls(self['public_key'])).digest() + self._sha256 = hashlib.sha256(bytes(self['public_key'])).digest() return self._sha256 @property diff --git a/jc/parsers/asn1crypto/parser.py b/jc/parsers/asn1crypto/parser.py index 2f5a63e1..622d9cd7 100644 --- a/jc/parsers/asn1crypto/parser.py +++ b/jc/parsers/asn1crypto/parser.py @@ -15,10 +15,9 @@ from __future__ import unicode_literals, division, absolute_import, print_functi import sys -from ._types import byte_cls, chr_cls, type_name +from ._types import chr_cls, type_name from .util import int_from_bytes, int_to_bytes -_PY2 = sys.version_info <= (3,) _INSUFFICIENT_DATA_MESSAGE = 'Insufficient data - %s bytes requested but only %s available' _MAX_DEPTH = 10 @@ -66,7 +65,7 @@ def emit(class_, method, tag, contents): if tag < 0: raise ValueError('tag must be greater than zero, not %s' % tag) - if not isinstance(contents, byte_cls): + if not isinstance(contents, bytes): raise TypeError('contents must be a byte string, not %s' % type_name(contents)) return _dump_header(class_, method, tag, contents) + contents @@ -101,7 +100,7 @@ def parse(contents, strict=False): - 5: byte string trailer """ - if not isinstance(contents, byte_cls): + if not isinstance(contents, bytes): raise TypeError('contents must be a byte string, not %s' % type_name(contents)) contents_len = len(contents) @@ -130,7 +129,7 @@ def peek(contents): An integer with the number of bytes occupied by the ASN.1 value """ - if not isinstance(contents, byte_cls): + if not isinstance(contents, bytes): raise TypeError('contents must be a byte string, not %s' % type_name(contents)) info, consumed = _parse(contents, len(contents)) @@ -171,7 +170,7 @@ def _parse(encoded_data, data_len, pointer=0, lengths_only=False, depth=0): if data_len < pointer + 1: raise ValueError(_INSUFFICIENT_DATA_MESSAGE % (1, data_len - pointer)) - first_octet = ord(encoded_data[pointer]) if _PY2 else encoded_data[pointer] + first_octet = encoded_data[pointer] pointer += 1 @@ -183,7 +182,7 @@ def _parse(encoded_data, data_len, pointer=0, lengths_only=False, depth=0): while True: if data_len < pointer + 1: raise ValueError(_INSUFFICIENT_DATA_MESSAGE % (1, data_len - pointer)) - num = ord(encoded_data[pointer]) if _PY2 else encoded_data[pointer] + num = encoded_data[pointer] pointer += 1 if num == 0x80 and tag == 0: raise ValueError('Non-minimal tag encoding') @@ -196,7 +195,7 @@ def _parse(encoded_data, data_len, pointer=0, lengths_only=False, depth=0): if data_len < pointer + 1: raise ValueError(_INSUFFICIENT_DATA_MESSAGE % (1, data_len - pointer)) - length_octet = ord(encoded_data[pointer]) if _PY2 else encoded_data[pointer] + length_octet = encoded_data[pointer] pointer += 1 trailer = b'' diff --git a/jc/parsers/asn1crypto/pem.py b/jc/parsers/asn1crypto/pem.py index 511ea4b5..f969cf9b 100644 --- a/jc/parsers/asn1crypto/pem.py +++ b/jc/parsers/asn1crypto/pem.py @@ -11,17 +11,13 @@ Encoding DER to PEM and decoding PEM to DER. Exports the following items: from __future__ import unicode_literals, division, absolute_import, print_function +from io import BytesIO import base64 import re -import sys from ._errors import unwrap -from ._types import type_name as _type_name, str_cls, byte_cls +from ._types import type_name as _type_name -if sys.version_info < (3,): - from cStringIO import StringIO as BytesIO -else: - from io import BytesIO def detect(byte_string): @@ -36,7 +32,7 @@ def detect(byte_string): string """ - if not isinstance(byte_string, byte_cls): + if not isinstance(byte_string, bytes): raise TypeError(unwrap( ''' byte_string must be a byte string, not %s @@ -67,14 +63,14 @@ def armor(type_name, der_bytes, headers=None): A byte string of the PEM block """ - if not isinstance(der_bytes, byte_cls): + if not isinstance(der_bytes, bytes): raise TypeError(unwrap( ''' der_bytes must be a byte string, not %s ''' % _type_name(der_bytes) )) - if not isinstance(type_name, str_cls): + if not isinstance(type_name, str): raise TypeError(unwrap( ''' type_name must be a unicode string, not %s @@ -127,7 +123,7 @@ def _unarmor(pem_bytes): in the form "Name: Value" that are right after the begin line. """ - if not isinstance(pem_bytes, byte_cls): + if not isinstance(pem_bytes, bytes): raise TypeError(unwrap( ''' pem_bytes must be a byte string, not %s diff --git a/jc/parsers/asn1crypto/util.py b/jc/parsers/asn1crypto/util.py index 7196897c..ed5bd643 100644 --- a/jc/parsers/asn1crypto/util.py +++ b/jc/parsers/asn1crypto/util.py @@ -20,11 +20,11 @@ from __future__ import unicode_literals, division, absolute_import, print_functi import math import sys -from datetime import datetime, date, timedelta, tzinfo +from collections import OrderedDict +from datetime import datetime, date, timedelta, timezone, tzinfo from ._errors import unwrap from ._iri import iri_to_uri, uri_to_iri # noqa -from ._ordereddict import OrderedDict # noqa from ._types import type_name if sys.platform == 'win32': @@ -33,230 +33,53 @@ else: from socket import inet_ntop, inet_pton # noqa -# Python 2 -if sys.version_info <= (3,): - def int_to_bytes(value, signed=False, width=None): - """ - Converts an integer to a byte string +def int_to_bytes(value, signed=False, width=None): + """ + Converts an integer to a byte string - :param value: - The integer to convert + :param value: + The integer to convert - :param signed: - If the byte string should be encoded using two's complement + :param signed: + If the byte string should be encoded using two's complement - :param width: - If None, the minimal possible size (but at least 1), - otherwise an integer of the byte width for the return value + :param width: + If None, the minimal possible size (but at least 1), + otherwise an integer of the byte width for the return value - :return: - A byte string - """ + :return: + A byte string + """ - if value == 0 and width == 0: - return b'' - - # Handle negatives in two's complement - is_neg = False - if signed and value < 0: - is_neg = True - bits = int(math.ceil(len('%x' % abs(value)) / 2.0) * 8) - value = (value + (1 << bits)) % (1 << bits) - - hex_str = '%x' % value - if len(hex_str) & 1: - hex_str = '0' + hex_str - - output = hex_str.decode('hex') - - if signed and not is_neg and ord(output[0:1]) & 0x80: - output = b'\x00' + output - - if width is not None: - if len(output) > width: - raise OverflowError('int too big to convert') - if is_neg: - pad_char = b'\xFF' - else: - pad_char = b'\x00' - output = (pad_char * (width - len(output))) + output - elif is_neg and ord(output[0:1]) & 0x80 == 0: - output = b'\xFF' + output - - return output - - def int_from_bytes(value, signed=False): - """ - Converts a byte string to an integer - - :param value: - The byte string to convert - - :param signed: - If the byte string should be interpreted using two's complement - - :return: - An integer - """ - - if value == b'': - return 0 - - num = long(value.encode("hex"), 16) # noqa - - if not signed: - return num - - # Check for sign bit and handle two's complement - if ord(value[0:1]) & 0x80: - bit_len = len(value) * 8 - return num - (1 << bit_len) - - return num - - class timezone(tzinfo): # noqa - """ - Implements datetime.timezone for py2. - Only full minute offsets are supported. - DST is not supported. - """ - - def __init__(self, offset, name=None): - """ - :param offset: - A timedelta with this timezone's offset from UTC - - :param name: - Name of the timezone; if None, generate one. - """ - - if not timedelta(hours=-24) < offset < timedelta(hours=24): - raise ValueError('Offset must be in [-23:59, 23:59]') - - if offset.seconds % 60 or offset.microseconds: - raise ValueError('Offset must be full minutes') - - self._offset = offset - - if name is not None: - self._name = name - elif not offset: - self._name = 'UTC' - else: - self._name = 'UTC' + _format_offset(offset) - - def __eq__(self, other): - """ - Compare two timezones - - :param other: - The other timezone to compare to - - :return: - A boolean - """ - - if type(other) != timezone: - return False - return self._offset == other._offset - - def __getinitargs__(self): - """ - Called by tzinfo.__reduce__ to support pickle and copy. - - :return: - offset and name, to be used for __init__ - """ - - return self._offset, self._name - - def tzname(self, dt): - """ - :param dt: - A datetime object; ignored. - - :return: - Name of this timezone - """ - - return self._name - - def utcoffset(self, dt): - """ - :param dt: - A datetime object; ignored. - - :return: - A timedelta object with the offset from UTC - """ - - return self._offset - - def dst(self, dt): - """ - :param dt: - A datetime object; ignored. - - :return: - Zero timedelta - """ - - return timedelta(0) - - timezone.utc = timezone(timedelta(0)) - -# Python 3 -else: - - from datetime import timezone # noqa - - def int_to_bytes(value, signed=False, width=None): - """ - Converts an integer to a byte string - - :param value: - The integer to convert - - :param signed: - If the byte string should be encoded using two's complement - - :param width: - If None, the minimal possible size (but at least 1), - otherwise an integer of the byte width for the return value - - :return: - A byte string - """ - - if width is None: - if signed: - if value < 0: - bits_required = abs(value + 1).bit_length() - else: - bits_required = value.bit_length() - if bits_required % 8 == 0: - bits_required += 1 + if width is None: + if signed: + if value < 0: + bits_required = abs(value + 1).bit_length() else: bits_required = value.bit_length() - width = math.ceil(bits_required / 8) or 1 - return value.to_bytes(width, byteorder='big', signed=signed) + if bits_required % 8 == 0: + bits_required += 1 + else: + bits_required = value.bit_length() + width = math.ceil(bits_required / 8) or 1 + return value.to_bytes(width, byteorder='big', signed=signed) - def int_from_bytes(value, signed=False): - """ - Converts a byte string to an integer +def int_from_bytes(value, signed=False): + """ + Converts a byte string to an integer - :param value: - The byte string to convert + :param value: + The byte string to convert - :param signed: - If the byte string should be interpreted using two's complement + :param signed: + If the byte string should be interpreted using two's complement - :return: - An integer - """ + :return: + An integer + """ - return int.from_bytes(value, 'big', signed=signed) + return int.from_bytes(value, 'big', signed=signed) def _format_offset(off): diff --git a/jc/parsers/asn1crypto/x509.py b/jc/parsers/asn1crypto/x509.py index 2279bf53..563fa3bd 100644 --- a/jc/parsers/asn1crypto/x509.py +++ b/jc/parsers/asn1crypto/x509.py @@ -15,6 +15,7 @@ Other type classes are defined that help compose the types listed above. from __future__ import unicode_literals, division, absolute_import, print_function +from collections import OrderedDict from contextlib import contextmanager from encodings import idna # noqa import hashlib @@ -26,8 +27,7 @@ import unicodedata from ._errors import unwrap from ._iri import iri_to_uri, uri_to_iri -from ._ordereddict import OrderedDict -from ._types import type_name, str_cls, bytes_to_list +from ._types import type_name from .algos import AlgorithmIdentifier, AnyAlgorithmIdentifier, DigestAlgorithm, SignedDigestAlgorithm from .core import ( Any, @@ -100,7 +100,7 @@ class DNSName(IA5String): A unicode string """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be a unicode string, not %s @@ -131,7 +131,7 @@ class URI(IA5String): A unicode string """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be a unicode string, not %s @@ -215,7 +215,7 @@ class EmailAddress(IA5String): A unicode string """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be a unicode string, not %s @@ -323,7 +323,7 @@ class IPAddress(OctetString): an IPv6 address or IPv6 address with CIDR """ - if not isinstance(value, str_cls): + if not isinstance(value, str): raise TypeError(unwrap( ''' %s value must be a unicode string, not %s @@ -413,7 +413,7 @@ class IPAddress(OctetString): if cidr_int is not None: cidr_bits = '{0:b}'.format(cidr_int) cidr = len(cidr_bits.rstrip('0')) - value = value + '/' + str_cls(cidr) + value = value + '/' + str(cidr) self._native = value return self._native @@ -2598,7 +2598,7 @@ class Certificate(Sequence): """ if self._issuer_serial is None: - self._issuer_serial = self.issuer.sha256 + b':' + str_cls(self.serial_number).encode('ascii') + self._issuer_serial = self.issuer.sha256 + b':' + str(self.serial_number).encode('ascii') return self._issuer_serial @property @@ -2647,7 +2647,7 @@ class Certificate(Sequence): # We untag the element since it is tagged via being a choice from GeneralName issuer = issuer.untag() authority_serial = self.authority_key_identifier_value['authority_cert_serial_number'].native - self._authority_issuer_serial = issuer.sha256 + b':' + str_cls(authority_serial).encode('ascii') + self._authority_issuer_serial = issuer.sha256 + b':' + str(authority_serial).encode('ascii') else: self._authority_issuer_serial = None return self._authority_issuer_serial @@ -2860,7 +2860,7 @@ class Certificate(Sequence): with a space between each pair of characters, all uppercase """ - return ' '.join('%02X' % c for c in bytes_to_list(self.sha1)) + return ' '.join('%02X' % c for c in list(self.sha1)) @property def sha256(self): @@ -2882,7 +2882,7 @@ class Certificate(Sequence): with a space between each pair of characters, all uppercase """ - return ' '.join('%02X' % c for c in bytes_to_list(self.sha256)) + return ' '.join('%02X' % c for c in list(self.sha256)) def is_valid_domain_ip(self, domain_ip): """ @@ -2896,7 +2896,7 @@ class Certificate(Sequence): A boolean - if the domain or IP is valid for the certificate """ - if not isinstance(domain_ip, str_cls): + if not isinstance(domain_ip, str): raise TypeError(unwrap( ''' domain_ip must be a unicode string, not %s diff --git a/jc/parsers/pbPlist/StrParse.py b/jc/parsers/pbPlist/StrParse.py index 5c981bfb..6541c9c9 100644 --- a/jc/parsers/pbPlist/StrParse.py +++ b/jc/parsers/pbPlist/StrParse.py @@ -28,12 +28,12 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED # OF THE POSSIBILITY OF SUCH DAMAGE. -import sys import string -if sys.version_info >= (3, 0): - def unichr(character): # pylint: disable=redefined-builtin - return chr(character) + +def unichr(character): # pylint: disable=redefined-builtin + return chr(character) + def ConvertNEXTSTEPToUnicode(hex_digits): # taken from http://ftp.unicode.org/Public/MAPPINGS/VENDORS/NEXT/NEXTSTEP.TXT diff --git a/jc/parsers/pbPlist/pbParser.py b/jc/parsers/pbPlist/pbParser.py index 8d47fa55..b6d8c60e 100644 --- a/jc/parsers/pbPlist/pbParser.py +++ b/jc/parsers/pbPlist/pbParser.py @@ -64,12 +64,10 @@ def GetFileEncoding(path): def OpenFileWithEncoding(file_path, encoding): return codecs.open(file_path, 'r', encoding=encoding, errors='ignore') -if sys.version_info < (3, 0): - def OpenFile(file_path): - return open(file_path, 'rb') -else: - def OpenFile(file_path): - return open(file_path, 'br') + +def OpenFile(file_path): + return open(file_path, 'rb') + class PBParser(object): diff --git a/jc/parsers/pbPlist/pbRoot.py b/jc/parsers/pbPlist/pbRoot.py index 180f3597..a9f857df 100644 --- a/jc/parsers/pbPlist/pbRoot.py +++ b/jc/parsers/pbPlist/pbRoot.py @@ -32,7 +32,7 @@ import sys from functools import cmp_to_key # for python 3.10+ compatibility -if sys.version_info.major == 3 and sys.version_info.minor >= 10: +if sys.version_info >= (3, 10): import collections setattr(collections, "MutableMapping", collections.abc.MutableMapping) From d96a2a8623700fd7f7bddc89460e65ba07d1de30 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 4 Dec 2023 23:35:04 +0200 Subject: [PATCH 36/60] APKINDEX parser (#487) (#491) * APKINDEX parser (#487) * Missing space in doc --- jc/lib.py | 1 + jc/parsers/apkindex.py | 214 +++++++++++++++++++++++ tests/fixtures/generic/apkindex | 29 +++ tests/fixtures/generic/apkindex.json | 1 + tests/fixtures/generic/apkindex.raw.json | 1 + tests/test_apkindex.py | 39 +++++ 6 files changed, 285 insertions(+) create mode 100644 jc/parsers/apkindex.py create mode 100644 tests/fixtures/generic/apkindex create mode 100644 tests/fixtures/generic/apkindex.json create mode 100644 tests/fixtures/generic/apkindex.raw.json create mode 100644 tests/test_apkindex.py diff --git a/jc/lib.py b/jc/lib.py index cb4a6ee0..c99c6b0b 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -15,6 +15,7 @@ parsers: List[str] = [ 'acpi', 'airport', 'airport-s', + 'apkindex', 'arp', 'asciitable', 'asciitable-m', diff --git a/jc/parsers/apkindex.py b/jc/parsers/apkindex.py new file mode 100644 index 00000000..1e644edb --- /dev/null +++ b/jc/parsers/apkindex.py @@ -0,0 +1,214 @@ +"""jc - JSON Convert `APKINDEX` files + +Usage (cli): + + $ jc --apkindex < APKINDEX + +Usage (module): + + import jc + result = jc.parse('apkindex', apkindex) + +Schema: + + [ + { + "checksum": string, + "package": string, + "version": string, + "architecture": string, + "package_size": integer, + "installed_size": integer, + "description": string, + "url": string, + "license": string, + "origin": string, + "maintainer": { + "name": string, + "email": string, + }, + "build_time": integer, + "commit": string, + "provider_priority": string, + "dependencies": [string], + "provides": [string], + "install_if": [string], + } + ] + +Example: + + $ jc --apkindex < APKINDEX + [ + { + "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", + "package": "yasm", + "version": "1.3.0-r4", + "architecture": "x86_64", + "package_size": 772109, + "installed_size": 1753088, + "description": "A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)", + "url": "http://www.tortall.net/projects/yasm/", + "license": "BSD-2-Clause", + "origin": "yasm", + "maintainer": { + "name": "Natanael Copa", + "email": "ncopa@alpinelinux.org" + }, + "build_time": 1681228881, + "commit": "84a227baf001b6e0208e3352b294e4d7a40e93de", + "dependencies": [ + "so:libc.musl-x86_64.so.1" + ], + "provides": [ + "cmd:vsyasm=1.3.0-r4", + "cmd:yasm=1.3.0-r4", + "cmd:ytasm=1.3.0-r4" + ] + } + ] + + $ jc --apkindex --raw < APKINDEX + [ + { + "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", + "P": "yasm", + "V": "1.3.0-r4", + "A": "x86_64", + "S": "772109", + "I": "1753088", + "T": "A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)", + "U": "http://www.tortall.net/projects/yasm/", + "L": "BSD-2-Clause", + "o": "yasm", + "m": "Natanael Copa ", + "t": "1681228881", + "c": "84a227baf001b6e0208e3352b294e4d7a40e93de", + "D": "so:libc.musl-x86_64.so.1", + "p": "cmd:vsyasm=1.3.0-r4 cmd:yasm=1.3.0-r4 cmd:ytasm=1.3.0-r4" + }, + ] +""" +import re +from typing import List, Dict, Union +import jc.utils + + +class info: + """Provides parser metadata (version, author, etc.)""" + + version = "1.0" + description = "APKINDEX parser" + author = "Roey Darwish Dror" + author_email = "roey.ghost@gmail.com" + compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] + tags = ['standard', 'file', 'string', 'binary'] + + +__version__ = info.version + + +_KEY = { + "C": "checksum", + "P": "package", + "V": "version", + "A": "architecture", + "S": "package_size", + "I": "installed_size", + "T": "description", + "U": "url", + "L": "license", + "o": "origin", + "m": "maintainer", + "t": "build_time", + "c": "commit", + "k": "provider_priority", + "D": "dependencies", + "p": "provides", + "i": "install_if", +} + +def _value(key: str, value: str) -> Union[str, int, List[str], Dict[str, str]]: + """ + Convert value to the appropriate type + + Parameters: + + key: (string) key name + value: (string) value to convert + + Returns: + + Converted value + """ + if key in ['S', 'I', 't', 'k']: + return int(value) + + if key in ['D', 'p', 'i']: + splitted = value.split(' ') + return splitted + + if key == "m": + m = re.match(r'(.*) <(.*)>', value) + if m: + return {'name': m.group(1), 'email': m.group(2)} + else: + return {'name': value} + + + return value +def _process(proc_data: List[Dict]) -> List[Dict]: + """ + 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. + """ + return [{_KEY.get(k, k): _value(k, v) for k, v in d.items()} for d in proc_data] + + +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[Dict]: + """ + 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: + + Dictionary. Raw or processed structured data. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: List[dict] = [] + + package = {} + if jc.utils.has_data(data): + lines = iter(data.splitlines()) + for line in lines: + line = line.strip() + if not line: + if package: + raw_output.append(package) + package = {} + + continue + + key = line[0] + value = line[2:].strip() + assert key not in package + package[key] = value + + if package: + raw_output.append(package) + + return raw_output if raw else _process(raw_output) diff --git a/tests/fixtures/generic/apkindex b/tests/fixtures/generic/apkindex new file mode 100644 index 00000000..bcf21103 --- /dev/null +++ b/tests/fixtures/generic/apkindex @@ -0,0 +1,29 @@ +C:Q1znBl9k+RKgY6gl5Eg3iz73KZbLY= +P:yasm +V:1.3.0-r4 +A:x86_64 +S:772109 +I:1753088 +T:A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.) +U:http://www.tortall.net/projects/yasm/ +L:BSD-2-Clause +o:yasm +m:Natanael Copa +t:1681228881 +c:84a227baf001b6e0208e3352b294e4d7a40e93de +D:so:libc.musl-x86_64.so.1 +p:cmd:vsyasm=1.3.0-r4 cmd:yasm=1.3.0-r4 cmd:ytasm=1.3.0-r4 + +C:Q1D3O+vigqMNGhFeVW1bT5Z9mZEf8= +P:yasm-dev +V:1.3.0-r4 +A:x86_64 +S:449076 +I:1773568 +T:A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.) (development files) +U:http://www.tortall.net/projects/yasm/ +L:BSD-2-Clause +o:yasm +m:Natanael Copa +t:1681228881 +c:84a227baf001b6e0208e3352b294e4d7a40e93de diff --git a/tests/fixtures/generic/apkindex.json b/tests/fixtures/generic/apkindex.json new file mode 100644 index 00000000..0ab7c9be --- /dev/null +++ b/tests/fixtures/generic/apkindex.json @@ -0,0 +1 @@ +[{"checksum":"Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=","package":"yasm","version":"1.3.0-r4","architecture":"x86_64","package_size":772109,"installed_size":1753088,"description":"A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)","url":"http://www.tortall.net/projects/yasm/","license":"BSD-2-Clause","origin":"yasm","maintainer":{"name":"Natanael Copa","email":"ncopa@alpinelinux.org"},"build_time":1681228881,"commit":"84a227baf001b6e0208e3352b294e4d7a40e93de","dependencies":["so:libc.musl-x86_64.so.1"],"provides":["cmd:vsyasm=1.3.0-r4","cmd:yasm=1.3.0-r4","cmd:ytasm=1.3.0-r4"]},{"checksum":"Q1D3O+vigqMNGhFeVW1bT5Z9mZEf8=","package":"yasm-dev","version":"1.3.0-r4","architecture":"x86_64","package_size":449076,"installed_size":1773568,"description":"A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.) (development files)","url":"http://www.tortall.net/projects/yasm/","license":"BSD-2-Clause","origin":"yasm","maintainer":{"name":"Natanael Copa","email":"ncopa@alpinelinux.org"},"build_time":1681228881,"commit":"84a227baf001b6e0208e3352b294e4d7a40e93de"}] diff --git a/tests/fixtures/generic/apkindex.raw.json b/tests/fixtures/generic/apkindex.raw.json new file mode 100644 index 00000000..e2cc05a5 --- /dev/null +++ b/tests/fixtures/generic/apkindex.raw.json @@ -0,0 +1 @@ +[{"C":"Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=","P":"yasm","V":"1.3.0-r4","A":"x86_64","S":"772109","I":"1753088","T":"A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)","U":"http://www.tortall.net/projects/yasm/","L":"BSD-2-Clause","o":"yasm","m":"Natanael Copa ","t":"1681228881","c":"84a227baf001b6e0208e3352b294e4d7a40e93de","D":"so:libc.musl-x86_64.so.1","p":"cmd:vsyasm=1.3.0-r4 cmd:yasm=1.3.0-r4 cmd:ytasm=1.3.0-r4"},{"C":"Q1D3O+vigqMNGhFeVW1bT5Z9mZEf8=","P":"yasm-dev","V":"1.3.0-r4","A":"x86_64","S":"449076","I":"1773568","T":"A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.) (development files)","U":"http://www.tortall.net/projects/yasm/","L":"BSD-2-Clause","o":"yasm","m":"Natanael Copa ","t":"1681228881","c":"84a227baf001b6e0208e3352b294e4d7a40e93de"}] diff --git a/tests/test_apkindex.py b/tests/test_apkindex.py new file mode 100644 index 00000000..a0a440f8 --- /dev/null +++ b/tests/test_apkindex.py @@ -0,0 +1,39 @@ +import os +import unittest +import json +from typing import Dict +from jc.parsers.apkindex import parse + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class Apkindex(unittest.TestCase): + f_in: Dict = {} + f_json: Dict = {} + f_raw: Dict = {} + + @classmethod + def setUpClass(cls): + fixtures = { + "normal": ("fixtures/generic/apkindex", "fixtures/generic/apkindex.json", "fixtures/generic/apkindex.raw.json"), + } + + for file, filepaths in fixtures.items(): + with open(os.path.join(THIS_DIR, filepaths[0]), "r", encoding="utf-8") as a, open( + os.path.join(THIS_DIR, filepaths[1]), "r", encoding="utf-8" + ) as b, open( + os.path.join(THIS_DIR, filepaths[1]), "r", encoding="utf-8" + ) as c: + cls.f_in[file] = a.read() + cls.f_json[file] = json.loads(b.read()) + cls.f_raw[file] = json.loads(c.read()) + + def test_apkindex(self): + """ + Test 'apkindex' + """ + f = "normal" + self.assertEqual(parse(self.f_in[f], quiet=True), self.f_json[f]) + +if __name__ == "__main__": + unittest.main() From f1e0cec9d65e6f3c5b6c21d0bf1ab796eaddc38a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 4 Dec 2023 14:01:30 -0800 Subject: [PATCH 37/60] add apkindex parser --- CHANGELOG | 4 +- README.md | 1 + completions/jc_bash_completion.sh | 2 +- completions/jc_zsh_completion.sh | 3 +- docs/parsers/apkindex.md | 126 ++++++++++++++++++++++++++++++ jc/parsers/apkindex.py | 64 ++++++++------- man/jc.1 | 10 +-- tests/test_apkindex.py | 43 +++++++--- 8 files changed, 205 insertions(+), 48 deletions(-) create mode 100644 docs/parsers/apkindex.md diff --git a/CHANGELOG b/CHANGELOG index b845b4b5..5859fd1f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,12 +1,14 @@ jc changelog 20231128 v1.24.0 +- Add `apkindex` parser for Alpine Linux Package Index files - Add `deb-packages-index` parser for Debian/Ubuntu Package Index files - Add `debconf-show` command parser - Add `swapon` command parser - Add `tune2fs` command parser -- Remove `iso-datetime` parser (use `datetime-iso` instead) +- Remove `iso-datetime` parser deprecated since v1.22.1. (use `datetime-iso` instead) - Update timezone change in Github Actions for node v16 requirement +- Add Python 3.12 tests to Github Actions - Refactor `acpi` command parser for code cleanup - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used diff --git a/README.md b/README.md index c74b6233..aba68cd3 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ option. | `--acpi` | `acpi` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi) | | `--airport` | `airport -I` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/airport) | | `--airport-s` | `airport -s` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/airport_s) | +| `--apkindex` | Alpine Linux Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/apkindex) | | `--arp` | `arp` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/arp) | | `--asciitable` | ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable) | | `--asciitable-m` | multi-line ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable_m) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index c0e8b7ab..d27ec00a 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -4,7 +4,7 @@ _jc() jc_about_options jc_about_mod_options jc_help_options jc_special_options jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --apkindex --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --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 3f64c20a..a04dcc82 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -115,11 +115,12 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --apkindex --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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' '--airport-s:`airport -s` command parser' + '--apkindex:Alpine Linux Package Index file parser' '--arp:`arp` command parser' '--asciitable:ASCII and Unicode table parser' '--asciitable-m:multi-line ASCII and Unicode table parser' diff --git a/docs/parsers/apkindex.md b/docs/parsers/apkindex.md new file mode 100644 index 00000000..e860a1a8 --- /dev/null +++ b/docs/parsers/apkindex.md @@ -0,0 +1,126 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.apkindex + +jc - JSON Convert Alpine Linux Package Index files + +Usage (cli): + + $ jc --apkindex < APKINDEX + +Usage (module): + + import jc + result = jc.parse('apkindex', apkindex_output) + +Schema: + + [ + { + "checksum": string, + "package": string, + "version": string, + "architecture": string, + "package_size": integer, + "installed_size": integer, + "description": string, + "url": string, + "license": string, + "origin": string, + "maintainer": { + "name": string, + "email": string, + }, + "build_time": integer, + "commit": string, + "provider_priority": string, + "dependencies": [ + string + ], + "provides": [ + string + ], + "install_if": [ + string + ], + } + ] + +Example: + + $ jc --apkindex < APKINDEX + [ + { + "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", + "package": "yasm", + "version": "1.3.0-r4", + "architecture": "x86_64", + "package_size": 772109, + "installed_size": 1753088, + "description": "A rewrite of NASM to allow for multiple synta...", + "url": "http://www.tortall.net/projects/yasm/", + "license": "BSD-2-Clause", + "origin": "yasm", + "maintainer": { + "name": "Natanael Copa", + "email": "ncopa@alpinelinux.org" + }, + "build_time": 1681228881, + "commit": "84a227baf001b6e0208e3352b294e4d7a40e93de", + "dependencies": [ + "so:libc.musl-x86_64.so.1" + ], + "provides": [ + "cmd:vsyasm=1.3.0-r4", + "cmd:yasm=1.3.0-r4", + "cmd:ytasm=1.3.0-r4" + ] + } + ] + + $ jc --apkindex --raw < APKINDEX + [ + { + "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", + "P": "yasm", + "V": "1.3.0-r4", + "A": "x86_64", + "S": "772109", + "I": "1753088", + "T": "A rewrite of NASM to allow for multiple syntax supported...", + "U": "http://www.tortall.net/projects/yasm/", + "L": "BSD-2-Clause", + "o": "yasm", + "m": "Natanael Copa ", + "t": "1681228881", + "c": "84a227baf001b6e0208e3352b294e4d7a40e93de", + "D": "so:libc.musl-x86_64.so.1", + "p": "cmd:vsyasm=1.3.0-r4 cmd:yasm=1.3.0-r4 cmd:ytasm=1.3.0-r4" + }, + ] + + + +### parse + +```python +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[Dict] +``` + +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 + +Version 1.0 by Roey Darwish Dror (roey.ghost@gmail.com) diff --git a/jc/parsers/apkindex.py b/jc/parsers/apkindex.py index 1e644edb..e1b83b73 100644 --- a/jc/parsers/apkindex.py +++ b/jc/parsers/apkindex.py @@ -1,4 +1,4 @@ -"""jc - JSON Convert `APKINDEX` files +"""jc - JSON Convert Alpine Linux Package Index files Usage (cli): @@ -7,32 +7,38 @@ Usage (cli): Usage (module): import jc - result = jc.parse('apkindex', apkindex) + result = jc.parse('apkindex', apkindex_output) Schema: [ { - "checksum": string, - "package": string, - "version": string, - "architecture": string, - "package_size": integer, - "installed_size": integer, - "description": string, - "url": string, - "license": string, - "origin": string, + "checksum": string, + "package": string, + "version": string, + "architecture": string, + "package_size": integer, + "installed_size": integer, + "description": string, + "url": string, + "license": string, + "origin": string, "maintainer": { - "name": string, - "email": string, + "name": string, + "email": string, }, - "build_time": integer, - "commit": string, - "provider_priority": string, - "dependencies": [string], - "provides": [string], - "install_if": [string], + "build_time": integer, + "commit": string, + "provider_priority": string, + "dependencies": [ + string + ], + "provides": [ + string + ], + "install_if": [ + string + ], } ] @@ -47,7 +53,7 @@ Example: "architecture": "x86_64", "package_size": 772109, "installed_size": 1753088, - "description": "A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)", + "description": "A rewrite of NASM to allow for multiple synta...", "url": "http://www.tortall.net/projects/yasm/", "license": "BSD-2-Clause", "origin": "yasm", @@ -77,7 +83,7 @@ Example: "A": "x86_64", "S": "772109", "I": "1753088", - "T": "A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)", + "T": "A rewrite of NASM to allow for multiple syntax supported...", "U": "http://www.tortall.net/projects/yasm/", "L": "BSD-2-Clause", "o": "yasm", @@ -96,13 +102,12 @@ import jc.utils class info: """Provides parser metadata (version, author, etc.)""" - version = "1.0" - description = "APKINDEX parser" + description = "Alpine Linux Package Index file parser" author = "Roey Darwish Dror" author_email = "roey.ghost@gmail.com" compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] - tags = ['standard', 'file', 'string', 'binary'] + tags = ['standard', 'file', 'string'] __version__ = info.version @@ -125,7 +130,7 @@ _KEY = { "k": "provider_priority", "D": "dependencies", "p": "provides", - "i": "install_if", + "i": "install_if" } def _value(key: str, value: str) -> Union[str, int, List[str], Dict[str, str]]: @@ -155,8 +160,9 @@ def _value(key: str, value: str) -> Union[str, int, List[str], Dict[str, str]]: else: return {'name': value} - return value + + def _process(proc_data: List[Dict]) -> List[Dict]: """ Final processing to conform to the schema. @@ -184,14 +190,14 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[Dict]: Returns: - Dictionary. Raw or processed structured data. + 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] = [] - package = {} + package: Dict = {} if jc.utils.has_data(data): lines = iter(data.splitlines()) for line in lines: diff --git a/man/jc.1 b/man/jc.1 index 8a627407..20a31933 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -52,6 +52,11 @@ Parsers: \fB--airport-s\fP `airport -s` command parser +.TP +.B +\fB--apkindex\fP +Alpine Linux Package Index file parser + .TP .B \fB--arp\fP @@ -332,11 +337,6 @@ IPv4 and IPv6 Address string parser \fB--ip-route\fP `ip route` command parser -.TP -.B -\fB--iso-datetime\fP -Deprecated - please use datetime-iso - .TP .B \fB--iw-scan\fP diff --git a/tests/test_apkindex.py b/tests/test_apkindex.py index a0a440f8..3ef55e78 100644 --- a/tests/test_apkindex.py +++ b/tests/test_apkindex.py @@ -10,30 +10,51 @@ THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class Apkindex(unittest.TestCase): f_in: Dict = {} f_json: Dict = {} - f_raw: Dict = {} @classmethod def setUpClass(cls): fixtures = { - "normal": ("fixtures/generic/apkindex", "fixtures/generic/apkindex.json", "fixtures/generic/apkindex.raw.json"), + 'normal': ( + 'fixtures/generic/apkindex', + 'fixtures/generic/apkindex.json'), + 'raw': ( + 'fixtures/generic/apkindex', + 'fixtures/generic/apkindex.raw.json') } for file, filepaths in fixtures.items(): - with open(os.path.join(THIS_DIR, filepaths[0]), "r", encoding="utf-8") as a, open( - os.path.join(THIS_DIR, filepaths[1]), "r", encoding="utf-8" - ) as b, open( - os.path.join(THIS_DIR, filepaths[1]), "r", encoding="utf-8" - ) as c: + with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \ + open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b: cls.f_in[file] = a.read() cls.f_json[file] = json.loads(b.read()) - cls.f_raw[file] = json.loads(c.read()) + + + def test_apkindex_nodata(self): + """ + Test 'apkindex' with no data + """ + self.assertEqual(parse('', quiet=True), []) + def test_apkindex(self): """ - Test 'apkindex' + Test 'apkindex' normal output """ - f = "normal" - self.assertEqual(parse(self.f_in[f], quiet=True), self.f_json[f]) + self.assertEqual( + parse(self.f_in['normal'], quiet=True), + self.f_json['normal'] + ) + + + def test_apkindex_raw(self): + """ + Test 'apkindex' raw output + """ + self.assertEqual( + parse(self.f_in['raw'], quiet=True, raw=True), + self.f_json['raw'] + ) + if __name__ == "__main__": unittest.main() From 0e7ebf4dc1107d20209795bcb925c6fbd6373a02 Mon Sep 17 00:00:00 2001 From: Ron Green <11993626+georgettica@users.noreply.github.com> Date: Fri, 8 Dec 2023 04:22:53 +0200 Subject: [PATCH 38/60] feat(iftop): add iftop-scanning (#484) * feat(iftop): add iftop-scanning this is not even an MVP, but I would like it to exist to allow per client json aggregation also, a future use is a stream response * fix typos and test first regex * add more iftop fun * Update iftop.py * add tests and json Signed-off-by: Ron Green <11993626+georgettica@users.noreply.github.com> * feat: make work and add tests Signed-off-by: Ron Green <11993626+georgettica@users.noreply.github.com> * add completion * change schema for query looping * fix: tests * fix review comments * feat: add byte parsing * add no-port to options * remove completion and format dep Signed-off-by: Ron Green <11993626+georgettica@users.noreply.github.com> * Update setup.py * Update iftop.py --------- Signed-off-by: Ron Green <11993626+georgettica@users.noreply.github.com> Co-authored-by: Kelly Brazil --- jc/parsers/iftop.py | 623 ++++++++++++++++++ .../ubuntu-20.10/iftop-b-n1-noport.json | 33 + .../ubuntu-20.10/iftop-b-n1-noport.out | 18 + tests/fixtures/ubuntu-20.10/iftop-b-n1.json | 57 ++ tests/fixtures/ubuntu-20.10/iftop-b-n1.out | 16 + tests/fixtures/ubuntu-20.10/iftop-b-n3.json | 236 +++++++ tests/fixtures/ubuntu-20.10/iftop-b-n3.out | 48 ++ tests/test_iftop.py | 57 ++ 8 files changed, 1088 insertions(+) create mode 100644 jc/parsers/iftop.py create mode 100644 tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.json create mode 100644 tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.out create mode 100644 tests/fixtures/ubuntu-20.10/iftop-b-n1.json create mode 100644 tests/fixtures/ubuntu-20.10/iftop-b-n1.out create mode 100644 tests/fixtures/ubuntu-20.10/iftop-b-n3.json create mode 100644 tests/fixtures/ubuntu-20.10/iftop-b-n3.out create mode 100644 tests/test_iftop.py diff --git a/jc/parsers/iftop.py b/jc/parsers/iftop.py new file mode 100644 index 00000000..d1e3ceb6 --- /dev/null +++ b/jc/parsers/iftop.py @@ -0,0 +1,623 @@ +"""jc - JSON Convert `iftop` command output parser + +Some of `iftop` options are supported. + + +Usage (cli): + + $ iftop -i -t -P -s 1 | jc --iftop + $ iftop -i -t -B -s1 | jc --iftop + +Usage (module): + + import jc + result = jc.parse('iftop', iftop_command_output) + +Schema: + + [ + { + "device": string, + "ip_address": string, + "mac_address": string, + "clients": [ + { + "index": integer, + "connections": [ + { + "host_name": string, + "host_port": string, # can be service or missing + "last_2s": string, + "last_10s": string, + "last_40s": string, + "cumulative": string, + "direction": string + } + ] + } + ] + "total_send_rate": { + "last_2s": string, + "last_10s": string, + "last_40s": string + } + "total_receive_rate": { + "last_2s": string, + "last_10s": string, + "last_40s": string + } + "total_send_and_receive_rate": { + "last_2s": string, + "last_10s": string, + "last_40s": string + } + "peak_rate": { + "last_2s": string, + "last_10s": string, + "last_40s": string + } + "cumulative_rate": { + "last_2s": string, + "last_10s": string, + "last_40s": string + } + + +Examples: + + $ iftop -i eno0 -t -P -s 1 | jc --iftop -p -r + [ + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "11:22:33:44:55:66", + "clients": [ + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "ssh", + "last_2s": "448b", + "last_10s": "448b", + "last_40s": "448b", + "cumulative": "112B", + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "40876", + "last_2s": "208b", + "last_10s": "208b", + "last_40s": "208b", + "cumulative": "52B", + "direction": "receive" + } + ] + } + ], + "total_send_rate": { + "last_2s": "448b", + "last_10s": "448b", + "last_40s": "448b" + }, + "total_receive_rate": { + "last_2s": "208b", + "last_10s": "208b", + "last_40s": "208b" + }, + "total_send_and_receive_rate": { + "last_2s": "656b", + "last_10s": "656b", + "last_40s": "656b" + }, + "peak_rate": { + "last_2s": "448b", + "last_10s": "208b", + "last_40s": "656b" + }, + "cumulative_rate": { + "last_2s": "112B", + "last_10s": "52B", + "last_40s": "164B" + } + } + ] + +""" +import re +from typing import List, Dict +from jc.jc_types import JSONDictType +import jc.utils +from collections import namedtuple +from numbers import Number + + +class info: + """Provides parser metadata (version, author, etc.)""" + + version = "0.1" + description = "`iftop` command parser" + author = "Ron Green" + author_email = "11993626+georgettica@users.noreply.github.com" + compatible = ["linux"] + tags = ["command"] + + +__version__ = info.version + + +def _process(proc_data: List[JSONDictType], quiet: bool = False) -> 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. + """ + string_to_bytes_fields = ["last_2s", "last_10s", "last_40s", "cumulative"] + one_nesting = [ + "total_send_rate", + "total_receive_rate", + "total_send_and_receive_rate", + "peak_rate", + "cumulative_rate", + ] + if not proc_data: + return proc_data + for entry in proc_data: + # print(f"{entry=}") + for entry_key in entry: + # print(f"{entry_key=}") + if entry_key in one_nesting: + # print(f"{entry[entry_key]=}") + for one_nesting_item_key in entry[entry_key]: + # print(f"{one_nesting_item_key=}") + if one_nesting_item_key in string_to_bytes_fields: + entry[entry_key][one_nesting_item_key] = humanfriendly_parse_size(entry[entry_key][one_nesting_item_key]) + elif entry_key == "clients": + for client in entry[entry_key]: + # print(f"{client=}") + if "connections" not in client: + continue + for connection in client["connections"]: + # print(f"{connection=}") + for connection_key in connection: + # print(f"{connection_key=}") + if connection_key in string_to_bytes_fields: + connection[connection_key] = humanfriendly_parse_size(connection[connection_key]) + return proc_data + + +# Named tuples to define units of size. +SizeUnit = namedtuple('SizeUnit', 'divider, symbol, name') +CombinedUnit = namedtuple('CombinedUnit', 'decimal, binary') + +# Differences between Python 2 and 3. +try: + # Python 2. + basestring = basestring +except (ImportError, NameError): + # Python 3. + basestring = str + +def humanfriendly_is_string(value): + """ + Check if a value is a :func:`python2:basestring` (in Python 2) or :class:`python3:str` (in Python 3) object. + + :param value: The value to check. + :returns: :data:`True` if the value is a string, :data:`False` otherwise. + """ + return isinstance(value, basestring) + +# Common disk size units in binary (base-2) and decimal (base-10) multiples. +disk_size_units = ( + CombinedUnit(SizeUnit(1000**1, 'KB', 'kilobyte'), SizeUnit(1024**1, 'KiB', 'kibibyte')), + CombinedUnit(SizeUnit(1000**2, 'MB', 'megabyte'), SizeUnit(1024**2, 'MiB', 'mebibyte')), + CombinedUnit(SizeUnit(1000**3, 'GB', 'gigabyte'), SizeUnit(1024**3, 'GiB', 'gibibyte')), + CombinedUnit(SizeUnit(1000**4, 'TB', 'terabyte'), SizeUnit(1024**4, 'TiB', 'tebibyte')), + CombinedUnit(SizeUnit(1000**5, 'PB', 'petabyte'), SizeUnit(1024**5, 'PiB', 'pebibyte')), + CombinedUnit(SizeUnit(1000**6, 'EB', 'exabyte'), SizeUnit(1024**6, 'EiB', 'exbibyte')), + CombinedUnit(SizeUnit(1000**7, 'ZB', 'zettabyte'), SizeUnit(1024**7, 'ZiB', 'zebibyte')), + CombinedUnit(SizeUnit(1000**8, 'YB', 'yottabyte'), SizeUnit(1024**8, 'YiB', 'yobibyte')), +) + +class HumanfriendlyInvalidSize(Exception): + pass + +def humanfriendly_parse_size(size, binary=False): + """ + Parse a human readable data size and return the number of bytes. + + :param size: The human readable file size to parse (a string). + :param binary: :data:`True` to use binary multiples of bytes (base-2) for + ambiguous unit symbols and names, :data:`False` to use + decimal multiples of bytes (base-10). + :returns: The corresponding size in bytes (an integer). + :raises: :exc:`InvalidSize` when the input can't be parsed. + + This function knows how to parse sizes in bytes, kilobytes, megabytes, + gigabytes, terabytes and petabytes. Some examples: + + >>> from humanfriendly import parse_size + >>> parse_size('42') + 42 + >>> parse_size('13b') + 13 + >>> parse_size('5 bytes') + 5 + >>> parse_size('1 KB') + 1000 + >>> parse_size('1 kilobyte') + 1000 + >>> parse_size('1 KiB') + 1024 + >>> parse_size('1 KB', binary=True) + 1024 + >>> parse_size('1.5 GB') + 1500000000 + >>> parse_size('1.5 GB', binary=True) + 1610612736 + """ + tokens = humanfriendly_tokenize(size) + if tokens and isinstance(tokens[0], Number): + # Get the normalized unit (if any) from the tokenized input. + normalized_unit = tokens[1].lower() if len(tokens) == 2 and humanfriendly_is_string(tokens[1]) else '' + # If the input contains only a number, it's assumed to be the number of + # bytes. The second token can also explicitly reference the unit bytes. + if len(tokens) == 1 or normalized_unit.startswith('b'): + return int(tokens[0]) + # Otherwise we expect two tokens: A number and a unit. + if normalized_unit: + # Convert plural units to singular units, for details: + # https://github.com/xolox/python-humanfriendly/issues/26 + normalized_unit = normalized_unit.rstrip('s') + 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())): + return int(tokens[0] * (unit.binary.divider if binary else unit.decimal.divider)) + # We failed to parse the size specification. + msg = "Failed to parse size! (input %r was tokenized as %r)" + raise HumanfriendlyInvalidSize(format(msg, size, tokens)) + + +# taken from https://github.com/xolox/python-humanfriendly/blob/master/humanfriendly/text.py#L402 +# so there are no dependencies on the humanfriendly package +def humanfriendly_tokenize(text): + tokenized_input = [] + for token in re.split(r'(\d+(?:\.\d+)?)', text): + token = token.strip() + if re.match(r'\d+\.\d+', token): + tokenized_input.append(float(token)) + elif token.isdigit(): + tokenized_input.append(int(token)) + elif token: + tokenized_input.append(token) + return tokenized_input + + +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] = [] + + interface_item: Dict = {} + + clients: List = [] + + before_arrow = r"\s+(?P\d+)\s+(?P[^\s]+):(?P[^\s]+)\s+" + before_arrow_no_port = r"\s+(?P\d+)\s+(?P[^\s]+)\s+" + after_arrow_before_newline = r"\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + newline_before_arrow = r"\s+(?P.+):(?P\w+)\s+" + newline_before_arrow_no_port = r"\s+(?P.+)\s+" + after_arrow_till_end = r"\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + re_linux_clients_before_newline = re.compile( + rf"{before_arrow}=>{after_arrow_before_newline}" + ) + re_linux_clients_before_newline_no_port = re.compile( + rf"{before_arrow_no_port}=>{after_arrow_before_newline}" + ) + re_linux_clients_after_newline_no_port = re.compile( + rf"{newline_before_arrow_no_port}<={after_arrow_till_end}" + ) + + re_linux_clients_after_newline = re.compile( + rf"{newline_before_arrow}<={after_arrow_till_end}" + ) + + re_total_send_rate = re.compile( + r"Total send rate:\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + ) + re_total_receive_rate = re.compile( + r"Total receive rate:\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + ) + re_total_send_and_receive_rate = re.compile( + r"Total send and receive rate:\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + ) + re_peak_rate = re.compile( + r"Peak rate \(sent/received/total\):\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + ) + re_cumulative_rate = re.compile( + r"Cumulative \(sent/received/total\):\s+(?P[^\s]+)\s+(?P[^\s]+)\s+(?P[^\s]+)" + ) + + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: List[Dict] = [] + current_client: Dict = {} + + if not jc.utils.has_data(data): + return raw_output if raw else _process(raw_output, quiet=quiet) + + is_previous_line_interface = False + saw_already_host_line = False + for line in filter(None, data.splitlines()): + if line.startswith("interface:"): + # Example: + # interface: enp0s3 + + interface_item["device"] = line.split(":")[1].strip() + elif line.startswith("IP address is:"): + # Example: + # IP address is: 10.10.15.129 + + interface_item["ip_address"] = line.split(":")[1].strip() + elif line.startswith("MAC address is:"): + # Example: + # MAC address is: 08:00:27:c0:4a:4f + + # strip off the "MAC address is: " part + data_without_front = line.split(":")[1:] + # join the remaining parts back together + data_without_front = ":".join(data_without_front) + interface_item["mac_address"] = data_without_front.strip() + + elif line.startswith("Listening on"): + # Example: + # Listening on enp0s3 + pass + elif ( + line.startswith("# Host name (port/service if enabled)") + and not saw_already_host_line + ): + saw_already_host_line = True + # Example: + # # Host name (port/service if enabled) last 2s last 10s last 40s cumulative + pass + elif ( + line.startswith("# Host name (port/service if enabled)") + and saw_already_host_line + ): + old_interface_item, interface_item = interface_item, {} + interface_item.update( + { + "device": old_interface_item["device"], + "ip_address": old_interface_item["ip_address"], + "mac_address": old_interface_item["mac_address"], + } + ) + + elif "=>" in line and is_previous_line_interface and ":" in line: + # should not happen + pass + elif "=>" in line and not is_previous_line_interface and ":" in line: + # Example: + # 1 ubuntu-2004-clean-01:ssh => 448b 448b 448b 112B + + is_previous_line_interface = True + match_raw = re_linux_clients_before_newline.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + current_client = {} + current_client["index"] = int(match_dict["index"]) + current_client["connections"] = [] + current_client_send = { + "host_name": match_dict["host_name"], + "host_port": match_dict["host_port"], + "last_2s": match_dict["send_last_2s"], + "last_10s": match_dict["send_last_10s"], + "last_40s": match_dict["send_last_40s"], + "cumulative": match_dict["send_cumulative"], + "direction": "send", + } + current_client["connections"].append(current_client_send) + # not adding yet as the receive part is not yet parsed + elif "=>" in line and not is_previous_line_interface and ":" not in line: + # should not happen + pass + elif "=>" in line and is_previous_line_interface and ":" not in line: + is_previous_line_interface = True + match_raw = re_linux_clients_before_newline_no_port.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + current_client = {} + current_client["index"] = int(match_dict["index"]) + current_client["connections"] = [] + current_client_send = { + "host_name": match_dict["host_name"], + "last_2s": match_dict["send_last_2s"], + "last_10s": match_dict["send_last_10s"], + "last_40s": match_dict["send_last_40s"], + "cumulative": match_dict["send_cumulative"], + "direction": "send", + } + current_client["connections"].append(current_client_send) + # not adding yet as the receive part is not yet parsed + elif "<=" in line and not is_previous_line_interface and ":" in line: + # should not happen + pass + elif "<=" in line and is_previous_line_interface and ":" in line: + # Example: + # 10.10.15.72:40876 <= 208b 208b 208b 52B + + is_previous_line_interface = False + + match_raw = re_linux_clients_after_newline.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + current_client_receive = { + "host_name": match_dict["receive_ip"], + "host_port": match_dict["receive_port"], + "last_2s": match_dict["receive_last_2s"], + "last_10s": match_dict["receive_last_10s"], + "last_40s": match_dict["receive_last_40s"], + "cumulative": match_dict["receive_cumulative"], + "direction": "receive", + } + + current_client["connections"].append(current_client_receive) + clients.append(current_client) + elif "<=" in line and not is_previous_line_interface and ":" not in line: + # should not happen + pass + elif "<=" in line and is_previous_line_interface and ":" not in line: + # Example: + # 10.10.15.72:40876 <= 208b 208b 208b 52B + + is_previous_line_interface = False + + match_raw = re_linux_clients_after_newline_no_port.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + current_client_receive = { + "host_name": match_dict["receive_ip"], + "last_2s": match_dict["receive_last_2s"], + "last_10s": match_dict["receive_last_10s"], + "last_40s": match_dict["receive_last_40s"], + "cumulative": match_dict["receive_cumulative"], + "direction": "receive", + } + + current_client["connections"].append(current_client_receive) + clients.append(current_client) + # check if all of the characters are dashes or equal signs + elif all(c == "-" for c in line): + pass + elif line.startswith("Total send rate"): + # Example: + # Total send rate: 448b 448b 448b + match_raw = re_total_send_rate.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + interface_item["total_send_rate"] = {} + interface_item["total_send_rate"].update( + { + "last_2s": match_dict["total_send_rate_last_2s"], + "last_10s": match_dict["total_send_rate_last_10s"], + "last_40s": match_dict["total_send_rate_last_40s"], + } + ) + elif line.startswith("Total receive rate"): + # Example: + # Total receive rate: 208b 208b 208b + match_raw = re_total_receive_rate.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + interface_item["total_receive_rate"] = {} + interface_item["total_receive_rate"].update( + { + "last_2s": match_dict["total_receive_rate_last_2s"], + "last_10s": match_dict["total_receive_rate_last_10s"], + "last_40s": match_dict["total_receive_rate_last_40s"], + } + ) + elif line.startswith("Total send and receive rate"): + # Example: + # Total send and receive rate: 656b 656b 656b + match_raw = re_total_send_and_receive_rate.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + interface_item["total_send_and_receive_rate"] = {} + interface_item["total_send_and_receive_rate"].update( + { + "last_2s": match_dict["total_send_and_receive_rate_last_2s"], + "last_10s": match_dict["total_send_and_receive_rate_last_10s"], + "last_40s": match_dict["total_send_and_receive_rate_last_40s"], + } + ) + elif line.startswith("Peak rate"): + match_raw = re_peak_rate.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + interface_item["peak_rate"] = {} + interface_item["peak_rate"].update( + { + "last_2s": match_dict["peak_rate_sent"], + "last_10s": match_dict["peak_rate_received"], + "last_40s": match_dict["peak_rate_total"], + } + ) + elif line.startswith("Cumulative"): + match_raw = re_cumulative_rate.match(line) + if not match_raw: + # this is a bug in iftop + # + continue + match_dict = match_raw.groupdict() + interface_item["cumulative_rate"] = {} + interface_item["cumulative_rate"].update( + { + "last_2s": match_dict["cumulative_rate_sent"], + "last_10s": match_dict["cumulative_rate_received"], + "last_40s": match_dict["cumulative_rate_total"], + } + ) + elif all(c == "=" for c in line): + interface_item["clients"] = clients + clients = [] + raw_output.append(interface_item.copy()) # keep the copy here as without it keeps the objects linked + else: + pass + + return raw_output if raw else _process(raw_output, quiet=quiet) diff --git a/tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.json b/tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.json new file mode 100644 index 00000000..f68e7b45 --- /dev/null +++ b/tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.json @@ -0,0 +1,33 @@ +[ + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "08:00:27:c0:4a:4f", + "total_send_rate": { + "last_2s": 4820, + "last_10s": 4820, + "last_40s": 4820 + }, + "total_receive_rate": { + "last_2s": 16600, + "last_10s": 16600, + "last_40s": 16600 + }, + "total_send_and_receive_rate": { + "last_2s": 21400, + "last_10s": 21400, + "last_40s": 21400 + }, + "peak_rate": { + "last_2s": 4820, + "last_10s": 16600, + "last_40s": 21400 + }, + "cumulative_rate": { + "last_2s": 9630, + "last_10s": 33100, + "last_40s": 42800 + }, + "clients": [] + } +] \ No newline at end of file diff --git a/tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.out b/tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.out new file mode 100644 index 00000000..b0de111c --- /dev/null +++ b/tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.out @@ -0,0 +1,18 @@ +interface: enp0s3 +IP address is: 10.10.15.129 +MAC address is: 08:00:27:c0:4a:4f +Listening on enp0s3 + # Host name (port/service if enabled) last 2s last 10s last 40s cumulative +-------------------------------------------------------------------------------------------- + 1 ubuntu-2004-clean-01 => 4.82KB 4.82KB 4.82KB 9.63KB + 10.10.15.72 <= 14.5KB 14.5KB 14.5KB 29.1KB + 2 ubuntu-2004-clean-02 => 0B 0B 0B 0B + 10.10.15.72 <= 2.02KB 2.02KB 2.02KB 4.04KB +-------------------------------------------------------------------------------------------- +Total send rate: 4.82KB 4.82KB 4.82KB +Total receive rate: 16.6KB 16.6KB 16.6KB +Total send and receive rate: 21.4KB 21.4KB 21.4KB +-------------------------------------------------------------------------------------------- +Peak rate (sent/received/total): 4.82KB 16.6KB 21.4KB +Cumulative (sent/received/total): 9.63KB 33.1KB 42.8KB +============================================================================================ \ No newline at end of file diff --git a/tests/fixtures/ubuntu-20.10/iftop-b-n1.json b/tests/fixtures/ubuntu-20.10/iftop-b-n1.json new file mode 100644 index 00000000..76c30b7b --- /dev/null +++ b/tests/fixtures/ubuntu-20.10/iftop-b-n1.json @@ -0,0 +1,57 @@ +[ + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "08:00:27:c0:4a:4f", + "clients": [ + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "ssh", + "last_2s": 448, + "last_10s": 448, + "last_40s": 448, + "cumulative": 112, + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "40876", + "last_2s": 208, + "last_10s": 208, + "last_40s": 208, + "cumulative": 52, + "direction": "receive" + } + ] + } + ], + "total_send_rate": { + "last_2s": 448, + "last_10s": 448, + "last_40s": 448 + }, + "total_receive_rate": { + "last_2s": 208, + "last_10s": 208, + "last_40s": 208 + }, + "total_send_and_receive_rate": { + "last_2s": 656, + "last_10s": 656, + "last_40s": 656 + }, + "peak_rate": { + "last_2s": 448, + "last_10s": 208, + "last_40s": 656 + }, + "cumulative_rate": { + "last_2s": 112, + "last_10s": 52, + "last_40s": 164 + } + } +] \ No newline at end of file diff --git a/tests/fixtures/ubuntu-20.10/iftop-b-n1.out b/tests/fixtures/ubuntu-20.10/iftop-b-n1.out new file mode 100644 index 00000000..8e242ac9 --- /dev/null +++ b/tests/fixtures/ubuntu-20.10/iftop-b-n1.out @@ -0,0 +1,16 @@ +interface: enp0s3 +IP address is: 10.10.15.129 +MAC address is: 08:00:27:c0:4a:4f +Listening on enp0s3 + # Host name (port/service if enabled) last 2s last 10s last 40s cumulative +-------------------------------------------------------------------------------------------- + 1 ubuntu-2004-clean-01:ssh => 448b 448b 448b 112B + 10.10.15.72:40876 <= 208b 208b 208b 52B +-------------------------------------------------------------------------------------------- +Total send rate: 448b 448b 448b +Total receive rate: 208b 208b 208b +Total send and receive rate: 656b 656b 656b +-------------------------------------------------------------------------------------------- +Peak rate (sent/received/total): 448b 208b 656b +Cumulative (sent/received/total): 112B 52B 164B +============================================================================================ \ No newline at end of file diff --git a/tests/fixtures/ubuntu-20.10/iftop-b-n3.json b/tests/fixtures/ubuntu-20.10/iftop-b-n3.json new file mode 100644 index 00000000..30e53bb9 --- /dev/null +++ b/tests/fixtures/ubuntu-20.10/iftop-b-n3.json @@ -0,0 +1,236 @@ +[ + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "08:00:27:c0:4a:4f", + "total_send_rate": { + "last_2s": 23200000, + "last_10s": 23200000, + "last_40s": 23200000 + }, + "total_receive_rate": { + "last_2s": 5650000, + "last_10s": 5650000, + "last_40s": 5650000 + }, + "total_send_and_receive_rate": { + "last_2s": 28800000, + "last_10s": 28800000, + "last_40s": 28800000 + }, + "peak_rate": { + "last_2s": 23200000, + "last_10s": 5650000, + "last_40s": 28800000 + }, + "cumulative_rate": { + "last_2s": 5790000, + "last_10s": 1410000, + "last_40s": 7200000 + }, + "clients": [ + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "33222", + "last_2s": 4720, + "last_10s": 4720, + "last_40s": 4720, + "cumulative": 1180, + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "https", + "last_2s": 1990000, + "last_10s": 1990000, + "last_40s": 1990000, + "cumulative": 508000, + "direction": "receive" + } + ] + }, + { + "index": 2, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "https", + "last_2s": 1980000, + "last_10s": 1980000, + "last_40s": 1980000, + "cumulative": 507000, + "direction": "send" + }, + { + "host_name": "10.10.15.73", + "host_port": "34562", + "last_2s": 3170, + "last_10s": 3170, + "last_40s": 3170, + "cumulative": 811, + "direction": "receive" + } + ] + } + ] + }, + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "08:00:27:c0:4a:4f", + "total_send_rate": { + "last_2s": 23200000, + "last_10s": 23200000, + "last_40s": 23200000 + }, + "total_receive_rate": { + "last_2s": 5650000, + "last_10s": 5650000, + "last_40s": 5650000 + }, + "total_send_and_receive_rate": { + "last_2s": 28800000, + "last_10s": 28800000, + "last_40s": 28800000 + }, + "peak_rate": { + "last_2s": 23200000, + "last_10s": 5650000, + "last_40s": 28800000 + }, + "cumulative_rate": { + "last_2s": 5790000, + "last_10s": 1410000, + "last_40s": 7200000 + }, + "clients": [ + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "33222", + "last_2s": 4720, + "last_10s": 4720, + "last_40s": 4720, + "cumulative": 1180, + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "https", + "last_2s": 1990000, + "last_10s": 1990000, + "last_40s": 1990000, + "cumulative": 508000, + "direction": "receive" + } + ] + }, + { + "index": 2, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "https", + "last_2s": 1980000, + "last_10s": 1980000, + "last_40s": 1980000, + "cumulative": 507000, + "direction": "send" + }, + { + "host_name": "10.10.15.73", + "host_port": "34562", + "last_2s": 3170, + "last_10s": 3170, + "last_40s": 3170, + "cumulative": 811, + "direction": "receive" + } + ] + } + ] + }, + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "08:00:27:c0:4a:4f", + "total_send_rate": { + "last_2s": 23200000, + "last_10s": 23200000, + "last_40s": 23200000 + }, + "total_receive_rate": { + "last_2s": 5650000, + "last_10s": 5650000, + "last_40s": 5650000 + }, + "total_send_and_receive_rate": { + "last_2s": 28800000, + "last_10s": 28800000, + "last_40s": 28800000 + }, + "peak_rate": { + "last_2s": 23200000, + "last_10s": 5650000, + "last_40s": 28800000 + }, + "cumulative_rate": { + "last_2s": 5790000, + "last_10s": 1410000, + "last_40s": 7200000 + }, + "clients": [ + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "33222", + "last_2s": 4720, + "last_10s": 4720, + "last_40s": 4720, + "cumulative": 1180, + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "https", + "last_2s": 1990000, + "last_10s": 1990000, + "last_40s": 1990000, + "cumulative": 508000, + "direction": "receive" + } + ] + }, + { + "index": 2, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "https", + "last_2s": 1980000, + "last_10s": 1980000, + "last_40s": 1980000, + "cumulative": 507000, + "direction": "send" + }, + { + "host_name": "10.10.15.73", + "host_port": "34562", + "last_2s": 3170, + "last_10s": 3170, + "last_40s": 3170, + "cumulative": 811, + "direction": "receive" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/tests/fixtures/ubuntu-20.10/iftop-b-n3.out b/tests/fixtures/ubuntu-20.10/iftop-b-n3.out new file mode 100644 index 00000000..9a9d568d --- /dev/null +++ b/tests/fixtures/ubuntu-20.10/iftop-b-n3.out @@ -0,0 +1,48 @@ +interface: enp0s3 +IP address is: 10.10.15.129 +MAC address is: 08:00:27:c0:4a:4f +Listening on enp0s3 + # Host name (port/service if enabled) last 2s last 10s last 40s cumulative +-------------------------------------------------------------------------------------------- + 1 ubuntu-2004-clean-01:33222 => 4.72Kb 4.72Kb 4.72Kb 1.18KB + 10.10.15.72:https <= 1.99Mb 1.99Mb 1.99Mb 508KB + 2 ubuntu-2004-clean-01:https => 1.98Mb 1.98Mb 1.98Mb 507KB + 10.10.15.73:34562 <= 3.17Kb 3.17Kb 3.17Kb 811B +-------------------------------------------------------------------------------------------- +Total send rate: 23.2Mb 23.2Mb 23.2Mb +Total receive rate: 5.65Mb 5.65Mb 5.65Mb +Total send and receive rate: 28.8Mb 28.8Mb 28.8Mb +-------------------------------------------------------------------------------------------- +Peak rate (sent/received/total): 23.2Mb 5.65Mb 28.8Mb +Cumulative (sent/received/total): 5.79MB 1.41MB 7.20MB +============================================================================================ + + # Host name (port/service if enabled) last 2s last 10s last 40s cumulative +-------------------------------------------------------------------------------------------- + 1 ubuntu-2004-clean-01:33222 => 4.72Kb 4.72Kb 4.72Kb 1.18KB + 10.10.15.72:https <= 1.99Mb 1.99Mb 1.99Mb 508KB + 2 ubuntu-2004-clean-01:https => 1.98Mb 1.98Mb 1.98Mb 507KB + 10.10.15.73:34562 <= 3.17Kb 3.17Kb 3.17Kb 811B +-------------------------------------------------------------------------------------------- +Total send rate: 23.2Mb 23.2Mb 23.2Mb +Total receive rate: 5.65Mb 5.65Mb 5.65Mb +Total send and receive rate: 28.8Mb 28.8Mb 28.8Mb +-------------------------------------------------------------------------------------------- +Peak rate (sent/received/total): 23.2Mb 5.65Mb 28.8Mb +Cumulative (sent/received/total): 5.79MB 1.41MB 7.20MB +============================================================================================ + + # Host name (port/service if enabled) last 2s last 10s last 40s cumulative +-------------------------------------------------------------------------------------------- + 1 ubuntu-2004-clean-01:33222 => 4.72Kb 4.72Kb 4.72Kb 1.18KB + 10.10.15.72:https <= 1.99Mb 1.99Mb 1.99Mb 508KB + 2 ubuntu-2004-clean-01:https => 1.98Mb 1.98Mb 1.98Mb 507KB + 10.10.15.73:34562 <= 3.17Kb 3.17Kb 3.17Kb 811B +-------------------------------------------------------------------------------------------- +Total send rate: 23.2Mb 23.2Mb 23.2Mb +Total receive rate: 5.65Mb 5.65Mb 5.65Mb +Total send and receive rate: 28.8Mb 28.8Mb 28.8Mb +-------------------------------------------------------------------------------------------- +Peak rate (sent/received/total): 23.2Mb 5.65Mb 28.8Mb +Cumulative (sent/received/total): 5.79MB 1.41MB 7.20MB +============================================================================================ \ No newline at end of file diff --git a/tests/test_iftop.py b/tests/test_iftop.py new file mode 100644 index 00000000..e8385f3a --- /dev/null +++ b/tests/test_iftop.py @@ -0,0 +1,57 @@ +import os +import unittest +import json +import jc.parsers.iftop + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + + # input + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iftop-b-n1.out'), 'r', encoding='utf-8') as f: + ubuntu_20_10_iftop_b_n1 = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iftop-b-n3.out'), 'r', encoding='utf-8') as f: + ubuntu_20_10_iftop_b_n3 = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.out'), 'r', encoding='utf-8') as f: + ubuntu_20_10_iftop_b_n1_noport = f.read() + + # output + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iftop-b-n1.json'), 'r', encoding='utf-8') as f: + ubuntu_20_10_iftop_b_n1_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iftop-b-n3.json'), 'r', encoding='utf-8') as f: + ubuntu_20_10_iftop_b_n3_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iftop-b-n1-noport.json'), 'r', encoding='utf-8') as f: + ubuntu_20_10_iftop_b_n1_noport_json = json.loads(f.read()) + + + def test_iftop_nodata(self): + """ + Test 'iftop -b' with no data + """ + self.assertEqual(jc.parsers.iftop.parse('', quiet=True), []) + + def test_iftop_ubuntu_20_10(self): + """ + Test 'iftop -i -t -P -s 1' with units as MiB on Ubuntu 20.10 + """ + self.assertEqual(jc.parsers.iftop.parse(self.ubuntu_20_10_iftop_b_n1, quiet=True), self.ubuntu_20_10_iftop_b_n1_json) + + def test_iftop_multiple_runs_ubuntu_20_10(self): + """ + Test 'iftop -i -t -P -s 1' with units as MiB on Ubuntu 20.10 + """ + self.assertEqual(jc.parsers.iftop.parse(self.ubuntu_20_10_iftop_b_n3, quiet=True), self.ubuntu_20_10_iftop_b_n3_json) + + def test_iftop_ubuntu_20_10_no_port(self): + """ + Test 'iftop -i -t -B -s 1' with units as MiB on Ubuntu 20.10 + """ + self.assertEqual(jc.parsers.iftop.parse(self.ubuntu_20_10_iftop_b_n1_noport, quiet=True), self.ubuntu_20_10_iftop_b_n1_noport_json) + +if __name__ == '__main__': + unittest.main() From ee12c522916693ff89295fe5f79a483d50ba2c3a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 10:03:33 -0800 Subject: [PATCH 39/60] rename apkindex parser to pkg-index-alpine --- CHANGELOG | 4 ++-- README.md | 2 +- completions/jc_bash_completion.sh | 2 +- completions/jc_zsh_completion.sh | 4 ++-- jc/lib.py | 2 +- jc/parsers/iftop.py | 3 --- .../{apkindex.py => pkg_index_alpine.py} | 8 +++---- man/jc.1 | 12 +++++----- ...dex.raw.json => pkg-index-alpine-raw.json} | 0 .../{apkindex.json => pkg-index-alpine.json} | 0 .../{apkindex => pkg-index-alpine.out} | 0 tests/test_apkindex.py | 22 +++++++++---------- 12 files changed, 28 insertions(+), 31 deletions(-) rename jc/parsers/{apkindex.py => pkg_index_alpine.py} (96%) rename tests/fixtures/generic/{apkindex.raw.json => pkg-index-alpine-raw.json} (100%) rename tests/fixtures/generic/{apkindex.json => pkg-index-alpine.json} (100%) rename tests/fixtures/generic/{apkindex => pkg-index-alpine.out} (100%) diff --git a/CHANGELOG b/CHANGELOG index 5859fd1f..af9e8ad9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,8 @@ jc changelog 20231128 v1.24.0 -- Add `apkindex` parser for Alpine Linux Package Index files -- Add `deb-packages-index` parser for Debian/Ubuntu Package Index files +- Add `pkg-index-alpine` parser for Alpine Linux Package Index files +- Add `pkg-index-deb` parser for Debian/Ubuntu Package Index files - Add `debconf-show` command parser - Add `swapon` command parser - Add `tune2fs` command parser diff --git a/README.md b/README.md index aba68cd3..1240cb2a 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,6 @@ option. | `--acpi` | `acpi` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi) | | `--airport` | `airport -I` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/airport) | | `--airport-s` | `airport -s` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/airport_s) | -| `--apkindex` | Alpine Linux Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/apkindex) | | `--arp` | `arp` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/arp) | | `--asciitable` | ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable) | | `--asciitable-m` | multi-line ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable_m) | @@ -254,6 +253,7 @@ option. | `--ping-s` | `ping` and `ping6` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ping_s) | | `--pip-list` | `pip list` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_list) | | `--pip-show` | `pip show` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show) | +| `--pkg-index-alpine` | Alpine Linux Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pkg_index_alpine) | | `--plist` | PLIST file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/plist) | | `--postconf` | `postconf -M` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/postconf) | | `--proc` | `/proc/` file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/proc) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index d27ec00a..fb4f19e8 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -4,7 +4,7 @@ _jc() jc_about_options jc_about_mod_options jc_help_options jc_special_options jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 --apkindex --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --plist --postconf --proc --proc-buddyinfo --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 --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 a04dcc82..9cae554e 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -115,12 +115,11 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --apkindex --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --plist --postconf --proc --proc-buddyinfo --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --plist --postconf --proc --proc-buddyinfo --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' '--airport-s:`airport -s` command parser' - '--apkindex:Alpine Linux Package Index file parser' '--arp:`arp` command parser' '--asciitable:ASCII and Unicode table parser' '--asciitable-m:multi-line ASCII and Unicode table parser' @@ -214,6 +213,7 @@ _jc() { '--ping-s:`ping` and `ping6` command streaming parser' '--pip-list:`pip list` command parser' '--pip-show:`pip show` command parser' + '--pkg-index-alpine:Alpine Linux Package Index file parser' '--plist:PLIST file parser' '--postconf:`postconf -M` command parser' '--proc:`/proc/` file parser' diff --git a/jc/lib.py b/jc/lib.py index c99c6b0b..b942da38 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -15,7 +15,6 @@ parsers: List[str] = [ 'acpi', 'airport', 'airport-s', - 'apkindex', 'arp', 'asciitable', 'asciitable-m', @@ -109,6 +108,7 @@ parsers: List[str] = [ 'ping-s', 'pip-list', 'pip-show', + 'pkg-index-alpine', 'plist', 'postconf', 'proc', diff --git a/jc/parsers/iftop.py b/jc/parsers/iftop.py index d1e3ceb6..f1fd4d0f 100644 --- a/jc/parsers/iftop.py +++ b/jc/parsers/iftop.py @@ -2,10 +2,8 @@ Some of `iftop` options are supported. - Usage (cli): - $ iftop -i -t -P -s 1 | jc --iftop $ iftop -i -t -B -s1 | jc --iftop Usage (module): @@ -135,7 +133,6 @@ from numbers import Number class info: """Provides parser metadata (version, author, etc.)""" - version = "0.1" description = "`iftop` command parser" author = "Ron Green" diff --git a/jc/parsers/apkindex.py b/jc/parsers/pkg_index_alpine.py similarity index 96% rename from jc/parsers/apkindex.py rename to jc/parsers/pkg_index_alpine.py index e1b83b73..1523a39e 100644 --- a/jc/parsers/apkindex.py +++ b/jc/parsers/pkg_index_alpine.py @@ -2,12 +2,12 @@ Usage (cli): - $ jc --apkindex < APKINDEX + $ cat APKINDEX | jc --pkg-index-alpine Usage (module): import jc - result = jc.parse('apkindex', apkindex_output) + result = jc.parse('pkg_index_alpine', pkg_index_alpine_output) Schema: @@ -44,7 +44,7 @@ Schema: Example: - $ jc --apkindex < APKINDEX + $ cat APKINDEX | jc --pkg-index-alpine [ { "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", @@ -74,7 +74,7 @@ Example: } ] - $ jc --apkindex --raw < APKINDEX + $ cat APKINDEX | jc --pkg-index-alpine --raw [ { "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", diff --git a/man/jc.1 b/man/jc.1 index 20a31933..3960b4b5 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-12-04 1.24.0 "JSON Convert" +.TH jc 1 2023-12-09 1.24.0 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -52,11 +52,6 @@ Parsers: \fB--airport-s\fP `airport -s` command parser -.TP -.B -\fB--apkindex\fP -Alpine Linux Package Index file parser - .TP .B \fB--arp\fP @@ -522,6 +517,11 @@ PostgreSQL password file parser \fB--pip-show\fP `pip show` command parser +.TP +.B +\fB--pkg-index-alpine\fP +Alpine Linux Package Index file parser + .TP .B \fB--plist\fP diff --git a/tests/fixtures/generic/apkindex.raw.json b/tests/fixtures/generic/pkg-index-alpine-raw.json similarity index 100% rename from tests/fixtures/generic/apkindex.raw.json rename to tests/fixtures/generic/pkg-index-alpine-raw.json diff --git a/tests/fixtures/generic/apkindex.json b/tests/fixtures/generic/pkg-index-alpine.json similarity index 100% rename from tests/fixtures/generic/apkindex.json rename to tests/fixtures/generic/pkg-index-alpine.json diff --git a/tests/fixtures/generic/apkindex b/tests/fixtures/generic/pkg-index-alpine.out similarity index 100% rename from tests/fixtures/generic/apkindex rename to tests/fixtures/generic/pkg-index-alpine.out diff --git a/tests/test_apkindex.py b/tests/test_apkindex.py index 3ef55e78..b4f8d314 100644 --- a/tests/test_apkindex.py +++ b/tests/test_apkindex.py @@ -2,7 +2,7 @@ import os import unittest import json from typing import Dict -from jc.parsers.apkindex import parse +from jc.parsers.pkg_index_alpine import parse THIS_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -15,11 +15,11 @@ class Apkindex(unittest.TestCase): def setUpClass(cls): fixtures = { 'normal': ( - 'fixtures/generic/apkindex', - 'fixtures/generic/apkindex.json'), + 'fixtures/generic/pkg-index-alpine.out', + 'fixtures/generic/pkg-index-alpine.json'), 'raw': ( - 'fixtures/generic/apkindex', - 'fixtures/generic/apkindex.raw.json') + 'fixtures/generic/pkg-index-alpine.out', + 'fixtures/generic/pkg-index-alpine-raw.json') } for file, filepaths in fixtures.items(): @@ -29,16 +29,16 @@ class Apkindex(unittest.TestCase): cls.f_json[file] = json.loads(b.read()) - def test_apkindex_nodata(self): + def test_pkg_index_alpine_nodata(self): """ - Test 'apkindex' with no data + Test 'pkg-index-alpine' with no data """ self.assertEqual(parse('', quiet=True), []) - def test_apkindex(self): + def test_pkg_index_alpine(self): """ - Test 'apkindex' normal output + Test 'pkg-index-alpine' normal output """ self.assertEqual( parse(self.f_in['normal'], quiet=True), @@ -46,9 +46,9 @@ class Apkindex(unittest.TestCase): ) - def test_apkindex_raw(self): + def test_pkg_index_alpine_raw(self): """ - Test 'apkindex' raw output + Test 'pkg-index-alpine' raw output """ self.assertEqual( parse(self.f_in['raw'], quiet=True, raw=True), From 356857f5d699b931d9b203387ad72a0d00175a75 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 10:17:48 -0800 Subject: [PATCH 40/60] rename deb-packages-index to pkg-index-deb --- README.md | 2 +- completions/jc_bash_completion.sh | 2 +- completions/jc_zsh_completion.sh | 4 +- docs/parsers/pkg_index_alpine.md | 126 ++++++++++++++++++ jc/lib.py | 2 +- ...deb_packages_index.py => pkg_index_deb.py} | 12 +- man/jc.1 | 10 +- ...packages-index.json => pkg-index-deb.json} | 0 ...b-packages-index.out => pkg-index-deb.out} | 0 ...t_apkindex.py => test_pkg_index_alpine.py} | 0 ...ackages_index.py => test_pkg_index_deb.py} | 14 +- 11 files changed, 149 insertions(+), 23 deletions(-) create mode 100644 docs/parsers/pkg_index_alpine.md rename jc/parsers/{deb_packages_index.py => pkg_index_deb.py} (93%) rename tests/fixtures/generic/{deb-packages-index.json => pkg-index-deb.json} (100%) rename tests/fixtures/generic/{deb-packages-index.out => pkg-index-deb.out} (100%) rename tests/{test_apkindex.py => test_pkg_index_alpine.py} (100%) rename tests/{test_deb_packages_index.py => test_pkg_index_deb.py} (73%) diff --git a/README.md b/README.md index 1240cb2a..593f5c49 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,6 @@ option. | `--csv-s` | CSV file streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/csv_s) | | `--date` | `date` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/date) | | `--datetime-iso` | ISO 8601 Datetime string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/datetime_iso) | -| `--deb-packages-index` | Debian Packages Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/deb_packages_index) | | `--debconf-show` | `debconf-show` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/debconf_show) | | `--df` | `df` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/df) | | `--dig` | `dig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/dig) | @@ -254,6 +253,7 @@ option. | `--pip-list` | `pip list` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_list) | | `--pip-show` | `pip show` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show) | | `--pkg-index-alpine` | Alpine Linux Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pkg_index_alpine) | +| `--pkg-index-deb` | Debian Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pkg_index_deb) | | `--plist` | PLIST file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/plist) | | `--postconf` | `postconf -M` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/postconf) | | `--proc` | `/proc/` file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/proc) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index fb4f19e8..215fc4a0 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -4,7 +4,7 @@ _jc() jc_about_options jc_about_mod_options jc_help_options jc_special_options jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --plist --postconf --proc --proc-buddyinfo --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --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 --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 9cae554e..a33a96e6 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -115,7 +115,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --deb-packages-index --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --plist --postconf --proc --proc-buddyinfo --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --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' @@ -139,7 +139,6 @@ _jc() { '--csv-s:CSV file streaming parser' '--date:`date` command parser' '--datetime-iso:ISO 8601 Datetime string parser' - '--deb-packages-index:Debian Packages Index file parser' '--debconf-show:`debconf-show` command parser' '--df:`df` command parser' '--dig:`dig` command parser' @@ -214,6 +213,7 @@ _jc() { '--pip-list:`pip list` command parser' '--pip-show:`pip show` command parser' '--pkg-index-alpine:Alpine Linux Package Index file parser' + '--pkg-index-deb:Debian Package Index file parser' '--plist:PLIST file parser' '--postconf:`postconf -M` command parser' '--proc:`/proc/` file parser' diff --git a/docs/parsers/pkg_index_alpine.md b/docs/parsers/pkg_index_alpine.md new file mode 100644 index 00000000..fc6d6267 --- /dev/null +++ b/docs/parsers/pkg_index_alpine.md @@ -0,0 +1,126 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.pkg\_index\_alpine + +jc - JSON Convert Alpine Linux Package Index files + +Usage (cli): + + $ cat APKINDEX | jc --pkg-index-alpine + +Usage (module): + + import jc + result = jc.parse('pkg_index_alpine', pkg_index_alpine_output) + +Schema: + + [ + { + "checksum": string, + "package": string, + "version": string, + "architecture": string, + "package_size": integer, + "installed_size": integer, + "description": string, + "url": string, + "license": string, + "origin": string, + "maintainer": { + "name": string, + "email": string, + }, + "build_time": integer, + "commit": string, + "provider_priority": string, + "dependencies": [ + string + ], + "provides": [ + string + ], + "install_if": [ + string + ], + } + ] + +Example: + + $ cat APKINDEX | jc --pkg-index-alpine + [ + { + "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", + "package": "yasm", + "version": "1.3.0-r4", + "architecture": "x86_64", + "package_size": 772109, + "installed_size": 1753088, + "description": "A rewrite of NASM to allow for multiple synta...", + "url": "http://www.tortall.net/projects/yasm/", + "license": "BSD-2-Clause", + "origin": "yasm", + "maintainer": { + "name": "Natanael Copa", + "email": "ncopa@alpinelinux.org" + }, + "build_time": 1681228881, + "commit": "84a227baf001b6e0208e3352b294e4d7a40e93de", + "dependencies": [ + "so:libc.musl-x86_64.so.1" + ], + "provides": [ + "cmd:vsyasm=1.3.0-r4", + "cmd:yasm=1.3.0-r4", + "cmd:ytasm=1.3.0-r4" + ] + } + ] + + $ cat APKINDEX | jc --pkg-index-alpine --raw + [ + { + "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", + "P": "yasm", + "V": "1.3.0-r4", + "A": "x86_64", + "S": "772109", + "I": "1753088", + "T": "A rewrite of NASM to allow for multiple syntax supported...", + "U": "http://www.tortall.net/projects/yasm/", + "L": "BSD-2-Clause", + "o": "yasm", + "m": "Natanael Copa ", + "t": "1681228881", + "c": "84a227baf001b6e0208e3352b294e4d7a40e93de", + "D": "so:libc.musl-x86_64.so.1", + "p": "cmd:vsyasm=1.3.0-r4 cmd:yasm=1.3.0-r4 cmd:ytasm=1.3.0-r4" + }, + ] + + + +### parse + +```python +def parse(data: str, raw: bool = False, quiet: bool = False) -> List[Dict] +``` + +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 + +Version 1.0 by Roey Darwish Dror (roey.ghost@gmail.com) diff --git a/jc/lib.py b/jc/lib.py index b942da38..d61b6682 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -34,7 +34,6 @@ parsers: List[str] = [ 'csv-s', 'date', 'datetime-iso', - 'deb-packages-index', 'debconf-show', 'df', 'dig', @@ -109,6 +108,7 @@ parsers: List[str] = [ 'pip-list', 'pip-show', 'pkg-index-alpine', + 'pkg-index-deb', 'plist', 'postconf', 'proc', diff --git a/jc/parsers/deb_packages_index.py b/jc/parsers/pkg_index_deb.py similarity index 93% rename from jc/parsers/deb_packages_index.py rename to jc/parsers/pkg_index_deb.py index 7b282882..2c759bd2 100644 --- a/jc/parsers/deb_packages_index.py +++ b/jc/parsers/pkg_index_deb.py @@ -1,13 +1,13 @@ -"""jc - JSON Convert Debian Packages Index file parser +"""jc - JSON Convert Debian Package Index file parser Usage (cli): - $ cat Packages | jc --deb-packages-index + $ cat Packages | jc --pkg-index-deb Usage (module): import jc - result = jc.parse('deb_packages_index', deb_package_index_output) + result = jc.parse('pkg_index_deb', pkg_index_deb_output) Schema: @@ -35,7 +35,7 @@ Schema: Examples: - $ cat Packages | jc --deb-packages-index + $ cat Packages | jc --pkg-index-deb [ { "package": "aspnetcore-runtime-2.1", @@ -70,7 +70,7 @@ Examples: } ] - $ cat Packages | jc --deb-packages-index -r + $ cat Packages | jc --pkg-index-deb -r [ { "package": "aspnetcore-runtime-2.1", @@ -113,7 +113,7 @@ import jc.parsers.rpm_qi as rpm_qi class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' - description = 'Debian Packages Index file parser' + description = 'Debian Package Index file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the rpm-qi parser' diff --git a/man/jc.1 b/man/jc.1 index 3960b4b5..23649395 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -147,11 +147,6 @@ CSV file streaming parser \fB--datetime-iso\fP ISO 8601 Datetime string parser -.TP -.B -\fB--deb-packages-index\fP -Debian Packages Index file parser - .TP .B \fB--debconf-show\fP @@ -522,6 +517,11 @@ PostgreSQL password file parser \fB--pkg-index-alpine\fP Alpine Linux Package Index file parser +.TP +.B +\fB--pkg-index-deb\fP +Debian Package Index file parser + .TP .B \fB--plist\fP diff --git a/tests/fixtures/generic/deb-packages-index.json b/tests/fixtures/generic/pkg-index-deb.json similarity index 100% rename from tests/fixtures/generic/deb-packages-index.json rename to tests/fixtures/generic/pkg-index-deb.json diff --git a/tests/fixtures/generic/deb-packages-index.out b/tests/fixtures/generic/pkg-index-deb.out similarity index 100% rename from tests/fixtures/generic/deb-packages-index.out rename to tests/fixtures/generic/pkg-index-deb.out diff --git a/tests/test_apkindex.py b/tests/test_pkg_index_alpine.py similarity index 100% rename from tests/test_apkindex.py rename to tests/test_pkg_index_alpine.py diff --git a/tests/test_deb_packages_index.py b/tests/test_pkg_index_deb.py similarity index 73% rename from tests/test_deb_packages_index.py rename to tests/test_pkg_index_deb.py index 47dfe21d..9cc98bae 100644 --- a/tests/test_deb_packages_index.py +++ b/tests/test_pkg_index_deb.py @@ -2,7 +2,7 @@ import os import unittest import json from typing import Dict -from jc.parsers.deb_packages_index import parse +from jc.parsers.pkg_index_deb import parse THIS_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -15,8 +15,8 @@ class MyTests(unittest.TestCase): def setUpClass(cls): fixtures = { 'deb_packages_index': ( - 'fixtures/generic/deb-packages-index.out', - 'fixtures/generic/deb-packages-index.json') + 'fixtures/generic/pkg-index-deb.out', + 'fixtures/generic/pkg-index-deb.json') } for file, filepaths in fixtures.items(): @@ -26,16 +26,16 @@ class MyTests(unittest.TestCase): cls.f_json[file] = json.loads(b.read()) - def test_deb_packages_index_nodata(self): + def test_pkg_index_deb_nodata(self): """ - Test 'deb_packages_index' with no data + Test 'pkg-index-deb' with no data """ self.assertEqual(parse('', quiet=True), []) - def test_deb_packages_index(self): + def test_pkg_index_deb(self): """ - Test 'deb_packages_index' + Test 'pkg-index-deb' """ self.assertEqual( parse(self.f_in['deb_packages_index'], quiet=True), From 347097a29438bcb2a6aa7f79ffbbbe2dfba28d07 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 11:41:06 -0800 Subject: [PATCH 41/60] add convert_size_to_int function --- docs/utils.md | 42 +++++++++++++++++++ jc/utils.py | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 154 insertions(+) diff --git a/docs/utils.md b/docs/utils.md index 61fe19ff..b3abc43e 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -9,6 +9,7 @@ * [convert\_to\_int](#jc.utils.convert_to_int) * [convert\_to\_float](#jc.utils.convert_to_float) * [convert\_to\_bool](#jc.utils.convert_to_bool) + * [convert\_size\_to\_int](#jc.utils.convert_size_to_int) * [input\_type\_check](#jc.utils.input_type_check) * [timestamp](#jc.utils.timestamp) * [\_\_init\_\_](#jc.utils.timestamp.__init__) @@ -178,6 +179,47 @@ Returns: True/False False unless a 'truthy' number or string is found ('y', 'yes', 'true', '1', 1, -1, etc.) + + +### convert\_size\_to\_int + +```python +def convert_size_to_int(size: str, binary: bool = False) -> Optional[int] +``` + +Parse a human readable data size and return the number of bytes. + +Parameters: + + size: (string) The human readable file size to parse. + 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). +Returns: + integer/None Integer if successful conversion, otherwise None + +This function knows how to parse sizes in bytes, kilobytes, megabytes, +gigabytes, terabytes and petabytes. Some examples: + +>>> convert_size_to_int('42') +42 +>>> convert_size_to_int('13b') +13 +>>> convert_size_to_int('5 bytes') +5 +>>> convert_size_to_int('1 KB') +1000 +>>> convert_size_to_int('1 kilobyte') +1000 +>>> convert_size_to_int('1 KiB') +1024 +>>> convert_size_to_int('1 KB', binary=True) +1024 +>>> convert_size_to_int('1.5 GB') +1500000000 +>>> convert_size_to_int('1.5 GB', binary=True) +1610612736 + ### input\_type\_check diff --git a/jc/utils.py b/jc/utils.py index 70faf137..224b123a 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -3,6 +3,8 @@ import sys import re import locale import shutil +from collections import namedtuple +from numbers import Number from datetime import datetime, timezone from textwrap import TextWrapper from functools import lru_cache @@ -274,6 +276,116 @@ def convert_to_bool(value: object) -> bool: return False +# convert_size_to_int from https://github.com/xolox/python-humanfriendly + +# Copyright (c) 2021 Peter Odding + +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: + +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# 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]: + """ + Parse a human readable data size and return the number of bytes. + + Parameters: + + size: (string) The human readable file size to parse. + 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). + Returns: + integer/None Integer if successful conversion, otherwise None + + This function knows how to parse sizes in bytes, kilobytes, megabytes, + gigabytes, terabytes and petabytes. Some examples: + + >>> convert_size_to_int('42') + 42 + >>> convert_size_to_int('13b') + 13 + >>> convert_size_to_int('5 bytes') + 5 + >>> convert_size_to_int('1 KB') + 1000 + >>> convert_size_to_int('1 kilobyte') + 1000 + >>> convert_size_to_int('1 KiB') + 1024 + >>> convert_size_to_int('1 KB', binary=True) + 1024 + >>> convert_size_to_int('1.5 GB') + 1500000000 + >>> convert_size_to_int('1.5 GB', binary=True) + 1610612736 + """ + def tokenize(text: str) -> List[str]: + tokenized_input: List = [] + for token in re.split(r'(\d+(?:\.\d+)?)', text): + token = token.strip() + if re.match(r'\d+\.\d+', token): + tokenized_input.append(float(token)) + elif token.isdigit(): + tokenized_input.append(int(token)) + elif token: + tokenized_input.append(token) + return tokenized_input + + SizeUnit = namedtuple('SizeUnit', 'divider, symbol, name') + CombinedUnit = namedtuple('CombinedUnit', 'decimal, binary') + disk_size_units = ( + CombinedUnit(SizeUnit(1000**1, 'KB', 'kilobyte'), SizeUnit(1024**1, 'KiB', 'kibibyte')), + CombinedUnit(SizeUnit(1000**2, 'MB', 'megabyte'), SizeUnit(1024**2, 'MiB', 'mebibyte')), + CombinedUnit(SizeUnit(1000**3, 'GB', 'gigabyte'), SizeUnit(1024**3, 'GiB', 'gibibyte')), + CombinedUnit(SizeUnit(1000**4, 'TB', 'terabyte'), SizeUnit(1024**4, 'TiB', 'tebibyte')), + CombinedUnit(SizeUnit(1000**5, 'PB', 'petabyte'), SizeUnit(1024**5, 'PiB', 'pebibyte')), + CombinedUnit(SizeUnit(1000**6, 'EB', 'exabyte'), SizeUnit(1024**6, 'EiB', 'exbibyte')), + CombinedUnit(SizeUnit(1000**7, 'ZB', 'zettabyte'), SizeUnit(1024**7, 'ZiB', 'zebibyte')), + CombinedUnit(SizeUnit(1000**8, 'YB', 'yottabyte'), SizeUnit(1024**8, 'YiB', 'yobibyte')), + ) + tokens = tokenize(size) + if tokens and isinstance(tokens[0], Number): + # Get the normalized unit (if any) from the tokenized input. + normalized_unit = tokens[1].lower() if len(tokens) == 2 and isinstance(tokens[1], str) else '' + # If the input contains only a number, it's assumed to be the number of + # bytes. The second token can also explicitly reference the unit bytes. + if len(tokens) == 1 or normalized_unit.startswith('b'): + return int(tokens[0]) + # Otherwise we expect two tokens: A number and a unit. + if normalized_unit: + # Convert plural units to singular units, for details: + # https://github.com/xolox/python-humanfriendly/issues/26 + normalized_unit = normalized_unit.rstrip('s') + 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())): + return int(tokens[0] * (unit.binary.divider if binary else unit.decimal.divider)) + # We failed to parse the size specification. + return None + + def input_type_check(data: object) -> None: """Ensure input data is a string. Raises `TypeError` if not.""" if not isinstance(data, str): From 32bd7ffbf6a3ec2d1430d4ba1194a84fb7c55f00 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 11:41:22 -0800 Subject: [PATCH 42/60] formatting updates --- jc/parsers/iftop.py | 391 ++++++++++++++++++++++++++------------------ 1 file changed, 230 insertions(+), 161 deletions(-) diff --git a/jc/parsers/iftop.py b/jc/parsers/iftop.py index f1fd4d0f..7a4b3ce3 100644 --- a/jc/parsers/iftop.py +++ b/jc/parsers/iftop.py @@ -1,7 +1,5 @@ """jc - JSON Convert `iftop` command output parser -Some of `iftop` options are supported. - Usage (cli): $ iftop -i -t -B -s1 | jc --iftop @@ -15,113 +13,172 @@ Schema: [ { - "device": string, - "ip_address": string, - "mac_address": string, + "device": string, + "ip_address": string, + "mac_address": string, "clients": [ - { - "index": integer, - "connections": [ - { - "host_name": string, - "host_port": string, # can be service or missing - "last_2s": string, - "last_10s": string, - "last_40s": string, - "cumulative": string, - "direction": string - } - ] - } + { + "index": integer, + "connections": [ + { + "host_name": string, + "host_port": string, # can be service or missing + "last_2s": string, + "last_10s": string, + "last_40s": string, + "cumulative": string, + "direction": string + } + ] + } ] "total_send_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": string, + "last_10s": string, + "last_40s": string } "total_receive_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": string, + "last_10s": string, + "last_40s": string } "total_send_and_receive_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": string, + "last_10s": string, + "last_40s": string } "peak_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": string, + "last_10s": string, + "last_40s": string } "cumulative_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": string, + "last_10s": string, + "last_40s": string } - + } + ] Examples: - $ iftop -i eno0 -t -P -s 1 | jc --iftop -p -r + $ iftop -i enp0s3 -t -P -s1 | jc --iftop -p [ - { + { + "device": "enp0s3", + "ip_address": "10.10.15.129", + "mac_address": "08:00:27:c0:4a:4f", + "clients": [ + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "ssh", + "last_2s": 448, + "last_10s": 448, + "last_40s": 448, + "cumulative": 112, + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "40876", + "last_2s": 208, + "last_10s": 208, + "last_40s": 208, + "cumulative": 52, + "direction": "receive" + } + ] + } + ], + "total_send_rate": { + "last_2s": 448, + "last_10s": 448, + "last_40s": 448 + }, + "total_receive_rate": { + "last_2s": 208, + "last_10s": 208, + "last_40s": 208 + }, + "total_send_and_receive_rate": { + "last_2s": 656, + "last_10s": 656, + "last_40s": 656 + }, + "peak_rate": { + "last_2s": 448, + "last_10s": 208, + "last_40s": 656 + }, + "cumulative_rate": { + "last_2s": 112, + "last_10s": 52, + "last_40s": 164 + } + } + ] + + $ iftop -i enp0s3 -t -P -s1 | jc --iftop -p -r + [ + { "device": "enp0s3", "ip_address": "10.10.15.129", "mac_address": "11:22:33:44:55:66", "clients": [ - { - "index": 1, - "connections": [ - { - "host_name": "ubuntu-2004-clean-01", - "host_port": "ssh", - "last_2s": "448b", - "last_10s": "448b", - "last_40s": "448b", - "cumulative": "112B", - "direction": "send" - }, - { - "host_name": "10.10.15.72", - "host_port": "40876", - "last_2s": "208b", - "last_10s": "208b", - "last_40s": "208b", - "cumulative": "52B", - "direction": "receive" - } - ] - } + { + "index": 1, + "connections": [ + { + "host_name": "ubuntu-2004-clean-01", + "host_port": "ssh", + "last_2s": "448b", + "last_10s": "448b", + "last_40s": "448b", + "cumulative": "112B", + "direction": "send" + }, + { + "host_name": "10.10.15.72", + "host_port": "40876", + "last_2s": "208b", + "last_10s": "208b", + "last_40s": "208b", + "cumulative": "52B", + "direction": "receive" + } + ] + } ], "total_send_rate": { - "last_2s": "448b", - "last_10s": "448b", - "last_40s": "448b" + "last_2s": "448b", + "last_10s": "448b", + "last_40s": "448b" }, "total_receive_rate": { - "last_2s": "208b", - "last_10s": "208b", - "last_40s": "208b" + "last_2s": "208b", + "last_10s": "208b", + "last_40s": "208b" }, "total_send_and_receive_rate": { - "last_2s": "656b", - "last_10s": "656b", - "last_40s": "656b" + "last_2s": "656b", + "last_10s": "656b", + "last_40s": "656b" }, "peak_rate": { - "last_2s": "448b", - "last_10s": "208b", - "last_40s": "656b" + "last_2s": "448b", + "last_10s": "208b", + "last_40s": "656b" }, "cumulative_rate": { - "last_2s": "112B", - "last_10s": "52B", - "last_40s": "164B" + "last_2s": "112B", + "last_10s": "52B", + "last_40s": "164B" } - } + } ] - """ import re from typing import List, Dict @@ -133,7 +190,7 @@ from numbers import Number class info: """Provides parser metadata (version, author, etc.)""" - version = "0.1" + version = "1.0" description = "`iftop` command parser" author = "Ron Green" author_email = "11993626+georgettica@users.noreply.github.com" @@ -164,6 +221,7 @@ def _process(proc_data: List[JSONDictType], quiet: bool = False) -> List[JSONDic "peak_rate", "cumulative_rate", ] + if not proc_data: return proc_data for entry in proc_data: @@ -175,7 +233,7 @@ def _process(proc_data: List[JSONDictType], quiet: bool = False) -> List[JSONDic for one_nesting_item_key in entry[entry_key]: # print(f"{one_nesting_item_key=}") if one_nesting_item_key in string_to_bytes_fields: - entry[entry_key][one_nesting_item_key] = humanfriendly_parse_size(entry[entry_key][one_nesting_item_key]) + entry[entry_key][one_nesting_item_key] = _parse_size(entry[entry_key][one_nesting_item_key]) elif entry_key == "clients": for client in entry[entry_key]: # print(f"{client=}") @@ -186,47 +244,35 @@ def _process(proc_data: List[JSONDictType], quiet: bool = False) -> List[JSONDic for connection_key in connection: # print(f"{connection_key=}") if connection_key in string_to_bytes_fields: - connection[connection_key] = humanfriendly_parse_size(connection[connection_key]) + connection[connection_key] = _parse_size(connection[connection_key]) return proc_data +# _parse_size from https://github.com/xolox/python-humanfriendly -# Named tuples to define units of size. -SizeUnit = namedtuple('SizeUnit', 'divider, symbol, name') -CombinedUnit = namedtuple('CombinedUnit', 'decimal, binary') +# Copyright (c) 2021 Peter Odding -# Differences between Python 2 and 3. -try: - # Python 2. - basestring = basestring -except (ImportError, NameError): - # Python 3. - basestring = str +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: -def humanfriendly_is_string(value): - """ - Check if a value is a :func:`python2:basestring` (in Python 2) or :class:`python3:str` (in Python 3) object. +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. - :param value: The value to check. - :returns: :data:`True` if the value is a string, :data:`False` otherwise. - """ - return isinstance(value, basestring) +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# 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. -# Common disk size units in binary (base-2) and decimal (base-10) multiples. -disk_size_units = ( - CombinedUnit(SizeUnit(1000**1, 'KB', 'kilobyte'), SizeUnit(1024**1, 'KiB', 'kibibyte')), - CombinedUnit(SizeUnit(1000**2, 'MB', 'megabyte'), SizeUnit(1024**2, 'MiB', 'mebibyte')), - CombinedUnit(SizeUnit(1000**3, 'GB', 'gigabyte'), SizeUnit(1024**3, 'GiB', 'gibibyte')), - CombinedUnit(SizeUnit(1000**4, 'TB', 'terabyte'), SizeUnit(1024**4, 'TiB', 'tebibyte')), - CombinedUnit(SizeUnit(1000**5, 'PB', 'petabyte'), SizeUnit(1024**5, 'PiB', 'pebibyte')), - CombinedUnit(SizeUnit(1000**6, 'EB', 'exabyte'), SizeUnit(1024**6, 'EiB', 'exbibyte')), - CombinedUnit(SizeUnit(1000**7, 'ZB', 'zettabyte'), SizeUnit(1024**7, 'ZiB', 'zebibyte')), - CombinedUnit(SizeUnit(1000**8, 'YB', 'yottabyte'), SizeUnit(1024**8, 'YiB', 'yobibyte')), -) - -class HumanfriendlyInvalidSize(Exception): - pass - -def humanfriendly_parse_size(size, binary=False): +# Note: this function can be replaced with jc.utils.convert_size_to_int +# in the future. +def _parse_size(size, binary=False): """ Parse a human readable data size and return the number of bytes. @@ -260,10 +306,34 @@ def humanfriendly_parse_size(size, binary=False): >>> parse_size('1.5 GB', binary=True) 1610612736 """ - tokens = humanfriendly_tokenize(size) + def tokenize(text): + tokenized_input = [] + for token in re.split(r'(\d+(?:\.\d+)?)', text): + token = token.strip() + if re.match(r'\d+\.\d+', token): + tokenized_input.append(float(token)) + elif token.isdigit(): + tokenized_input.append(int(token)) + elif token: + tokenized_input.append(token) + return tokenized_input + + SizeUnit = namedtuple('SizeUnit', 'divider, symbol, name') + CombinedUnit = namedtuple('CombinedUnit', 'decimal, binary') + disk_size_units = ( + CombinedUnit(SizeUnit(1000**1, 'KB', 'kilobyte'), SizeUnit(1024**1, 'KiB', 'kibibyte')), + CombinedUnit(SizeUnit(1000**2, 'MB', 'megabyte'), SizeUnit(1024**2, 'MiB', 'mebibyte')), + CombinedUnit(SizeUnit(1000**3, 'GB', 'gigabyte'), SizeUnit(1024**3, 'GiB', 'gibibyte')), + CombinedUnit(SizeUnit(1000**4, 'TB', 'terabyte'), SizeUnit(1024**4, 'TiB', 'tebibyte')), + CombinedUnit(SizeUnit(1000**5, 'PB', 'petabyte'), SizeUnit(1024**5, 'PiB', 'pebibyte')), + CombinedUnit(SizeUnit(1000**6, 'EB', 'exabyte'), SizeUnit(1024**6, 'EiB', 'exbibyte')), + CombinedUnit(SizeUnit(1000**7, 'ZB', 'zettabyte'), SizeUnit(1024**7, 'ZiB', 'zebibyte')), + CombinedUnit(SizeUnit(1000**8, 'YB', 'yottabyte'), SizeUnit(1024**8, 'YiB', 'yobibyte')), + ) + tokens = tokenize(size) if tokens and isinstance(tokens[0], Number): # Get the normalized unit (if any) from the tokenized input. - normalized_unit = tokens[1].lower() if len(tokens) == 2 and humanfriendly_is_string(tokens[1]) else '' + normalized_unit = tokens[1].lower() if len(tokens) == 2 and isinstance(tokens[1], str) else '' # If the input contains only a number, it's assumed to be the number of # bytes. The second token can also explicitly reference the unit bytes. if len(tokens) == 1 or normalized_unit.startswith('b'): @@ -286,23 +356,7 @@ def humanfriendly_parse_size(size, binary=False): 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. - msg = "Failed to parse size! (input %r was tokenized as %r)" - raise HumanfriendlyInvalidSize(format(msg, size, tokens)) - - -# taken from https://github.com/xolox/python-humanfriendly/blob/master/humanfriendly/text.py#L402 -# so there are no dependencies on the humanfriendly package -def humanfriendly_tokenize(text): - tokenized_input = [] - for token in re.split(r'(\d+(?:\.\d+)?)', text): - token = token.strip() - if re.match(r'\d+\.\d+', token): - tokenized_input.append(float(token)) - elif token.isdigit(): - tokenized_input.append(int(token)) - elif token: - tokenized_input.append(token) - return tokenized_input + return None def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictType]: @@ -323,10 +377,11 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp jc.utils.input_type_check(data) raw_output: List[Dict] = [] - interface_item: Dict = {} - + current_client: Dict = {} clients: List = [] + is_previous_line_interface = False + saw_already_host_line = False before_arrow = r"\s+(?P\d+)\s+(?P[^\s]+):(?P[^\s]+)\s+" before_arrow_no_port = r"\s+(?P\d+)\s+(?P[^\s]+)\s+" @@ -367,39 +422,35 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) - raw_output: List[Dict] = [] - current_client: Dict = {} - if not jc.utils.has_data(data): return raw_output if raw else _process(raw_output, quiet=quiet) - is_previous_line_interface = False - saw_already_host_line = False for line in filter(None, data.splitlines()): if line.startswith("interface:"): # Example: # interface: enp0s3 - interface_item["device"] = line.split(":")[1].strip() + elif line.startswith("IP address is:"): # Example: # IP address is: 10.10.15.129 - interface_item["ip_address"] = line.split(":")[1].strip() + elif line.startswith("MAC address is:"): # Example: # MAC address is: 08:00:27:c0:4a:4f - # strip off the "MAC address is: " part - data_without_front = line.split(":")[1:] + data_without_front_list = line.split(":")[1:] + # join the remaining parts back together - data_without_front = ":".join(data_without_front) + data_without_front = ":".join(data_without_front_list) interface_item["mac_address"] = data_without_front.strip() elif line.startswith("Listening on"): # Example: # Listening on enp0s3 pass + elif ( line.startswith("# Host name (port/service if enabled)") and not saw_already_host_line @@ -408,6 +459,7 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp # Example: # # Host name (port/service if enabled) last 2s last 10s last 40s cumulative pass + elif ( line.startswith("# Host name (port/service if enabled)") and saw_already_host_line @@ -424,16 +476,17 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp elif "=>" in line and is_previous_line_interface and ":" in line: # should not happen pass + elif "=>" in line and not is_previous_line_interface and ":" in line: # Example: # 1 ubuntu-2004-clean-01:ssh => 448b 448b 448b 112B - is_previous_line_interface = True match_raw = re_linux_clients_before_newline.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() current_client = {} current_client["index"] = int(match_dict["index"]) @@ -449,16 +502,19 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp } current_client["connections"].append(current_client_send) # not adding yet as the receive part is not yet parsed + elif "=>" in line and not is_previous_line_interface and ":" not in line: # should not happen pass + elif "=>" in line and is_previous_line_interface and ":" not in line: is_previous_line_interface = True match_raw = re_linux_clients_before_newline_no_port.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() current_client = {} current_client["index"] = int(match_dict["index"]) @@ -473,20 +529,21 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp } current_client["connections"].append(current_client_send) # not adding yet as the receive part is not yet parsed + elif "<=" in line and not is_previous_line_interface and ":" in line: # should not happen pass + elif "<=" in line and is_previous_line_interface and ":" in line: # Example: # 10.10.15.72:40876 <= 208b 208b 208b 52B - is_previous_line_interface = False - match_raw = re_linux_clients_after_newline.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() current_client_receive = { "host_name": match_dict["receive_ip"], @@ -500,20 +557,21 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp current_client["connections"].append(current_client_receive) clients.append(current_client) + elif "<=" in line and not is_previous_line_interface and ":" not in line: # should not happen pass + elif "<=" in line and is_previous_line_interface and ":" not in line: # Example: # 10.10.15.72:40876 <= 208b 208b 208b 52B - is_previous_line_interface = False - match_raw = re_linux_clients_after_newline_no_port.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() current_client_receive = { "host_name": match_dict["receive_ip"], @@ -526,17 +584,20 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp current_client["connections"].append(current_client_receive) clients.append(current_client) + # check if all of the characters are dashes or equal signs elif all(c == "-" for c in line): pass + elif line.startswith("Total send rate"): # Example: # Total send rate: 448b 448b 448b match_raw = re_total_send_rate.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() interface_item["total_send_rate"] = {} interface_item["total_send_rate"].update( @@ -546,14 +607,16 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp "last_40s": match_dict["total_send_rate_last_40s"], } ) + elif line.startswith("Total receive rate"): # Example: # Total receive rate: 208b 208b 208b match_raw = re_total_receive_rate.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() interface_item["total_receive_rate"] = {} interface_item["total_receive_rate"].update( @@ -563,14 +626,16 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp "last_40s": match_dict["total_receive_rate_last_40s"], } ) + elif line.startswith("Total send and receive rate"): # Example: # Total send and receive rate: 656b 656b 656b match_raw = re_total_send_and_receive_rate.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() interface_item["total_send_and_receive_rate"] = {} interface_item["total_send_and_receive_rate"].update( @@ -580,12 +645,14 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp "last_40s": match_dict["total_send_and_receive_rate_last_40s"], } ) + elif line.startswith("Peak rate"): match_raw = re_peak_rate.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() interface_item["peak_rate"] = {} interface_item["peak_rate"].update( @@ -595,12 +662,14 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp "last_40s": match_dict["peak_rate_total"], } ) + elif line.startswith("Cumulative"): match_raw = re_cumulative_rate.match(line) + if not match_raw: # this is a bug in iftop - # continue + match_dict = match_raw.groupdict() interface_item["cumulative_rate"] = {} interface_item["cumulative_rate"].update( @@ -610,11 +679,11 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> List[JSONDictTyp "last_40s": match_dict["cumulative_rate_total"], } ) + elif all(c == "=" for c in line): interface_item["clients"] = clients clients = [] - raw_output.append(interface_item.copy()) # keep the copy here as without it keeps the objects linked - else: - pass + # keep the copy here as without it keeps the objects linked + raw_output.append(interface_item.copy()) return raw_output if raw else _process(raw_output, quiet=quiet) From ef7f75561400c1ac27291be60b9705977652e57a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 11:41:45 -0800 Subject: [PATCH 43/60] doc update --- docs/parsers/pkg_index_deb.md | 138 ++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 docs/parsers/pkg_index_deb.md diff --git a/docs/parsers/pkg_index_deb.md b/docs/parsers/pkg_index_deb.md new file mode 100644 index 00000000..f5cbeeac --- /dev/null +++ b/docs/parsers/pkg_index_deb.md @@ -0,0 +1,138 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.pkg\_index\_deb + +jc - JSON Convert Debian Package Index file parser + +Usage (cli): + + $ cat Packages | jc --pkg-index-deb + +Usage (module): + + import jc + result = jc.parse('pkg_index_deb', pkg_index_deb_output) + +Schema: + + [ + { + "package": string, + "version": string, + "architecture": string, + "section": string, + "priority": string, + "installed_size": integer, + "maintainer": string, + "description": string, + "homepage": string, + "depends": string, + "conflicts": string, + "replaces": string, + "vcs_git": string, + "sha256": string, + "size": integer, + "vcs_git": string, + "filename": string + } + ] + +Examples: + + $ cat Packages | jc --pkg-index-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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", + "size": 21937036, + "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." + }, + { + "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-func...", + "conflicts": "azure-functions-core-tools-2, azure-functions-co...", + "replaces": "azure-functions-core-tools-2, azure-functions-cor...", + "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", + "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", + "size": 124417844, + "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." + } + ] + + $ cat Packages | jc --pkg-index-deb -r + [ + { + "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", + "size": "21937036", + "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." + }, + { + "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-func...", + "conflicts": "azure-functions-core-tools-2, azure-functions-co...", + "replaces": "azure-functions-core-tools-2, azure-functions-cor...", + "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", + "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", + "size": "124417844", + "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." + } + ] + + + +### parse + +```python +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. + +### Parser Information +Compatibility: linux, darwin, cygwin, win32, aix, freebsd + +Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) From 47c7e081f3a0c9be669bacd9e04830244c684ea8 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 11:45:26 -0800 Subject: [PATCH 44/60] doc update --- CHANGELOG | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index af9e8ad9..8d665a6b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,15 +1,17 @@ jc changelog -20231128 v1.24.0 +20231209 v1.24.0 +- Add `debconf-show` command parser +- Add `iftop` command parser - Add `pkg-index-alpine` parser for Alpine Linux Package Index files - Add `pkg-index-deb` parser for Debian/Ubuntu Package Index files -- Add `debconf-show` command parser - Add `swapon` command parser - Add `tune2fs` command parser - Remove `iso-datetime` parser deprecated since v1.22.1. (use `datetime-iso` instead) - Update timezone change in Github Actions for node v16 requirement - Add Python 3.12 tests to Github Actions - Refactor `acpi` command parser for code cleanup +- Refactor vendored libraries to remove Python 2 support - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used - Fix `mount` parser for cases with spaces in the mount point name From 2630049ab74662105f25c9b05f489b6ad1872a6d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 16:14:27 -0800 Subject: [PATCH 45/60] possible fix for infinite loop issue --- jc/parsers/xrandr.py | 34 +++++++++++++++++++++++++++++++++- tests/test_xrandr.py | 7 ++++++- 2 files changed, 39 insertions(+), 2 deletions(-) diff --git a/jc/parsers/xrandr.py b/jc/parsers/xrandr.py index dfd480bf..462a7df7 100644 --- a/jc/parsers/xrandr.py +++ b/jc/parsers/xrandr.py @@ -193,7 +193,7 @@ from jc.parsers.pyedid.helpers.edid_helper import EdidHelper class info: """Provides parser metadata (version, author, etc.)""" - version = "1.3" + version = "1.4" description = "`xrandr` command parser" author = "Kevin Lyter" author_email = "code (at) lyterk.com" @@ -205,6 +205,25 @@ class info: __version__ = info.version +# keep parsing state so we know which parsers have already tried the line +parse_state: Dict[str, List] = {} + +def _was_parsed(line: str, parser: str) -> bool: + """ + Check if entered parser has already parsed. If so return True. + If not, return false and add the parser to the list for the line entry. + """ + if line in parse_state: + if parser in parse_state[line]: + return True + + parse_state[line].append(parser) + return False + + parse_state[line] = [parser] + return False + + try: from typing import TypedDict @@ -291,6 +310,10 @@ _screen_pattern = ( def _parse_screen(next_lines: List[str]) -> Optional[Screen]: next_line = next_lines.pop() + + if _was_parsed(next_line, 'screen'): + return None + result = re.match(_screen_pattern, next_line) if not result: next_lines.append(next_line) @@ -333,6 +356,10 @@ def _parse_device(next_lines: List[str], quiet: bool = False) -> Optional[Device return None next_line = next_lines.pop() + + if _was_parsed(next_line, 'device'): + return None + result = re.match(_device_pattern, next_line) if not result: next_lines.append(next_line) @@ -402,6 +429,10 @@ def _parse_model(next_lines: List[str], quiet: bool = False) -> Optional[Model]: return None next_line = next_lines.pop() + + if _was_parsed(next_line, 'model'): + return None + if not re.match(_edid_head_pattern, next_line): next_lines.append(next_line) return None @@ -438,6 +469,7 @@ _frequencies_pattern = r"(((?P\d+\.\d+)(?P\*| |)(?P\+?)?) def _parse_mode(line: str) -> Optional[Mode]: result = re.match(_mode_pattern, line) frequencies: List[Frequency] = [] + if not result: return None diff --git a/tests/test_xrandr.py b/tests/test_xrandr.py index 0c704e88..45414105 100644 --- a/tests/test_xrandr.py +++ b/tests/test_xrandr.py @@ -18,13 +18,17 @@ from jc.parsers.xrandr import ( Mode, Model, Device, - Screen, + Screen ) +import jc.parsers.xrandr import pprint class XrandrTests(unittest.TestCase): + def setUp(self): + jc.parsers.xrandr.parse_state = {} + def test_xrandr_nodata(self): """ Test 'xrandr' with no data @@ -287,6 +291,7 @@ class XrandrTests(unittest.TestCase): "serial_number": "0", } + jc.parsers.xrandr.parse_state = {} actual: Optional[Model] = _parse_model(generic_edid) self.assertIsNotNone(actual) From a9ba98847c169bf9519b9a749f378900dc1c58cb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 9 Dec 2023 17:01:03 -0800 Subject: [PATCH 46/60] update _device_pattern regex for Freezing with 100% CPU when parsing Xrandr output - 1.23.6 #490 --- jc/parsers/xrandr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/parsers/xrandr.py b/jc/parsers/xrandr.py index 462a7df7..a785be35 100644 --- a/jc/parsers/xrandr.py +++ b/jc/parsers/xrandr.py @@ -346,8 +346,8 @@ _device_pattern = ( + r"\+(?P\d+)\+(?P\d+))? " + r"(?P(normal|right|left|inverted)?) ?" + r"(?P(X axis|Y axis|X and Y axis)?) ?" - + r"\(normal left inverted right x axis y axis\)" - + r"( ((?P\d+)mm x (?P\d+)mm)?)?" + + r"(\(normal left inverted right x axis y axis\))?" + + r"( ?((?P\d+)mm x (?P\d+)mm)?)?" ) From 88ffcaee565651b848ace011a818b4344ca658ae Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 10:29:58 -0800 Subject: [PATCH 47/60] update schema. fix no-data output to match other parsers. --- docs/parsers/xrandr.md | 2 +- jc/parsers/xrandr.py | 234 ++++++++++++++++++++++------------------- tests/test_xrandr.py | 5 +- 3 files changed, 127 insertions(+), 114 deletions(-) diff --git a/docs/parsers/xrandr.md b/docs/parsers/xrandr.md index 63ebbeec..77832a0e 100644 --- a/docs/parsers/xrandr.md +++ b/docs/parsers/xrandr.md @@ -211,4 +211,4 @@ Returns: ### Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.3 by Kevin Lyter (code (at) lyterk.com) +Version 1.4 by Kevin Lyter (code (at) lyterk.com) diff --git a/jc/parsers/xrandr.py b/jc/parsers/xrandr.py index a785be35..1792509b 100644 --- a/jc/parsers/xrandr.py +++ b/jc/parsers/xrandr.py @@ -26,22 +26,24 @@ Schema: "current_height": integer, "maximum_width": integer, "maximum_height": integer, - "devices": { - "modes": [ - { - "resolution_width": integer, - "resolution_height": integer, - "is_high_resolution": boolean, - "frequencies": [ - { - "frequency": float, - "is_current": boolean, - "is_preferred": boolean - } - ] - } - ] - }, + "devices": [ + { + "modes": [ + { + "resolution_width": integer, + "resolution_height": integer, + "is_high_resolution": boolean, + "frequencies": [ + { + "frequency": float, + "is_current": boolean, + "is_preferred": boolean + } + ] + } + ] + } + ], "is_connected": boolean, "is_primary": boolean, "device_name": string, @@ -73,50 +75,52 @@ Examples: "current_height": 1080, "maximum_width": 32767, "maximum_height": 32767, - "devices": { - "modes": [ - { - "resolution_width": 1920, - "resolution_height": 1080, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 60.03, - "is_current": true, - "is_preferred": true - }, - { - "frequency": 59.93, - "is_current": false, - "is_preferred": false - } - ] - }, - { - "resolution_width": 1680, - "resolution_height": 1050, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 59.88, - "is_current": false, - "is_preferred": false - } - ] - } - ], - "is_connected": true, - "is_primary": true, - "device_name": "eDP1", - "resolution_width": 1920, - "resolution_height": 1080, - "offset_width": 0, - "offset_height": 0, - "dimension_width": 310, - "dimension_height": 170, - "rotation": "normal", - "reflection": "normal" - } + "devices": [ + { + "modes": [ + { + "resolution_width": 1920, + "resolution_height": 1080, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 60.03, + "is_current": true, + "is_preferred": true + }, + { + "frequency": 59.93, + "is_current": false, + "is_preferred": false + } + ] + }, + { + "resolution_width": 1680, + "resolution_height": 1050, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 59.88, + "is_current": false, + "is_preferred": false + } + ] + } + ], + "is_connected": true, + "is_primary": true, + "device_name": "eDP1", + "resolution_width": 1920, + "resolution_height": 1080, + "offset_width": 0, + "offset_height": 0, + "dimension_width": 310, + "dimension_height": 170, + "rotation": "normal", + "reflection": "normal" + } + ] } ] } @@ -132,53 +136,55 @@ Examples: "current_height": 1080, "maximum_width": 32767, "maximum_height": 32767, - "devices": { - "modes": [ - { - "resolution_width": 1920, - "resolution_height": 1080, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 60.03, - "is_current": true, - "is_preferred": true - }, - { - "frequency": 59.93, - "is_current": false, - "is_preferred": false - } - ] - }, - { - "resolution_width": 1680, - "resolution_height": 1050, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 59.88, - "is_current": false, - "is_preferred": false - } - ] - } - ], - "is_connected": true, - "is_primary": true, - "device_name": "eDP1", - "model_name": "ASUS VW193S", - "product_id": "54297", - "serial_number": "78L8021107", - "resolution_width": 1920, - "resolution_height": 1080, - "offset_width": 0, - "offset_height": 0, - "dimension_width": 310, - "dimension_height": 170, - "rotation": "normal", - "reflection": "normal" - } + "devices": [ + { + "modes": [ + { + "resolution_width": 1920, + "resolution_height": 1080, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 60.03, + "is_current": true, + "is_preferred": true + }, + { + "frequency": 59.93, + "is_current": false, + "is_preferred": false + } + ] + }, + { + "resolution_width": 1680, + "resolution_height": 1050, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 59.88, + "is_current": false, + "is_preferred": false + } + ] + } + ], + "is_connected": true, + "is_primary": true, + "device_name": "eDP1", + "model_name": "ASUS VW193S", + "product_id": "54297", + "serial_number": "78L8021107", + "resolution_width": 1920, + "resolution_height": 1080, + "offset_width": 0, + "offset_height": 0, + "dimension_width": 310, + "dimension_height": 170, + "rotation": "normal", + "reflection": "normal" + } + ] } ] } @@ -192,7 +198,6 @@ from jc.parsers.pyedid.helpers.edid_helper import EdidHelper class info: """Provides parser metadata (version, author, etc.)""" - version = "1.4" description = "`xrandr` command parser" author = "Kevin Lyter" @@ -206,8 +211,18 @@ class info: __version__ = info.version # keep parsing state so we know which parsers have already tried the line +# Structure is: +# { +# : [ +# +# ] +# } +# +# Where is the xrandr output line to be checked and +# can contain "screen", "device", or "model" parse_state: Dict[str, List] = {} + def _was_parsed(line: str, parser: str) -> bool: """ Check if entered parser has already parsed. If so return True. @@ -522,9 +537,10 @@ def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict: linedata = data.splitlines() linedata.reverse() # For popping - result: Response = {"screens": []} + result: Dict = {} if jc.utils.has_data(data): + result = {"screens": []} while linedata: screen = _parse_screen(linedata) if screen: diff --git a/tests/test_xrandr.py b/tests/test_xrandr.py index 45414105..dc2f578e 100644 --- a/tests/test_xrandr.py +++ b/tests/test_xrandr.py @@ -1,4 +1,3 @@ -import json import re import unittest from typing import Optional @@ -22,8 +21,6 @@ from jc.parsers.xrandr import ( ) import jc.parsers.xrandr -import pprint - class XrandrTests(unittest.TestCase): def setUp(self): @@ -33,7 +30,7 @@ class XrandrTests(unittest.TestCase): """ Test 'xrandr' with no data """ - self.assertEqual(parse("", quiet=True), {"screens": []}) + self.assertEqual(parse("", quiet=True), {}) def test_regexes(self): devices = [ From e835227027d616de9dc347f9a3d2f2345926c2fc Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 10:30:05 -0800 Subject: [PATCH 48/60] doc update --- man/jc.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/jc.1 b/man/jc.1 index 23649395..c1576ce8 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-12-09 1.24.0 "JSON Convert" +.TH jc 1 2023-12-10 1.24.0 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings From c8fb56c601e62c23615819b5be10e015229f8305 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 10:41:09 -0800 Subject: [PATCH 49/60] formatting --- docs/utils.md | 37 +++++++++++++++++++------------------ jc/utils.py | 37 +++++++++++++++++++------------------ 2 files changed, 38 insertions(+), 36 deletions(-) diff --git a/docs/utils.md b/docs/utils.md index b3abc43e..a4d45bc0 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -196,29 +196,30 @@ Parameters: (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). Returns: + integer/None Integer if successful conversion, otherwise None This function knows how to parse sizes in bytes, kilobytes, megabytes, gigabytes, terabytes and petabytes. Some examples: ->>> convert_size_to_int('42') -42 ->>> convert_size_to_int('13b') -13 ->>> convert_size_to_int('5 bytes') -5 ->>> convert_size_to_int('1 KB') -1000 ->>> convert_size_to_int('1 kilobyte') -1000 ->>> convert_size_to_int('1 KiB') -1024 ->>> convert_size_to_int('1 KB', binary=True) -1024 ->>> convert_size_to_int('1.5 GB') -1500000000 ->>> convert_size_to_int('1.5 GB', binary=True) -1610612736 + >>> convert_size_to_int('42') + 42 + >>> convert_size_to_int('13b') + 13 + >>> convert_size_to_int('5 bytes') + 5 + >>> convert_size_to_int('1 KB') + 1000 + >>> convert_size_to_int('1 kilobyte') + 1000 + >>> convert_size_to_int('1 KiB') + 1024 + >>> convert_size_to_int('1 KB', binary=True) + 1024 + >>> convert_size_to_int('1.5 GB') + 1500000000 + >>> convert_size_to_int('1.5 GB', binary=True) + 1610612736 diff --git a/jc/utils.py b/jc/utils.py index 224b123a..257f1f5a 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -309,29 +309,30 @@ def convert_size_to_int(size: str, binary: bool = False) -> Optional[int]: (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). Returns: + integer/None Integer if successful conversion, otherwise None This function knows how to parse sizes in bytes, kilobytes, megabytes, gigabytes, terabytes and petabytes. Some examples: - >>> convert_size_to_int('42') - 42 - >>> convert_size_to_int('13b') - 13 - >>> convert_size_to_int('5 bytes') - 5 - >>> convert_size_to_int('1 KB') - 1000 - >>> convert_size_to_int('1 kilobyte') - 1000 - >>> convert_size_to_int('1 KiB') - 1024 - >>> convert_size_to_int('1 KB', binary=True) - 1024 - >>> convert_size_to_int('1.5 GB') - 1500000000 - >>> convert_size_to_int('1.5 GB', binary=True) - 1610612736 + >>> convert_size_to_int('42') + 42 + >>> convert_size_to_int('13b') + 13 + >>> convert_size_to_int('5 bytes') + 5 + >>> convert_size_to_int('1 KB') + 1000 + >>> convert_size_to_int('1 kilobyte') + 1000 + >>> convert_size_to_int('1 KiB') + 1024 + >>> convert_size_to_int('1 KB', binary=True) + 1024 + >>> convert_size_to_int('1.5 GB') + 1500000000 + >>> convert_size_to_int('1.5 GB', binary=True) + 1610612736 """ def tokenize(text: str) -> List[str]: tokenized_input: List = [] From 2a76a64fa15b9e13c0df54e09dfaab2e3860259d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 10:41:20 -0800 Subject: [PATCH 50/60] schema update --- docs/parsers/xrandr.md | 220 +++++++++++++++++++++-------------------- 1 file changed, 113 insertions(+), 107 deletions(-) diff --git a/docs/parsers/xrandr.md b/docs/parsers/xrandr.md index 77832a0e..a37f30ad 100644 --- a/docs/parsers/xrandr.md +++ b/docs/parsers/xrandr.md @@ -31,22 +31,24 @@ Schema: "current_height": integer, "maximum_width": integer, "maximum_height": integer, - "devices": { - "modes": [ - { - "resolution_width": integer, - "resolution_height": integer, - "is_high_resolution": boolean, - "frequencies": [ - { - "frequency": float, - "is_current": boolean, - "is_preferred": boolean - } - ] - } - ] - }, + "devices": [ + { + "modes": [ + { + "resolution_width": integer, + "resolution_height": integer, + "is_high_resolution": boolean, + "frequencies": [ + { + "frequency": float, + "is_current": boolean, + "is_preferred": boolean + } + ] + } + ] + } + ], "is_connected": boolean, "is_primary": boolean, "device_name": string, @@ -78,50 +80,52 @@ Examples: "current_height": 1080, "maximum_width": 32767, "maximum_height": 32767, - "devices": { - "modes": [ - { - "resolution_width": 1920, - "resolution_height": 1080, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 60.03, - "is_current": true, - "is_preferred": true - }, - { - "frequency": 59.93, - "is_current": false, - "is_preferred": false - } - ] - }, - { - "resolution_width": 1680, - "resolution_height": 1050, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 59.88, - "is_current": false, - "is_preferred": false - } - ] - } - ], - "is_connected": true, - "is_primary": true, - "device_name": "eDP1", - "resolution_width": 1920, - "resolution_height": 1080, - "offset_width": 0, - "offset_height": 0, - "dimension_width": 310, - "dimension_height": 170, - "rotation": "normal", - "reflection": "normal" - } + "devices": [ + { + "modes": [ + { + "resolution_width": 1920, + "resolution_height": 1080, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 60.03, + "is_current": true, + "is_preferred": true + }, + { + "frequency": 59.93, + "is_current": false, + "is_preferred": false + } + ] + }, + { + "resolution_width": 1680, + "resolution_height": 1050, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 59.88, + "is_current": false, + "is_preferred": false + } + ] + } + ], + "is_connected": true, + "is_primary": true, + "device_name": "eDP1", + "resolution_width": 1920, + "resolution_height": 1080, + "offset_width": 0, + "offset_height": 0, + "dimension_width": 310, + "dimension_height": 170, + "rotation": "normal", + "reflection": "normal" + } + ] } ] } @@ -137,53 +141,55 @@ Examples: "current_height": 1080, "maximum_width": 32767, "maximum_height": 32767, - "devices": { - "modes": [ - { - "resolution_width": 1920, - "resolution_height": 1080, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 60.03, - "is_current": true, - "is_preferred": true - }, - { - "frequency": 59.93, - "is_current": false, - "is_preferred": false - } - ] - }, - { - "resolution_width": 1680, - "resolution_height": 1050, - "is_high_resolution": false, - "frequencies": [ - { - "frequency": 59.88, - "is_current": false, - "is_preferred": false - } - ] - } - ], - "is_connected": true, - "is_primary": true, - "device_name": "eDP1", - "model_name": "ASUS VW193S", - "product_id": "54297", - "serial_number": "78L8021107", - "resolution_width": 1920, - "resolution_height": 1080, - "offset_width": 0, - "offset_height": 0, - "dimension_width": 310, - "dimension_height": 170, - "rotation": "normal", - "reflection": "normal" - } + "devices": [ + { + "modes": [ + { + "resolution_width": 1920, + "resolution_height": 1080, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 60.03, + "is_current": true, + "is_preferred": true + }, + { + "frequency": 59.93, + "is_current": false, + "is_preferred": false + } + ] + }, + { + "resolution_width": 1680, + "resolution_height": 1050, + "is_high_resolution": false, + "frequencies": [ + { + "frequency": 59.88, + "is_current": false, + "is_preferred": false + } + ] + } + ], + "is_connected": true, + "is_primary": true, + "device_name": "eDP1", + "model_name": "ASUS VW193S", + "product_id": "54297", + "serial_number": "78L8021107", + "resolution_width": 1920, + "resolution_height": 1080, + "offset_width": 0, + "offset_height": 0, + "dimension_width": 310, + "dimension_height": 170, + "rotation": "normal", + "reflection": "normal" + } + ] } ] } From 103bb174fc27df02d0cc6fa4581722752cd39702 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 10:49:05 -0800 Subject: [PATCH 51/60] rename pkg-index-alpine to pkg-index-apk --- CHANGELOG | 4 ++-- README.md | 2 +- completions/jc_bash_completion.sh | 2 +- completions/jc_zsh_completion.sh | 4 ++-- jc/lib.py | 2 +- .../{pkg_index_alpine.py => pkg_index_apk.py} | 8 +++---- man/jc.1 | 2 +- ...alpine-raw.json => pkg-index-apk-raw.json} | 0 ...g-index-alpine.json => pkg-index-apk.json} | 0 ...pkg-index-alpine.out => pkg-index-apk.out} | 0 ..._index_alpine.py => test_pkg_index_apk.py} | 22 +++++++++---------- 11 files changed, 23 insertions(+), 23 deletions(-) rename jc/parsers/{pkg_index_alpine.py => pkg_index_apk.py} (96%) rename tests/fixtures/generic/{pkg-index-alpine-raw.json => pkg-index-apk-raw.json} (100%) rename tests/fixtures/generic/{pkg-index-alpine.json => pkg-index-apk.json} (100%) rename tests/fixtures/generic/{pkg-index-alpine.out => pkg-index-apk.out} (100%) rename tests/{test_pkg_index_alpine.py => test_pkg_index_apk.py} (66%) diff --git a/CHANGELOG b/CHANGELOG index 8d665a6b..505a8f83 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,9 @@ jc changelog -20231209 v1.24.0 +20231210 v1.24.0 - Add `debconf-show` command parser - Add `iftop` command parser -- Add `pkg-index-alpine` parser for Alpine Linux Package Index files +- Add `pkg-index-apk` parser for Alpine Linux Package Index files - Add `pkg-index-deb` parser for Debian/Ubuntu Package Index files - Add `swapon` command parser - Add `tune2fs` command parser diff --git a/README.md b/README.md index 593f5c49..147c10f7 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ option. | `--ping-s` | `ping` and `ping6` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ping_s) | | `--pip-list` | `pip list` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_list) | | `--pip-show` | `pip show` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show) | -| `--pkg-index-alpine` | Alpine Linux Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pkg_index_alpine) | +| `--pkg-index-apk` | Alpine Linux Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pkg_index_apk) | | `--pkg-index-deb` | Debian Package Index file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/pkg_index_deb) | | `--plist` | PLIST file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/plist) | | `--postconf` | `postconf -M` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/postconf) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 215fc4a0..75cccd50 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -4,7 +4,7 @@ _jc() jc_about_options jc_about_mod_options jc_help_options jc_special_options jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --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-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 --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 a33a96e6..ed5d34e5 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -115,7 +115,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-alpine --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --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-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' @@ -212,7 +212,7 @@ _jc() { '--ping-s:`ping` and `ping6` command streaming parser' '--pip-list:`pip list` command parser' '--pip-show:`pip show` command parser' - '--pkg-index-alpine:Alpine Linux Package Index file parser' + '--pkg-index-apk:Alpine Linux Package Index file parser' '--pkg-index-deb:Debian Package Index file parser' '--plist:PLIST file parser' '--postconf:`postconf -M` command parser' diff --git a/jc/lib.py b/jc/lib.py index d61b6682..f82ca34f 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -107,7 +107,7 @@ parsers: List[str] = [ 'ping-s', 'pip-list', 'pip-show', - 'pkg-index-alpine', + 'pkg-index-apk', 'pkg-index-deb', 'plist', 'postconf', diff --git a/jc/parsers/pkg_index_alpine.py b/jc/parsers/pkg_index_apk.py similarity index 96% rename from jc/parsers/pkg_index_alpine.py rename to jc/parsers/pkg_index_apk.py index 1523a39e..3dd228dd 100644 --- a/jc/parsers/pkg_index_alpine.py +++ b/jc/parsers/pkg_index_apk.py @@ -2,12 +2,12 @@ Usage (cli): - $ cat APKINDEX | jc --pkg-index-alpine + $ cat APKINDEX | jc --pkg-index-apk Usage (module): import jc - result = jc.parse('pkg_index_alpine', pkg_index_alpine_output) + result = jc.parse('pkg_index_apk', pkg_index_apk_output) Schema: @@ -44,7 +44,7 @@ Schema: Example: - $ cat APKINDEX | jc --pkg-index-alpine + $ cat APKINDEX | jc --pkg-index-apk [ { "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", @@ -74,7 +74,7 @@ Example: } ] - $ cat APKINDEX | jc --pkg-index-alpine --raw + $ cat APKINDEX | jc --pkg-index-apk --raw [ { "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", diff --git a/man/jc.1 b/man/jc.1 index c1576ce8..547b3a53 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -514,7 +514,7 @@ PostgreSQL password file parser .TP .B -\fB--pkg-index-alpine\fP +\fB--pkg-index-apk\fP Alpine Linux Package Index file parser .TP diff --git a/tests/fixtures/generic/pkg-index-alpine-raw.json b/tests/fixtures/generic/pkg-index-apk-raw.json similarity index 100% rename from tests/fixtures/generic/pkg-index-alpine-raw.json rename to tests/fixtures/generic/pkg-index-apk-raw.json diff --git a/tests/fixtures/generic/pkg-index-alpine.json b/tests/fixtures/generic/pkg-index-apk.json similarity index 100% rename from tests/fixtures/generic/pkg-index-alpine.json rename to tests/fixtures/generic/pkg-index-apk.json diff --git a/tests/fixtures/generic/pkg-index-alpine.out b/tests/fixtures/generic/pkg-index-apk.out similarity index 100% rename from tests/fixtures/generic/pkg-index-alpine.out rename to tests/fixtures/generic/pkg-index-apk.out diff --git a/tests/test_pkg_index_alpine.py b/tests/test_pkg_index_apk.py similarity index 66% rename from tests/test_pkg_index_alpine.py rename to tests/test_pkg_index_apk.py index b4f8d314..acfe65aa 100644 --- a/tests/test_pkg_index_alpine.py +++ b/tests/test_pkg_index_apk.py @@ -2,7 +2,7 @@ import os import unittest import json from typing import Dict -from jc.parsers.pkg_index_alpine import parse +from jc.parsers.pkg_index_apk import parse THIS_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -15,11 +15,11 @@ class Apkindex(unittest.TestCase): def setUpClass(cls): fixtures = { 'normal': ( - 'fixtures/generic/pkg-index-alpine.out', - 'fixtures/generic/pkg-index-alpine.json'), + 'fixtures/generic/pkg-index-apk.out', + 'fixtures/generic/pkg-index-apk.json'), 'raw': ( - 'fixtures/generic/pkg-index-alpine.out', - 'fixtures/generic/pkg-index-alpine-raw.json') + 'fixtures/generic/pkg-index-apk.out', + 'fixtures/generic/pkg-index-apk-raw.json') } for file, filepaths in fixtures.items(): @@ -29,16 +29,16 @@ class Apkindex(unittest.TestCase): cls.f_json[file] = json.loads(b.read()) - def test_pkg_index_alpine_nodata(self): + def test_pkg_index_apk_nodata(self): """ - Test 'pkg-index-alpine' with no data + Test 'pkg-index-apk' with no data """ self.assertEqual(parse('', quiet=True), []) - def test_pkg_index_alpine(self): + def test_pkg_index_apk(self): """ - Test 'pkg-index-alpine' normal output + Test 'pkg-index-apk' normal output """ self.assertEqual( parse(self.f_in['normal'], quiet=True), @@ -46,9 +46,9 @@ class Apkindex(unittest.TestCase): ) - def test_pkg_index_alpine_raw(self): + def test_pkg_index_apk_raw(self): """ - Test 'pkg-index-alpine' raw output + Test 'pkg-index-apk' raw output """ self.assertEqual( parse(self.f_in['raw'], quiet=True, raw=True), From 2e33afbe18d553eee0808ecbb64462ca83c68446 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 10:53:28 -0800 Subject: [PATCH 52/60] doc cleanup --- docs/parsers/deb_packages_index.md | 138 ------------------ docs/parsers/iso_datetime.md | 37 ----- docs/parsers/pkg_index_alpine.md | 126 ---------------- .../parsers/{apkindex.md => pkg_index_apk.md} | 14 +- 4 files changed, 7 insertions(+), 308 deletions(-) delete mode 100644 docs/parsers/deb_packages_index.md delete mode 100644 docs/parsers/iso_datetime.md delete mode 100644 docs/parsers/pkg_index_alpine.md rename docs/parsers/{apkindex.md => pkg_index_apk.md} (91%) diff --git a/docs/parsers/deb_packages_index.md b/docs/parsers/deb_packages_index.md deleted file mode 100644 index ea718414..00000000 --- a/docs/parsers/deb_packages_index.md +++ /dev/null @@ -1,138 +0,0 @@ -[Home](https://kellyjonbrazil.github.io/jc/) - - -# jc.parsers.deb\_packages\_index - -jc - JSON Convert Debian Packages Index file parser - -Usage (cli): - - $ cat Packages | jc --deb-packages-index - -Usage (module): - - import jc - result = jc.parse('deb_packages_index', deb_package_index_output) - -Schema: - - [ - { - "package": string, - "version": string, - "architecture": string, - "section": string, - "priority": string, - "installed_size": integer, - "maintainer": string, - "description": string, - "homepage": string, - "depends": string, - "conflicts": string, - "replaces": string, - "vcs_git": string, - "sha256": string, - "size": integer, - "vcs_git": string, - "filename": string - } - ] - -Examples: - - $ cat Packages | jc --deb-packages-index - [ - { - "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", - "size": 21937036, - "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." - }, - { - "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-func...", - "conflicts": "azure-functions-core-tools-2, azure-functions-co...", - "replaces": "azure-functions-core-tools-2, azure-functions-cor...", - "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", - "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", - "size": 124417844, - "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." - } - ] - - $ cat Packages | jc --deb-packages-index -r - [ - { - "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": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", - "size": "21937036", - "filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." - }, - { - "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-func...", - "conflicts": "azure-functions-core-tools-2, azure-functions-co...", - "replaces": "azure-functions-core-tools-2, azure-functions-cor...", - "vcs_git": "https://github.com/Azure/azure-functions-core-tool...", - "sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", - "size": "124417844", - "filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." - } - ] - - - -### parse - -```python -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. - -### Parser Information -Compatibility: linux, darwin, cygwin, win32, aix, freebsd - -Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/iso_datetime.md b/docs/parsers/iso_datetime.md deleted file mode 100644 index b26ee730..00000000 --- a/docs/parsers/iso_datetime.md +++ /dev/null @@ -1,37 +0,0 @@ -[Home](https://kellyjonbrazil.github.io/jc/) - - -# jc.parsers.iso\_datetime - -jc - JSON Convert ISO 8601 Datetime string parser - -This parser has been renamed to datetime-iso (cli) or datetime_iso (module). - -This parser will be removed in a future version, so please start using -the new parser name. - - - -### parse - -```python -def parse(data, raw=False, quiet=False) -``` - -This parser is deprecated and calls datetime_iso. Please use datetime_iso -directly. This parser will be removed in the future. - -Parameters: - - data: (string) text data to parse - raw: (boolean) unprocessed output if True - quiet: (boolean) suppress warning messages if True - -Returns: - - Dictionary. Raw or processed structured data. - -### Parser Information -Compatibility: linux, aix, freebsd, darwin, win32, cygwin - -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/pkg_index_alpine.md b/docs/parsers/pkg_index_alpine.md deleted file mode 100644 index fc6d6267..00000000 --- a/docs/parsers/pkg_index_alpine.md +++ /dev/null @@ -1,126 +0,0 @@ -[Home](https://kellyjonbrazil.github.io/jc/) - - -# jc.parsers.pkg\_index\_alpine - -jc - JSON Convert Alpine Linux Package Index files - -Usage (cli): - - $ cat APKINDEX | jc --pkg-index-alpine - -Usage (module): - - import jc - result = jc.parse('pkg_index_alpine', pkg_index_alpine_output) - -Schema: - - [ - { - "checksum": string, - "package": string, - "version": string, - "architecture": string, - "package_size": integer, - "installed_size": integer, - "description": string, - "url": string, - "license": string, - "origin": string, - "maintainer": { - "name": string, - "email": string, - }, - "build_time": integer, - "commit": string, - "provider_priority": string, - "dependencies": [ - string - ], - "provides": [ - string - ], - "install_if": [ - string - ], - } - ] - -Example: - - $ cat APKINDEX | jc --pkg-index-alpine - [ - { - "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", - "package": "yasm", - "version": "1.3.0-r4", - "architecture": "x86_64", - "package_size": 772109, - "installed_size": 1753088, - "description": "A rewrite of NASM to allow for multiple synta...", - "url": "http://www.tortall.net/projects/yasm/", - "license": "BSD-2-Clause", - "origin": "yasm", - "maintainer": { - "name": "Natanael Copa", - "email": "ncopa@alpinelinux.org" - }, - "build_time": 1681228881, - "commit": "84a227baf001b6e0208e3352b294e4d7a40e93de", - "dependencies": [ - "so:libc.musl-x86_64.so.1" - ], - "provides": [ - "cmd:vsyasm=1.3.0-r4", - "cmd:yasm=1.3.0-r4", - "cmd:ytasm=1.3.0-r4" - ] - } - ] - - $ cat APKINDEX | jc --pkg-index-alpine --raw - [ - { - "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", - "P": "yasm", - "V": "1.3.0-r4", - "A": "x86_64", - "S": "772109", - "I": "1753088", - "T": "A rewrite of NASM to allow for multiple syntax supported...", - "U": "http://www.tortall.net/projects/yasm/", - "L": "BSD-2-Clause", - "o": "yasm", - "m": "Natanael Copa ", - "t": "1681228881", - "c": "84a227baf001b6e0208e3352b294e4d7a40e93de", - "D": "so:libc.musl-x86_64.so.1", - "p": "cmd:vsyasm=1.3.0-r4 cmd:yasm=1.3.0-r4 cmd:ytasm=1.3.0-r4" - }, - ] - - - -### parse - -```python -def parse(data: str, raw: bool = False, quiet: bool = False) -> List[Dict] -``` - -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 - -Version 1.0 by Roey Darwish Dror (roey.ghost@gmail.com) diff --git a/docs/parsers/apkindex.md b/docs/parsers/pkg_index_apk.md similarity index 91% rename from docs/parsers/apkindex.md rename to docs/parsers/pkg_index_apk.md index e860a1a8..8743e03d 100644 --- a/docs/parsers/apkindex.md +++ b/docs/parsers/pkg_index_apk.md @@ -1,18 +1,18 @@ [Home](https://kellyjonbrazil.github.io/jc/) - + -# jc.parsers.apkindex +# jc.parsers.pkg\_index\_apk jc - JSON Convert Alpine Linux Package Index files Usage (cli): - $ jc --apkindex < APKINDEX + $ cat APKINDEX | jc --pkg-index-apk Usage (module): import jc - result = jc.parse('apkindex', apkindex_output) + result = jc.parse('pkg_index_apk', pkg_index_apk_output) Schema: @@ -49,7 +49,7 @@ Schema: Example: - $ jc --apkindex < APKINDEX + $ cat APKINDEX | jc --pkg-index-apk [ { "checksum": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", @@ -79,7 +79,7 @@ Example: } ] - $ jc --apkindex --raw < APKINDEX + $ cat APKINDEX | jc --pkg-index-apk --raw [ { "C": "Q1znBl9k+RKgY6gl5Eg3iz73KZbLY=", @@ -100,7 +100,7 @@ Example: }, ] - + ### parse From f784a7a76d45e57dd69bdcf59ee3a1e7af4c3e57 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 10 Dec 2023 13:13:57 -0800 Subject: [PATCH 53/60] doc update --- docs/parsers/xrandr.md | 2 +- jc/parsers/iftop.py | 40 ++++++++++++++++++++-------------------- jc/parsers/xrandr.py | 2 +- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/parsers/xrandr.md b/docs/parsers/xrandr.md index a37f30ad..e7c572c6 100644 --- a/docs/parsers/xrandr.md +++ b/docs/parsers/xrandr.md @@ -64,7 +64,7 @@ Schema: "rotation": string, "reflection": string } - ], + ] } Examples: diff --git a/jc/parsers/iftop.py b/jc/parsers/iftop.py index 7a4b3ce3..d3ad9354 100644 --- a/jc/parsers/iftop.py +++ b/jc/parsers/iftop.py @@ -22,40 +22,40 @@ Schema: "connections": [ { "host_name": string, - "host_port": string, # can be service or missing - "last_2s": string, - "last_10s": string, - "last_40s": string, - "cumulative": string, + "host_port": string, # can be service or missing + "last_2s": integer, + "last_10s": integer, + "last_40s": integer, + "cumulative": integer, "direction": string } ] } ] "total_send_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": integer, + "last_10s": integer, + "last_40s": integer } "total_receive_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": integer, + "last_10s": integer, + "last_40s": integer } "total_send_and_receive_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": integer, + "last_10s": integer, + "last_40s": integer } "peak_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": integer, + "last_10s": integer, + "last_40s": integer } "cumulative_rate": { - "last_2s": string, - "last_10s": string, - "last_40s": string + "last_2s": integer, + "last_10s": integer, + "last_40s": integer } } ] diff --git a/jc/parsers/xrandr.py b/jc/parsers/xrandr.py index 1792509b..2a579174 100644 --- a/jc/parsers/xrandr.py +++ b/jc/parsers/xrandr.py @@ -59,7 +59,7 @@ Schema: "rotation": string, "reflection": string } - ], + ] } Examples: From a254ee8d88898012ad43f284eed4679df0eaaa5f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 16 Dec 2023 11:39:40 -0800 Subject: [PATCH 54/60] add test for issue 490 --- man/jc.1 | 2 +- tests/test_xrandr.py | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/man/jc.1 b/man/jc.1 index 547b3a53..d078b014 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-12-10 1.24.0 "JSON Convert" +.TH jc 1 2023-12-16 1.24.0 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings diff --git a/tests/test_xrandr.py b/tests/test_xrandr.py index dc2f578e..14248015 100644 --- a/tests/test_xrandr.py +++ b/tests/test_xrandr.py @@ -301,5 +301,16 @@ class XrandrTests(unittest.TestCase): self.assertIsNone(actual) + def test_issue_490(self): + """test for issue 490: https://github.com/kellyjonbrazil/jc/issues/490""" + data_in = '''\ +Screen 0: minimum 1024 x 600, current 1024 x 600, maximum 1024 x 600 +default connected 1024x600+0+0 0mm x 0mm + 1024x600 0.00* +''' + expected = {"screens":[{"devices":[{"modes":[{"resolution_width":1024,"resolution_height":600,"is_high_resolution":False,"frequencies":[{"frequency":0.0,"is_current":True,"is_preferred":False}]}],"is_connected":True,"is_primary":False,"device_name":"default","rotation":"normal","reflection":"normal","resolution_width":1024,"resolution_height":600,"offset_width":0,"offset_height":0,"dimension_width":0,"dimension_height":0}],"screen_number":0,"minimum_width":1024,"minimum_height":600,"current_width":1024,"current_height":600,"maximum_width":1024,"maximum_height":600}]} + self.assertEqual(jc.parsers.xrandr.parse(data_in), expected) + + if __name__ == "__main__": unittest.main() From 604fb574be30fdaf41efc480ba380506d63c2306 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 16 Dec 2023 11:44:11 -0800 Subject: [PATCH 55/60] doc update --- CHANGELOG | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 505a8f83..2cdad979 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20231210 v1.24.0 +20231216 v1.24.0 - Add `debconf-show` command parser - Add `iftop` command parser - Add `pkg-index-apk` parser for Alpine Linux Package Index files @@ -15,6 +15,7 @@ jc changelog - Fix `iptables` parser for cases where the `target` field is blank in a rule - Fix `vmstat` parsers for some cases where wide output is used - Fix `mount` parser for cases with spaces in the mount point name +- Fix `xrandr` parser for infinite loop issues 20231023 v1.23.6 - Fix XML parser for xmltodict library versions < 0.13.0 From 517ab1093023cf2da58d725c40067ab061ac35dd Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 16 Dec 2023 12:09:37 -0800 Subject: [PATCH 56/60] add proc-cmdline parser --- jc/lib.py | 1 + jc/parsers/proc_cmdline.py | 112 +++++++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 jc/parsers/proc_cmdline.py diff --git a/jc/lib.py b/jc/lib.py index f82ca34f..44f1aa17 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -113,6 +113,7 @@ parsers: List[str] = [ 'postconf', 'proc', 'proc-buddyinfo', + 'proc-cmdline', 'proc-consoles', 'proc-cpuinfo', 'proc-crypto', diff --git a/jc/parsers/proc_cmdline.py b/jc/parsers/proc_cmdline.py new file mode 100644 index 00000000..1325bf77 --- /dev/null +++ b/jc/parsers/proc_cmdline.py @@ -0,0 +1,112 @@ +"""jc - JSON Convert `/proc/cmdline` file parser + +Usage (cli): + + $ cat /proc/cmdline | jc --proc + +or + + $ jc /proc/cmdline + +or + + $ cat /proc/cmdline | jc --proc-cmdline + +Usage (module): + + import jc + result = jc.parse('proc_cmdline', proc_cmdline_file) + +Schema: + + [ + { + "foo": string, + "bar": boolean, + "baz": integer + } + ] + +Examples: + + $ foo | jc --foo -p + [] + + $ foo | jc --foo -p -r + [] +""" +import shlex +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 = '`/proc/cmdline` file parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + compatible = ['linux'] + tags = ['file'] + hidden = True + + +__version__ = info.version + + +def _process(proc_data: JSONDictType) -> JSONDictType: + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (List of Dictionaries) raw structured data to process + + Returns: + + Dictionary. Structured to conform to the schema. + """ + return proc_data + + +def parse( + data: str, + raw: bool = False, + quiet: bool = False +) -> 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: + + Dictionary. Raw or processed structured data. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output: Dict = {} + options: List = [] + + if jc.utils.has_data(data): + + split_line = shlex.split(data) + + for item in split_line: + if '=' in item: + key, val = item.split('=', maxsplit=1) + raw_output[key] = val + + else: + options.append(item) + + if options: + raw_output['_options'] = options + + return raw_output if raw else _process(raw_output) From ee737a59eba638e5c2eccc8eb9368cff01967642 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 16 Dec 2023 12:55:29 -0800 Subject: [PATCH 57/60] doc update --- completions/jc_bash_completion.sh | 2 +- completions/jc_zsh_completion.sh | 3 +- docs/parsers/proc.md | 2 +- docs/parsers/proc_cmdline.md | 92 +++++++++++++++++++++++++++++++ jc/parsers/proc.py | 4 +- jc/parsers/proc_cmdline.py | 50 +++++++++++++---- man/jc.1 | 5 ++ 7 files changed, 142 insertions(+), 16 deletions(-) create mode 100644 docs/parsers/proc_cmdline.md diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 75cccd50..70bbb6a3 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -4,7 +4,7 @@ _jc() jc_about_options jc_about_mod_options jc_help_options jc_special_options jc_commands=(acpi airport arp blkid bluetoothctl cbt certbot chage cksum crontab date debconf-show df dig dmidecode dpkg du env 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 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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --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-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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --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 --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 ed5d34e5..071f2373 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -115,7 +115,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --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-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 --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --email-address --env --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --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' @@ -218,6 +218,7 @@ _jc() { '--postconf:`postconf -M` command parser' '--proc:`/proc/` file parser' '--proc-buddyinfo:`/proc/buddyinfo` file parser' + '--proc-cmdline:`/proc/cmdline` file parser' '--proc-consoles:`/proc/consoles` file parser' '--proc-cpuinfo:`/proc/cpuinfo` file parser' '--proc-crypto:`/proc/crypto` file parser' diff --git a/docs/parsers/proc.md b/docs/parsers/proc.md index f54e2436..8b04bf33 100644 --- a/docs/parsers/proc.md +++ b/docs/parsers/proc.md @@ -139,4 +139,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/proc_cmdline.md b/docs/parsers/proc_cmdline.md new file mode 100644 index 00000000..221dba5a --- /dev/null +++ b/docs/parsers/proc_cmdline.md @@ -0,0 +1,92 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.proc\_cmdline + +jc - JSON Convert `/proc/cmdline` file parser + +Usage (cli): + + $ cat /proc/cmdline | jc --proc + +or + + $ jc /proc/cmdline + +or + + $ cat /proc/cmdline | jc --proc-cmdline + +Usage (module): + + import jc + result = jc.parse('proc_cmdline', proc_cmdline_file) + +Schema: + + { + "": string, + "_options": [ + string + ] + } + +Examples: + + $ cat /proc/cmdline | jc --proc -p + { + "BOOT_IMAGE": "clonezilla/live/vmlinuz", + "consoleblank": "0", + "keyboard-options": "grp:ctrl_shift_toggle,lctrl_shift_toggle", + "ethdevice-timeout": "130", + "toram": "filesystem.squashfs", + "boot": "live", + "edd": "on", + "ocs_daemonon": "ssh lighttpd", + "ocs_live_run": "sudo screen /usr/sbin/ocs-sr -g auto -e1 auto -e2 -batch -r -j2 -k -scr -p true restoreparts win7-64 sda1", + "ocs_live_extra_param": "", + "keyboard-layouts": "us,ru", + "ocs_live_batch": "no", + "locales": "ru_RU.UTF-8", + "vga": "788", + "net.ifnames": "0", + "union": "overlay", + "fetch": "http://10.1.1.1/tftpboot/clonezilla/live/filesystem.squashfs", + "ocs_postrun99": "sudo reboot", + "initrd": "clonezilla/live/initrd.img", + "_options": [ + "config", + "noswap", + "nolocales", + "nomodeset", + "noprompt", + "nosplash", + "nodmraid", + "components" + ] + } + + + +### parse + +```python +def parse(data: str, raw: bool = False, quiet: bool = False) -> 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: + + Dictionary. Raw or processed structured data. + +### Parser Information +Compatibility: linux + +Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/proc.py b/jc/parsers/proc.py index 7d2ac8b1..46e64370 100644 --- a/jc/parsers/proc.py +++ b/jc/parsers/proc.py @@ -120,7 +120,7 @@ from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`/proc/` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -154,6 +154,7 @@ def parse( if jc.utils.has_data(data): # signatures buddyinfo_p = re.compile(r'^Node \d+, zone\s+\w+\s+(?:\d+\s+){11}\n') + cmdline_p = re.compile(r'^BOOT_IMAGE=') consoles_p = re.compile(r'^\w+\s+[\-WUR]{3} \([ECBpba ]+\)\s+\d+:\d+\n') cpuinfo_p = re.compile(r'^processor\t+: \d+.*bogomips\t+: \d+.\d\d\n', re.DOTALL) crypto_p = re.compile(r'^name\s+:.*\ndriver\s+:.*\nmodule\s+:.*\n') @@ -212,6 +213,7 @@ def parse( procmap = { buddyinfo_p: 'proc_buddyinfo', + cmdline_p: 'proc_cmdline', consoles_p: 'proc_consoles', cpuinfo_p: 'proc_cpuinfo', crypto_p: 'proc_crypto', diff --git a/jc/parsers/proc_cmdline.py b/jc/parsers/proc_cmdline.py index 1325bf77..d4bf3d4f 100644 --- a/jc/parsers/proc_cmdline.py +++ b/jc/parsers/proc_cmdline.py @@ -19,21 +19,47 @@ Usage (module): Schema: - [ - { - "foo": string, - "bar": boolean, - "baz": integer - } - ] + { + "": string, + "_options": [ + string + ] + } Examples: - $ foo | jc --foo -p - [] - - $ foo | jc --foo -p -r - [] + $ cat /proc/cmdline | jc --proc -p + { + "BOOT_IMAGE": "clonezilla/live/vmlinuz", + "consoleblank": "0", + "keyboard-options": "grp:ctrl_shift_toggle,lctrl_shift_toggle", + "ethdevice-timeout": "130", + "toram": "filesystem.squashfs", + "boot": "live", + "edd": "on", + "ocs_daemonon": "ssh lighttpd", + "ocs_live_run": "sudo screen /usr/sbin/ocs-sr -g auto -e1 auto -e2 -batch -r -j2 -k -scr -p true restoreparts win7-64 sda1", + "ocs_live_extra_param": "", + "keyboard-layouts": "us,ru", + "ocs_live_batch": "no", + "locales": "ru_RU.UTF-8", + "vga": "788", + "net.ifnames": "0", + "union": "overlay", + "fetch": "http://10.1.1.1/tftpboot/clonezilla/live/filesystem.squashfs", + "ocs_postrun99": "sudo reboot", + "initrd": "clonezilla/live/initrd.img", + "_options": [ + "config", + "noswap", + "nolocales", + "nomodeset", + "noprompt", + "nosplash", + "nodmraid", + "components" + ] + } """ import shlex from typing import List, Dict diff --git a/man/jc.1 b/man/jc.1 index d078b014..22dd772a 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -542,6 +542,11 @@ PLIST file parser \fB--proc-buddyinfo\fP `/proc/buddyinfo` file parser +.TP +.B +\fB--proc-cmdline\fP +`/proc/cmdline` file parser + .TP .B \fB--proc-consoles\fP From fe49759598048a667af4e2febfd92625a7211bb5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 16 Dec 2023 12:59:35 -0800 Subject: [PATCH 58/60] doc update --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index 2cdad979..8816f8b3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,7 @@ jc changelog - Add `iftop` command parser - Add `pkg-index-apk` parser for Alpine Linux Package Index files - Add `pkg-index-deb` parser for Debian/Ubuntu Package Index files +- Add `proc-cmdline` parser for `/proc/cmdline` file - Add `swapon` command parser - Add `tune2fs` command parser - Remove `iso-datetime` parser deprecated since v1.22.1. (use `datetime-iso` instead) From 2a14f56b7202048b65f6208f8c2017dc5524bd87 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 16 Dec 2023 13:18:14 -0800 Subject: [PATCH 59/60] add proc-cmdline tests --- tests/test_proc_cmdline.py | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 tests/test_proc_cmdline.py diff --git a/tests/test_proc_cmdline.py b/tests/test_proc_cmdline.py new file mode 100644 index 00000000..6971d8b0 --- /dev/null +++ b/tests/test_proc_cmdline.py @@ -0,0 +1,46 @@ +import os +import unittest +from jc.parsers.proc_cmdline import parse + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + + def test_proc_cmdline_nodata(self): + """ + Test 'proc_cmdline' with no data + """ + self.assertEqual(parse('', quiet=True), {}) + + + def test_proc_cmdline_samples(self): + """ + Test 'proc_cmdline' with various samples + """ + test_map = { + 'BOOT_IMAGE=/vmlinuz-5.4.0-166-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro debian-installer/language=ru keyboard-configuration/layoutcode?=ru': + {"BOOT_IMAGE":"/vmlinuz-5.4.0-166-generic","root":"/dev/mapper/ubuntu--vg-ubuntu--lv","debian-installer/language":"ru","keyboard-configuration/layoutcode?":"ru","_options":["ro"]}, + + 'BOOT_IMAGE=/boot/vmlinuz-4.4.0-210-generic root=UUID=e1d708ba-4448-4e96-baed-94b277eaa128 ro net.ifnames=0 biosdevname=0': + {"BOOT_IMAGE":"/boot/vmlinuz-4.4.0-210-generic","root":"UUID=e1d708ba-4448-4e96-baed-94b277eaa128","net.ifnames":"0","biosdevname":"0","_options":["ro"]}, + + 'BOOT_IMAGE=/boot/vmlinuz-3.13.0-102-generic root=UUID=55707609-d20a-45f2-9130-60525bebf01f ro': + {"BOOT_IMAGE":"/boot/vmlinuz-3.13.0-102-generic","root":"UUID=55707609-d20a-45f2-9130-60525bebf01f","_options":["ro"]}, + + 'BOOT_IMAGE=/vmlinuz-5.4.0-135-generic root=/dev/mapper/vg0-lv--root ro maybe-ubiquity': + {"BOOT_IMAGE":"/vmlinuz-5.4.0-135-generic","root":"/dev/mapper/vg0-lv--root","_options":["ro","maybe-ubiquity"]}, + + 'BOOT_IMAGE=/vmlinuz-5.4.0-107-generic root=UUID=1b83a367-43a0-4e18-8ae3-3aaa37a89c7d ro quiet nomodeset splash net.ifnames=0 vt.handoff=7': + {"BOOT_IMAGE":"/vmlinuz-5.4.0-107-generic","root":"UUID=1b83a367-43a0-4e18-8ae3-3aaa37a89c7d","net.ifnames":"0","vt.handoff":"7","_options":["ro","quiet","nomodeset","splash"]}, + + 'BOOT_IMAGE=clonezilla/live/vmlinuz consoleblank=0 keyboard-options=grp:ctrl_shift_toggle,lctrl_shift_toggle ethdevice-timeout=130 toram=filesystem.squashfs boot=live config noswap nolocales edd=on ocs_daemonon="ssh lighttpd" nomodeset noprompt ocs_live_run="sudo screen /usr/sbin/ocs-sr -g auto -e1 auto -e2 -batch -r -j2 -k -scr -p true restoreparts win7-64 sda1" ocs_live_extra_param="" keyboard-layouts=us,ru ocs_live_batch="no" locales=ru_RU.UTF-8 vga=788 nosplash net.ifnames=0 nodmraid components union=overlay fetch=http://172.16.11.8/tftpboot/clonezilla/live/filesystem.squashfs ocs_postrun99="sudo reboot" initrd=clonezilla/live/initrd.img': + {"BOOT_IMAGE":"clonezilla/live/vmlinuz","consoleblank":"0","keyboard-options":"grp:ctrl_shift_toggle,lctrl_shift_toggle","ethdevice-timeout":"130","toram":"filesystem.squashfs","boot":"live","edd":"on","ocs_daemonon":"ssh lighttpd","ocs_live_run":"sudo screen /usr/sbin/ocs-sr -g auto -e1 auto -e2 -batch -r -j2 -k -scr -p true restoreparts win7-64 sda1","ocs_live_extra_param":"","keyboard-layouts":"us,ru","ocs_live_batch":"no","locales":"ru_RU.UTF-8","vga":"788","net.ifnames":"0","union":"overlay","fetch":"http://172.16.11.8/tftpboot/clonezilla/live/filesystem.squashfs","ocs_postrun99":"sudo reboot","initrd":"clonezilla/live/initrd.img","_options":["config","noswap","nolocales","nomodeset","noprompt","nosplash","nodmraid","components"]} + } + + for data_in, expected in test_map.items(): + self.assertEqual(parse(data_in, quiet=True), expected) + + +if __name__ == '__main__': + unittest.main() From 0d4823c9de51eb26128f01e547193b3378a36c85 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 17 Dec 2023 09:44:18 -0800 Subject: [PATCH 60/60] doc update --- docs/parsers/swapon.md | 14 ++++++-------- jc/parsers/swapon.py | 15 ++++++--------- man/jc.1 | 2 +- tests/test_swapon.py | 4 ++-- 4 files changed, 15 insertions(+), 20 deletions(-) diff --git a/docs/parsers/swapon.md b/docs/parsers/swapon.md index 5bdf30b0..d7691c05 100644 --- a/docs/parsers/swapon.md +++ b/docs/parsers/swapon.md @@ -5,8 +5,6 @@ jc - JSON Convert `swapon` command output parser -> Note: Must use `swapon` - Usage (cli): $ swapon | jc --swapon @@ -18,17 +16,17 @@ or Usage (module): import jc - result = jc.parse('swapon', uname_command_output) + result = jc.parse('swapon', swapon_command_output) Schema: [ { - "name": string, - "type": string, - "size": int, - "used": int, - "priority": int, + "name": string, + "type": string, + "size": integer, + "used": integer, + "priority": integer } ] diff --git a/jc/parsers/swapon.py b/jc/parsers/swapon.py index 2e4100f0..180be925 100644 --- a/jc/parsers/swapon.py +++ b/jc/parsers/swapon.py @@ -1,7 +1,5 @@ """jc - JSON Convert `swapon` command output parser -> Note: Must use `swapon` - Usage (cli): $ swapon | jc --swapon @@ -13,17 +11,17 @@ or Usage (module): import jc - result = jc.parse('swapon', uname_command_output) + result = jc.parse('swapon', swapon_command_output) Schema: [ { - "name": string, - "type": string, - "size": int, - "used": int, - "priority": int, + "name": string, + "type": string, + "size": integer, + "used": integer, + "priority": integer } ] @@ -48,7 +46,6 @@ from typing import List, Dict, Union class info: """Provides parser metadata (version, author, etc.)""" - version = "1.0" description = "`swapon` command parser" author = "Roey Darwish Dror" diff --git a/man/jc.1 b/man/jc.1 index 22dd772a..7128a94b 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-12-16 1.24.0 "JSON Convert" +.TH jc 1 2023-12-17 1.24.0 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings diff --git a/tests/test_swapon.py b/tests/test_swapon.py index 41c36b46..e7b5712f 100644 --- a/tests/test_swapon.py +++ b/tests/test_swapon.py @@ -25,9 +25,9 @@ class Swapon(unittest.TestCase): cls.f_in[file] = a.read() cls.f_json[file] = json.loads(b.read()) - def test_foo_nodata(self): + def test_swapon_nodata(self): """ - Test 'foo' with no data + Test 'swapon' with no data """ self.assertEqual(parse('', quiet=True), [])