diff --git a/.doctrees/environment.pickle b/.doctrees/environment.pickle index 83e77675e..c1983c6be 100644 Binary files a/.doctrees/environment.pickle and b/.doctrees/environment.pickle differ diff --git a/.doctrees/explanations/shapes-and-templates.doctree b/.doctrees/explanations/shapes-and-templates.doctree index 83466ae1d..28cb800f8 100644 Binary files a/.doctrees/explanations/shapes-and-templates.doctree and b/.doctrees/explanations/shapes-and-templates.doctree differ diff --git a/.doctrees/guides/generating-queries.doctree b/.doctrees/guides/generating-queries.doctree index 21ec0bae6..84005ac3a 100644 Binary files a/.doctrees/guides/generating-queries.doctree and b/.doctrees/guides/generating-queries.doctree differ diff --git a/.doctrees/guides/ingress-bacnet-to-brick.doctree b/.doctrees/guides/ingress-bacnet-to-brick.doctree index 9207834ae..dd4c0d948 100644 Binary files a/.doctrees/guides/ingress-bacnet-to-brick.doctree and b/.doctrees/guides/ingress-bacnet-to-brick.doctree differ diff --git a/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.doctree b/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.doctree index 52f19143f..bd2fc80a5 100644 Binary files a/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.doctree and b/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.doctree differ diff --git a/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.doctree b/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.doctree index 549b2b18a..7afd61391 100644 Binary files a/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.doctree and b/.doctrees/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.doctree differ diff --git a/.doctrees/reference/apidoc/_autosummary/buildingmotif.utils.doctree b/.doctrees/reference/apidoc/_autosummary/buildingmotif.utils.doctree index e5978213f..19601a68e 100644 Binary files a/.doctrees/reference/apidoc/_autosummary/buildingmotif.utils.doctree and b/.doctrees/reference/apidoc/_autosummary/buildingmotif.utils.doctree differ diff --git a/.doctrees/tutorials/model_correction.doctree b/.doctrees/tutorials/model_correction.doctree index 9bd42491c..2d123df7f 100644 Binary files a/.doctrees/tutorials/model_correction.doctree and b/.doctrees/tutorials/model_correction.doctree differ diff --git a/.doctrees/tutorials/model_creation.doctree b/.doctrees/tutorials/model_creation.doctree index b9b8c6ba5..96d5f8528 100644 Binary files a/.doctrees/tutorials/model_creation.doctree and b/.doctrees/tutorials/model_creation.doctree differ diff --git a/.doctrees/tutorials/model_validation.doctree b/.doctrees/tutorials/model_validation.doctree index dac49341a..dc2207f83 100644 Binary files a/.doctrees/tutorials/model_validation.doctree and b/.doctrees/tutorials/model_validation.doctree differ diff --git a/_modules/buildingmotif/api/views/model.html b/_modules/buildingmotif/api/views/model.html index 5da046f53..b2ffcbd00 100644 --- a/_modules/buildingmotif/api/views/model.html +++ b/_modules/buildingmotif/api/views/model.html @@ -566,8 +566,9 @@
cache = self.sc_cache[id(ontology)] # populate cache if necessary if ntype not in cache: - cache[ntype] = set(ontology.transitive_objects(ntype, RDFS.subClassOf)) + cache[ntype] = set(ontology.transitive_objects(ntype, RDFS.subClassOf)) # type: ignore return cache[ntype] def superproperties(self, ntype: Node, ontology: Graph) -> Set[Node]: @@ -830,7 +830,7 @@
subgraph = self.building_subgraph_from_mapping(mapping) if not subgraph.connected(): continue - key = tuple(sorted(subgraph.all_nodes())) + key = tuple(sorted(subgraph.all_nodes())) # type: ignore if key in cache: continue cache.add(key) diff --git a/_modules/buildingmotif/utils.html b/_modules/buildingmotif/utils.html index 16271b669..ad9cda5f1 100644 --- a/_modules/buildingmotif/utils.html +++ b/_modules/buildingmotif/utils.html @@ -409,6 +409,7 @@
from pathlib import Path
from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple
+import pyshacl # type: ignore
from rdflib import BNode, Graph, Literal, URIRef
from rdflib.paths import ZeroOrOne
from rdflib.term import Node
@@ -876,7 +877,7 @@ Source code for buildingmotif.utils
sh:node ?child .
}"""
for row in sg.query(q):
- parent, child = row
+ parent, child = row # type: ignore
sg.remove((parent, SH.node, child))
pos = sg.predicate_objects(child)
for (p, o) in pos:
@@ -896,7 +897,7 @@ Source code for buildingmotif.utils
?andnode rdf:rest*/rdf:first ?child .
}"""
for row in sg.query(q):
- parent, child, to_remove = row
+ parent, child, to_remove = row # type: ignore
sg.remove((parent, SH["and"], to_remove))
pos = sg.predicate_objects(child)
for (p, o) in pos:
@@ -943,6 +944,112 @@ Source code for buildingmotif.utils
if uri.startswith(ns):
return True
return False
+
+
+[docs]def shacl_validate(
+ data_graph: Graph, shape_graph: Optional[Graph] = None, engine="topquadrant"
+) -> Tuple[bool, Graph, str]:
+ """
+ Validate the data graph against the shape graph.
+ Uses the fastest validation method available. Use the 'topquadrant' feature
+ to use TopQuadrant's SHACL engine. Defaults to using PySHACL.
+
+ :param data_graph: the graph to validate
+ :type data_graph: Graph
+ :param shape_graph: the shape graph to validate against
+ :type shape_graph: Graph, optional
+ :param engine: the SHACL engine to use, defaults to "topquadrant"
+ :type engine: str, optional
+ :return: a tuple containing the validation result, the validation report, and the validation report string
+ :rtype: Tuple[bool, Graph, str]
+ """
+
+ if engine == "topquadrant":
+ try:
+ from brick_tq_shacl.topquadrant_shacl import (
+ validate as tq_validate, # type: ignore
+ )
+
+ return tq_validate(data_graph.skolemize(), (shape_graph or Graph()).skolemize()) # type: ignore
+ except ImportError:
+ logging.info(
+ "TopQuadrant SHACL engine not available. Using PySHACL instead."
+ )
+ pass
+
+ return pyshacl.validate(
+ data_graph,
+ shacl_graph=shape_graph,
+ ont_graph=shape_graph,
+ advanced=True,
+ js=True,
+ allow_warnings=True,
+ ) # type: ignore
+
+
+[docs]def shacl_inference(
+ data_graph: Graph, shape_graph: Optional[Graph] = None, engine="topquadrant"
+) -> Graph:
+ """
+ Infer new triples in the data graph using the shape graph.
+ Edits the data graph in place. Uses the fastest inference method available.
+ Use the 'topquadrant' feature to use TopQuadrant's SHACL engine. Defaults to
+ using PySHACL.
+
+ :param data_graph: the graph to infer new triples in
+ :type data_graph: Graph
+ :param shape_graph: the shape graph to use for inference
+ :type shape_graph: Optional[Graph]
+ :param engine: the SHACL engine to use, defaults to "topquadrant"
+ :type engine: str, optional
+ :return: the data graph with inferred triples
+ :rtype: Graph
+ """
+ if engine == "topquadrant":
+ try:
+ from brick_tq_shacl.topquadrant_shacl import infer as tq_infer
+
+ return tq_infer(
+ data_graph.skolemize(), (shape_graph or Graph()).skolemize()
+ )
+ except ImportError:
+ logging.info(
+ "TopQuadrant SHACL engine not available. Using PySHACL instead."
+ )
+ pass
+
+ # We use a fixed-point computation approach to 'compiling' RDF models.
+ # We accomlish this by keeping track of the size of the graph before and after
+ # the inference step. If the size of the graph changes, then we know that the
+ # inference has had some effect. We do this at most 3 times to avoid looping
+ # forever.
+ pre_compile_length = len(data_graph) # type: ignore
+ pyshacl.validate(
+ data_graph=data_graph,
+ shacl_graph=shape_graph,
+ ont_graph=shape_graph,
+ advanced=True,
+ inplace=True,
+ js=True,
+ allow_warnings=True,
+ )
+ post_compile_length = len(data_graph) # type: ignore
+
+ attempts = 3
+ while attempts > 0 and post_compile_length != pre_compile_length:
+ pre_compile_length = len(data_graph) # type: ignore
+ pyshacl.validate(
+ data_graph=data_graph,
+ shacl_graph=shape_graph,
+ ont_graph=shape_graph,
+ advanced=True,
+ inplace=True,
+ js=True,
+ allow_warnings=True,
+ )
+ post_compile_length = len(data_graph) # type: ignore
+ attempts -= 1
+ return data_graph - (shape_graph or Graph())
diff --git a/_sources/reference/apidoc/_autosummary/buildingmotif.utils.rst b/_sources/reference/apidoc/_autosummary/buildingmotif.utils.rst
index 0cc55d817..d8adf1d70 100644
--- a/_sources/reference/apidoc/_autosummary/buildingmotif.utils.rst
+++ b/_sources/reference/apidoc/_autosummary/buildingmotif.utils.rst
@@ -24,6 +24,8 @@ buildingmotif.utils
remove_triples_with_node
replace_nodes
rewrite_shape_graph
+ shacl_inference
+ shacl_validate
skip_uri
template_to_shape
diff --git a/explanations/shapes-and-templates.html b/explanations/shapes-and-templates.html
index 06d7a1f22..59ce407e2 100644
--- a/explanations/shapes-and-templates.html
+++ b/explanations/shapes-and-templates.html
@@ -607,74 +607,70 @@ Example
-/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/pyshacl/extras/__init__.py:46: Warning: Extra "js" is not satisfied because requirement pyduktape2 is not installed.
- warn(Warning(f"Extra \"{extra_name}\" is not satisfied because requirement {req} is not installed."))
+2024-03-17 20:57:52,233 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7461 in libraries []
-2024-03-15 20:39:37,547 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7410 in libraries []
+2024-03-17 20:57:52,238 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7459 in libraries []
-2024-03-15 20:39:37,552 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7412 in libraries []
+2024-03-17 20:57:52,242 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7463 in libraries []
-2024-03-15 20:39:37,556 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7414 in libraries []
+2024-03-17 20:57:52,246 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7467 in libraries []
-2024-03-15 20:39:37,560 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7416 in libraries []
+2024-03-17 20:57:52,250 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7465 in libraries []
-2024-03-15 20:39:37,564 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7418 in libraries []
+2024-03-17 20:57:52,254 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7469 in libraries []
-2024-03-15 20:39:37,568 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7420 in libraries []
+2024-03-17 20:57:52,259 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7476 in libraries []
-2024-03-15 20:39:37,575 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7476 in libraries []
+2024-03-17 20:57:52,263 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7480 in libraries []
-2024-03-15 20:39:37,579 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7478 in libraries []
+2024-03-17 20:57:52,267 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7482 in libraries []
-2024-03-15 20:39:37,583 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7480 in libraries []
+2024-03-17 20:57:52,272 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7478 in libraries []
-2024-03-15 20:39:37,587 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7482 in libraries []
+2024-03-17 20:57:52,275 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7484 in libraries []
-2024-03-15 20:39:37,591 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7484 in libraries []
+2024-03-17 20:57:52,874 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7416 in libraries []
-2024-03-15 20:39:37,597 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7459 in libraries []
+2024-03-17 20:57:52,878 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7412 in libraries []
-2024-03-15 20:39:37,601 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7461 in libraries []
+2024-03-17 20:57:52,882 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7418 in libraries []
-2024-03-15 20:39:37,605 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7463 in libraries []
+2024-03-17 20:57:52,886 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7420 in libraries []
-2024-03-15 20:39:37,609 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7465 in libraries []
+2024-03-17 20:57:52,890 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7410 in libraries []
-2024-03-15 20:39:37,614 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7467 in libraries []
+2024-03-17 20:57:52,894 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7414 in libraries []
-2024-03-15 20:39:37,617 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7469 in libraries []
+2024-03-17 20:57:52,899 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7552 in libraries []
-2024-03-15 20:39:37,621 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7552 in libraries []
+2024-03-17 20:57:52,902 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7558 in libraries []
-2024-03-15 20:39:37,626 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7554 in libraries []
+2024-03-17 20:57:52,906 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7554 in libraries []
-2024-03-15 20:39:37,630 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7556 in libraries []
+2024-03-17 20:57:52,910 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7560 in libraries []
-2024-03-15 20:39:37,634 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7558 in libraries []
-
-
-2024-03-15 20:39:37,638 | root | WARNING: Warning: could not find dependee n852f13e15b014d2496dd5d86b58edf01b7560 in libraries []
+2024-03-17 20:57:52,915 | root | WARNING: Warning: could not find dependee nef8df68f41d8491c9aec40334c6d1ff0b7556 in libraries []
diff --git a/genindex.html b/genindex.html
index 887fc4a9a..0038626a7 100644
--- a/genindex.html
+++ b/genindex.html
@@ -993,13 +993,15 @@ G
get_model() (in module buildingmotif.api.views.model)
-
-
+
- get_ontology_files() (in module buildingmotif.utils)
- get_parameters() (in module buildingmotif.utils)
+
+ - get_reasons_with_severity() (ValidationContext method)
- get_semantic_feasibility() (in module buildingmotif.template_matcher)
@@ -1449,6 +1451,10 @@ S
- setup_logging() (BuildingMOTIF method)
- setup_tables() (BuildingMOTIF method)
+
+ - shacl_inference() (in module buildingmotif.utils)
+
+ - shacl_validate() (in module buildingmotif.utils)
- Shape (class in buildingmotif.shape_builder.shape)
@@ -1465,6 +1471,8 @@ S
- ShapeCollection (class in buildingmotif.dataclasses.shape_collection)
- shapename (PathShapeCount attribute)
+
+ - shapes_graph (ValidationContext attribute)
- Singleton (class in buildingmotif.building_motif.singleton)
diff --git a/guides/generating-queries.html b/guides/generating-queries.html
index c5f78a658..29b783b66 100644
--- a/guides/generating-queries.html
+++ b/guides/generating-queries.html
@@ -555,7 +555,7 @@ Setup#
-<Graph identifier=f0bfd2a0-5cb7-40bd-8109-27afe2730948 (<class 'rdflib.graph.Graph'>)>
+<Graph identifier=8ca9540d-4584-4a73-bbee-1e9bdee02a79 (<class 'rdflib.graph.Graph'>)>
@@ -612,7 +612,7 @@ Generating Queries from ShapesPREFIX sh: <http://www.w3.org/ns/shacl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
- SELECT ?heatsp ?coolsp ?target ?roomTemp WHERE {
+ SELECT ?coolsp ?roomTemp ?target ?heatsp WHERE {
?target rdf:type/rdfs:subClassOf* <https://brickschema.org/schema/Brick#Fan_Coil_Unit> .
?target <https://brickschema.org/schema/Brick#hasPoint> ?coolsp .
?coolsp rdf:type/rdfs:subClassOf* <https://brickschema.org/schema/Brick#Occupied_Cooling_Temperature_Setpoint> .
diff --git a/guides/ingress-bacnet-to-brick.html b/guides/ingress-bacnet-to-brick.html
index bbbd3007a..5acbe4465 100644
--- a/guides/ingress-bacnet-to-brick.html
+++ b/guides/ingress-bacnet-to-brick.html
@@ -624,21 +624,15 @@ BACnet Network Setup
-
-#3 ...
-
-#4 [device auth] library/ubuntu:pull token for registry-1.docker.io
-#4 DONE 0.0s
+#3 [device auth] library/ubuntu:pull token for registry-1.docker.io
+#3 DONE 0.0s
-#3 [device internal] load metadata for docker.io/library/ubuntu:latest
-
-
-#3 DONE 1.1s
+#4 [device internal] load metadata for docker.io/library/ubuntu:latest
-#5 [device 1/6] FROM docker.io/library/ubuntu:latest@sha256:77906da86b60585ce12215807090eb327e7386c8fafb5402369e421f44eff17e
+
-#8 0.380
-#8 0.380 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
-#8 0.380
-
-
-#8 0.779 Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
-#8 0.885 Get:2 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB]
-
-
-#8 1.257 Get:3 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1961 kB]
-
-
-#8 1.650 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
-#8 1.654 Get:5 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1079 kB]
-#8 1.680 Get:6 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1569 kB]
-#8 1.738 Get:7 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [44.6 kB]
-#8 1.830 Get:8 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB]
-
-
-#8 2.007 Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB]
-
-
-#8 3.180 Get:10 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB]
-#8 3.226 Get:11 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB]
-#8 3.230 Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB]
-#8 3.304 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1998 kB]
-
-
-#8 3.380 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [50.4 kB]
-#8 3.381 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1848 kB]
-#8 3.502 Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1354 kB]
-
-
-#8 3.840 Get:17 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [33.3 kB]
-
-
-#8 4.169 Get:18 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [80.9 kB]
-
-
-#8 4.412 Fetched 30.3 MB in 4s (7980 kB/s)
-#8 4.412 Reading package lists...
-
-
-#8 5.009 Building dependency tree...
-#8 5.113 Reading state information...
-
-
-#8 5.124 1 package can be upgraded. Run 'apt list --upgradable' to see it.
-#8 5.129
-#8 5.129 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
-#8 5.129
-#8 5.157 Reading package lists...
-
-
-#8 5.748 Building dependency tree...
-#8 5.856 Reading state information...
-
-
-#8 5.976 The following additional packages will be installed:
-#8 5.976 binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2
-#8 5.976 ca-certificates cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config
-#8 5.976 fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-11-base gnupg gnupg-l10n
-#8 5.976 gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
-#8 5.976 javascript-common libalgorithm-diff-perl libalgorithm-diff-xs-perl
-#8 5.976 libalgorithm-merge-perl libasan6 libassuan0 libatomic1 libbinutils
-#8 5.976 libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcc1-0
-#8 5.976 libcrypt-dev libctf-nobfd0 libctf0 libdeflate0 libdpkg-perl libexpat1
-#8 5.976 libexpat1-dev libfakeroot libfile-fcntllock-perl libfontconfig1 libfreetype6
-#8 5.976 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libisl23 libitm1
-#8 5.976 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-sphinxdoc
-#8 5.976 libjs-underscore libksba8 libldap-2.5-0 libldap-common
-#8 5.976 liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpdec3 libmpfr6 libnpth0
-#8 5.976 libnsl-dev libperl5.34 libpng16-16 libpython3-dev libpython3-stdlib
-#8 5.976 libpython3.10 libpython3.10-dev libpython3.10-minimal libpython3.10-stdlib
-#8 5.977 libquadmath0 libreadline8 libsasl2-2 libsasl2-modules libsasl2-modules-db
-#8 5.977 libsqlite3-0 libstdc++-11-dev libtiff5 libtirpc-dev libtsan0 libubsan1
-#8 5.977 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxpm4
-#8 5.977 linux-libc-dev lto-disabled-list make manpages manpages-dev media-types
-#8 5.977 netbase openssl patch perl perl-modules-5.34 pinentry-curses python3-dev
-#8 5.977 python3-distutils python3-lib2to3 python3-minimal python3-pkg-resources
-#8 5.977 python3-setuptools python3-wheel python3.10 python3.10-dev
-#8 5.977 python3.10-minimal readline-common rpcsvc-proto ucf xz-utils zlib1g-dev
-#8 5.978 Suggested packages:
-#8 5.978 binutils-doc bzip2-doc cpp-doc gcc-11-locales dbus-user-session
-#8 5.978 libpam-systemd pinentry-gnome3 tor debian-keyring g++-multilib
-#8 5.978 g++-11-multilib gcc-11-doc gcc-multilib autoconf automake libtool flex bison
-#8 5.978 gdb gcc-doc gcc-11-multilib parcimonie xloadimage scdaemon apache2
-#8 5.978 | lighttpd | httpd glibc-doc git bzr libgd-tools gdbm-l10n
-#8 5.978 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal
-#8 5.978 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql
-#8 5.978 libstdc++-11-doc make-doc man-browser ed diffutils-doc perl-doc
-#8 5.978 libterm-readline-gnu-perl | libterm-readline-perl-perl
-#8 5.978 libtap-harness-archive-perl pinentry-doc python3-doc python3-tk python3-venv
-#8 5.978 python-setuptools-doc python3.10-venv python3.10-doc binfmt-support
-#8 5.978 readline-doc
-#8 6.166 The following NEW packages will be installed:
-#8 6.166 binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2
-#8 6.166 ca-certificates cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config
-
-
-#8 6.166 fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-11-base gnupg gnupg-l10n
-#8 6.166 gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
-#8 6.166 javascript-common libalgorithm-diff-perl libalgorithm-diff-xs-perl
-#8 6.166 libalgorithm-merge-perl libasan6 libassuan0 libatomic1 libbinutils
-#8 6.166 libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcc1-0
-#8 6.166 libcrypt-dev libctf-nobfd0 libctf0 libdeflate0 libdpkg-perl libexpat1
-#8 6.166 libexpat1-dev libfakeroot libfile-fcntllock-perl libfontconfig1 libfreetype6
-#8 6.166 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libisl23 libitm1
-#8 6.166 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-sphinxdoc
-#8 6.166 libjs-underscore libksba8 libldap-2.5-0 libldap-common
-#8 6.166 liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpdec3 libmpfr6 libnpth0
-#8 6.166 libnsl-dev libperl5.34 libpng16-16 libpython3-dev libpython3-stdlib
-#8 6.166 libpython3.10 libpython3.10-dev libpython3.10-minimal libpython3.10-stdlib
-#8 6.167 libquadmath0 libreadline8 libsasl2-2 libsasl2-modules libsasl2-modules-db
-#8 6.167 libsqlite3-0 libstdc++-11-dev libtiff5 libtirpc-dev libtsan0 libubsan1
-#8 6.167 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxpm4
-#8 6.167 linux-libc-dev lto-disabled-list make manpages manpages-dev media-types
-#8 6.167 netbase openssl patch perl perl-modules-5.34 pinentry-curses python3
-#8 6.167 python3-dev python3-distutils python3-lib2to3 python3-minimal python3-pip
-#8 6.167 python3-pkg-resources python3-setuptools python3-wheel python3.10
-#8 6.167 python3.10-dev python3.10-minimal readline-common rpcsvc-proto ucf xz-utils
-#8 6.167 zlib1g-dev
-#8 6.327 0 upgraded, 131 newly installed, 0 to remove and 1 not upgraded.
-#8 6.327 Need to get 101 MB of archives.
-#8 6.327 After this operation, 356 MB of additional disk space will be used.
-#8 6.327 Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblocale-gettext-perl amd64 1.07-4build3 [17.1 kB]
-#8 6.468 Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-minimal amd64 3.10.12-1~22.04.3 [812 kB]
-
-
-#8 6.831 Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1 amd64 2.4.7-1ubuntu0.3 [91.0 kB]
-#8 6.841 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-minimal amd64 3.10.12-1~22.04.3 [2242 kB]
-#8 6.971 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-minimal amd64 3.10.6-1~22.04 [24.3 kB]
-
-
-#8 6.971 Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 media-types all 7.0.0 [25.5 kB]
-#8 6.972 Get:7 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpdec3 amd64 2.5.1-2build2 [86.8 kB]
-#8 6.974 Get:8 http://archive.ubuntu.com/ubuntu jammy/main amd64 readline-common all 8.1.2-1 [53.5 kB]
-#8 6.976 Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline8 amd64 8.1.2-1 [153 kB]
-#8 6.980 Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsqlite3-0 amd64 3.37.2-2ubuntu0.3 [641 kB]
-#8 6.997 Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-stdlib amd64 3.10.12-1~22.04.3 [1848 kB]
-#8 7.038 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10 amd64 3.10.12-1~22.04.3 [508 kB]
-#8 7.046 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3-stdlib amd64 3.10.6-1~22.04 [6910 B]
-#8 7.047 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3 amd64 3.10.6-1~22.04 [22.8 kB]
-#8 7.047 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl-modules-5.34 all 5.34.0-3ubuntu1.3 [2976 kB]
-#8 7.114 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgdbm6 amd64 1.23-1 [33.9 kB]
-#8 7.115 Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgdbm-compat4 amd64 1.23-1 [6606 B]
-#8 7.116 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libperl5.34 amd64 5.34.0-3ubuntu1.3 [4820 kB]
-#8 7.232 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl amd64 5.34.0-3ubuntu1.3 [232 kB]
-
-
-#8 7.234 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 openssl amd64 3.0.2-0ubuntu1.15 [1186 kB]
-#8 7.257 Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 ca-certificates all 20230311ubuntu0.22.04.1 [155 kB]
-#8 7.259 Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmd0 amd64 1.0.4-1build1 [23.0 kB]
-#8 7.259 Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbsd0 amd64 0.11.5-1 [44.8 kB]
-#8 7.260 Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 netbase all 6.3 [12.9 kB]
-#8 7.260 Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-pkg-resources all 59.6.0-1.2ubuntu0.22.04.1 [132 kB]
-#8 7.262 Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 ucf all 3.0043 [56.1 kB]
-#8 7.264 Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpng16-16 amd64 1.6.37-3build5 [191 kB]
-#8 7.323 Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxau6 amd64 1:1.0.9-1build5 [7634 B]
-#8 7.323 Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxdmcp6 amd64 1:1.1.3-0ubuntu5 [10.9 kB]
-#8 7.392 Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb1 amd64 1.14-3ubuntu3 [49.0 kB]
-#8 7.393 Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-data all 2:1.7.5-1ubuntu0.3 [120 kB]
-#8 7.394 Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-6 amd64 2:1.7.5-1ubuntu0.3 [667 kB]
-#8 7.398 Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 manpages all 5.10-1ubuntu1 [1375 kB]
-#8 7.409 Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 xz-utils amd64 5.2.5-2ubuntu1 [84.8 kB]
-#8 7.410 Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils-common amd64 2.38-4ubuntu2.6 [222 kB]
-#8 7.411 Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libbinutils amd64 2.38-4ubuntu2.6 [662 kB]
-#8 7.462 Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libctf-nobfd0 amd64 2.38-4ubuntu2.6 [108 kB]
-#8 7.463 Get:38 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libctf0 amd64 2.38-4ubuntu2.6 [103 kB]
-#8 7.464 Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.38-4ubuntu2.6 [2326 kB]
-#8 7.530 Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils amd64 2.38-4ubuntu2.6 [3200 B]
-
-
-#8 7.530 Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc-dev-bin amd64 2.35-0ubuntu3.6 [20.3 kB]
-#8 7.531 Get:42 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-libc-dev amd64 5.15.0-100.110 [1348 kB]
-#8 7.541 Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcrypt-dev amd64 1:4.4.27-1 [112 kB]
-#8 7.542 Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu6 [68.5 kB]
-#8 7.542 Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtirpc-dev amd64 1.3.2-2ubuntu0.1 [192 kB]
-#8 7.599 Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 libnsl-dev amd64 1.3.0-2build2 [71.3 kB]
-#8 7.600 Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc6-dev amd64 2.35-0ubuntu3.6 [2100 kB]
-#8 7.615 Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11-base amd64 11.4.0-1ubuntu1~22.04 [20.2 kB]
-#8 7.616 Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 libisl23 amd64 0.24-2build1 [727 kB]
-#8 7.667 Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpfr6 amd64 4.1.0-3build3 [1425 kB]
-#8 7.679 Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpc3 amd64 1.2.1-2build1 [46.9 kB]
-#8 7.680 Get:52 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 cpp-11 amd64 11.4.0-1ubuntu1~22.04 [10.0 MB]
-
-
-#8 7.902 Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 cpp amd64 4:11.2.0-1ubuntu1 [27.7 kB]
-#8 7.946 Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB]
-#8 7.947 Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04 [126 kB]
-#8 7.948 Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB]
-#8 7.949 Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04 [10.4 kB]
-#8 7.949 Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libasan6 amd64 11.4.0-1ubuntu1~22.04 [2282 kB]
-#8 7.968 Get:59 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1069 kB]
-#8 8.021 Get:60 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtsan0 amd64 11.4.0-1ubuntu1~22.04 [2260 kB]
-
-
-#8 8.087 Get:61 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB]
-#8 8.094 Get:62 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB]
-#8 8.095 Get:63 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-11-dev amd64 11.4.0-1ubuntu1~22.04 [2517 kB]
-#8 8.163 Get:64 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11 amd64 11.4.0-1ubuntu1~22.04 [20.1 MB]
-
-
-#8 8.654 Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5112 B]
-#8 8.654 Get:66 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++-11-dev amd64 11.4.0-1ubuntu1~22.04 [2101 kB]
-#8 8.669 Get:67 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 g++-11 amd64 11.4.0-1ubuntu1~22.04 [11.4 MB]
-
-
-#8 8.947 Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1412 B]
-#8 8.947 Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 make amd64 4.3-4.1build1 [180 kB]
-#8 8.994 Get:70 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdpkg-perl all 1.21.1ubuntu2.3 [237 kB]
-#8 8.996 Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 bzip2 amd64 1.0.8-5build1 [34.8 kB]
-#8 8.996 Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 patch amd64 2.7.6-7build2 [109 kB]
-#8 8.997 Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 lto-disabled-list all 24 [12.5 kB]
-#8 8.998 Get:74 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dpkg-dev all 1.21.1ubuntu2.3 [922 kB]
-#8 9.004 Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 build-essential amd64 12.9ubuntu3 [4744 B]
-#8 9.004 Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libassuan0 amd64 2.5.5-1build1 [38.2 kB]
-#8 9.019 Get:77 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgconf amd64 2.2.27-3ubuntu2.1 [94.2 kB]
-#8 9.020 Get:78 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libksba8 amd64 1.6.0-2ubuntu0.2 [119 kB]
-#8 9.088 Get:79 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg2-3ubuntu1.2 [20.5 kB]
-
-
-#8 9.088 Get:80 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-2 amd64 2.1.27+dfsg2-3ubuntu1.2 [53.8 kB]
-#8 9.089 Get:81 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libldap-2.5-0 amd64 2.5.17+dfsg-0ubuntu0.22.04.1 [183 kB]
-#8 9.091 Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 libnpth0 amd64 1.6-3build2 [8664 B]
-#8 9.091 Get:83 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dirmngr amd64 2.2.27-3ubuntu2.1 [293 kB]
-#8 9.094 Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfakeroot amd64 1.28-1ubuntu1 [31.5 kB]
-#8 9.094 Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 fakeroot amd64 1.28-1ubuntu1 [60.4 kB]
-#8 9.095 Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
-#8 9.157 Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
-#8 9.157 Get:88 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg-l10n all 2.2.27-3ubuntu2.1 [54.4 kB]
-#8 9.226 Get:89 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg-utils amd64 2.2.27-3ubuntu2.1 [308 kB]
-#8 9.228 Get:90 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg amd64 2.2.27-3ubuntu2.1 [519 kB]
-#8 9.232 Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 pinentry-curses amd64 1.1.1-1build2 [34.4 kB]
-#8 9.233 Get:92 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-agent amd64 2.2.27-3ubuntu2.1 [209 kB]
-#8 9.235 Get:93 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-wks-client amd64 2.2.27-3ubuntu2.1 [62.7 kB]
-#8 9.236 Get:94 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-wks-server amd64 2.2.27-3ubuntu2.1 [57.5 kB]
-#8 9.237 Get:95 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgsm amd64 2.2.27-3ubuntu2.1 [197 kB]
-#8 9.238 Get:96 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg all 2.2.27-3ubuntu2.1 [315 kB]
-#8 9.295 Get:97 http://archive.ubuntu.com/ubuntu jammy/main amd64 javascript-common all 11+nmu1 [5936 B]
-#8 9.295 Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
-#8 9.364 Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-diff-xs-perl amd64 0.04-6build3 [11.9 kB]
-
-
-#8 9.364 Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
-#8 9.365 Get:101 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbrotli1 amd64 1.0.9-2build6 [315 kB]
-#8 9.507 Get:102 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6 amd64 2.11.1+dfsg-1ubuntu0.2 [389 kB]
-
-
-#8 9.934 Get:103 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB]
-#8 9.950 Get:104 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB]
-#8 9.967 Get:105 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2264 B]
-#8 9.967 Get:106 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB]
-#8 9.976 Get:107 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB]
-#8 9.980 Get:108 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB]
-#8 10.03 Get:109 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.8 [185 kB]
-#8 10.05 Get:110 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libxpm4 amd64 1:3.5.12-1ubuntu0.22.04.2 [36.7 kB]
-
-
-#8 10.05 Get:111 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgd3 amd64 2.3.0-2ubuntu2 [129 kB]
-#8 10.07 Get:112 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc-devtools amd64 2.35-0ubuntu3.6 [29.0 kB]
-#8 10.07 Get:113 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1-dev amd64 2.4.7-1ubuntu0.3 [147 kB]
-#8 10.08 Get:114 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfile-fcntllock-perl amd64 0.22-3build7 [33.9 kB]
-#8 10.08 Get:115 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-jquery all 3.6.0+dfsg+~3.5.13-1 [321 kB]
-#8 10.10 Get:116 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-underscore all 1.13.2~dfsg-2 [118 kB]
-#8 10.11 Get:117 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-sphinxdoc all 4.3.2-1 [139 kB]
-#8 10.14 Get:118 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libldap-common all 2.5.17+dfsg-0ubuntu0.22.04.1 [15.8 kB]
-#8 10.14 Get:119 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10 amd64 3.10.12-1~22.04.3 [1948 kB]
-#8 10.20 Get:120 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-2ubuntu9.2 [164 kB]
-#8 10.21 Get:121 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-dev amd64 3.10.12-1~22.04.3 [4762 kB]
-#8 10.32 Get:122 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3-dev amd64 3.10.6-1~22.04 [7166 B]
-
-
-#8 10.32 Get:123 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-modules amd64 2.1.27+dfsg2-3ubuntu1.2 [68.8 kB]
-#8 10.33 Get:124 http://archive.ubuntu.com/ubuntu jammy/main amd64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
-#8 10.39 Get:125 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-dev amd64 3.10.12-1~22.04.3 [507 kB]
-#8 10.39 Get:126 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-lib2to3 all 3.10.8-1~22.04 [77.6 kB]
-#8 10.39 Get:127 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-distutils all 3.10.8-1~22.04 [139 kB]
-#8 10.39 Get:128 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-dev amd64 3.10.6-1~22.04 [26.0 kB]
-#8 10.39 Get:129 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-setuptools all 59.6.0-1.2ubuntu0.22.04.1 [339 kB]
-#8 10.40 Get:130 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-wheel all 0.37.1-2ubuntu0.22.04.1 [32.0 kB]
-#8 10.42 Get:131 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-pip all 22.0.2+dfsg-1ubuntu0.4 [1305 kB]
-
-
-#8 10.99 debconf: delaying package configuration, since apt-utils is not installed
-#8 11.01 Fetched 101 MB in 4s (23.7 MB/s)
-#8 11.10 Selecting previously unselected package liblocale-gettext-perl.
-#8 11.10 (Reading database ...
-
-
-(Reading database ... 5%
+#8 0.215
+#8 0.215 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
+#8 0.215
+#8 0.326 Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
+
+
+#8 0.355 Get:2 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB]
+#8 0.536 Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
+#8 0.550 Get:4 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1079 kB]
+#8 0.578 Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB]
+#8 0.637 Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB]
+
+
+#8 0.705 Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1569 kB]
+#8 0.744 Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1961 kB]
+#8 0.770 Get:9 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB]
+#8 0.773 Get:10 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB]
+#8 0.775 Get:11 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [44.6 kB]
+
+
+#8 0.973 Get:12 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB]
+
+
+#8 0.975 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [50.4 kB]
+#8 0.975 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1998 kB]
+#8 1.001 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1848 kB]
+#8 1.021 Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1353 kB]
+#8 1.034 Get:17 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [80.9 kB]
+#8 1.034 Get:18 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [33.3 kB]
+
+
+#8 1.723 Fetched 30.3 MB in 1s (20.7 MB/s)
+#8 1.723 Reading package lists...
+
+
+#8 2.322 Building dependency tree...
+#8 2.434 Reading state information...
+
+
+#8 2.445 1 package can be upgraded. Run 'apt list --upgradable' to see it.
+#8 2.450
+#8 2.450 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
+#8 2.450
+#8 2.478 Reading package lists...
+
+
+#8 3.071 Building dependency tree...
+#8 3.178 Reading state information...
+
+
+#8 3.286 The following additional packages will be installed:
+#8 3.286 binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2
+#8 3.286 ca-certificates cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config
+#8 3.286 fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-11-base gnupg gnupg-l10n
+#8 3.286 gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
+#8 3.287 javascript-common libalgorithm-diff-perl libalgorithm-diff-xs-perl
+#8 3.287 libalgorithm-merge-perl libasan6 libassuan0 libatomic1 libbinutils
+#8 3.287 libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcc1-0
+#8 3.287 libcrypt-dev libctf-nobfd0 libctf0 libdeflate0 libdpkg-perl libexpat1
+#8 3.287 libexpat1-dev libfakeroot libfile-fcntllock-perl libfontconfig1 libfreetype6
+#8 3.287 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libisl23 libitm1
+#8 3.287 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-sphinxdoc
+#8 3.287 libjs-underscore libksba8 libldap-2.5-0 libldap-common
+#8 3.287 liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpdec3 libmpfr6 libnpth0
+#8 3.287 libnsl-dev libperl5.34 libpng16-16 libpython3-dev libpython3-stdlib
+#8 3.287 libpython3.10 libpython3.10-dev libpython3.10-minimal libpython3.10-stdlib
+#8 3.287 libquadmath0 libreadline8 libsasl2-2 libsasl2-modules libsasl2-modules-db
+#8 3.287 libsqlite3-0 libstdc++-11-dev libtiff5 libtirpc-dev libtsan0 libubsan1
+#8 3.287 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxpm4
+#8 3.287 linux-libc-dev lto-disabled-list make manpages manpages-dev media-types
+#8 3.287 netbase openssl patch perl perl-modules-5.34 pinentry-curses python3-dev
+#8 3.287 python3-distutils python3-lib2to3 python3-minimal python3-pkg-resources
+#8 3.287 python3-setuptools python3-wheel python3.10 python3.10-dev
+#8 3.287 python3.10-minimal readline-common rpcsvc-proto ucf xz-utils zlib1g-dev
+#8 3.288 Suggested packages:
+#8 3.288 binutils-doc bzip2-doc cpp-doc gcc-11-locales dbus-user-session
+#8 3.288 libpam-systemd pinentry-gnome3 tor debian-keyring g++-multilib
+#8 3.288 g++-11-multilib gcc-11-doc gcc-multilib autoconf automake libtool flex bison
+#8 3.288 gdb gcc-doc gcc-11-multilib parcimonie xloadimage scdaemon apache2
+#8 3.288 | lighttpd | httpd glibc-doc git bzr libgd-tools gdbm-l10n
+#8 3.288 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal
+#8 3.288 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql
+#8 3.288 libstdc++-11-doc make-doc man-browser ed diffutils-doc perl-doc
+#8 3.288 libterm-readline-gnu-perl | libterm-readline-perl-perl
+#8 3.288 libtap-harness-archive-perl pinentry-doc python3-doc python3-tk python3-venv
+#8 3.288 python-setuptools-doc python3.10-venv python3.10-doc binfmt-support
+#8 3.288 readline-doc
+#8 3.475 The following NEW packages will be installed:
+#8 3.475 binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2
+#8 3.475 ca-certificates cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config
+
+
+#8 3.475 fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-11-base gnupg gnupg-l10n
+#8 3.475 gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
+#8 3.475 javascript-common libalgorithm-diff-perl libalgorithm-diff-xs-perl
+#8 3.475 libalgorithm-merge-perl libasan6 libassuan0 libatomic1 libbinutils
+#8 3.475 libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcc1-0
+#8 3.476 libcrypt-dev libctf-nobfd0 libctf0 libdeflate0 libdpkg-perl libexpat1
+#8 3.476 libexpat1-dev libfakeroot libfile-fcntllock-perl libfontconfig1 libfreetype6
+#8 3.476 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libisl23 libitm1
+#8 3.476 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libjs-sphinxdoc
+#8 3.476 libjs-underscore libksba8 libldap-2.5-0 libldap-common
+#8 3.476 liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpdec3 libmpfr6 libnpth0
+#8 3.476 libnsl-dev libperl5.34 libpng16-16 libpython3-dev libpython3-stdlib
+#8 3.476 libpython3.10 libpython3.10-dev libpython3.10-minimal libpython3.10-stdlib
+#8 3.476 libquadmath0 libreadline8 libsasl2-2 libsasl2-modules libsasl2-modules-db
+#8 3.476 libsqlite3-0 libstdc++-11-dev libtiff5 libtirpc-dev libtsan0 libubsan1
+#8 3.476 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxpm4
+#8 3.476 linux-libc-dev lto-disabled-list make manpages manpages-dev media-types
+#8 3.476 netbase openssl patch perl perl-modules-5.34 pinentry-curses python3
+#8 3.476 python3-dev python3-distutils python3-lib2to3 python3-minimal python3-pip
+#8 3.476 python3-pkg-resources python3-setuptools python3-wheel python3.10
+#8 3.476 python3.10-dev python3.10-minimal readline-common rpcsvc-proto ucf xz-utils
+#8 3.476 zlib1g-dev
+#8 3.565 0 upgraded, 131 newly installed, 0 to remove and 1 not upgraded.
+#8 3.565 Need to get 101 MB of archives.
+#8 3.565 After this operation, 356 MB of additional disk space will be used.
+#8 3.565 Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblocale-gettext-perl amd64 1.07-4build3 [17.1 kB]
+#8 3.630 Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-minimal amd64 3.10.12-1~22.04.3 [812 kB]
+#8 3.799 Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1 amd64 2.4.7-1ubuntu0.3 [91.0 kB]
+
+
+#8 3.804 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-minimal amd64 3.10.12-1~22.04.3 [2242 kB]
+#8 3.864 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-minimal amd64 3.10.6-1~22.04 [24.3 kB]
+#8 3.864 Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 media-types all 7.0.0 [25.5 kB]
+#8 3.865 Get:7 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpdec3 amd64 2.5.1-2build2 [86.8 kB]
+#8 3.866 Get:8 http://archive.ubuntu.com/ubuntu jammy/main amd64 readline-common all 8.1.2-1 [53.5 kB]
+#8 3.866 Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline8 amd64 8.1.2-1 [153 kB]
+#8 3.868 Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsqlite3-0 amd64 3.37.2-2ubuntu0.3 [641 kB]
+#8 3.877 Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-stdlib amd64 3.10.12-1~22.04.3 [1848 kB]
+#8 3.899 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10 amd64 3.10.12-1~22.04.3 [508 kB]
+#8 3.902 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3-stdlib amd64 3.10.6-1~22.04 [6910 B]
+#8 3.902 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3 amd64 3.10.6-1~22.04 [22.8 kB]
+#8 3.903 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl-modules-5.34 all 5.34.0-3ubuntu1.3 [2976 kB]
+#8 3.935 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgdbm6 amd64 1.23-1 [33.9 kB]
+#8 3.935 Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgdbm-compat4 amd64 1.23-1 [6606 B]
+#8 3.936 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libperl5.34 amd64 5.34.0-3ubuntu1.3 [4820 kB]
+#8 3.988 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl amd64 5.34.0-3ubuntu1.3 [232 kB]
+#8 3.990 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 openssl amd64 3.0.2-0ubuntu1.15 [1186 kB]
+#8 4.001 Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 ca-certificates all 20230311ubuntu0.22.04.1 [155 kB]
+#8 4.002 Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmd0 amd64 1.0.4-1build1 [23.0 kB]
+
+
+#8 4.003 Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbsd0 amd64 0.11.5-1 [44.8 kB]
+#8 4.003 Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 netbase all 6.3 [12.9 kB]
+#8 4.004 Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-pkg-resources all 59.6.0-1.2ubuntu0.22.04.1 [132 kB]
+#8 4.005 Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 ucf all 3.0043 [56.1 kB]
+#8 4.006 Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpng16-16 amd64 1.6.37-3build5 [191 kB]
+#8 4.029 Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxau6 amd64 1:1.0.9-1build5 [7634 B]
+#8 4.030 Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxdmcp6 amd64 1:1.1.3-0ubuntu5 [10.9 kB]
+#8 4.061 Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb1 amd64 1.14-3ubuntu3 [49.0 kB]
+#8 4.062 Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-data all 2:1.7.5-1ubuntu0.3 [120 kB]
+#8 4.063 Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-6 amd64 2:1.7.5-1ubuntu0.3 [667 kB]
+#8 4.067 Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 manpages all 5.10-1ubuntu1 [1375 kB]
+#8 4.076 Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 xz-utils amd64 5.2.5-2ubuntu1 [84.8 kB]
+#8 4.076 Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils-common amd64 2.38-4ubuntu2.6 [222 kB]
+#8 4.078 Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libbinutils amd64 2.38-4ubuntu2.6 [662 kB]
+#8 4.094 Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libctf-nobfd0 amd64 2.38-4ubuntu2.6 [108 kB]
+#8 4.095 Get:38 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libctf0 amd64 2.38-4ubuntu2.6 [103 kB]
+#8 4.096 Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.38-4ubuntu2.6 [2326 kB]
+#8 4.128 Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils amd64 2.38-4ubuntu2.6 [3200 B]
+
+
+#8 4.129 Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc-dev-bin amd64 2.35-0ubuntu3.6 [20.3 kB]
+#8 4.129 Get:42 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-libc-dev amd64 5.15.0-100.110 [1348 kB]
+#8 4.137 Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcrypt-dev amd64 1:4.4.27-1 [112 kB]
+#8 4.138 Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu6 [68.5 kB]
+#8 4.139 Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtirpc-dev amd64 1.3.2-2ubuntu0.1 [192 kB]
+#8 4.157 Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 libnsl-dev amd64 1.3.0-2build2 [71.3 kB]
+#8 4.158 Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc6-dev amd64 2.35-0ubuntu3.6 [2100 kB]
+#8 4.171 Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11-base amd64 11.4.0-1ubuntu1~22.04 [20.2 kB]
+#8 4.189 Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 libisl23 amd64 0.24-2build1 [727 kB]
+#8 4.194 Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpfr6 amd64 4.1.0-3build3 [1425 kB]
+#8 4.203 Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpc3 amd64 1.2.1-2build1 [46.9 kB]
+#8 4.203 Get:52 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 cpp-11 amd64 11.4.0-1ubuntu1~22.04 [10.0 MB]
+#8 4.335 Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 cpp amd64 4:11.2.0-1ubuntu1 [27.7 kB]
+#8 4.335 Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB]
+#8 4.336 Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04 [126 kB]
+#8 4.337 Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB]
+#8 4.337 Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04 [10.4 kB]
+#8 4.337 Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libasan6 amd64 11.4.0-1ubuntu1~22.04 [2282 kB]
+#8 4.363 Get:59 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1069 kB]
+#8 4.375 Get:60 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtsan0 amd64 11.4.0-1ubuntu1~22.04 [2260 kB]
+#8 4.400 Get:61 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB]
+#8 4.410 Get:62 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB]
+#8 4.412 Get:63 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-11-dev amd64 11.4.0-1ubuntu1~22.04 [2517 kB]
+#8 4.442 Get:64 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11 amd64 11.4.0-1ubuntu1~22.04 [20.1 MB]
+
+
+#8 4.675 Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5112 B]
+#8 4.675 Get:66 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++-11-dev amd64 11.4.0-1ubuntu1~22.04 [2101 kB]
+#8 4.695 Get:67 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 g++-11 amd64 11.4.0-1ubuntu1~22.04 [11.4 MB]
+#8 4.828 Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1412 B]
+
+
+#8 4.828 Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 make amd64 4.3-4.1build1 [180 kB]
+#8 4.830 Get:70 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdpkg-perl all 1.21.1ubuntu2.3 [237 kB]
+#8 4.833 Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 bzip2 amd64 1.0.8-5build1 [34.8 kB]
+#8 4.833 Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 patch amd64 2.7.6-7build2 [109 kB]
+#8 4.834 Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 lto-disabled-list all 24 [12.5 kB]
+#8 4.834 Get:74 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dpkg-dev all 1.21.1ubuntu2.3 [922 kB]
+#8 4.841 Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 build-essential amd64 12.9ubuntu3 [4744 B]
+#8 4.842 Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libassuan0 amd64 2.5.5-1build1 [38.2 kB]
+#8 4.862 Get:77 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgconf amd64 2.2.27-3ubuntu2.1 [94.2 kB]
+#8 4.864 Get:78 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libksba8 amd64 1.6.0-2ubuntu0.2 [119 kB]
+#8 4.895 Get:79 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg2-3ubuntu1.2 [20.5 kB]
+#8 4.895 Get:80 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-2 amd64 2.1.27+dfsg2-3ubuntu1.2 [53.8 kB]
+#8 4.896 Get:81 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libldap-2.5-0 amd64 2.5.17+dfsg-0ubuntu0.22.04.1 [183 kB]
+#8 4.897 Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 libnpth0 amd64 1.6-3build2 [8664 B]
+#8 4.897 Get:83 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dirmngr amd64 2.2.27-3ubuntu2.1 [293 kB]
+#8 4.899 Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfakeroot amd64 1.28-1ubuntu1 [31.5 kB]
+#8 4.900 Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 fakeroot amd64 1.28-1ubuntu1 [60.4 kB]
+#8 4.901 Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
+#8 4.927 Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
+#8 4.927 Get:88 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg-l10n all 2.2.27-3ubuntu2.1 [54.4 kB]
+#8 4.959 Get:89 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg-utils amd64 2.2.27-3ubuntu2.1 [308 kB]
+#8 4.961 Get:90 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg amd64 2.2.27-3ubuntu2.1 [519 kB]
+#8 4.965 Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 pinentry-curses amd64 1.1.1-1build2 [34.4 kB]
+#8 4.966 Get:92 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-agent amd64 2.2.27-3ubuntu2.1 [209 kB]
+#8 4.968 Get:93 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-wks-client amd64 2.2.27-3ubuntu2.1 [62.7 kB]
+#8 4.968 Get:94 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-wks-server amd64 2.2.27-3ubuntu2.1 [57.5 kB]
+#8 4.969 Get:95 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgsm amd64 2.2.27-3ubuntu2.1 [197 kB]
+#8 4.971 Get:96 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg all 2.2.27-3ubuntu2.1 [315 kB]
+#8 4.991 Get:97 http://archive.ubuntu.com/ubuntu jammy/main amd64 javascript-common all 11+nmu1 [5936 B]
+#8 4.991 Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
+#8 5.023 Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-diff-xs-perl amd64 0.04-6build3 [11.9 kB]
+#8 5.024 Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
+#8 5.024 Get:101 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbrotli1 amd64 1.0.9-2build6 [315 kB]
+#8 5.092 Get:102 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6 amd64 2.11.1+dfsg-1ubuntu0.2 [389 kB]
+
+
+#8 5.290 Get:103 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB]
+#8 5.297 Get:104 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB]
+#8 5.305 Get:105 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2264 B]
+#8 5.306 Get:106 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB]
+#8 5.309 Get:107 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB]
+#8 5.311 Get:108 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB]
+#8 5.332 Get:109 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.8 [185 kB]
+#8 5.343 Get:110 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libxpm4 amd64 1:3.5.12-1ubuntu0.22.04.2 [36.7 kB]
+#8 5.345 Get:111 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgd3 amd64 2.3.0-2ubuntu2 [129 kB]
+#8 5.352 Get:112 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc-devtools amd64 2.35-0ubuntu3.6 [29.0 kB]
+#8 5.354 Get:113 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1-dev amd64 2.4.7-1ubuntu0.3 [147 kB]
+#8 5.358 Get:114 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfile-fcntllock-perl amd64 0.22-3build7 [33.9 kB]
+#8 5.359 Get:115 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-jquery all 3.6.0+dfsg+~3.5.13-1 [321 kB]
+#8 5.367 Get:116 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-underscore all 1.13.2~dfsg-2 [118 kB]
+#8 5.371 Get:117 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-sphinxdoc all 4.3.2-1 [139 kB]
+#8 5.386 Get:118 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libldap-common all 2.5.17+dfsg-0ubuntu0.22.04.1 [15.8 kB]
+#8 5.386 Get:119 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10 amd64 3.10.12-1~22.04.3 [1948 kB]
+#8 5.414 Get:120 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-2ubuntu9.2 [164 kB]
+
+
+#8 5.419 Get:121 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-dev amd64 3.10.12-1~22.04.3 [4762 kB]
+#8 5.470 Get:122 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3-dev amd64 3.10.6-1~22.04 [7166 B]
+#8 5.470 Get:123 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-modules amd64 2.1.27+dfsg2-3ubuntu1.2 [68.8 kB]
+#8 5.471 Get:124 http://archive.ubuntu.com/ubuntu jammy/main amd64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
+#8 5.498 Get:125 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-dev amd64 3.10.12-1~22.04.3 [507 kB]
+#8 5.501 Get:126 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-lib2to3 all 3.10.8-1~22.04 [77.6 kB]
+#8 5.502 Get:127 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-distutils all 3.10.8-1~22.04 [139 kB]
+#8 5.503 Get:128 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-dev amd64 3.10.6-1~22.04 [26.0 kB]
+#8 5.504 Get:129 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-setuptools all 59.6.0-1.2ubuntu0.22.04.1 [339 kB]
+#8 5.509 Get:130 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-wheel all 0.37.1-2ubuntu0.22.04.1 [32.0 kB]
+#8 5.513 Get:131 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-pip all 22.0.2+dfsg-1ubuntu0.4 [1305 kB]
+#8 5.658 debconf: delaying package configuration, since apt-utils is not installed
+#8 5.678 Fetched 101 MB in 2s (49.6 MB/s)
+#8 5.697 Selecting previously unselected package liblocale-gettext-perl.
+#8 5.697 (Reading database ...
+(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
@@ -962,28 +932,26 @@ BACnet Network Setup
-
-#8 11.32 Preparing to unpack .../liblocale-gettext-perl_1.07-4build3_amd64.deb ...
-#8 11.32 Unpacking liblocale-gettext-perl (1.07-4build3) ...
-#8 11.34 Selecting previously unselected package libpython3.10-minimal:amd64.
-#8 11.34 Preparing to unpack .../libpython3.10-minimal_3.10.12-1~22.04.3_amd64.deb ...
-#8 11.34 Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.3) ...
-#8 11.42 Selecting previously unselected package libexpat1:amd64.
-#8 11.42 Preparing to unpack .../libexpat1_2.4.7-1ubuntu0.3_amd64.deb ...
-#8 11.42 Unpacking libexpat1:amd64 (2.4.7-1ubuntu0.3) ...
-
-
-#8 11.44 Selecting previously unselected package python3.10-minimal.
-#8 11.44 Preparing to unpack .../python3.10-minimal_3.10.12-1~22.04.3_amd64.deb ...
-#8 11.45 Unpacking python3.10-minimal (3.10.12-1~22.04.3) ...
-#8 11.49 Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.3) ...
-#8 11.50 Setting up libexpat1:amd64 (2.4.7-1ubuntu0.3) ...
-#8 11.50 Setting up python3.10-minimal (3.10.12-1~22.04.3) ...
-
-
-#8 12.05 Selecting previously unselected package python3-minimal.
-#8 12.05 (Reading database ...
+#8 5.719 Preparing to unpack .../liblocale-gettext-perl_1.07-4build3_amd64.deb ...
+#8 5.720 Unpacking liblocale-gettext-perl (1.07-4build3) ...
+#8 5.735 Selecting previously unselected package libpython3.10-minimal:amd64.
+#8 5.736 Preparing to unpack .../libpython3.10-minimal_3.10.12-1~22.04.3_amd64.deb ...
+#8 5.737 Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.3) ...
+#8 5.809 Selecting previously unselected package libexpat1:amd64.
+
+
+#8 5.810 Preparing to unpack .../libexpat1_2.4.7-1ubuntu0.3_amd64.deb ...
+#8 5.812 Unpacking libexpat1:amd64 (2.4.7-1ubuntu0.3) ...
+#8 5.829 Selecting previously unselected package python3.10-minimal.
+#8 5.829 Preparing to unpack .../python3.10-minimal_3.10.12-1~22.04.3_amd64.deb ...
+#8 5.833 Unpacking python3.10-minimal (3.10.12-1~22.04.3) ...
+#8 5.872 Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.3) ...
+#8 5.877 Setting up libexpat1:amd64 (2.4.7-1ubuntu0.3) ...
+#8 5.880 Setting up python3.10-minimal (3.10.12-1~22.04.3) ...
+
+
+
-
-#8 12.16 Preparing to unpack .../5-libsqlite3-0_3.37.2-2ubuntu0.3_amd64.deb ...
-#8 12.16 Unpacking libsqlite3-0:amd64 (3.37.2-2ubuntu0.3) ...
-#8 12.18 Selecting previously unselected package libpython3.10-stdlib:amd64.
-#8 12.18 Preparing to unpack .../6-libpython3.10-stdlib_3.10.12-1~22.04.3_amd64.deb ...
-#8 12.18 Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.3) ...
-#8 12.27 Selecting previously unselected package python3.10.
-#8 12.27 Preparing to unpack .../7-python3.10_3.10.12-1~22.04.3_amd64.deb ...
-#8 12.27 Unpacking python3.10 (3.10.12-1~22.04.3) ...
-#8 12.29 Selecting previously unselected package libpython3-stdlib:amd64.
-#8 12.29 Preparing to unpack .../8-libpython3-stdlib_3.10.6-1~22.04_amd64.deb ...
-#8 12.29 Unpacking libpython3-stdlib:amd64 (3.10.6-1~22.04) ...
-#8 12.31 Setting up python3-minimal (3.10.6-1~22.04) ...
-#8 12.44 Selecting previously unselected package python3.
-#8 12.44 (Reading database ...
+#8 6.395 Preparing to unpack .../0-python3-minimal_3.10.6-1~22.04_amd64.deb ...
+#8 6.396 Unpacking python3-minimal (3.10.6-1~22.04) ...
+#8 6.413 Selecting previously unselected package media-types.
+#8 6.413 Preparing to unpack .../1-media-types_7.0.0_all.deb ...
+#8 6.414 Unpacking media-types (7.0.0) ...
+#8 6.432 Selecting previously unselected package libmpdec3:amd64.
+#8 6.433 Preparing to unpack .../2-libmpdec3_2.5.1-2build2_amd64.deb ...
+#8 6.434 Unpacking libmpdec3:amd64 (2.5.1-2build2) ...
+#8 6.450 Selecting previously unselected package readline-common.
+#8 6.450 Preparing to unpack .../3-readline-common_8.1.2-1_all.deb ...
+#8 6.452 Unpacking readline-common (8.1.2-1) ...
+#8 6.468 Selecting previously unselected package libreadline8:amd64.
+#8 6.468 Preparing to unpack .../4-libreadline8_8.1.2-1_amd64.deb ...
+#8 6.470 Unpacking libreadline8:amd64 (8.1.2-1) ...
+#8 6.487 Selecting previously unselected package libsqlite3-0:amd64.
+#8 6.488 Preparing to unpack .../5-libsqlite3-0_3.37.2-2ubuntu0.3_amd64.deb ...
+#8 6.489 Unpacking libsqlite3-0:amd64 (3.37.2-2ubuntu0.3) ...
+#8 6.508 Selecting previously unselected package libpython3.10-stdlib:amd64.
+
+
+#8 6.509 Preparing to unpack .../6-libpython3.10-stdlib_3.10.12-1~22.04.3_amd64.deb ...
+#8 6.510 Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.3) ...
+#8 6.597 Selecting previously unselected package python3.10.
+#8 6.598 Preparing to unpack .../7-python3.10_3.10.12-1~22.04.3_amd64.deb ...
+#8 6.598 Unpacking python3.10 (3.10.12-1~22.04.3) ...
+#8 6.615 Selecting previously unselected package libpython3-stdlib:amd64.
+#8 6.616 Preparing to unpack .../8-libpython3-stdlib_3.10.6-1~22.04_amd64.deb ...
+#8 6.618 Unpacking libpython3-stdlib:amd64 (3.10.6-1~22.04) ...
+#8 6.633 Setting up python3-minimal (3.10.6-1~22.04) ...
+#8 6.761 Selecting previously unselected package python3.
+#8 6.761 (Reading database ...
-#8 12.75 Preparing to unpack .../002-libgdbm6_1.23-1_amd64.deb ...
-#8 12.75 Unpacking libgdbm6:amd64 (1.23-1) ...
-#8 12.77 Selecting previously unselected package libgdbm-compat4:amd64.
-#8 12.77 Preparing to unpack .../003-libgdbm-compat4_1.23-1_amd64.deb ...
-#8 12.77 Unpacking libgdbm-compat4:amd64 (1.23-1) ...
-#8 12.79 Selecting previously unselected package libperl5.34:amd64.
-#8 12.79 Preparing to unpack .../004-libperl5.34_5.34.0-3ubuntu1.3_amd64.deb ...
-#8 12.80 Unpacking libperl5.34:amd64 (5.34.0-3ubuntu1.3) ...
-#8 12.97 Selecting previously unselected package perl.
-#8 12.98 Preparing to unpack .../005-perl_5.34.0-3ubuntu1.3_amd64.deb ...
-#8 12.99 Unpacking perl (5.34.0-3ubuntu1.3) ...
-#8 13.02 Selecting previously unselected package openssl.
-#8 13.02 Preparing to unpack .../006-openssl_3.0.2-0ubuntu1.15_amd64.deb ...
-#8 13.02 Unpacking openssl (3.0.2-0ubuntu1.15) ...
-#8 13.06 Selecting previously unselected package ca-certificates.
-#8 13.06 Preparing to unpack .../007-ca-certificates_20230311ubuntu0.22.04.1_all.deb ...
-#8 13.06 Unpacking ca-certificates (20230311ubuntu0.22.04.1) ...
-#8 13.11 Selecting previously unselected package libmd0:amd64.
-
-
-#8 13.11 Preparing to unpack .../008-libmd0_1.0.4-1build1_amd64.deb ...
-#8 13.11 Unpacking libmd0:amd64 (1.0.4-1build1) ...
-#8 13.13 Selecting previously unselected package libbsd0:amd64.
-#8 13.13 Preparing to unpack .../009-libbsd0_0.11.5-1_amd64.deb ...
-#8 13.13 Unpacking libbsd0:amd64 (0.11.5-1) ...
-#8 13.15 Selecting previously unselected package netbase.
-#8 13.15 Preparing to unpack .../010-netbase_6.3_all.deb ...
-#8 13.15 Unpacking netbase (6.3) ...
-#8 13.17 Selecting previously unselected package python3-pkg-resources.
-#8 13.17 Preparing to unpack .../011-python3-pkg-resources_59.6.0-1.2ubuntu0.22.04.1_all.deb ...
-#8 13.17 Unpacking python3-pkg-resources (59.6.0-1.2ubuntu0.22.04.1) ...
-#8 13.19 Selecting previously unselected package ucf.
-#8 13.19 Preparing to unpack .../012-ucf_3.0043_all.deb ...
-#8 13.20 Moving old data out of the way
-#8 13.21 Unpacking ucf (3.0043) ...
-#8 13.23 Selecting previously unselected package libpng16-16:amd64.
-#8 13.23 Preparing to unpack .../013-libpng16-16_1.6.37-3build5_amd64.deb ...
-#8 13.23 Unpacking libpng16-16:amd64 (1.6.37-3build5) ...
-#8 13.25 Selecting previously unselected package libxau6:amd64.
-#8 13.25 Preparing to unpack .../014-libxau6_1%3a1.0.9-1build5_amd64.deb ...
-#8 13.25 Unpacking libxau6:amd64 (1:1.0.9-1build5) ...
-#8 13.26 Selecting previously unselected package libxdmcp6:amd64.
-#8 13.26 Preparing to unpack .../015-libxdmcp6_1%3a1.1.3-0ubuntu5_amd64.deb ...
-#8 13.26 Unpacking libxdmcp6:amd64 (1:1.1.3-0ubuntu5) ...
-#8 13.28 Selecting previously unselected package libxcb1:amd64.
-#8 13.28 Preparing to unpack .../016-libxcb1_1.14-3ubuntu3_amd64.deb ...
-#8 13.28 Unpacking libxcb1:amd64 (1.14-3ubuntu3) ...
-#8 13.29 Selecting previously unselected package libx11-data.
-#8 13.29 Preparing to unpack .../017-libx11-data_2%3a1.7.5-1ubuntu0.3_all.deb ...
-#8 13.29 Unpacking libx11-data (2:1.7.5-1ubuntu0.3) ...
-#8 13.35 Selecting previously unselected package libx11-6:amd64.
-
-
-#8 13.35 Preparing to unpack .../018-libx11-6_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
-#8 13.35 Unpacking libx11-6:amd64 (2:1.7.5-1ubuntu0.3) ...
-#8 13.37 Selecting previously unselected package manpages.
-#8 13.37 Preparing to unpack .../019-manpages_5.10-1ubuntu1_all.deb ...
-#8 13.37 Unpacking manpages (5.10-1ubuntu1) ...
-#8 13.46 Selecting previously unselected package xz-utils.
-#8 13.46 Preparing to unpack .../020-xz-utils_5.2.5-2ubuntu1_amd64.deb ...
-#8 13.46 Unpacking xz-utils (5.2.5-2ubuntu1) ...
-#8 13.48 Selecting previously unselected package binutils-common:amd64.
-#8 13.48 Preparing to unpack .../021-binutils-common_2.38-4ubuntu2.6_amd64.deb ...
-#8 13.48 Unpacking binutils-common:amd64 (2.38-4ubuntu2.6) ...
-#8 13.50 Selecting previously unselected package libbinutils:amd64.
-#8 13.50 Preparing to unpack .../022-libbinutils_2.38-4ubuntu2.6_amd64.deb ...
-#8 13.50 Unpacking libbinutils:amd64 (2.38-4ubuntu2.6) ...
-#8 13.53 Selecting previously unselected package libctf-nobfd0:amd64.
-#8 13.53 Preparing to unpack .../023-libctf-nobfd0_2.38-4ubuntu2.6_amd64.deb ...
-#8 13.53 Unpacking libctf-nobfd0:amd64 (2.38-4ubuntu2.6) ...
-#8 13.54 Selecting previously unselected package libctf0:amd64.
-#8 13.54 Preparing to unpack .../024-libctf0_2.38-4ubuntu2.6_amd64.deb ...
-#8 13.54 Unpacking libctf0:amd64 (2.38-4ubuntu2.6) ...
-#8 13.56 Selecting previously unselected package binutils-x86-64-linux-gnu.
-
-
-#8 13.56 Preparing to unpack .../025-binutils-x86-64-linux-gnu_2.38-4ubuntu2.6_amd64.deb ...
-#8 13.56 Unpacking binutils-x86-64-linux-gnu (2.38-4ubuntu2.6) ...
-#8 13.64 Selecting previously unselected package binutils.
-#8 13.64 Preparing to unpack .../026-binutils_2.38-4ubuntu2.6_amd64.deb ...
-#8 13.64 Unpacking binutils (2.38-4ubuntu2.6) ...
-#8 13.66 Selecting previously unselected package libc-dev-bin.
-#8 13.66 Preparing to unpack .../027-libc-dev-bin_2.35-0ubuntu3.6_amd64.deb ...
-#8 13.66 Unpacking libc-dev-bin (2.35-0ubuntu3.6) ...
-#8 13.67 Selecting previously unselected package linux-libc-dev:amd64.
-#8 13.67 Preparing to unpack .../028-linux-libc-dev_5.15.0-100.110_amd64.deb ...
-#8 13.68 Unpacking linux-libc-dev:amd64 (5.15.0-100.110) ...
-#8 13.86 Selecting previously unselected package libcrypt-dev:amd64.
-
-
-#8 13.86 Preparing to unpack .../029-libcrypt-dev_1%3a4.4.27-1_amd64.deb ...
-#8 13.86 Unpacking libcrypt-dev:amd64 (1:4.4.27-1) ...
-#8 13.88 Selecting previously unselected package rpcsvc-proto.
-#8 13.88 Preparing to unpack .../030-rpcsvc-proto_1.4.2-0ubuntu6_amd64.deb ...
-#8 13.88 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
-#8 13.90 Selecting previously unselected package libtirpc-dev:amd64.
-#8 13.90 Preparing to unpack .../031-libtirpc-dev_1.3.2-2ubuntu0.1_amd64.deb ...
-#8 13.91 Unpacking libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
-#8 13.93 Selecting previously unselected package libnsl-dev:amd64.
-#8 13.93 Preparing to unpack .../032-libnsl-dev_1.3.0-2build2_amd64.deb ...
-#8 13.93 Unpacking libnsl-dev:amd64 (1.3.0-2build2) ...
-#8 13.95 Selecting previously unselected package libc6-dev:amd64.
-#8 13.95 Preparing to unpack .../033-libc6-dev_2.35-0ubuntu3.6_amd64.deb ...
-#8 13.95 Unpacking libc6-dev:amd64 (2.35-0ubuntu3.6) ...
-#8 14.09 Selecting previously unselected package gcc-11-base:amd64.
-#8 14.09 Preparing to unpack .../034-gcc-11-base_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.09 Unpacking gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 14.11 Selecting previously unselected package libisl23:amd64.
-#8 14.11 Preparing to unpack .../035-libisl23_0.24-2build1_amd64.deb ...
-#8 14.11 Unpacking libisl23:amd64 (0.24-2build1) ...
-#8 14.14 Selecting previously unselected package libmpfr6:amd64.
-#8 14.14 Preparing to unpack .../036-libmpfr6_4.1.0-3build3_amd64.deb ...
-#8 14.14 Unpacking libmpfr6:amd64 (4.1.0-3build3) ...
-#8 14.17 Selecting previously unselected package libmpc3:amd64.
-#8 14.17 Preparing to unpack .../037-libmpc3_1.2.1-2build1_amd64.deb ...
-#8 14.17 Unpacking libmpc3:amd64 (1.2.1-2build1) ...
-#8 14.19 Selecting previously unselected package cpp-11.
-
-
-#8 14.19 Preparing to unpack .../038-cpp-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.19 Unpacking cpp-11 (11.4.0-1ubuntu1~22.04) ...
-#8 14.30 Selecting previously unselected package cpp.
-#8 14.30 Preparing to unpack .../039-cpp_4%3a11.2.0-1ubuntu1_amd64.deb ...
-#8 14.30 Unpacking cpp (4:11.2.0-1ubuntu1) ...
-#8 14.32 Selecting previously unselected package libcc1-0:amd64.
-#8 14.32 Preparing to unpack .../040-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.32 Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.34 Selecting previously unselected package libgomp1:amd64.
-#8 14.34 Preparing to unpack .../041-libgomp1_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.34 Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.36 Selecting previously unselected package libitm1:amd64.
-#8 14.36 Preparing to unpack .../042-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.36 Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.37 Selecting previously unselected package libatomic1:amd64.
-#8 14.38 Preparing to unpack .../043-libatomic1_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.38 Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.39 Selecting previously unselected package libasan6:amd64.
-#8 14.40 Preparing to unpack .../044-libasan6_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.40 Unpacking libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 14.44 Selecting previously unselected package liblsan0:amd64.
-
-
-#8 14.44 Preparing to unpack .../045-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.44 Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.47 Selecting previously unselected package libtsan0:amd64.
-#8 14.47 Preparing to unpack .../046-libtsan0_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.47 Unpacking libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 14.52 Selecting previously unselected package libubsan1:amd64.
-#8 14.52 Preparing to unpack .../047-libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.52 Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.55 Selecting previously unselected package libquadmath0:amd64.
-#8 14.55 Preparing to unpack .../048-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.55 Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 14.57 Selecting previously unselected package libgcc-11-dev:amd64.
-#8 14.57 Preparing to unpack .../049-libgcc-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.57 Unpacking libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 14.65 Selecting previously unselected package gcc-11.
-
-
-#8 14.66 Preparing to unpack .../050-gcc-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.66 Unpacking gcc-11 (11.4.0-1ubuntu1~22.04) ...
-#8 14.88 Selecting previously unselected package gcc.
-
-
-#8 14.88 Preparing to unpack .../051-gcc_4%3a11.2.0-1ubuntu1_amd64.deb ...
-#8 14.88 Unpacking gcc (4:11.2.0-1ubuntu1) ...
-#8 14.90 Selecting previously unselected package libstdc++-11-dev:amd64.
-#8 14.90 Preparing to unpack .../052-libstdc++-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 14.90 Unpacking libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 15.09 Selecting previously unselected package g++-11.
-#8 15.09 Preparing to unpack .../053-g++-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
-#8 15.09 Unpacking g++-11 (11.4.0-1ubuntu1~22.04) ...
-#8 15.22 Selecting previously unselected package g++.
-
-
-#8 15.22 Preparing to unpack .../054-g++_4%3a11.2.0-1ubuntu1_amd64.deb ...
-#8 15.22 Unpacking g++ (4:11.2.0-1ubuntu1) ...
-#8 15.23 Selecting previously unselected package make.
-#8 15.23 Preparing to unpack .../055-make_4.3-4.1build1_amd64.deb ...
-#8 15.23 Unpacking make (4.3-4.1build1) ...
-#8 15.25 Selecting previously unselected package libdpkg-perl.
-#8 15.25 Preparing to unpack .../056-libdpkg-perl_1.21.1ubuntu2.3_all.deb ...
-#8 15.25 Unpacking libdpkg-perl (1.21.1ubuntu2.3) ...
-#8 15.28 Selecting previously unselected package bzip2.
-#8 15.28 Preparing to unpack .../057-bzip2_1.0.8-5build1_amd64.deb ...
-#8 15.28 Unpacking bzip2 (1.0.8-5build1) ...
-#8 15.30 Selecting previously unselected package patch.
-#8 15.30 Preparing to unpack .../058-patch_2.7.6-7build2_amd64.deb ...
-#8 15.30 Unpacking patch (2.7.6-7build2) ...
-#8 15.31 Selecting previously unselected package lto-disabled-list.
-#8 15.31 Preparing to unpack .../059-lto-disabled-list_24_all.deb ...
-#8 15.32 Unpacking lto-disabled-list (24) ...
-#8 15.33 Selecting previously unselected package dpkg-dev.
-#8 15.33 Preparing to unpack .../060-dpkg-dev_1.21.1ubuntu2.3_all.deb ...
-#8 15.33 Unpacking dpkg-dev (1.21.1ubuntu2.3) ...
-#8 15.36 Selecting previously unselected package build-essential.
-#8 15.37 Preparing to unpack .../061-build-essential_12.9ubuntu3_amd64.deb ...
-#8 15.37 Unpacking build-essential (12.9ubuntu3) ...
-#8 15.38 Selecting previously unselected package libassuan0:amd64.
-#8 15.38 Preparing to unpack .../062-libassuan0_2.5.5-1build1_amd64.deb ...
-#8 15.38 Unpacking libassuan0:amd64 (2.5.5-1build1) ...
-#8 15.40 Selecting previously unselected package gpgconf.
-#8 15.40 Preparing to unpack .../063-gpgconf_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.40 Unpacking gpgconf (2.2.27-3ubuntu2.1) ...
-#8 15.42 Selecting previously unselected package libksba8:amd64.
-#8 15.42 Preparing to unpack .../064-libksba8_1.6.0-2ubuntu0.2_amd64.deb ...
-#8 15.42 Unpacking libksba8:amd64 (1.6.0-2ubuntu0.2) ...
-#8 15.44 Selecting previously unselected package libsasl2-modules-db:amd64.
-
-
-#8 15.44 Preparing to unpack .../065-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
-#8 15.44 Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
-#8 15.45 Selecting previously unselected package libsasl2-2:amd64.
-#8 15.46 Preparing to unpack .../066-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
-#8 15.46 Unpacking libsasl2-2:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
-#8 15.47 Selecting previously unselected package libldap-2.5-0:amd64.
-#8 15.47 Preparing to unpack .../067-libldap-2.5-0_2.5.17+dfsg-0ubuntu0.22.04.1_amd64.deb ...
-#8 15.48 Unpacking libldap-2.5-0:amd64 (2.5.17+dfsg-0ubuntu0.22.04.1) ...
-#8 15.50 Selecting previously unselected package libnpth0:amd64.
-#8 15.50 Preparing to unpack .../068-libnpth0_1.6-3build2_amd64.deb ...
-#8 15.50 Unpacking libnpth0:amd64 (1.6-3build2) ...
-#8 15.52 Selecting previously unselected package dirmngr.
-#8 15.52 Preparing to unpack .../069-dirmngr_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.53 Unpacking dirmngr (2.2.27-3ubuntu2.1) ...
-#8 15.55 Selecting previously unselected package libfakeroot:amd64.
-#8 15.55 Preparing to unpack .../070-libfakeroot_1.28-1ubuntu1_amd64.deb ...
-#8 15.55 Unpacking libfakeroot:amd64 (1.28-1ubuntu1) ...
-#8 15.57 Selecting previously unselected package fakeroot.
-#8 15.57 Preparing to unpack .../071-fakeroot_1.28-1ubuntu1_amd64.deb ...
-#8 15.57 Unpacking fakeroot (1.28-1ubuntu1) ...
-#8 15.59 Selecting previously unselected package fonts-dejavu-core.
-#8 15.59 Preparing to unpack .../072-fonts-dejavu-core_2.37-2build1_all.deb ...
-#8 15.59 Unpacking fonts-dejavu-core (2.37-2build1) ...
-#8 15.67 Selecting previously unselected package fontconfig-config.
-
-
-#8 15.67 Preparing to unpack .../073-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
-#8 15.68 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
-#8 15.70 Selecting previously unselected package gnupg-l10n.
-#8 15.70 Preparing to unpack .../074-gnupg-l10n_2.2.27-3ubuntu2.1_all.deb ...
-#8 15.70 Unpacking gnupg-l10n (2.2.27-3ubuntu2.1) ...
-#8 15.72 Selecting previously unselected package gnupg-utils.
-#8 15.72 Preparing to unpack .../075-gnupg-utils_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.72 Unpacking gnupg-utils (2.2.27-3ubuntu2.1) ...
-#8 15.74 Selecting previously unselected package gpg.
-#8 15.74 Preparing to unpack .../076-gpg_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.74 Unpacking gpg (2.2.27-3ubuntu2.1) ...
-#8 15.76 Selecting previously unselected package pinentry-curses.
-#8 15.76 Preparing to unpack .../077-pinentry-curses_1.1.1-1build2_amd64.deb ...
-#8 15.76 Unpacking pinentry-curses (1.1.1-1build2) ...
-#8 15.78 Selecting previously unselected package gpg-agent.
-#8 15.78 Preparing to unpack .../078-gpg-agent_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.78 Unpacking gpg-agent (2.2.27-3ubuntu2.1) ...
-#8 15.81 Selecting previously unselected package gpg-wks-client.
-#8 15.81 Preparing to unpack .../079-gpg-wks-client_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.81 Unpacking gpg-wks-client (2.2.27-3ubuntu2.1) ...
-#8 15.82 Selecting previously unselected package gpg-wks-server.
-#8 15.83 Preparing to unpack .../080-gpg-wks-server_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.83 Unpacking gpg-wks-server (2.2.27-3ubuntu2.1) ...
-#8 15.84 Selecting previously unselected package gpgsm.
-#8 15.84 Preparing to unpack .../081-gpgsm_2.2.27-3ubuntu2.1_amd64.deb ...
-#8 15.85 Unpacking gpgsm (2.2.27-3ubuntu2.1) ...
-#8 15.86 Selecting previously unselected package gnupg.
-#8 15.86 Preparing to unpack .../082-gnupg_2.2.27-3ubuntu2.1_all.deb ...
-#8 15.87 Unpacking gnupg (2.2.27-3ubuntu2.1) ...
-#8 15.89 Selecting previously unselected package javascript-common.
-
-
-#8 15.89 Preparing to unpack .../083-javascript-common_11+nmu1_all.deb ...
-#8 15.90 Unpacking javascript-common (11+nmu1) ...
-#8 15.93 Selecting previously unselected package libalgorithm-diff-perl.
-#8 15.93 Preparing to unpack .../084-libalgorithm-diff-perl_1.201-1_all.deb ...
-#8 15.93 Unpacking libalgorithm-diff-perl (1.201-1) ...
-#8 15.95 Selecting previously unselected package libalgorithm-diff-xs-perl.
-#8 15.95 Preparing to unpack .../085-libalgorithm-diff-xs-perl_0.04-6build3_amd64.deb ...
-#8 15.95 Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
-#8 15.97 Selecting previously unselected package libalgorithm-merge-perl.
-#8 15.97 Preparing to unpack .../086-libalgorithm-merge-perl_0.08-3_all.deb ...
-#8 15.98 Unpacking libalgorithm-merge-perl (0.08-3) ...
-#8 15.99 Selecting previously unselected package libbrotli1:amd64.
-#8 15.99 Preparing to unpack .../087-libbrotli1_1.0.9-2build6_amd64.deb ...
-#8 15.99 Unpacking libbrotli1:amd64 (1.0.9-2build6) ...
-#8 16.02 Selecting previously unselected package libfreetype6:amd64.
-#8 16.02 Preparing to unpack .../088-libfreetype6_2.11.1+dfsg-1ubuntu0.2_amd64.deb ...
-#8 16.02 Unpacking libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
-#8 16.04 Selecting previously unselected package libfontconfig1:amd64.
-#8 16.04 Preparing to unpack .../089-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ...
-#8 16.05 Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
-#8 16.06 Selecting previously unselected package libjpeg-turbo8:amd64.
-#8 16.06 Preparing to unpack .../090-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ...
-#8 16.07 Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
-#8 16.08 Selecting previously unselected package libjpeg8:amd64.
-#8 16.08 Preparing to unpack .../091-libjpeg8_8c-2ubuntu10_amd64.deb ...
-#8 16.08 Unpacking libjpeg8:amd64 (8c-2ubuntu10) ...
-#8 16.10 Selecting previously unselected package libdeflate0:amd64.
-
-
-#8 16.10 Preparing to unpack .../092-libdeflate0_1.10-2_amd64.deb ...
-#8 16.10 Unpacking libdeflate0:amd64 (1.10-2) ...
-#8 16.12 Selecting previously unselected package libjbig0:amd64.
-#8 16.13 Preparing to unpack .../093-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ...
-#8 16.13 Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
-#8 16.14 Selecting previously unselected package libwebp7:amd64.
-#8 16.15 Preparing to unpack .../094-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ...
-#8 16.15 Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
-#8 16.17 Selecting previously unselected package libtiff5:amd64.
-#8 16.17 Preparing to unpack .../095-libtiff5_4.3.0-6ubuntu0.8_amd64.deb ...
-#8 16.17 Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.8) ...
-#8 16.19 Selecting previously unselected package libxpm4:amd64.
-#8 16.20 Preparing to unpack .../096-libxpm4_1%3a3.5.12-1ubuntu0.22.04.2_amd64.deb ...
-#8 16.20 Unpacking libxpm4:amd64 (1:3.5.12-1ubuntu0.22.04.2) ...
-#8 16.22 Selecting previously unselected package libgd3:amd64.
-#8 16.22 Preparing to unpack .../097-libgd3_2.3.0-2ubuntu2_amd64.deb ...
-#8 16.22 Unpacking libgd3:amd64 (2.3.0-2ubuntu2) ...
-#8 16.24 Selecting previously unselected package libc-devtools.
-#8 16.24 Preparing to unpack .../098-libc-devtools_2.35-0ubuntu3.6_amd64.deb ...
-#8 16.24 Unpacking libc-devtools (2.35-0ubuntu3.6) ...
-#8 16.26 Selecting previously unselected package libexpat1-dev:amd64.
-#8 16.26 Preparing to unpack .../099-libexpat1-dev_2.4.7-1ubuntu0.3_amd64.deb ...
-#8 16.26 Unpacking libexpat1-dev:amd64 (2.4.7-1ubuntu0.3) ...
-#8 16.29 Selecting previously unselected package libfile-fcntllock-perl.
-#8 16.29 Preparing to unpack .../100-libfile-fcntllock-perl_0.22-3build7_amd64.deb ...
-#8 16.29 Unpacking libfile-fcntllock-perl (0.22-3build7) ...
-#8 16.32 Selecting previously unselected package libjs-jquery.
-#8 16.32 Preparing to unpack .../101-libjs-jquery_3.6.0+dfsg+~3.5.13-1_all.deb ...
-#8 16.32 Unpacking libjs-jquery (3.6.0+dfsg+~3.5.13-1) ...
-
-
-#8 16.34 Selecting previously unselected package libjs-underscore.
-#8 16.34 Preparing to unpack .../102-libjs-underscore_1.13.2~dfsg-2_all.deb ...
-#8 16.34 Unpacking libjs-underscore (1.13.2~dfsg-2) ...
-#8 16.37 Selecting previously unselected package libjs-sphinxdoc.
-#8 16.37 Preparing to unpack .../103-libjs-sphinxdoc_4.3.2-1_all.deb ...
-#8 16.37 Unpacking libjs-sphinxdoc (4.3.2-1) ...
-#8 16.39 Selecting previously unselected package libldap-common.
-#8 16.39 Preparing to unpack .../104-libldap-common_2.5.17+dfsg-0ubuntu0.22.04.1_all.deb ...
-#8 16.39 Unpacking libldap-common (2.5.17+dfsg-0ubuntu0.22.04.1) ...
-#8 16.41 Selecting previously unselected package libpython3.10:amd64.
-#8 16.41 Preparing to unpack .../105-libpython3.10_3.10.12-1~22.04.3_amd64.deb ...
-#8 16.41 Unpacking libpython3.10:amd64 (3.10.12-1~22.04.3) ...
-#8 16.45 Selecting previously unselected package zlib1g-dev:amd64.
-#8 16.45 Preparing to unpack .../106-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu9.2_amd64.deb ...
-#8 16.45 Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
-#8 16.47 Selecting previously unselected package libpython3.10-dev:amd64.
-#8 16.47 Preparing to unpack .../107-libpython3.10-dev_3.10.12-1~22.04.3_amd64.deb ...
-#8 16.47 Unpacking libpython3.10-dev:amd64 (3.10.12-1~22.04.3) ...
-#8 16.58 Selecting previously unselected package libpython3-dev:amd64.
-
-
-#8 16.59 Preparing to unpack .../108-libpython3-dev_3.10.6-1~22.04_amd64.deb ...
-#8 16.59 Unpacking libpython3-dev:amd64 (3.10.6-1~22.04) ...
-#8 16.61 Selecting previously unselected package libsasl2-modules:amd64.
-#8 16.62 Preparing to unpack .../109-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
-#8 16.62 Unpacking libsasl2-modules:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
-#8 16.64 Selecting previously unselected package manpages-dev.
-#8 16.64 Preparing to unpack .../110-manpages-dev_5.10-1ubuntu1_all.deb ...
-#8 16.64 Unpacking manpages-dev (5.10-1ubuntu1) ...
-#8 16.84 Selecting previously unselected package python3.10-dev.
-#8 16.84 Preparing to unpack .../111-python3.10-dev_3.10.12-1~22.04.3_amd64.deb ...
-#8 16.85 Unpacking python3.10-dev (3.10.12-1~22.04.3) ...
-#8 16.86 Selecting previously unselected package python3-lib2to3.
-#8 16.87 Preparing to unpack .../112-python3-lib2to3_3.10.8-1~22.04_all.deb ...
-#8 16.87 Unpacking python3-lib2to3 (3.10.8-1~22.04) ...
-#8 16.90 Selecting previously unselected package python3-distutils.
-#8 16.91 Preparing to unpack .../113-python3-distutils_3.10.8-1~22.04_all.deb ...
-#8 16.91 Unpacking python3-distutils (3.10.8-1~22.04) ...
-#8 16.94 Selecting previously unselected package python3-dev.
-#8 16.94 Preparing to unpack .../114-python3-dev_3.10.6-1~22.04_amd64.deb ...
-#8 16.94 Unpacking python3-dev (3.10.6-1~22.04) ...
-#8 16.96 Selecting previously unselected package python3-setuptools.
-
-
-#8 16.96 Preparing to unpack .../115-python3-setuptools_59.6.0-1.2ubuntu0.22.04.1_all.deb ...
-#8 16.96 Unpacking python3-setuptools (59.6.0-1.2ubuntu0.22.04.1) ...
-#8 17.00 Selecting previously unselected package python3-wheel.
-#8 17.01 Preparing to unpack .../116-python3-wheel_0.37.1-2ubuntu0.22.04.1_all.deb ...
-#8 17.01 Unpacking python3-wheel (0.37.1-2ubuntu0.22.04.1) ...
-#8 17.03 Selecting previously unselected package python3-pip.
-#8 17.03 Preparing to unpack .../117-python3-pip_22.0.2+dfsg-1ubuntu0.4_all.deb ...
-#8 17.03 Unpacking python3-pip (22.0.2+dfsg-1ubuntu0.4) ...
-#8 17.17 Setting up libksba8:amd64 (1.6.0-2ubuntu0.2) ...
-#8 17.17 Setting up media-types (7.0.0) ...
-#8 17.18 Setting up javascript-common (11+nmu1) ...
-#8 17.21 Setting up gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 17.21 Setting up libxau6:amd64 (1:1.0.9-1build5) ...
-#8 17.22 Setting up lto-disabled-list (24) ...
-#8 17.22 Setting up manpages (5.10-1ubuntu1) ...
-#8 17.23 Setting up libbrotli1:amd64 (1.0.9-2build6) ...
-#8 17.23 Setting up libsqlite3-0:amd64 (3.37.2-2ubuntu0.3) ...
-#8 17.24 Setting up libsasl2-modules:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
-#8 17.24 Setting up binutils-common:amd64 (2.38-4ubuntu2.6) ...
-#8 17.25 Setting up libdeflate0:amd64 (1.10-2) ...
-#8 17.25 Setting up linux-libc-dev:amd64 (5.15.0-100.110) ...
-#8 17.26 Setting up libctf-nobfd0:amd64 (2.38-4ubuntu2.6) ...
-#8 17.26 Setting up libnpth0:amd64 (1.6-3build2) ...
-#8 17.26 Setting up libassuan0:amd64 (2.5.5-1build1) ...
-#8 17.27 Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.27 Setting up perl-modules-5.34 (5.34.0-3ubuntu1.3) ...
-
-
-#8 17.28 Setting up bzip2 (1.0.8-5build1) ...
-#8 17.28 Setting up libldap-common (2.5.17+dfsg-0ubuntu0.22.04.1) ...
-#8 17.29 Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
-#8 17.29 Setting up libfakeroot:amd64 (1.28-1ubuntu1) ...
-#8 17.30 Setting up libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 17.30 Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
-#8 17.31 Setting up fakeroot (1.28-1ubuntu1) ...
-#8 17.32 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
-#8 17.32 Setting up libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
-#8 17.33 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
-#8 17.33 Setting up libx11-data (2:1.7.5-1ubuntu0.3) ...
-#8 17.33 Setting up make (4.3-4.1build1) ...
-#8 17.34 Setting up libmpfr6:amd64 (4.1.0-3build3) ...
-#8 17.35 Setting up gnupg-l10n (2.2.27-3ubuntu2.1) ...
-#8 17.35 Setting up xz-utils (5.2.5-2ubuntu1) ...
-#8 17.36 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
-#8 17.36 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
-#8 17.36 Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.37 Setting up libpng16-16:amd64 (1.6.37-3build5) ...
-#8 17.37 Setting up libmpc3:amd64 (1.2.1-2build1) ...
-#8 17.38 Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.38 Setting up patch (2.7.6-7build2) ...
-#8 17.39 Setting up fonts-dejavu-core (2.37-2build1) ...
-#8 17.41 Setting up ucf (3.0043) ...
-#8 17.52 debconf: unable to initialize frontend: Dialog
-#8 17.52 debconf: (TERM is not set, so the dialog frontend is not usable.)
-#8 17.52 debconf: falling back to frontend: Readline
-
-
-#8 17.54 Setting up libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
-#8 17.55 Setting up libsasl2-2:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
-#8 17.55 Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
-#8 17.55 Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.56 Setting up libmd0:amd64 (1.0.4-1build1) ...
-#8 17.56 Setting up libnsl-dev:amd64 (1.3.0-2build2) ...
-#8 17.57 Setting up libcrypt-dev:amd64 (1:4.4.27-1) ...
-#8 17.57 Setting up libmpdec3:amd64 (2.5.1-2build2) ...
-#8 17.57 Setting up netbase (6.3) ...
-#8 17.58 Setting up libjs-jquery (3.6.0+dfsg+~3.5.13-1) ...
-#8 17.59 Setting up libbinutils:amd64 (2.38-4ubuntu2.6) ...
-#8 17.59 Setting up libisl23:amd64 (0.24-2build1) ...
-#8 17.60 Setting up libc-dev-bin (2.35-0ubuntu3.6) ...
-#8 17.60 Setting up openssl (3.0.2-0ubuntu1.15) ...
-#8 17.61 Setting up libbsd0:amd64 (0.11.5-1) ...
-#8 17.61 Setting up readline-common (8.1.2-1) ...
-#8 17.62 Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.62 Setting up liblocale-gettext-perl (1.07-4build3) ...
-#8 17.63 Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.63 Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
-#8 17.64 Setting up libgdbm6:amd64 (1.23-1) ...
-#8 17.64 Setting up libjs-underscore (1.13.2~dfsg-2) ...
-#8 17.65 Setting up libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 17.65 Setting up libctf0:amd64 (2.38-4ubuntu2.6) ...
-#8 17.65 Setting up libjpeg8:amd64 (8c-2ubuntu10) ...
-#8 17.66 Setting up pinentry-curses (1.1.1-1build2) ...
-#8 17.67 Setting up cpp-11 (11.4.0-1ubuntu1~22.04) ...
-#8 17.67 Setting up manpages-dev (5.10-1ubuntu1) ...
-#8 17.67 Setting up libxdmcp6:amd64 (1:1.1.3-0ubuntu5) ...
-#8 17.68 Setting up libxcb1:amd64 (1.14-3ubuntu3) ...
-#8 17.68 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
-#8 17.76 Setting up libreadline8:amd64 (8.1.2-1) ...
-
-
-#8 17.76 Setting up libldap-2.5-0:amd64 (2.5.17+dfsg-0ubuntu0.22.04.1) ...
-#8 17.76 Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.3) ...
-#8 17.77 Setting up ca-certificates (20230311ubuntu0.22.04.1) ...
-#8 17.85 debconf: unable to initialize frontend: Dialog
-#8 17.85 debconf: (TERM is not set, so the dialog frontend is not usable.)
-#8 17.85 debconf: falling back to frontend: Readline
-
-
-#8 18.25 Updating certificates in /etc/ssl/certs...
-
-
-#8 18.83 137 added, 0 removed; done.
-
-
-#8 18.84 Setting up libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
-#8 18.84 Setting up libgdbm-compat4:amd64 (1.23-1) ...
-#8 18.85 Setting up libjs-sphinxdoc (4.3.2-1) ...
-#8 18.85 Setting up libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 18.85 Setting up cpp (4:11.2.0-1ubuntu1) ...
-#8 18.86 Setting up gpgconf (2.2.27-3ubuntu2.1) ...
-#8 18.86 Setting up libc6-dev:amd64 (2.35-0ubuntu3.6) ...
-#8 18.86 Setting up libx11-6:amd64 (2:1.7.5-1ubuntu0.3) ...
-#8 18.87 Setting up libtiff5:amd64 (4.3.0-6ubuntu0.8) ...
-#8 18.87 Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
-#8 18.87 Setting up gpg (2.2.27-3ubuntu2.1) ...
-#8 18.88 Setting up libpython3-stdlib:amd64 (3.10.6-1~22.04) ...
-#8 18.88 Setting up gnupg-utils (2.2.27-3ubuntu2.1) ...
-#8 18.88 Setting up binutils-x86-64-linux-gnu (2.38-4ubuntu2.6) ...
-#8 18.88 Setting up libpython3.10:amd64 (3.10.12-1~22.04.3) ...
-#8 18.89 Setting up libperl5.34:amd64 (5.34.0-3ubuntu1.3) ...
-#8 18.89 Setting up gpg-agent (2.2.27-3ubuntu2.1) ...
-
-
-#8 19.30 Setting up python3.10 (3.10.12-1~22.04.3) ...
-
-
-#8 19.82 Setting up libxpm4:amd64 (1:3.5.12-1ubuntu0.22.04.2) ...
-
-
-#8 19.83 Setting up gpgsm (2.2.27-3ubuntu2.1) ...
-#8 19.83 Setting up python3 (3.10.6-1~22.04) ...
-#8 19.84 running python rtupdate hooks for python3.10...
-#8 19.84 running python post-rtupdate hooks for python3.10...
-#8 19.91 Setting up binutils (2.38-4ubuntu2.6) ...
-#8 19.91 Setting up dirmngr (2.2.27-3ubuntu2.1) ...
-#8 20.02 Setting up perl (5.34.0-3ubuntu1.3) ...
-#8 20.04 Setting up libexpat1-dev:amd64 (2.4.7-1ubuntu0.3) ...
-#8 20.04 Setting up libgd3:amd64 (2.3.0-2ubuntu2) ...
-#8 20.04 Setting up libdpkg-perl (1.21.1ubuntu2.3) ...
-#8 20.04 Setting up libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
-#8 20.05 Setting up gpg-wks-server (2.2.27-3ubuntu2.1) ...
-#8 20.05 Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
-#8 20.05 Setting up gcc-11 (11.4.0-1ubuntu1~22.04) ...
-#8 20.06 Setting up python3-lib2to3 (3.10.8-1~22.04) ...
-#8 20.14 Setting up libc-devtools (2.35-0ubuntu3.6) ...
-
-
-#8 20.14 Setting up python3-pkg-resources (59.6.0-1.2ubuntu0.22.04.1) ...
-#8 20.28 Setting up python3-distutils (3.10.8-1~22.04) ...
-
-
-#8 20.38 Setting up python3-setuptools (59.6.0-1.2ubuntu0.22.04.1) ...
-#8 20.65 Setting up gpg-wks-client (2.2.27-3ubuntu2.1) ...
-
-
-#8 20.66 Setting up g++-11 (11.4.0-1ubuntu1~22.04) ...
-#8 20.66 Setting up libfile-fcntllock-perl (0.22-3build7) ...
-#8 20.66 Setting up libalgorithm-diff-perl (1.201-1) ...
-#8 20.67 Setting up python3-wheel (0.37.1-2ubuntu0.22.04.1) ...
-#8 20.77 Setting up gcc (4:11.2.0-1ubuntu1) ...
-#8 20.79 Setting up dpkg-dev (1.21.1ubuntu2.3) ...
-#8 20.80 Setting up libpython3.10-dev:amd64 (3.10.12-1~22.04.3) ...
-#8 20.80 Setting up python3-pip (22.0.2+dfsg-1ubuntu0.4) ...
-
-
-#8 21.66 Setting up python3.10-dev (3.10.12-1~22.04.3) ...
-
-
-#8 21.67 Setting up g++ (4:11.2.0-1ubuntu1) ...
-#8 21.70 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
-#8 21.70 update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist
-#8 21.70 Setting up gnupg (2.2.27-3ubuntu2.1) ...
-#8 21.70 Setting up build-essential (12.9ubuntu3) ...
-#8 21.70 Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
-#8 21.71 Setting up libalgorithm-merge-perl (0.08-3) ...
-#8 21.71 Setting up libpython3-dev:amd64 (3.10.6-1~22.04) ...
-#8 21.71 Setting up python3-dev (3.10.6-1~22.04) ...
-#8 21.72 Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
-#8 22.01 Processing triggers for ca-certificates (20230311ubuntu0.22.04.1) ...
-
-
-#8 22.02 Updating certificates in /etc/ssl/certs...
+#8 6.766 Preparing to unpack .../000-python3_3.10.6-1~22.04_amd64.deb ...
+#8 6.771 Unpacking python3 (3.10.6-1~22.04) ...
+#8 6.785 Selecting previously unselected package perl-modules-5.34.
+#8 6.786 Preparing to unpack .../001-perl-modules-5.34_5.34.0-3ubuntu1.3_all.deb ...
+#8 6.787 Unpacking perl-modules-5.34 (5.34.0-3ubuntu1.3) ...
+#8 7.069 Selecting previously unselected package libgdbm6:amd64.
+
+
+#8 7.070 Preparing to unpack .../002-libgdbm6_1.23-1_amd64.deb ...
+#8 7.071 Unpacking libgdbm6:amd64 (1.23-1) ...
+#8 7.086 Selecting previously unselected package libgdbm-compat4:amd64.
+#8 7.087 Preparing to unpack .../003-libgdbm-compat4_1.23-1_amd64.deb ...
+#8 7.088 Unpacking libgdbm-compat4:amd64 (1.23-1) ...
+#8 7.104 Selecting previously unselected package libperl5.34:amd64.
+#8 7.105 Preparing to unpack .../004-libperl5.34_5.34.0-3ubuntu1.3_amd64.deb ...
+#8 7.106 Unpacking libperl5.34:amd64 (5.34.0-3ubuntu1.3) ...
+#8 7.276 Selecting previously unselected package perl.
+#8 7.278 Preparing to unpack .../005-perl_5.34.0-3ubuntu1.3_amd64.deb ...
+#8 7.284 Unpacking perl (5.34.0-3ubuntu1.3) ...
+#8 7.306 Selecting previously unselected package openssl.
+#8 7.307 Preparing to unpack .../006-openssl_3.0.2-0ubuntu1.15_amd64.deb ...
+#8 7.308 Unpacking openssl (3.0.2-0ubuntu1.15) ...
+#8 7.348 Selecting previously unselected package ca-certificates.
+#8 7.348 Preparing to unpack .../007-ca-certificates_20230311ubuntu0.22.04.1_all.deb ...
+#8 7.349 Unpacking ca-certificates (20230311ubuntu0.22.04.1) ...
+#8 7.390 Selecting previously unselected package libmd0:amd64.
+
+
+#8 7.390 Preparing to unpack .../008-libmd0_1.0.4-1build1_amd64.deb ...
+#8 7.392 Unpacking libmd0:amd64 (1.0.4-1build1) ...
+#8 7.406 Selecting previously unselected package libbsd0:amd64.
+#8 7.407 Preparing to unpack .../009-libbsd0_0.11.5-1_amd64.deb ...
+#8 7.408 Unpacking libbsd0:amd64 (0.11.5-1) ...
+#8 7.423 Selecting previously unselected package netbase.
+#8 7.423 Preparing to unpack .../010-netbase_6.3_all.deb ...
+#8 7.424 Unpacking netbase (6.3) ...
+#8 7.439 Selecting previously unselected package python3-pkg-resources.
+#8 7.440 Preparing to unpack .../011-python3-pkg-resources_59.6.0-1.2ubuntu0.22.04.1_all.deb ...
+#8 7.441 Unpacking python3-pkg-resources (59.6.0-1.2ubuntu0.22.04.1) ...
+#8 7.461 Selecting previously unselected package ucf.
+#8 7.462 Preparing to unpack .../012-ucf_3.0043_all.deb ...
+#8 7.464 Moving old data out of the way
+#8 7.466 Unpacking ucf (3.0043) ...
+#8 7.483 Selecting previously unselected package libpng16-16:amd64.
+#8 7.484 Preparing to unpack .../013-libpng16-16_1.6.37-3build5_amd64.deb ...
+#8 7.485 Unpacking libpng16-16:amd64 (1.6.37-3build5) ...
+#8 7.501 Selecting previously unselected package libxau6:amd64.
+#8 7.502 Preparing to unpack .../014-libxau6_1%3a1.0.9-1build5_amd64.deb ...
+#8 7.503 Unpacking libxau6:amd64 (1:1.0.9-1build5) ...
+#8 7.516 Selecting previously unselected package libxdmcp6:amd64.
+#8 7.517 Preparing to unpack .../015-libxdmcp6_1%3a1.1.3-0ubuntu5_amd64.deb ...
+#8 7.518 Unpacking libxdmcp6:amd64 (1:1.1.3-0ubuntu5) ...
+#8 7.531 Selecting previously unselected package libxcb1:amd64.
+#8 7.532 Preparing to unpack .../016-libxcb1_1.14-3ubuntu3_amd64.deb ...
+#8 7.533 Unpacking libxcb1:amd64 (1.14-3ubuntu3) ...
+#8 7.546 Selecting previously unselected package libx11-data.
+#8 7.547 Preparing to unpack .../017-libx11-data_2%3a1.7.5-1ubuntu0.3_all.deb ...
+#8 7.548 Unpacking libx11-data (2:1.7.5-1ubuntu0.3) ...
+#8 7.601 Selecting previously unselected package libx11-6:amd64.
+#8 7.602 Preparing to unpack .../018-libx11-6_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
+
+
+#8 7.603 Unpacking libx11-6:amd64 (2:1.7.5-1ubuntu0.3) ...
+#8 7.620 Selecting previously unselected package manpages.
+#8 7.621 Preparing to unpack .../019-manpages_5.10-1ubuntu1_all.deb ...
+#8 7.622 Unpacking manpages (5.10-1ubuntu1) ...
+#8 7.710 Selecting previously unselected package xz-utils.
+#8 7.711 Preparing to unpack .../020-xz-utils_5.2.5-2ubuntu1_amd64.deb ...
+#8 7.712 Unpacking xz-utils (5.2.5-2ubuntu1) ...
+#8 7.729 Selecting previously unselected package binutils-common:amd64.
+#8 7.729 Preparing to unpack .../021-binutils-common_2.38-4ubuntu2.6_amd64.deb ...
+#8 7.730 Unpacking binutils-common:amd64 (2.38-4ubuntu2.6) ...
+#8 7.747 Selecting previously unselected package libbinutils:amd64.
+#8 7.747 Preparing to unpack .../022-libbinutils_2.38-4ubuntu2.6_amd64.deb ...
+#8 7.748 Unpacking libbinutils:amd64 (2.38-4ubuntu2.6) ...
+#8 7.773 Selecting previously unselected package libctf-nobfd0:amd64.
+#8 7.774 Preparing to unpack .../023-libctf-nobfd0_2.38-4ubuntu2.6_amd64.deb ...
+#8 7.777 Unpacking libctf-nobfd0:amd64 (2.38-4ubuntu2.6) ...
+#8 7.792 Selecting previously unselected package libctf0:amd64.
+#8 7.793 Preparing to unpack .../024-libctf0_2.38-4ubuntu2.6_amd64.deb ...
+#8 7.794 Unpacking libctf0:amd64 (2.38-4ubuntu2.6) ...
+#8 7.807 Selecting previously unselected package binutils-x86-64-linux-gnu.
+#8 7.808 Preparing to unpack .../025-binutils-x86-64-linux-gnu_2.38-4ubuntu2.6_amd64.deb ...
+#8 7.808 Unpacking binutils-x86-64-linux-gnu (2.38-4ubuntu2.6) ...
+#8 7.885 Selecting previously unselected package binutils.
+
+
+#8 7.886 Preparing to unpack .../026-binutils_2.38-4ubuntu2.6_amd64.deb ...
+#8 7.887 Unpacking binutils (2.38-4ubuntu2.6) ...
+#8 7.902 Selecting previously unselected package libc-dev-bin.
+#8 7.903 Preparing to unpack .../027-libc-dev-bin_2.35-0ubuntu3.6_amd64.deb ...
+#8 7.904 Unpacking libc-dev-bin (2.35-0ubuntu3.6) ...
+#8 7.918 Selecting previously unselected package linux-libc-dev:amd64.
+#8 7.919 Preparing to unpack .../028-linux-libc-dev_5.15.0-100.110_amd64.deb ...
+#8 7.920 Unpacking linux-libc-dev:amd64 (5.15.0-100.110) ...
+#8 8.095 Selecting previously unselected package libcrypt-dev:amd64.
+
+
+#8 8.096 Preparing to unpack .../029-libcrypt-dev_1%3a4.4.27-1_amd64.deb ...
+#8 8.097 Unpacking libcrypt-dev:amd64 (1:4.4.27-1) ...
+#8 8.112 Selecting previously unselected package rpcsvc-proto.
+#8 8.113 Preparing to unpack .../030-rpcsvc-proto_1.4.2-0ubuntu6_amd64.deb ...
+#8 8.114 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
+#8 8.130 Selecting previously unselected package libtirpc-dev:amd64.
+#8 8.131 Preparing to unpack .../031-libtirpc-dev_1.3.2-2ubuntu0.1_amd64.deb ...
+#8 8.132 Unpacking libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
+#8 8.155 Selecting previously unselected package libnsl-dev:amd64.
+#8 8.156 Preparing to unpack .../032-libnsl-dev_1.3.0-2build2_amd64.deb ...
+#8 8.157 Unpacking libnsl-dev:amd64 (1.3.0-2build2) ...
+#8 8.173 Selecting previously unselected package libc6-dev:amd64.
+#8 8.174 Preparing to unpack .../033-libc6-dev_2.35-0ubuntu3.6_amd64.deb ...
+#8 8.175 Unpacking libc6-dev:amd64 (2.35-0ubuntu3.6) ...
+#8 8.306 Selecting previously unselected package gcc-11-base:amd64.
+#8 8.307 Preparing to unpack .../034-gcc-11-base_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.309 Unpacking gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 8.325 Selecting previously unselected package libisl23:amd64.
+#8 8.326 Preparing to unpack .../035-libisl23_0.24-2build1_amd64.deb ...
+#8 8.328 Unpacking libisl23:amd64 (0.24-2build1) ...
+#8 8.351 Selecting previously unselected package libmpfr6:amd64.
+#8 8.351 Preparing to unpack .../036-libmpfr6_4.1.0-3build3_amd64.deb ...
+#8 8.353 Unpacking libmpfr6:amd64 (4.1.0-3build3) ...
+#8 8.377 Selecting previously unselected package libmpc3:amd64.
+#8 8.378 Preparing to unpack .../037-libmpc3_1.2.1-2build1_amd64.deb ...
+#8 8.379 Unpacking libmpc3:amd64 (1.2.1-2build1) ...
+#8 8.391 Selecting previously unselected package cpp-11.
+#8 8.392 Preparing to unpack .../038-cpp-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.393 Unpacking cpp-11 (11.4.0-1ubuntu1~22.04) ...
+#8 8.505 Selecting previously unselected package cpp.
+
+
+#8 8.506 Preparing to unpack .../039-cpp_4%3a11.2.0-1ubuntu1_amd64.deb ...
+#8 8.507 Unpacking cpp (4:11.2.0-1ubuntu1) ...
+#8 8.522 Selecting previously unselected package libcc1-0:amd64.
+#8 8.524 Preparing to unpack .../040-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.525 Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 8.540 Selecting previously unselected package libgomp1:amd64.
+#8 8.541 Preparing to unpack .../041-libgomp1_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.542 Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 8.558 Selecting previously unselected package libitm1:amd64.
+#8 8.559 Preparing to unpack .../042-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.561 Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 8.576 Selecting previously unselected package libatomic1:amd64.
+#8 8.576 Preparing to unpack .../043-libatomic1_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.577 Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 8.592 Selecting previously unselected package libasan6:amd64.
+#8 8.592 Preparing to unpack .../044-libasan6_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.593 Unpacking libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 8.637 Selecting previously unselected package liblsan0:amd64.
+#8 8.639 Preparing to unpack .../045-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.640 Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 8.666 Selecting previously unselected package libtsan0:amd64.
+#8 8.667 Preparing to unpack .../046-libtsan0_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.669 Unpacking libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 8.707 Selecting previously unselected package libubsan1:amd64.
+#8 8.709 Preparing to unpack .../047-libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.710 Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 8.735 Selecting previously unselected package libquadmath0:amd64.
+#8 8.737 Preparing to unpack .../048-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.738 Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
+
+
+#8 8.752 Selecting previously unselected package libgcc-11-dev:amd64.
+#8 8.753 Preparing to unpack .../049-libgcc-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.754 Unpacking libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 8.831 Selecting previously unselected package gcc-11.
+#8 8.833 Preparing to unpack .../050-gcc-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 8.834 Unpacking gcc-11 (11.4.0-1ubuntu1~22.04) ...
+#8 9.052 Selecting previously unselected package gcc.
+
+
+#8 9.054 Preparing to unpack .../051-gcc_4%3a11.2.0-1ubuntu1_amd64.deb ...
+#8 9.055 Unpacking gcc (4:11.2.0-1ubuntu1) ...
+#8 9.071 Selecting previously unselected package libstdc++-11-dev:amd64.
+#8 9.071 Preparing to unpack .../052-libstdc++-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 9.073 Unpacking libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 9.272 Selecting previously unselected package g++-11.
+#8 9.273 Preparing to unpack .../053-g++-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
+#8 9.275 Unpacking g++-11 (11.4.0-1ubuntu1~22.04) ...
+#8 9.398 Selecting previously unselected package g++.
+
+
+#8 9.399 Preparing to unpack .../054-g++_4%3a11.2.0-1ubuntu1_amd64.deb ...
+#8 9.401 Unpacking g++ (4:11.2.0-1ubuntu1) ...
+#8 9.413 Selecting previously unselected package make.
+#8 9.414 Preparing to unpack .../055-make_4.3-4.1build1_amd64.deb ...
+#8 9.416 Unpacking make (4.3-4.1build1) ...
+#8 9.431 Selecting previously unselected package libdpkg-perl.
+#8 9.432 Preparing to unpack .../056-libdpkg-perl_1.21.1ubuntu2.3_all.deb ...
+#8 9.433 Unpacking libdpkg-perl (1.21.1ubuntu2.3) ...
+#8 9.462 Selecting previously unselected package bzip2.
+#8 9.463 Preparing to unpack .../057-bzip2_1.0.8-5build1_amd64.deb ...
+#8 9.464 Unpacking bzip2 (1.0.8-5build1) ...
+#8 9.479 Selecting previously unselected package patch.
+#8 9.480 Preparing to unpack .../058-patch_2.7.6-7build2_amd64.deb ...
+#8 9.481 Unpacking patch (2.7.6-7build2) ...
+#8 9.495 Selecting previously unselected package lto-disabled-list.
+#8 9.496 Preparing to unpack .../059-lto-disabled-list_24_all.deb ...
+#8 9.497 Unpacking lto-disabled-list (24) ...
+#8 9.511 Selecting previously unselected package dpkg-dev.
+#8 9.512 Preparing to unpack .../060-dpkg-dev_1.21.1ubuntu2.3_all.deb ...
+#8 9.513 Unpacking dpkg-dev (1.21.1ubuntu2.3) ...
+#8 9.553 Selecting previously unselected package build-essential.
+#8 9.554 Preparing to unpack .../061-build-essential_12.9ubuntu3_amd64.deb ...
+#8 9.555 Unpacking build-essential (12.9ubuntu3) ...
+#8 9.570 Selecting previously unselected package libassuan0:amd64.
+#8 9.571 Preparing to unpack .../062-libassuan0_2.5.5-1build1_amd64.deb ...
+#8 9.572 Unpacking libassuan0:amd64 (2.5.5-1build1) ...
+#8 9.585 Selecting previously unselected package gpgconf.
+#8 9.586 Preparing to unpack .../063-gpgconf_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.587 Unpacking gpgconf (2.2.27-3ubuntu2.1) ...
+#8 9.603 Selecting previously unselected package libksba8:amd64.
+#8 9.604 Preparing to unpack .../064-libksba8_1.6.0-2ubuntu0.2_amd64.deb ...
+#8 9.606 Unpacking libksba8:amd64 (1.6.0-2ubuntu0.2) ...
+#8 9.620 Selecting previously unselected package libsasl2-modules-db:amd64.
+
+
+#8 9.621 Preparing to unpack .../065-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
+#8 9.622 Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
+#8 9.639 Selecting previously unselected package libsasl2-2:amd64.
+#8 9.639 Preparing to unpack .../066-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
+#8 9.641 Unpacking libsasl2-2:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
+#8 9.657 Selecting previously unselected package libldap-2.5-0:amd64.
+#8 9.658 Preparing to unpack .../067-libldap-2.5-0_2.5.17+dfsg-0ubuntu0.22.04.1_amd64.deb ...
+#8 9.659 Unpacking libldap-2.5-0:amd64 (2.5.17+dfsg-0ubuntu0.22.04.1) ...
+#8 9.677 Selecting previously unselected package libnpth0:amd64.
+#8 9.678 Preparing to unpack .../068-libnpth0_1.6-3build2_amd64.deb ...
+#8 9.679 Unpacking libnpth0:amd64 (1.6-3build2) ...
+#8 9.697 Selecting previously unselected package dirmngr.
+#8 9.698 Preparing to unpack .../069-dirmngr_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.708 Unpacking dirmngr (2.2.27-3ubuntu2.1) ...
+#8 9.727 Selecting previously unselected package libfakeroot:amd64.
+#8 9.728 Preparing to unpack .../070-libfakeroot_1.28-1ubuntu1_amd64.deb ...
+#8 9.730 Unpacking libfakeroot:amd64 (1.28-1ubuntu1) ...
+#8 9.745 Selecting previously unselected package fakeroot.
+#8 9.746 Preparing to unpack .../071-fakeroot_1.28-1ubuntu1_amd64.deb ...
+#8 9.747 Unpacking fakeroot (1.28-1ubuntu1) ...
+#8 9.764 Selecting previously unselected package fonts-dejavu-core.
+#8 9.765 Preparing to unpack .../072-fonts-dejavu-core_2.37-2build1_all.deb ...
+#8 9.766 Unpacking fonts-dejavu-core (2.37-2build1) ...
+#8 9.848 Selecting previously unselected package fontconfig-config.
+
+
+#8 9.849 Preparing to unpack .../073-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
+#8 9.850 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
+#8 9.870 Selecting previously unselected package gnupg-l10n.
+#8 9.871 Preparing to unpack .../074-gnupg-l10n_2.2.27-3ubuntu2.1_all.deb ...
+#8 9.872 Unpacking gnupg-l10n (2.2.27-3ubuntu2.1) ...
+#8 9.890 Selecting previously unselected package gnupg-utils.
+#8 9.891 Preparing to unpack .../075-gnupg-utils_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.892 Unpacking gnupg-utils (2.2.27-3ubuntu2.1) ...
+#8 9.911 Selecting previously unselected package gpg.
+#8 9.912 Preparing to unpack .../076-gpg_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.914 Unpacking gpg (2.2.27-3ubuntu2.1) ...
+#8 9.933 Selecting previously unselected package pinentry-curses.
+#8 9.934 Preparing to unpack .../077-pinentry-curses_1.1.1-1build2_amd64.deb ...
+#8 9.936 Unpacking pinentry-curses (1.1.1-1build2) ...
+#8 9.951 Selecting previously unselected package gpg-agent.
+#8 9.952 Preparing to unpack .../078-gpg-agent_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.953 Unpacking gpg-agent (2.2.27-3ubuntu2.1) ...
+#8 9.972 Selecting previously unselected package gpg-wks-client.
+#8 9.973 Preparing to unpack .../079-gpg-wks-client_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.974 Unpacking gpg-wks-client (2.2.27-3ubuntu2.1) ...
+#8 9.988 Selecting previously unselected package gpg-wks-server.
+#8 9.989 Preparing to unpack .../080-gpg-wks-server_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 9.990 Unpacking gpg-wks-server (2.2.27-3ubuntu2.1) ...
+#8 10.00 Selecting previously unselected package gpgsm.
+#8 10.00 Preparing to unpack .../081-gpgsm_2.2.27-3ubuntu2.1_amd64.deb ...
+#8 10.01 Unpacking gpgsm (2.2.27-3ubuntu2.1) ...
+#8 10.02 Selecting previously unselected package gnupg.
+#8 10.02 Preparing to unpack .../082-gnupg_2.2.27-3ubuntu2.1_all.deb ...
+#8 10.03 Unpacking gnupg (2.2.27-3ubuntu2.1) ...
+#8 10.04 Selecting previously unselected package javascript-common.
+#8 10.05 Preparing to unpack .../083-javascript-common_11+nmu1_all.deb ...
+#8 10.05 Unpacking javascript-common (11+nmu1) ...
+
+
+#8 10.08 Selecting previously unselected package libalgorithm-diff-perl.
+#8 10.08 Preparing to unpack .../084-libalgorithm-diff-perl_1.201-1_all.deb ...
+#8 10.08 Unpacking libalgorithm-diff-perl (1.201-1) ...
+#8 10.10 Selecting previously unselected package libalgorithm-diff-xs-perl.
+#8 10.10 Preparing to unpack .../085-libalgorithm-diff-xs-perl_0.04-6build3_amd64.deb ...
+#8 10.10 Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
+#8 10.11 Selecting previously unselected package libalgorithm-merge-perl.
+#8 10.12 Preparing to unpack .../086-libalgorithm-merge-perl_0.08-3_all.deb ...
+#8 10.12 Unpacking libalgorithm-merge-perl (0.08-3) ...
+#8 10.13 Selecting previously unselected package libbrotli1:amd64.
+#8 10.14 Preparing to unpack .../087-libbrotli1_1.0.9-2build6_amd64.deb ...
+#8 10.14 Unpacking libbrotli1:amd64 (1.0.9-2build6) ...
+#8 10.16 Selecting previously unselected package libfreetype6:amd64.
+#8 10.16 Preparing to unpack .../088-libfreetype6_2.11.1+dfsg-1ubuntu0.2_amd64.deb ...
+#8 10.16 Unpacking libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
+#8 10.18 Selecting previously unselected package libfontconfig1:amd64.
+#8 10.18 Preparing to unpack .../089-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ...
+#8 10.18 Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
+#8 10.20 Selecting previously unselected package libjpeg-turbo8:amd64.
+#8 10.20 Preparing to unpack .../090-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ...
+#8 10.20 Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
+#8 10.21 Selecting previously unselected package libjpeg8:amd64.
+#8 10.22 Preparing to unpack .../091-libjpeg8_8c-2ubuntu10_amd64.deb ...
+#8 10.22 Unpacking libjpeg8:amd64 (8c-2ubuntu10) ...
+#8 10.23 Selecting previously unselected package libdeflate0:amd64.
+#8 10.23 Preparing to unpack .../092-libdeflate0_1.10-2_amd64.deb ...
+#8 10.24 Unpacking libdeflate0:amd64 (1.10-2) ...
+#8 10.25 Selecting previously unselected package libjbig0:amd64.
+#8 10.25 Preparing to unpack .../093-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ...
+#8 10.25 Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
+#8 10.27 Selecting previously unselected package libwebp7:amd64.
+
+
+#8 10.27 Preparing to unpack .../094-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ...
+#8 10.27 Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
+#8 10.29 Selecting previously unselected package libtiff5:amd64.
+#8 10.29 Preparing to unpack .../095-libtiff5_4.3.0-6ubuntu0.8_amd64.deb ...
+#8 10.29 Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.8) ...
+#8 10.30 Selecting previously unselected package libxpm4:amd64.
+#8 10.30 Preparing to unpack .../096-libxpm4_1%3a3.5.12-1ubuntu0.22.04.2_amd64.deb ...
+#8 10.30 Unpacking libxpm4:amd64 (1:3.5.12-1ubuntu0.22.04.2) ...
+#8 10.32 Selecting previously unselected package libgd3:amd64.
+#8 10.32 Preparing to unpack .../097-libgd3_2.3.0-2ubuntu2_amd64.deb ...
+#8 10.32 Unpacking libgd3:amd64 (2.3.0-2ubuntu2) ...
+#8 10.34 Selecting previously unselected package libc-devtools.
+#8 10.34 Preparing to unpack .../098-libc-devtools_2.35-0ubuntu3.6_amd64.deb ...
+#8 10.34 Unpacking libc-devtools (2.35-0ubuntu3.6) ...
+#8 10.36 Selecting previously unselected package libexpat1-dev:amd64.
+#8 10.36 Preparing to unpack .../099-libexpat1-dev_2.4.7-1ubuntu0.3_amd64.deb ...
+#8 10.36 Unpacking libexpat1-dev:amd64 (2.4.7-1ubuntu0.3) ...
+#8 10.38 Selecting previously unselected package libfile-fcntllock-perl.
+#8 10.38 Preparing to unpack .../100-libfile-fcntllock-perl_0.22-3build7_amd64.deb ...
+#8 10.38 Unpacking libfile-fcntllock-perl (0.22-3build7) ...
+#8 10.40 Selecting previously unselected package libjs-jquery.
+#8 10.40 Preparing to unpack .../101-libjs-jquery_3.6.0+dfsg+~3.5.13-1_all.deb ...
+#8 10.40 Unpacking libjs-jquery (3.6.0+dfsg+~3.5.13-1) ...
+#8 10.43 Selecting previously unselected package libjs-underscore.
+#8 10.43 Preparing to unpack .../102-libjs-underscore_1.13.2~dfsg-2_all.deb ...
+#8 10.43 Unpacking libjs-underscore (1.13.2~dfsg-2) ...
+#8 10.44 Selecting previously unselected package libjs-sphinxdoc.
+#8 10.45 Preparing to unpack .../103-libjs-sphinxdoc_4.3.2-1_all.deb ...
+#8 10.45 Unpacking libjs-sphinxdoc (4.3.2-1) ...
+#8 10.47 Selecting previously unselected package libldap-common.
+#8 10.47 Preparing to unpack .../104-libldap-common_2.5.17+dfsg-0ubuntu0.22.04.1_all.deb ...
+#8 10.47 Unpacking libldap-common (2.5.17+dfsg-0ubuntu0.22.04.1) ...
+#8 10.48 Selecting previously unselected package libpython3.10:amd64.
+
+
+#8 10.49 Preparing to unpack .../105-libpython3.10_3.10.12-1~22.04.3_amd64.deb ...
+#8 10.49 Unpacking libpython3.10:amd64 (3.10.12-1~22.04.3) ...
+#8 10.52 Selecting previously unselected package zlib1g-dev:amd64.
+#8 10.52 Preparing to unpack .../106-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu9.2_amd64.deb ...
+#8 10.52 Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
+#8 10.54 Selecting previously unselected package libpython3.10-dev:amd64.
+#8 10.54 Preparing to unpack .../107-libpython3.10-dev_3.10.12-1~22.04.3_amd64.deb ...
+#8 10.54 Unpacking libpython3.10-dev:amd64 (3.10.12-1~22.04.3) ...
+#8 10.64 Selecting previously unselected package libpython3-dev:amd64.
+#8 10.64 Preparing to unpack .../108-libpython3-dev_3.10.6-1~22.04_amd64.deb ...
+#8 10.65 Unpacking libpython3-dev:amd64 (3.10.6-1~22.04) ...
+#8 10.66 Selecting previously unselected package libsasl2-modules:amd64.
+#8 10.66 Preparing to unpack .../109-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
+#8 10.67 Unpacking libsasl2-modules:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
+#8 10.68 Selecting previously unselected package manpages-dev.
+#8 10.68 Preparing to unpack .../110-manpages-dev_5.10-1ubuntu1_all.deb ...
+#8 10.68 Unpacking manpages-dev (5.10-1ubuntu1) ...
+
+
+#8 10.89 Selecting previously unselected package python3.10-dev.
+#8 10.89 Preparing to unpack .../111-python3.10-dev_3.10.12-1~22.04.3_amd64.deb ...
+#8 10.89 Unpacking python3.10-dev (3.10.12-1~22.04.3) ...
+#8 10.90 Selecting previously unselected package python3-lib2to3.
+#8 10.91 Preparing to unpack .../112-python3-lib2to3_3.10.8-1~22.04_all.deb ...
+#8 10.91 Unpacking python3-lib2to3 (3.10.8-1~22.04) ...
+#8 10.94 Selecting previously unselected package python3-distutils.
+#8 10.94 Preparing to unpack .../113-python3-distutils_3.10.8-1~22.04_all.deb ...
+#8 10.94 Unpacking python3-distutils (3.10.8-1~22.04) ...
+#8 10.98 Selecting previously unselected package python3-dev.
+#8 10.98 Preparing to unpack .../114-python3-dev_3.10.6-1~22.04_amd64.deb ...
+#8 10.98 Unpacking python3-dev (3.10.6-1~22.04) ...
+#8 10.99 Selecting previously unselected package python3-setuptools.
+
+
+#8 10.99 Preparing to unpack .../115-python3-setuptools_59.6.0-1.2ubuntu0.22.04.1_all.deb ...
+#8 11.00 Unpacking python3-setuptools (59.6.0-1.2ubuntu0.22.04.1) ...
+#8 11.04 Selecting previously unselected package python3-wheel.
+#8 11.04 Preparing to unpack .../116-python3-wheel_0.37.1-2ubuntu0.22.04.1_all.deb ...
+#8 11.04 Unpacking python3-wheel (0.37.1-2ubuntu0.22.04.1) ...
+#8 11.06 Selecting previously unselected package python3-pip.
+#8 11.06 Preparing to unpack .../117-python3-pip_22.0.2+dfsg-1ubuntu0.4_all.deb ...
+#8 11.06 Unpacking python3-pip (22.0.2+dfsg-1ubuntu0.4) ...
+#8 11.19 Setting up libksba8:amd64 (1.6.0-2ubuntu0.2) ...
+#8 11.20 Setting up media-types (7.0.0) ...
+#8 11.20 Setting up javascript-common (11+nmu1) ...
+#8 11.21 Setting up gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 11.22 Setting up libxau6:amd64 (1:1.0.9-1build5) ...
+#8 11.22 Setting up lto-disabled-list (24) ...
+#8 11.22 Setting up manpages (5.10-1ubuntu1) ...
+#8 11.23 Setting up libbrotli1:amd64 (1.0.9-2build6) ...
+#8 11.23 Setting up libsqlite3-0:amd64 (3.37.2-2ubuntu0.3) ...
+#8 11.23 Setting up libsasl2-modules:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
+#8 11.24 Setting up binutils-common:amd64 (2.38-4ubuntu2.6) ...
+#8 11.24 Setting up libdeflate0:amd64 (1.10-2) ...
+#8 11.25 Setting up linux-libc-dev:amd64 (5.15.0-100.110) ...
+#8 11.25 Setting up libctf-nobfd0:amd64 (2.38-4ubuntu2.6) ...
+#8 11.25 Setting up libnpth0:amd64 (1.6-3build2) ...
+#8 11.26 Setting up libassuan0:amd64 (2.5.5-1build1) ...
+#8 11.26 Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.26 Setting up perl-modules-5.34 (5.34.0-3ubuntu1.3) ...
+#8 11.26 Setting up bzip2 (1.0.8-5build1) ...
+#8 11.27 Setting up libldap-common (2.5.17+dfsg-0ubuntu0.22.04.1) ...
+#8 11.27 Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
+#8 11.28 Setting up libfakeroot:amd64 (1.28-1ubuntu1) ...
+#8 11.28 Setting up libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 11.28 Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
+#8 11.29 Setting up fakeroot (1.28-1ubuntu1) ...
+#8 11.29 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.29 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
+#8 11.30 Setting up libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
+
+
+#8 11.30 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
+#8 11.30 Setting up libx11-data (2:1.7.5-1ubuntu0.3) ...
+#8 11.30 Setting up make (4.3-4.1build1) ...
+#8 11.31 Setting up libmpfr6:amd64 (4.1.0-3build3) ...
+#8 11.31 Setting up gnupg-l10n (2.2.27-3ubuntu2.1) ...
+#8 11.31 Setting up xz-utils (5.2.5-2ubuntu1) ...
+#8 11.32 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
+#8 11.32 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
+#8 11.32 Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.33 Setting up libpng16-16:amd64 (1.6.37-3build5) ...
+#8 11.33 Setting up libmpc3:amd64 (1.2.1-2build1) ...
+#8 11.34 Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.34 Setting up patch (2.7.6-7build2) ...
+#8 11.34 Setting up fonts-dejavu-core (2.37-2build1) ...
+#8 11.35 Setting up ucf (3.0043) ...
+#8 11.43 debconf: unable to initialize frontend: Dialog
+#8 11.43 debconf: (TERM is not set, so the dialog frontend is not usable.)
+#8 11.43 debconf: falling back to frontend: Readline
+#8 11.45 Setting up libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
+#8 11.45 Setting up libsasl2-2:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
+#8 11.46 Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
+#8 11.46 Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.46 Setting up libmd0:amd64 (1.0.4-1build1) ...
+#8 11.47 Setting up libnsl-dev:amd64 (1.3.0-2build2) ...
+#8 11.47 Setting up libcrypt-dev:amd64 (1:4.4.27-1) ...
+#8 11.47 Setting up libmpdec3:amd64 (2.5.1-2build2) ...
+#8 11.47 Setting up netbase (6.3) ...
+#8 11.48 Setting up libjs-jquery (3.6.0+dfsg+~3.5.13-1) ...
+#8 11.49 Setting up libbinutils:amd64 (2.38-4ubuntu2.6) ...
+#8 11.49 Setting up libisl23:amd64 (0.24-2build1) ...
+#8 11.50 Setting up libc-dev-bin (2.35-0ubuntu3.6) ...
+#8 11.50 Setting up openssl (3.0.2-0ubuntu1.15) ...
+#8 11.50 Setting up libbsd0:amd64 (0.11.5-1) ...
+#8 11.51 Setting up readline-common (8.1.2-1) ...
+#8 11.51 Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.51 Setting up liblocale-gettext-perl (1.07-4build3) ...
+#8 11.52 Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.52 Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
+#8 11.53 Setting up libgdbm6:amd64 (1.23-1) ...
+#8 11.53 Setting up libjs-underscore (1.13.2~dfsg-2) ...
+
+
+#8 11.53 Setting up libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 11.54 Setting up libctf0:amd64 (2.38-4ubuntu2.6) ...
+#8 11.54 Setting up libjpeg8:amd64 (8c-2ubuntu10) ...
+#8 11.54 Setting up pinentry-curses (1.1.1-1build2) ...
+#8 11.55 Setting up cpp-11 (11.4.0-1ubuntu1~22.04) ...
+#8 11.55 Setting up manpages-dev (5.10-1ubuntu1) ...
+#8 11.55 Setting up libxdmcp6:amd64 (1:1.1.3-0ubuntu5) ...
+#8 11.56 Setting up libxcb1:amd64 (1.14-3ubuntu3) ...
+#8 11.56 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
+#8 11.61 Setting up libreadline8:amd64 (8.1.2-1) ...
+#8 11.62 Setting up libldap-2.5-0:amd64 (2.5.17+dfsg-0ubuntu0.22.04.1) ...
+#8 11.62 Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.3) ...
+#8 11.63 Setting up ca-certificates (20230311ubuntu0.22.04.1) ...
+#8 11.71 debconf: unable to initialize frontend: Dialog
+#8 11.71 debconf: (TERM is not set, so the dialog frontend is not usable.)
+#8 11.71 debconf: falling back to frontend: Readline
+
+
+#8 12.09 Updating certificates in /etc/ssl/certs...
+
+
+#8 12.63 137 added, 0 removed; done.
+
+
+#8 12.65 Setting up libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
+#8 12.65 Setting up libgdbm-compat4:amd64 (1.23-1) ...
+#8 12.66 Setting up libjs-sphinxdoc (4.3.2-1) ...
+#8 12.66 Setting up libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 12.66 Setting up cpp (4:11.2.0-1ubuntu1) ...
+#8 12.67 Setting up gpgconf (2.2.27-3ubuntu2.1) ...
+#8 12.67 Setting up libc6-dev:amd64 (2.35-0ubuntu3.6) ...
+#8 12.67 Setting up libx11-6:amd64 (2:1.7.5-1ubuntu0.3) ...
+#8 12.68 Setting up libtiff5:amd64 (4.3.0-6ubuntu0.8) ...
+#8 12.68 Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
+#8 12.68 Setting up gpg (2.2.27-3ubuntu2.1) ...
+#8 12.68 Setting up libpython3-stdlib:amd64 (3.10.6-1~22.04) ...
+#8 12.69 Setting up gnupg-utils (2.2.27-3ubuntu2.1) ...
+#8 12.69 Setting up binutils-x86-64-linux-gnu (2.38-4ubuntu2.6) ...
+#8 12.69 Setting up libpython3.10:amd64 (3.10.12-1~22.04.3) ...
+#8 12.69 Setting up libperl5.34:amd64 (5.34.0-3ubuntu1.3) ...
+#8 12.70 Setting up gpg-agent (2.2.27-3ubuntu2.1) ...
+
+
+#8 13.09 Setting up python3.10 (3.10.12-1~22.04.3) ...
+
+
+#8 13.61 Setting up libxpm4:amd64 (1:3.5.12-1ubuntu0.22.04.2) ...
+#8 13.61 Setting up gpgsm (2.2.27-3ubuntu2.1) ...
+#8 13.62 Setting up python3 (3.10.6-1~22.04) ...
+#8 13.62 running python rtupdate hooks for python3.10...
+#8 13.62 running python post-rtupdate hooks for python3.10...
+#8 13.69 Setting up binutils (2.38-4ubuntu2.6) ...
+#8 13.70 Setting up dirmngr (2.2.27-3ubuntu2.1) ...
+#8 13.81 Setting up perl (5.34.0-3ubuntu1.3) ...
+
+
+#8 13.82 Setting up libexpat1-dev:amd64 (2.4.7-1ubuntu0.3) ...
+#8 13.82 Setting up libgd3:amd64 (2.3.0-2ubuntu2) ...
+#8 13.83 Setting up libdpkg-perl (1.21.1ubuntu2.3) ...
+#8 13.83 Setting up libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
+#8 13.83 Setting up gpg-wks-server (2.2.27-3ubuntu2.1) ...
+#8 13.84 Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
+#8 13.84 Setting up gcc-11 (11.4.0-1ubuntu1~22.04) ...
+#8 13.84 Setting up python3-lib2to3 (3.10.8-1~22.04) ...
+#8 13.92 Setting up libc-devtools (2.35-0ubuntu3.6) ...
+#8 13.93 Setting up python3-pkg-resources (59.6.0-1.2ubuntu0.22.04.1) ...
+#8 14.07 Setting up python3-distutils (3.10.8-1~22.04) ...
+
+
+#8 14.17 Setting up python3-setuptools (59.6.0-1.2ubuntu0.22.04.1) ...
+
+
+#8 14.44 Setting up gpg-wks-client (2.2.27-3ubuntu2.1) ...
+#8 14.44 Setting up g++-11 (11.4.0-1ubuntu1~22.04) ...
+#8 14.45 Setting up libfile-fcntllock-perl (0.22-3build7) ...
+#8 14.45 Setting up libalgorithm-diff-perl (1.201-1) ...
+#8 14.45 Setting up python3-wheel (0.37.1-2ubuntu0.22.04.1) ...
+#8 14.56 Setting up gcc (4:11.2.0-1ubuntu1) ...
+
+
+#8 14.57 Setting up dpkg-dev (1.21.1ubuntu2.3) ...
+#8 14.57 Setting up libpython3.10-dev:amd64 (3.10.12-1~22.04.3) ...
+#8 14.58 Setting up python3-pip (22.0.2+dfsg-1ubuntu0.4) ...
+
+
+#8 15.43 Setting up python3.10-dev (3.10.12-1~22.04.3) ...
+
+
+#8 15.43 Setting up g++ (4:11.2.0-1ubuntu1) ...
+#8 15.45 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
+#8 15.45 update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist
+#8 15.46 Setting up gnupg (2.2.27-3ubuntu2.1) ...
+#8 15.46 Setting up build-essential (12.9ubuntu3) ...
+#8 15.46 Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
+#8 15.47 Setting up libalgorithm-merge-perl (0.08-3) ...
+#8 15.47 Setting up libpython3-dev:amd64 (3.10.6-1~22.04) ...
+#8 15.47 Setting up python3-dev (3.10.6-1~22.04) ...
+#8 15.48 Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
+#8 15.52 Processing triggers for ca-certificates (20230311ubuntu0.22.04.1) ...
+#8 15.53 Updating certificates in /etc/ssl/certs...
-#8 22.43 0 added, 0 removed; done.
-#8 22.43 Running hooks in /etc/ca-certificates/update.d...
-#8 22.44 done.
+#8 15.94 0 added, 0 removed; done.
+#8 15.94 Running hooks in /etc/ca-certificates/update.d...
+#8 15.94 done.
-#8 DONE 23.2s
+#8 DONE 16.7s
#9 [device 4/6] RUN pip3 install BACpypes
-#9 0.727 Collecting BACpypes
+#9 0.607 Collecting BACpypes
+#9 0.689 Downloading bacpypes-0.18.7-py3-none-any.whl (191 kB)
+#9 0.735 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 191.5/191.5 KB 4.3 MB/s eta 0:00:00
-#9 0.784 Downloading bacpypes-0.18.7-py3-none-any.whl (191 kB)
-#9 0.813 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 191.5/191.5 KB 6.7 MB/s eta 0:00:00
-#9 0.818 Installing collected packages: BACpypes
-#9 0.952 Successfully installed BACpypes-0.18.7
-#9 0.953 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
-#9 DONE 1.0s
+#9 0.739 Installing collected packages: BACpypes
+#9 0.871 Successfully installed BACpypes-0.18.7
+#9 0.871 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
+#9 DONE 0.9s
#10 [device 5/6] COPY virtual_bacnet.py virtual_bacnet.py
#10 DONE 0.0s
#11 [device 6/6] COPY BACpypes.ini .
#11 DONE 0.0s
-
-
-#12 [device] exporting to image
+
+#12 [device] exporting to image
#12 exporting layers
#12 exporting layers 2.4s done
-#12 writing image sha256:644201569195026d46194bedaa9550211037d64f67e1ea8ef05afa40010010b5 done
+#12 writing image sha256:688331eb8c2b93d64fea6afab2c32537baf5784767e1237de6e7afcf69cb05bb done
#12 naming to docker.io/library/guides-device done
#12 DONE 2.4s
@@ -1721,12 +1682,6 @@ BuildingMOTIF Setup
-/opt/hostedtoolcache/Python/3.11.8/x64/lib/python3.11/site-packages/pyshacl/extras/__init__.py:46: Warning: Extra "js" is not satisfied because requirement pyduktape2 is not installed.
- warn(Warning(f"Extra \"{extra_name}\" is not satisfied because requirement {req} is not installed."))
-
-
-
@@ -1743,61 +1698,61 @@ Pulling in BACnet Metadata
-2024-03-15 20:40:31,828 - INFO | Starting BAC0 version 22.9.21 (Lite)
+2024-03-17 20:58:54,522 - INFO | Starting BAC0 version 22.9.21 (Lite)
-2024-03-15 20:40:31,829 - INFO | Use BAC0.log_level to adjust verbosity of the app.
+2024-03-17 20:58:54,522 - INFO | Use BAC0.log_level to adjust verbosity of the app.
-2024-03-15 20:40:31,830 - INFO | Ex. BAC0.log_level('silence') or BAC0.log_level('error')
+2024-03-17 20:58:54,523 - INFO | Ex. BAC0.log_level('silence') or BAC0.log_level('error')
-2024-03-15 20:40:31,830 - INFO | Starting TaskManager
+2024-03-17 20:58:54,523 - INFO | Starting TaskManager
-2024-03-15 20:40:31,831 - INFO | Using ip : 172.24.0.1
+2024-03-17 20:58:54,524 - INFO | Using ip : 172.24.0.1
-2024-03-15 20:40:31,844 - INFO | Starting app...
+2024-03-17 20:58:54,537 - INFO | Starting app...
-2024-03-15 20:40:31,845 - INFO | BAC0 started
+2024-03-17 20:58:54,538 - INFO | BAC0 started
-2024-03-15 20:40:31,846 - INFO | Registered as Simple BACnet/IP App
+2024-03-17 20:58:54,539 - INFO | Registered as Simple BACnet/IP App
-2024-03-15 20:40:31,847 - INFO | Update Local COV Task started
+2024-03-17 20:58:54,540 - INFO | Update Local COV Task started
-2024-03-15 20:40:35,851 - INFO | Found those networks : set()
+2024-03-17 20:58:58,545 - INFO | Found those networks : set()
-2024-03-15 20:40:35,852 - INFO | No BACnet network found, attempting a simple whois using provided device instances limits (0 - 4194303)
+2024-03-17 20:58:58,545 - INFO | No BACnet network found, attempting a simple whois using provided device instances limits (0 - 4194303)
-2024-03-15 20:40:38,853 - INFO | Changing device state to DeviceDisconnected'>
+2024-03-17 20:59:01,547 - INFO | Changing device state to DeviceDisconnected'>
-2024-03-15 20:40:38,860 - INFO | Changing device state to RPMDeviceConnected'>
+2024-03-17 20:59:01,554 - INFO | Changing device state to RPMDeviceConnected'>
-2024-03-15 20:40:38,868 - INFO | Device 599:[VirtualBACnet] found... building points list
+2024-03-17 20:59:01,562 - INFO | Device 599:[VirtualBACnet] found... building points list
-2024-03-15 20:40:38,879 - INFO | Ready!
+2024-03-17 20:59:01,572 - INFO | Ready!
-2024-03-15 20:40:38,879 - INFO | Stopping all tasks
+2024-03-17 20:59:01,573 - INFO | Stopping all tasks
-2024-03-15 20:40:38,883 - INFO | Stopping TaskManager
+2024-03-17 20:59:01,576 - INFO | Stopping TaskManager
-2024-03-15 20:40:38,890 - INFO | Ok all tasks stopped
+2024-03-17 20:59:01,583 - INFO | Ok all tasks stopped
-2024-03-15 20:40:38,890 - INFO | BACnet stopped
+2024-03-17 20:59:01,584 - INFO | BACnet stopped
Record(rtype='Device', fields={'address': '172.24.0.3', 'device_id': 599})
diff --git a/objects.inv b/objects.inv
index 45cc882f5..b7d90edf1 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.html b/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.html
index f0e6e0b56..e7123d7d3 100644
--- a/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.html
+++ b/reference/apidoc/_autosummary/buildingmotif.dataclasses.model.html
@@ -551,7 +551,7 @@ buildingmotif.dataclasses.model
-
-validate(shape_collections: Optional[List[ShapeCollection]] = None, error_on_missing_imports: bool = True) ValidationContext [source]#
+validate(shape_collections: Optional[List[ShapeCollection]] = None, error_on_missing_imports: bool = True, engine: Optional[str] = 'pyshacl') ValidationContext [source]#
Validates this model against the given list of ShapeCollections.
If no list is provided, the model will be validated against the model’s “manifest”.
If a list of shape collections is provided, the manifest will not be automatically
@@ -566,6 +566,9 @@
buildingmotif.dataclasses.model
error_on_missing_imports (bool, optional) – if True, raises an error if any of the dependency
ontologies are missing (i.e. they need to be loaded into BuildingMOTIF), defaults
to True
+engine (str, optional) – the engine to use for validation. “pyshacl” or “topquadrant”. Using topquadrant
+requires Java to be installed on this machine, and the “topquadrant” feature on BuildingMOTIF,
+defaults to “pyshacl”
- Returns:
@@ -580,12 +583,17 @@ buildingmotif.dataclasses.model
-
-compile(shape_collections: List[ShapeCollection])[source]#
+compile(shape_collections: List[ShapeCollection], engine: str = 'pyshacl')[source]#
Compile the graph of a model against a set of ShapeCollections.
- Parameters:
-shape_collections (List[ShapeCollection]) – list of ShapeCollections to compile the model
-against
+
+shape_collections (List[ShapeCollection]) – list of ShapeCollections to compile the model
+against
+engine (str) – the engine to use for validation. “pyshacl” or “topquadrant”. Using topquadrant
+requires Java to be installed on this machine, and the “topquadrant” feature on BuildingMOTIF,
+defaults to “pyshacl”
+
- Returns:
copy of model’s graph that has been compiled against the
diff --git a/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.html b/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.html
index c64b00bf2..7723126ef 100644
--- a/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.html
+++ b/reference/apidoc/_autosummary/buildingmotif.dataclasses.validation.html
@@ -481,7 +481,7 @@
buildingmotif.dataclasses.validation
RequiredPath
(focus, validation_result, ...)
Represents an entity missing a required property.
-ValidationContext
(shape_collections, valid, ...)
+ValidationContext
(shape_collections, ...)
Holds the necessary information for processing the results of SHACL validation.
@@ -767,7 +767,7 @@ buildingmotif.dataclasses.validation
-
-class ValidationContext(shape_collections: List[ShapeCollection], valid: bool, report: Graph, report_string: str, model: Model)[source]#
+class ValidationContext(shape_collections: List[ShapeCollection], shapes_graph: Graph, valid: bool, report: Graph, report_string: str, model: Model)[source]#
Holds the necessary information for processing the results of SHACL
validation.
@@ -775,6 +775,11 @@ buildingmotif.dataclasses.validation
shape_collections: List[ShapeCollection]#
+
+-
+shapes_graph: Graph#
+
+
-
valid: bool#
@@ -817,6 +822,27 @@ buildingmotif.dataclasses.validation
+
+-
+get_reasons_with_severity(severity: Union[URIRef, str]) Dict[Optional[URIRef], Set[GraphDiff]] [source]#
+Like diffset, but only includes ValidationResults with the given severity.
+Permitted values are:
+- SH.Violation or “Violation” for violations
+- SH.Warning or “Warning” for warnings
+- SH.Info or “Info” for info
+
+- Parameters:
+severity (Union[URIRef|str]) – the severity to filter by
+
+- Returns:
+a dictionary of focus nodes to the reasons with the given severity
+
+- Return type:
+Dict[Optional[URIRef], Set[GraphDiff]]
+
+
+
+
diff --git a/reference/apidoc/_autosummary/buildingmotif.utils.html b/reference/apidoc/_autosummary/buildingmotif.utils.html
index a05edda1b..60abfa684 100644
--- a/reference/apidoc/_autosummary/buildingmotif.utils.html
+++ b/reference/apidoc/_autosummary/buildingmotif.utils.html
@@ -488,6 +488,12 @@ buildingmotif.utils
Rewrites the input graph to make the resulting validation report more useful.
+shacl_inference
(data_graph[, shape_graph, ...])
+Infer new triples in the data graph using the shape graph.
+
+shacl_validate
(data_graph[, shape_graph, engine])
+Validate the data graph against the shape graph.
+
skip_uri
(uri)
Returns True if the URI should be skipped during processing because it is axiomatic or not expected to be imported.
@@ -729,6 +735,53 @@ buildingmotif.utils
+
+-
+shacl_validate(data_graph: Graph, shape_graph: Optional[Graph] = None, engine='topquadrant') Tuple[bool, Graph, str] [source]#
+Validate the data graph against the shape graph.
+Uses the fastest validation method available. Use the ‘topquadrant’ feature
+to use TopQuadrant’s SHACL engine. Defaults to using PySHACL.
+
+- Parameters:
+
+data_graph (Graph) – the graph to validate
+shape_graph (Graph, optional) – the shape graph to validate against
+engine (str, optional) – the SHACL engine to use, defaults to “topquadrant”
+
+
+- Returns:
+a tuple containing the validation result, the validation report, and the validation report string
+
+- Return type:
+Tuple[bool, Graph, str]
+
+
+
+
+
+-
+shacl_inference(data_graph: Graph, shape_graph: Optional[Graph] = None, engine='topquadrant') Graph [source]#
+Infer new triples in the data graph using the shape graph.
+Edits the data graph in place. Uses the fastest inference method available.
+Use the ‘topquadrant’ feature to use TopQuadrant’s SHACL engine. Defaults to
+using PySHACL.
+
+- Parameters:
+
+data_graph (Graph) – the graph to infer new triples in
+shape_graph (Optional[Graph]) – the shape graph to use for inference
+engine (str, optional) – the SHACL engine to use, defaults to “topquadrant”
+
+
+- Returns:
+the data graph with inferred triples
+
+- Return type:
+Graph
+
+
+
+