r-lib / actions

GitHub Actions for the R community
Creative Commons Zero v1.0 Universal
963 stars 209 forks source link

Install older (but valid) version of packages #562

Closed schloerke closed 6 months ago

schloerke commented 2 years ago

Describe the bug

I'd like to install {highcharter} on ubuntu R v3.6. {highcharter} depends on {rjson} whose latest version depends on R >= v4.0. When I install dependencies, r-lib/actions/setup-r-dependencies fails to install an appropriate version.

Even if I manually install a valid version of {rjson} before, r-lib/actions/setup-r-dependencies will try to install the latest version.

(I understand this may be a {pkgdepends} bug/feature, but I also didn't see any API to change within r-lib/actions.)

To Reproduce

Workflow (Link) ``` # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: branches: [shinyverse_remotes] # pull_request: # branches: [main, master] name: Install Debug jobs: debug: runs-on: ${{ matrix.config.os }} name: ${{ matrix.config.os }} (${{ matrix.config.r }} - ${{ matrix.prep-install }}) strategy: fail-fast: false matrix: packages: - "any::highcharter, any::radiant, any::sessioninfo" # - "highcharter, radiant, sessioninfo" prep-install: - true - false config: - {os: macOS-latest, r: '3.5'} - {os: windows-latest, r: '3.5'} - {os: ubuntu-latest, r: '3.5'} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} R_KEEP_PKG_SOURCE: yes steps: - uses: actions/checkout@v2 - uses: r-lib/actions/setup-pandoc@v2 - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.config.r }} use-public-rspm: true - name: Install rjson if: matrix.prep-install shell: Rscript {0} run: | install.packages("remotes") remotes::install_version("rjson", "0.2.20") remotes::install_version("radiant", "1.3.2") - uses: r-lib/actions/setup-r-dependencies@v2 with: packages: ${{ matrix.packages }} extra-packages: any::rcmdcheck cache-version: "10" ```

Related error message (Link to full logs):

Error: Error: <callr_remote_error: Cannot install packages:
  * any::highcharter: Can't install dependency rjson
  * rjson: Needs R >= 4.0.0
  * any::radiant: Needs R >= 3.6.0>
   in process 105[77](https://github.com/rstudio/shinycoreci/runs/6472545494?check_suite_focus=true#step:6:77) 
  -->
  <simpleError: Cannot install packages:
  * any::highcharter: Can't install dependency rjson
  * rjson: Needs R >= 4.0.0
  * any::radiant: Needs R >= 3.6.0>

Expected behavior

I'd love to be able to have pkgdepends install the newest valid version of the package.

I'd at least like for r-lib/actions/setup-r-dependencies to not try to update a currently installed package.

Additional context

Also happens for {radiant} on R v3.5 (and prolly many other packages), but it is the same situation.

Mac and windows R v3.5 get around the issue by installing the latest binary version which is does not have an invalid dependency on the R version. However, ubuntu likes to install from source, which is always the latest version of the package.

cc @MadhulikaTanuboddi

gaborcsardi commented 2 years ago

Did you try specifying the older package with a URL? E.g.

url::https://cloud.r-project.org/src/contrib/Archive/cli/cli_1.0.0.tar.gz
schloerke commented 2 years ago

Workflow run: https://github.com/rstudio/shinycoreci/runs/6474734756?check_suite_focus=true

It looks like it's set up to work, but is failing due to digest not being available:

Run r-lib/actions/setup-r-dependencies@v2
Run ## Installing pak
Installing pak
Dependency resolution
  ℹ Creating lockfile '.github/pkg.lock'
  ✖ Creating lockfile '.github/pkg.lock' [414ms]

  Error: Error: <callr_remote_error: there is no package called ‘digest’>
   in process 8314 
  -->
  <simpleError in loadNamespace(name): there is no package called ‘digest’>

   Stack trace:

   12. (function (...)  ...
   13. base:::withCallingHandlers(cli_message = function(msg) { ...
   14. get("lockfile_create_internal", asNamespace("pak"))(...)
   15. pkgdepends::new_pkg_installation_proposal(pkg, config = list(library = lib, ...
   16. pkg_installation_proposal$new(refs, config = config, ...)
   17. pkgdepends:::initialize(...)
   [18](https://github.com/rstudio/shinycoreci/runs/6474734756?check_suite_focus=true#step:5:18). pkg_plan$new(refs, config = config, library = config$library,  ...
   19. pkgdepends:::initialize(...)
   20. pkgdepends:::pkgplan_init(self, private, refs, config, library,  ...
   21. pkgdepends:::parse_pkg_refs(refs)
   22. pkgdepends:::parser(this_refs, ...)
   23. pkgdepends:::vcapply(specs, function(x) digest::digest(x))
   24. base:::vapply(X, FUN, FUN.VALUE = character(1), ...)
   25. pkgdepends:::FUN(X[[i]], ...)
   26. base:::`::`(digest, digest)
   27. base:::getExportedValue(pkg, name)
   28. base:::asNamespace(ns)
   29. base:::getNamespace(ns)
   30. base:::tryCatch(loadNamespace(name), error = function(e) stop(e))
   31. base:::tryCatchList(expr, classes, parentenv, handlers)
   32. base:::tryCatchOne(expr, names, parentenv, handlers[[1L]])
   33. value[[3L]](cond)
   34. base:::stop(e)
   35. (function (e)  ...
   36. base:::stop(e)
   37. (function (e)  ...

   x there is no package called ‘digest’ 

  Execution halted
  Error: Process completed with exit code 1.

I can see {digest} is being used within {pkgdeps} and is Suggests-ed.

gaborcsardi commented 2 years ago

Sorry, what I meant was a URL to the proper rjson version, that cli url was an example from the docs.

Also, https://github.com/rstudio/shinycoreci/actions/runs/2340008025/workflow#L21-L22

        packages:
          - "any::highcharter, any::radiant, any::sessioninfo"
          - "any::highcharter, url::https://cloud.r-project.org/src/contrib/Archive/cli/cli_1.0.0.tar.gz, any::radiant, any::sessioninfo"

is somewhat suspicious to me, I am not sure it that format works. I would think that you'll need one package per line, or a single comma separated package list in string.

This works for me on R 3.6:

> pak::pkg_install("highcharter")
Error: Cannot install packages:
* highcharter: Can't install dependency rjson
* rjson: Needs R >= 4.0.0
Type .Last.error.trace to see where the error occurred
> pak::pkg_install(c("highcharter", "url::https://cran.r-project.org/src/contrib/Archive/rjson/rjson_0.2.20.tar.gz"))

→ Will install 36 packages.
→ Will update 1 package.
...
schloerke commented 2 years ago

Suspicious, but valid GHA step code. (You are correct in that is not valid R code.)

The ${{ matrix.packages }} value is being placed directly in the r-lib/actions/setup-r-dependencies's packages field (link):

r-lib/actions/setup-r-dependencies@v2
  with:
    packages: any::highcharter, url::https://cloud.r-project.org/src/contrib/Archive/cli/cli_1.0.0.tar.gz, any::radiant, any::sessioninfo
    extra-packages: any::rcmdcheck
    cache-version: 11
    cache: true
    pak-version: stable
    working-directory: .
    dependencies: "all"
schloerke commented 2 years ago

Cleaner example of digest not being found when trying to install cli from url: https://github.com/rstudio/shinycoreci/runs/6496066259?check_suite_focus=true#step:5:71 ^^ Workflow file: https://github.com/rstudio/shinycoreci/actions/runs/2347835298/workflow#L38

gaborcsardi commented 6 months ago

Sorry, the links are dead now. :( Do you still have this issue?

schloerke commented 6 months ago

Workflow run: https://github.com/rstudio/shinycoreci/actions/runs/8071246523/job/22050463917

workflow file ```yaml # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: branches: [shinyverse_remotes] # pull_request: # branches: [main, master] name: Install Debug jobs: debug: runs-on: ${{ matrix.config.os }} name: ${{ matrix.config.os }} (${{ matrix.config.r }}) strategy: fail-fast: false matrix: config: - { os: ubuntu-latest, r: "3.5" } env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} R_KEEP_PKG_SOURCE: yes steps: - uses: actions/checkout@v3 - uses: r-lib/actions/setup-pandoc@v2 - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.config.r }} use-public-rspm: true - uses: r-lib/actions/setup-r-dependencies@v2 with: packages: url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz, any::sessioninfo cache-version: "13" ```
Raw logs ``` 2024-02-27T20:58:17.3493789Z Current runner version: '2.313.0' 2024-02-27T20:58:17.3518008Z ##[group]Operating System 2024-02-27T20:58:17.3518632Z Ubuntu 2024-02-27T20:58:17.3518940Z 22.04.4 2024-02-27T20:58:17.3519353Z LTS 2024-02-27T20:58:17.3519683Z ##[endgroup] 2024-02-27T20:58:17.3520018Z ##[group]Runner Image 2024-02-27T20:58:17.3520521Z Image: ubuntu-22.04 2024-02-27T20:58:17.3520915Z Version: 20240218.1.0 2024-02-27T20:58:17.3521891Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240218.1/images/ubuntu/Ubuntu2204-Readme.md 2024-02-27T20:58:17.3523403Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240218.1 2024-02-27T20:58:17.3524258Z ##[endgroup] 2024-02-27T20:58:17.3524624Z ##[group]Runner Image Provisioner 2024-02-27T20:58:17.3525179Z 2.0.341.1 2024-02-27T20:58:17.3525513Z ##[endgroup] 2024-02-27T20:58:17.3527644Z ##[group]GITHUB_TOKEN Permissions 2024-02-27T20:58:17.3529285Z Actions: write 2024-02-27T20:58:17.3529717Z Checks: write 2024-02-27T20:58:17.3530327Z Contents: write 2024-02-27T20:58:17.3530821Z Deployments: write 2024-02-27T20:58:17.3531279Z Discussions: write 2024-02-27T20:58:17.3531666Z Issues: write 2024-02-27T20:58:17.3532011Z Metadata: read 2024-02-27T20:58:17.3532455Z Packages: write 2024-02-27T20:58:17.3532849Z Pages: write 2024-02-27T20:58:17.3533187Z PullRequests: write 2024-02-27T20:58:17.3533668Z RepositoryProjects: write 2024-02-27T20:58:17.3534137Z SecurityEvents: write 2024-02-27T20:58:17.3534514Z Statuses: write 2024-02-27T20:58:17.3534947Z ##[endgroup] 2024-02-27T20:58:17.3538125Z Secret source: Actions 2024-02-27T20:58:17.3538661Z Prepare workflow directory 2024-02-27T20:58:17.4497447Z Prepare all required actions 2024-02-27T20:58:17.4670018Z Getting action download info 2024-02-27T20:58:17.6756542Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744) 2024-02-27T20:58:17.7962479Z Download action repository 'r-lib/actions@v2' (SHA:8993367d264b4372cfccce1836290b7087db9c92) 2024-02-27T20:58:27.8921470Z Getting action download info 2024-02-27T20:58:28.1012926Z Download action repository 'actions/cache@v4' (SHA:13aacd865c20de90d75de3b17ebe84f7a17d57d2) 2024-02-27T20:58:28.2848137Z Complete job name: ubuntu-latest (3.5) 2024-02-27T20:58:28.3587675Z ##[group]Run actions/checkout@v3 2024-02-27T20:58:28.3588046Z with: 2024-02-27T20:58:28.3588292Z repository: rstudio/shinycoreci 2024-02-27T20:58:28.3588759Z token: *** 2024-02-27T20:58:28.3589003Z ssh-strict: true 2024-02-27T20:58:28.3589267Z persist-credentials: true 2024-02-27T20:58:28.3589555Z clean: true 2024-02-27T20:58:28.3589802Z sparse-checkout-cone-mode: true 2024-02-27T20:58:28.3590109Z fetch-depth: 1 2024-02-27T20:58:28.3590341Z fetch-tags: false 2024-02-27T20:58:28.3590578Z lfs: false 2024-02-27T20:58:28.3590801Z submodules: false 2024-02-27T20:58:28.3591037Z set-safe-directory: true 2024-02-27T20:58:28.3591299Z env: 2024-02-27T20:58:28.3591618Z GITHUB_PAT: *** 2024-02-27T20:58:28.3591870Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:58:28.3592152Z ##[endgroup] 2024-02-27T20:58:28.5441997Z Syncing repository: rstudio/shinycoreci 2024-02-27T20:58:28.5443554Z ##[group]Getting Git version info 2024-02-27T20:58:28.5444197Z Working directory is '/home/runner/work/shinycoreci/shinycoreci' 2024-02-27T20:58:28.5444929Z [command]/usr/bin/git version 2024-02-27T20:58:28.5463625Z git version 2.43.2 2024-02-27T20:58:28.5486581Z ##[endgroup] 2024-02-27T20:58:28.5500543Z Temporarily overriding HOME='/home/runner/work/_temp/6150856d-a823-4475-9368-55934a8c0155' before making global git config changes 2024-02-27T20:58:28.5502196Z Adding repository directory to the temporary git global config as a safe directory 2024-02-27T20:58:28.5506105Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/shinycoreci/shinycoreci 2024-02-27T20:58:28.5550712Z Deleting the contents of '/home/runner/work/shinycoreci/shinycoreci' 2024-02-27T20:58:28.5554789Z ##[group]Initializing the repository 2024-02-27T20:58:28.5558559Z [command]/usr/bin/git init /home/runner/work/shinycoreci/shinycoreci 2024-02-27T20:58:28.5638595Z hint: Using 'master' as the name for the initial branch. This default branch name 2024-02-27T20:58:28.5640233Z hint: is subject to change. To configure the initial branch name to use in all 2024-02-27T20:58:28.5641752Z hint: of your new repositories, which will suppress this warning, call: 2024-02-27T20:58:28.5643119Z hint: 2024-02-27T20:58:28.5643814Z hint: git config --global init.defaultBranch 2024-02-27T20:58:28.5644213Z hint: 2024-02-27T20:58:28.5644643Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2024-02-27T20:58:28.5645337Z hint: 'development'. The just-created branch can be renamed via this command: 2024-02-27T20:58:28.5645811Z hint: 2024-02-27T20:58:28.5646057Z hint: git branch -m 2024-02-27T20:58:28.5651302Z Initialized empty Git repository in /home/runner/work/shinycoreci/shinycoreci/.git/ 2024-02-27T20:58:28.5660553Z [command]/usr/bin/git remote add origin https://github.com/rstudio/shinycoreci 2024-02-27T20:58:28.5702779Z ##[endgroup] 2024-02-27T20:58:28.5703476Z ##[group]Disabling automatic garbage collection 2024-02-27T20:58:28.5705085Z [command]/usr/bin/git config --local gc.auto 0 2024-02-27T20:58:28.5741225Z ##[endgroup] 2024-02-27T20:58:28.5741813Z ##[group]Setting up auth 2024-02-27T20:58:28.5748363Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-02-27T20:58:28.5786396Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2024-02-27T20:58:28.6109905Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-02-27T20:58:28.6147331Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2024-02-27T20:58:28.6392186Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-02-27T20:58:28.6436318Z ##[endgroup] 2024-02-27T20:58:28.6438004Z ##[group]Fetching the repository 2024-02-27T20:58:28.6446572Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +37df12900f7f1d85433b79ade9e91c2c9aaeaa90:refs/remotes/origin/shinyverse_remotes 2024-02-27T20:58:29.0571601Z remote: Enumerating objects: 5098, done. 2024-02-27T20:58:29.0572493Z remote: Counting objects: 0% (1/5098) 2024-02-27T20:58:29.0573256Z remote: Counting objects: 1% (51/5098) 2024-02-27T20:58:29.0574213Z remote: Counting objects: 2% (102/5098) 2024-02-27T20:58:29.0574959Z remote: Counting objects: 3% (153/5098) 2024-02-27T20:58:29.0576755Z remote: Counting objects: 4% (204/5098) 2024-02-27T20:58:29.0577678Z remote: Counting objects: 5% (255/5098) 2024-02-27T20:58:29.0578484Z remote: Counting objects: 6% (306/5098) 2024-02-27T20:58:29.0578956Z remote: Counting objects: 7% (357/5098) 2024-02-27T20:58:29.0579520Z remote: Counting objects: 8% (408/5098) 2024-02-27T20:58:29.0580018Z remote: Counting objects: 9% (459/5098) 2024-02-27T20:58:29.0580480Z remote: Counting objects: 10% (510/5098) 2024-02-27T20:58:29.0581251Z remote: Counting objects: 11% (561/5098) 2024-02-27T20:58:29.0581748Z remote: Counting objects: 12% (612/5098) 2024-02-27T20:58:29.0582276Z remote: Counting objects: 13% (663/5098) 2024-02-27T20:58:29.0722914Z remote: Counting objects: 14% (714/5098) 2024-02-27T20:58:29.0725876Z remote: Counting objects: 15% (765/5098) 2024-02-27T20:58:29.0726872Z remote: Counting objects: 16% (816/5098) 2024-02-27T20:58:29.0727751Z remote: Counting objects: 17% (867/5098) 2024-02-27T20:58:29.0728792Z remote: Counting objects: 18% (918/5098) 2024-02-27T20:58:29.0730133Z remote: Counting objects: 19% (969/5098) 2024-02-27T20:58:29.0731033Z remote: Counting objects: 20% (1020/5098) 2024-02-27T20:58:29.0732088Z remote: Counting objects: 21% (1071/5098) 2024-02-27T20:58:29.0733060Z remote: Counting objects: 22% (1122/5098) 2024-02-27T20:58:29.0733965Z remote: Counting objects: 23% (1173/5098) 2024-02-27T20:58:29.0735138Z remote: Counting objects: 24% (1224/5098) 2024-02-27T20:58:29.0736168Z remote: Counting objects: 25% (1275/5098) 2024-02-27T20:58:29.0737080Z remote: Counting objects: 26% (1326/5098) 2024-02-27T20:58:29.0738054Z remote: Counting objects: 27% (1377/5098) 2024-02-27T20:58:29.0739006Z remote: Counting objects: 28% (1428/5098) 2024-02-27T20:58:29.0739952Z remote: Counting objects: 29% (1479/5098) 2024-02-27T20:58:29.0741470Z remote: Counting objects: 30% (1530/5098) 2024-02-27T20:58:29.0742434Z remote: Counting objects: 31% (1581/5098) 2024-02-27T20:58:29.0743327Z remote: Counting objects: 32% (1632/5098) 2024-02-27T20:58:29.0745370Z remote: Counting objects: 33% (1683/5098) 2024-02-27T20:58:29.0746396Z remote: Counting objects: 34% (1734/5098) 2024-02-27T20:58:29.0748292Z remote: Counting objects: 35% (1785/5098) 2024-02-27T20:58:29.0750331Z remote: Counting objects: 36% (1836/5098) 2024-02-27T20:58:29.0751442Z remote: Counting objects: 37% (1887/5098) 2024-02-27T20:58:29.0752481Z remote: Counting objects: 38% (1938/5098) 2024-02-27T20:58:29.0753060Z remote: Counting objects: 39% (1989/5098) 2024-02-27T20:58:29.0753531Z remote: Counting objects: 40% (2040/5098) 2024-02-27T20:58:29.0754124Z remote: Counting objects: 41% (2091/5098) 2024-02-27T20:58:29.0754625Z remote: Counting objects: 42% (2142/5098) 2024-02-27T20:58:29.0755087Z remote: Counting objects: 43% (2193/5098) 2024-02-27T20:58:29.0755655Z remote: Counting objects: 44% (2244/5098) 2024-02-27T20:58:29.0756164Z remote: Counting objects: 45% (2295/5098) 2024-02-27T20:58:29.0756630Z remote: Counting objects: 46% (2346/5098) 2024-02-27T20:58:29.0757446Z remote: Counting objects: 47% (2397/5098) 2024-02-27T20:58:29.0757981Z remote: Counting objects: 48% (2448/5098) 2024-02-27T20:58:29.0758448Z remote: Counting objects: 49% (2499/5098) 2024-02-27T20:58:29.0759033Z remote: Counting objects: 50% (2549/5098) 2024-02-27T20:58:29.0759524Z remote: Counting objects: 51% (2600/5098) 2024-02-27T20:58:29.0759992Z remote: Counting objects: 52% (2651/5098) 2024-02-27T20:58:29.0760570Z remote: Counting objects: 53% (2702/5098) 2024-02-27T20:58:29.0761057Z remote: Counting objects: 54% (2753/5098) 2024-02-27T20:58:29.0761521Z remote: Counting objects: 55% (2804/5098) 2024-02-27T20:58:29.0762081Z remote: Counting objects: 56% (2855/5098) 2024-02-27T20:58:29.0762577Z remote: Counting objects: 57% (2906/5098) 2024-02-27T20:58:29.0763161Z remote: Counting objects: 58% (2957/5098) 2024-02-27T20:58:29.0763623Z remote: Counting objects: 59% (3008/5098) 2024-02-27T20:58:29.0764115Z remote: Counting objects: 60% (3059/5098) 2024-02-27T20:58:29.0764677Z remote: Counting objects: 61% (3110/5098) 2024-02-27T20:58:29.0765129Z remote: Counting objects: 62% (3161/5098) 2024-02-27T20:58:29.0765629Z remote: Counting objects: 63% (3212/5098) 2024-02-27T20:58:29.0766294Z remote: Counting objects: 64% (3263/5098) 2024-02-27T20:58:29.0788163Z remote: Counting objects: 65% (3314/5098) 2024-02-27T20:58:29.0790260Z remote: Counting objects: 66% (3365/5098) 2024-02-27T20:58:29.0791198Z remote: Counting objects: 67% (3416/5098) 2024-02-27T20:58:29.0792161Z remote: Counting objects: 68% (3467/5098) 2024-02-27T20:58:29.0793215Z remote: Counting objects: 69% (3518/5098) 2024-02-27T20:58:29.0794039Z remote: Counting objects: 70% (3569/5098) 2024-02-27T20:58:29.0795223Z remote: Counting objects: 71% (3620/5098) 2024-02-27T20:58:29.0796215Z remote: Counting objects: 72% (3671/5098) 2024-02-27T20:58:29.0797121Z remote: Counting objects: 73% (3722/5098) 2024-02-27T20:58:29.0798086Z remote: Counting objects: 74% (3773/5098) 2024-02-27T20:58:29.0799224Z remote: Counting objects: 75% (3824/5098) 2024-02-27T20:58:29.0800237Z remote: Counting objects: 76% (3875/5098) 2024-02-27T20:58:29.0801206Z remote: Counting objects: 77% (3926/5098) 2024-02-27T20:58:29.0802222Z remote: Counting objects: 78% (3977/5098) 2024-02-27T20:58:29.0803041Z remote: Counting objects: 79% (4028/5098) 2024-02-27T20:58:29.0803901Z remote: Counting objects: 80% (4079/5098) 2024-02-27T20:58:29.0804869Z remote: Counting objects: 81% (4130/5098) 2024-02-27T20:58:29.0805707Z remote: Counting objects: 82% (4181/5098) 2024-02-27T20:58:29.0806566Z remote: Counting objects: 83% (4232/5098) 2024-02-27T20:58:29.0807576Z remote: Counting objects: 84% (4283/5098) 2024-02-27T20:58:29.0808570Z remote: Counting objects: 85% (4334/5098) 2024-02-27T20:58:29.0809462Z remote: Counting objects: 86% (4385/5098) 2024-02-27T20:58:29.0810549Z remote: Counting objects: 87% (4436/5098) 2024-02-27T20:58:29.0811492Z remote: Counting objects: 88% (4487/5098) 2024-02-27T20:58:29.0812370Z remote: Counting objects: 89% (4538/5098) 2024-02-27T20:58:29.0813922Z remote: Counting objects: 90% (4589/5098) 2024-02-27T20:58:29.0814797Z remote: Counting objects: 91% (4640/5098) 2024-02-27T20:58:29.0815608Z remote: Counting objects: 92% (4691/5098) 2024-02-27T20:58:29.0816619Z remote: Counting objects: 93% (4742/5098) 2024-02-27T20:58:29.0817461Z remote: Counting objects: 94% (4793/5098) 2024-02-27T20:58:29.0818269Z remote: Counting objects: 95% (4844/5098) 2024-02-27T20:58:29.0819297Z remote: Counting objects: 96% (4895/5098) 2024-02-27T20:58:29.0820218Z remote: Counting objects: 97% (4946/5098) 2024-02-27T20:58:29.0821638Z remote: Counting objects: 98% (4997/5098) 2024-02-27T20:58:29.0822773Z remote: Counting objects: 99% (5048/5098) 2024-02-27T20:58:29.0823682Z remote: Counting objects: 100% (5098/5098) 2024-02-27T20:58:29.0824621Z remote: Counting objects: 100% (5098/5098), done. 2024-02-27T20:58:29.0825708Z remote: Compressing objects: 0% (1/3748) 2024-02-27T20:58:29.0911445Z remote: Compressing objects: 1% (38/3748) 2024-02-27T20:58:29.1018915Z remote: Compressing objects: 2% (75/3748) 2024-02-27T20:58:29.1062414Z remote: Compressing objects: 3% (113/3748) 2024-02-27T20:58:29.1139134Z remote: Compressing objects: 4% (150/3748) 2024-02-27T20:58:29.1140037Z remote: Compressing objects: 5% (188/3748) 2024-02-27T20:58:29.1150869Z remote: Compressing objects: 6% (225/3748) 2024-02-27T20:58:29.1156895Z remote: Compressing objects: 7% (263/3748) 2024-02-27T20:58:29.1166516Z remote: Compressing objects: 8% (300/3748) 2024-02-27T20:58:29.1167791Z remote: Compressing objects: 9% (338/3748) 2024-02-27T20:58:29.1389563Z remote: Compressing objects: 10% (375/3748) 2024-02-27T20:58:29.1409441Z remote: Compressing objects: 11% (413/3748) 2024-02-27T20:58:29.1441980Z remote: Compressing objects: 12% (450/3748) 2024-02-27T20:58:29.1443016Z remote: Compressing objects: 13% (488/3748) 2024-02-27T20:58:29.1443905Z remote: Compressing objects: 14% (525/3748) 2024-02-27T20:58:29.1528848Z remote: Compressing objects: 15% (563/3748) 2024-02-27T20:58:29.1573761Z remote: Compressing objects: 16% (600/3748) 2024-02-27T20:58:29.1574390Z remote: Compressing objects: 17% (638/3748) 2024-02-27T20:58:29.1575052Z remote: Compressing objects: 18% (675/3748) 2024-02-27T20:58:29.1665792Z remote: Compressing objects: 19% (713/3748) 2024-02-27T20:58:29.1666778Z remote: Compressing objects: 20% (750/3748) 2024-02-27T20:58:29.1712544Z remote: Compressing objects: 21% (788/3748) 2024-02-27T20:58:29.1713491Z remote: Compressing objects: 22% (825/3748) 2024-02-27T20:58:29.2202933Z remote: Compressing objects: 23% (863/3748) 2024-02-27T20:58:29.3227286Z remote: Compressing objects: 24% (900/3748) 2024-02-27T20:58:29.3512392Z remote: Compressing objects: 25% (937/3748) 2024-02-27T20:58:29.3636469Z remote: Compressing objects: 26% (975/3748) 2024-02-27T20:58:29.3730972Z remote: Compressing objects: 27% (1012/3748) 2024-02-27T20:58:29.3801232Z remote: Compressing objects: 28% (1050/3748) 2024-02-27T20:58:29.3875789Z remote: Compressing objects: 29% (1087/3748) 2024-02-27T20:58:29.3994694Z remote: Compressing objects: 30% (1125/3748) 2024-02-27T20:58:29.4051391Z remote: Compressing objects: 31% (1162/3748) 2024-02-27T20:58:29.4125162Z remote: Compressing objects: 32% (1200/3748) 2024-02-27T20:58:29.4166837Z remote: Compressing objects: 33% (1237/3748) 2024-02-27T20:58:29.4312689Z remote: Compressing objects: 34% (1275/3748) 2024-02-27T20:58:29.4639710Z remote: Compressing objects: 35% (1312/3748) 2024-02-27T20:58:29.4937240Z remote: Compressing objects: 36% (1350/3748) 2024-02-27T20:58:29.5149409Z remote: Compressing objects: 37% (1387/3748) 2024-02-27T20:58:29.5535725Z remote: Compressing objects: 38% (1425/3748) 2024-02-27T20:58:29.5536623Z remote: Compressing objects: 39% (1462/3748) 2024-02-27T20:58:29.5749853Z remote: Compressing objects: 40% (1500/3748) 2024-02-27T20:58:29.5901788Z remote: Compressing objects: 41% (1537/3748) 2024-02-27T20:58:29.6060332Z remote: Compressing objects: 42% (1575/3748) 2024-02-27T20:58:29.6189248Z remote: Compressing objects: 43% (1612/3748) 2024-02-27T20:58:29.6307770Z remote: Compressing objects: 44% (1650/3748) 2024-02-27T20:58:29.6402990Z remote: Compressing objects: 45% (1687/3748) 2024-02-27T20:58:29.6452453Z remote: Compressing objects: 46% (1725/3748) 2024-02-27T20:58:29.6453545Z remote: Compressing objects: 47% (1762/3748) 2024-02-27T20:58:29.6492305Z remote: Compressing objects: 48% (1800/3748) 2024-02-27T20:58:29.6637208Z remote: Compressing objects: 49% (1837/3748) 2024-02-27T20:58:29.6637898Z remote: Compressing objects: 50% (1874/3748) 2024-02-27T20:58:29.7009046Z remote: Compressing objects: 51% (1912/3748) 2024-02-27T20:58:29.7009661Z remote: Compressing objects: 52% (1949/3748) 2024-02-27T20:58:29.7095947Z remote: Compressing objects: 53% (1987/3748) 2024-02-27T20:58:29.7100999Z remote: Compressing objects: 54% (2024/3748) 2024-02-27T20:58:29.7101744Z remote: Compressing objects: 55% (2062/3748) 2024-02-27T20:58:29.7106180Z remote: Compressing objects: 56% (2099/3748) 2024-02-27T20:58:29.7106687Z remote: Compressing objects: 57% (2137/3748) 2024-02-27T20:58:29.7127952Z remote: Compressing objects: 58% (2174/3748) 2024-02-27T20:58:29.7163083Z remote: Compressing objects: 59% (2212/3748) 2024-02-27T20:58:29.7174518Z remote: Compressing objects: 60% (2249/3748) 2024-02-27T20:58:29.7187304Z remote: Compressing objects: 61% (2287/3748) 2024-02-27T20:58:29.7215576Z remote: Compressing objects: 62% (2324/3748) 2024-02-27T20:58:29.7232474Z remote: Compressing objects: 63% (2362/3748) 2024-02-27T20:58:29.7251554Z remote: Compressing objects: 64% (2399/3748) 2024-02-27T20:58:29.7260486Z remote: Compressing objects: 65% (2437/3748) 2024-02-27T20:58:29.7277710Z remote: Compressing objects: 66% (2474/3748) 2024-02-27T20:58:29.7286905Z remote: Compressing objects: 67% (2512/3748) 2024-02-27T20:58:29.7287590Z remote: Compressing objects: 68% (2549/3748) 2024-02-27T20:58:29.7288810Z remote: Compressing objects: 69% (2587/3748) 2024-02-27T20:58:29.7289557Z remote: Compressing objects: 70% (2624/3748) 2024-02-27T20:58:29.7290288Z remote: Compressing objects: 71% (2662/3748) 2024-02-27T20:58:29.7290897Z remote: Compressing objects: 72% (2699/3748) 2024-02-27T20:58:29.7291607Z remote: Compressing objects: 73% (2737/3748) 2024-02-27T20:58:29.7293041Z remote: Compressing objects: 74% (2774/3748) 2024-02-27T20:58:29.7293925Z remote: Compressing objects: 75% (2811/3748) 2024-02-27T20:58:29.7294771Z remote: Compressing objects: 76% (2849/3748) 2024-02-27T20:58:29.7295571Z remote: Compressing objects: 77% (2886/3748) 2024-02-27T20:58:29.7296362Z remote: Compressing objects: 78% (2924/3748) 2024-02-27T20:58:29.7297183Z remote: Compressing objects: 79% (2961/3748) 2024-02-27T20:58:29.7297985Z remote: Compressing objects: 80% (2999/3748) 2024-02-27T20:58:29.7298783Z remote: Compressing objects: 81% (3036/3748) 2024-02-27T20:58:29.7299596Z remote: Compressing objects: 82% (3074/3748) 2024-02-27T20:58:29.7300220Z remote: Compressing objects: 83% (3111/3748) 2024-02-27T20:58:29.7301043Z remote: Compressing objects: 84% (3149/3748) 2024-02-27T20:58:29.7301567Z remote: Compressing objects: 85% (3186/3748) 2024-02-27T20:58:29.7301994Z remote: Compressing objects: 86% (3224/3748) 2024-02-27T20:58:29.7302407Z remote: Compressing objects: 87% (3261/3748) 2024-02-27T20:58:29.7302825Z remote: Compressing objects: 88% (3299/3748) 2024-02-27T20:58:29.7303342Z remote: Compressing objects: 89% (3336/3748) 2024-02-27T20:58:29.7303797Z remote: Compressing objects: 90% (3374/3748) 2024-02-27T20:58:29.7305354Z remote: Compressing objects: 91% (3411/3748) 2024-02-27T20:58:29.7306213Z remote: Compressing objects: 92% (3449/3748) 2024-02-27T20:58:29.7307210Z remote: Compressing objects: 93% (3486/3748) 2024-02-27T20:58:29.7308000Z remote: Compressing objects: 94% (3524/3748) 2024-02-27T20:58:29.7309431Z remote: Compressing objects: 95% (3561/3748) 2024-02-27T20:58:29.7310158Z remote: Compressing objects: 96% (3599/3748) 2024-02-27T20:58:29.7310655Z remote: Compressing objects: 97% (3636/3748) 2024-02-27T20:58:29.7313201Z remote: Compressing objects: 98% (3674/3748) 2024-02-27T20:58:29.7313733Z remote: Compressing objects: 99% (3711/3748) 2024-02-27T20:58:29.7314154Z remote: Compressing objects: 100% (3748/3748) 2024-02-27T20:58:29.7314603Z remote: Compressing objects: 100% (3748/3748), done. 2024-02-27T20:58:29.8156781Z Receiving objects: 0% (1/5098) 2024-02-27T20:58:29.9891941Z Receiving objects: 1% (51/5098) 2024-02-27T20:58:30.0001037Z Receiving objects: 2% (102/5098) 2024-02-27T20:58:30.0139601Z Receiving objects: 3% (153/5098) 2024-02-27T20:58:30.0701635Z Receiving objects: 4% (204/5098) 2024-02-27T20:58:30.0782058Z Receiving objects: 5% (255/5098) 2024-02-27T20:58:30.1053335Z Receiving objects: 6% (306/5098) 2024-02-27T20:58:30.1253869Z Receiving objects: 7% (357/5098) 2024-02-27T20:58:30.1375891Z Receiving objects: 8% (408/5098) 2024-02-27T20:58:30.1506357Z Receiving objects: 9% (459/5098) 2024-02-27T20:58:30.1826998Z Receiving objects: 10% (510/5098) 2024-02-27T20:58:30.1890677Z Receiving objects: 11% (561/5098) 2024-02-27T20:58:30.2264185Z Receiving objects: 12% (612/5098) 2024-02-27T20:58:30.2458795Z Receiving objects: 13% (663/5098) 2024-02-27T20:58:30.2807057Z Receiving objects: 14% (714/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.2994967Z Receiving objects: 15% (765/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.3183069Z Receiving objects: 16% (816/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.3267054Z Receiving objects: 17% (867/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.3628062Z Receiving objects: 18% (918/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.4081299Z Receiving objects: 19% (969/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.4350041Z Receiving objects: 20% (1020/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.4587367Z Receiving objects: 21% (1071/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.4925697Z Receiving objects: 22% (1122/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.7225462Z Receiving objects: 23% (1173/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.7286286Z Receiving objects: 24% (1224/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.7344451Z Receiving objects: 25% (1275/5098), 8.87 MiB | 17.73 MiB/s 2024-02-27T20:58:30.7367841Z Receiving objects: 25% (1318/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.7862586Z Receiving objects: 26% (1326/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.8153018Z Receiving objects: 27% (1377/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.8399864Z Receiving objects: 28% (1428/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.8489845Z Receiving objects: 29% (1479/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.8614867Z Receiving objects: 30% (1530/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.8823191Z Receiving objects: 31% (1581/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.8974238Z Receiving objects: 32% (1632/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.9130305Z Receiving objects: 33% (1683/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.9371435Z Receiving objects: 34% (1734/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:30.9562770Z Receiving objects: 35% (1785/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.0972233Z Receiving objects: 36% (1836/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.1165627Z Receiving objects: 37% (1887/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.1245637Z Receiving objects: 38% (1938/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.1403598Z Receiving objects: 39% (1989/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.1426655Z Receiving objects: 40% (2040/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.1858319Z Receiving objects: 41% (2091/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.2136746Z Receiving objects: 42% (2142/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.2222644Z Receiving objects: 43% (2193/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.3673481Z Receiving objects: 44% (2244/5098), 31.83 MiB | 31.82 MiB/s 2024-02-27T20:58:31.4435710Z Receiving objects: 45% (2295/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.4792397Z Receiving objects: 46% (2346/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.5160429Z Receiving objects: 47% (2397/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.5442462Z Receiving objects: 48% (2448/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.5641905Z Receiving objects: 49% (2499/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.5672733Z Receiving objects: 50% (2549/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.5943462Z Receiving objects: 51% (2600/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.6453793Z Receiving objects: 52% (2651/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.6475352Z Receiving objects: 53% (2702/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.6523305Z Receiving objects: 54% (2753/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.6554747Z Receiving objects: 55% (2804/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.6766095Z Receiving objects: 56% (2855/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.6983969Z Receiving objects: 57% (2906/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7155874Z Receiving objects: 58% (2957/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7249623Z Receiving objects: 59% (3008/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7320574Z Receiving objects: 60% (3059/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7343520Z Receiving objects: 61% (3110/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7356767Z Receiving objects: 61% (3146/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7405469Z Receiving objects: 62% (3161/5098), 54.93 MiB | 36.59 MiB/s 2024-02-27T20:58:31.7746646Z Receiving objects: 63% (3212/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.7861801Z Receiving objects: 64% (3263/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.7967135Z Receiving objects: 65% (3314/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8048645Z Receiving objects: 66% (3365/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8235008Z Receiving objects: 67% (3416/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8409149Z Receiving objects: 68% (3467/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8578190Z Receiving objects: 69% (3518/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8690805Z Receiving objects: 70% (3569/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8749725Z Receiving objects: 71% (3620/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8786647Z Receiving objects: 72% (3671/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.8945631Z Receiving objects: 73% (3722/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9165754Z Receiving objects: 74% (3773/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9228922Z Receiving objects: 75% (3824/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9288764Z Receiving objects: 76% (3875/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9353824Z Receiving objects: 77% (3926/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9374368Z Receiving objects: 78% (3977/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9469677Z Receiving objects: 79% (4028/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9701930Z Receiving objects: 80% (4079/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9718976Z Receiving objects: 81% (4130/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9741404Z Receiving objects: 82% (4181/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9747606Z Receiving objects: 83% (4232/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9749350Z Receiving objects: 84% (4283/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9870907Z Receiving objects: 85% (4334/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:31.9992798Z Receiving objects: 86% (4385/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.0030583Z Receiving objects: 87% (4436/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.0123363Z Receiving objects: 88% (4487/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.0316960Z Receiving objects: 89% (4538/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.0656380Z Receiving objects: 90% (4589/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.0782276Z Receiving objects: 91% (4640/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.1005643Z Receiving objects: 92% (4691/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.1461895Z Receiving objects: 93% (4742/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.1856501Z Receiving objects: 94% (4793/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.2167979Z Receiving objects: 95% (4844/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.2341568Z Receiving objects: 96% (4895/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.2465132Z Receiving objects: 97% (4946/5098), 79.66 MiB | 39.81 MiB/s 2024-02-27T20:58:32.2496827Z Receiving objects: 98% (4997/5098), 103.98 MiB | 41.57 MiB/s 2024-02-27T20:58:32.2498625Z remote: Total 5098 (delta 906), reused 4450 (delta 670), pack-reused 0 2024-02-27T20:58:32.2510939Z Receiving objects: 99% (5048/5098), 103.98 MiB | 41.57 MiB/s 2024-02-27T20:58:32.2512013Z Receiving objects: 100% (5098/5098), 103.98 MiB | 41.57 MiB/s 2024-02-27T20:58:32.2512891Z Receiving objects: 100% (5098/5098), 104.78 MiB | 41.63 MiB/s, done. 2024-02-27T20:58:32.2520535Z Resolving deltas: 0% (0/906) 2024-02-27T20:58:32.2522450Z Resolving deltas: 1% (10/906) 2024-02-27T20:58:32.2523354Z Resolving deltas: 2% (19/906) 2024-02-27T20:58:32.2527842Z Resolving deltas: 3% (28/906) 2024-02-27T20:58:32.2528426Z Resolving deltas: 4% (37/906) 2024-02-27T20:58:32.2529173Z Resolving deltas: 5% (46/906) 2024-02-27T20:58:32.2529929Z Resolving deltas: 6% (55/906) 2024-02-27T20:58:32.2530851Z Resolving deltas: 7% (64/906) 2024-02-27T20:58:32.2533479Z Resolving deltas: 8% (73/906) 2024-02-27T20:58:32.2533993Z Resolving deltas: 9% (82/906) 2024-02-27T20:58:32.2534495Z Resolving deltas: 10% (91/906) 2024-02-27T20:58:32.2536469Z Resolving deltas: 11% (100/906) 2024-02-27T20:58:32.2537290Z Resolving deltas: 12% (109/906) 2024-02-27T20:58:32.2538169Z Resolving deltas: 13% (118/906) 2024-02-27T20:58:32.2538910Z Resolving deltas: 14% (127/906) 2024-02-27T20:58:32.2539611Z Resolving deltas: 15% (136/906) 2024-02-27T20:58:32.2540110Z Resolving deltas: 16% (145/906) 2024-02-27T20:58:32.2540782Z Resolving deltas: 17% (155/906) 2024-02-27T20:58:32.2541286Z Resolving deltas: 18% (164/906) 2024-02-27T20:58:32.2541772Z Resolving deltas: 19% (173/906) 2024-02-27T20:58:32.2543782Z Resolving deltas: 20% (182/906) 2024-02-27T20:58:32.2544300Z Resolving deltas: 21% (191/906) 2024-02-27T20:58:32.2544796Z Resolving deltas: 22% (200/906) 2024-02-27T20:58:32.2545292Z Resolving deltas: 23% (209/906) 2024-02-27T20:58:32.2545778Z Resolving deltas: 24% (218/906) 2024-02-27T20:58:32.2546271Z Resolving deltas: 25% (227/906) 2024-02-27T20:58:32.2547180Z Resolving deltas: 26% (236/906) 2024-02-27T20:58:32.2547693Z Resolving deltas: 27% (245/906) 2024-02-27T20:58:32.2549653Z Resolving deltas: 28% (254/906) 2024-02-27T20:58:32.2550416Z Resolving deltas: 29% (263/906) 2024-02-27T20:58:32.2551279Z Resolving deltas: 30% (272/906) 2024-02-27T20:58:32.2552129Z Resolving deltas: 31% (281/906) 2024-02-27T20:58:32.2552666Z Resolving deltas: 32% (290/906) 2024-02-27T20:58:32.2554049Z Resolving deltas: 33% (299/906) 2024-02-27T20:58:32.2555292Z Resolving deltas: 34% (309/906) 2024-02-27T20:58:32.2556393Z Resolving deltas: 35% (318/906) 2024-02-27T20:58:32.2557156Z Resolving deltas: 36% (328/906) 2024-02-27T20:58:32.2564560Z Resolving deltas: 37% (336/906) 2024-02-27T20:58:32.2573702Z Resolving deltas: 38% (345/906) 2024-02-27T20:58:32.2576306Z Resolving deltas: 39% (354/906) 2024-02-27T20:58:32.2580436Z Resolving deltas: 40% (363/906) 2024-02-27T20:58:32.2586671Z Resolving deltas: 41% (372/906) 2024-02-27T20:58:32.2589373Z Resolving deltas: 42% (381/906) 2024-02-27T20:58:32.2594208Z Resolving deltas: 43% (390/906) 2024-02-27T20:58:32.2597029Z Resolving deltas: 44% (399/906) 2024-02-27T20:58:32.2597940Z Resolving deltas: 45% (408/906) 2024-02-27T20:58:32.2601641Z Resolving deltas: 46% (417/906) 2024-02-27T20:58:32.2608083Z Resolving deltas: 47% (426/906) 2024-02-27T20:58:32.2627066Z Resolving deltas: 48% (435/906) 2024-02-27T20:58:32.2653492Z Resolving deltas: 49% (444/906) 2024-02-27T20:58:32.2674296Z Resolving deltas: 50% (453/906) 2024-02-27T20:58:32.2693453Z Resolving deltas: 51% (463/906) 2024-02-27T20:58:32.2706401Z Resolving deltas: 52% (472/906) 2024-02-27T20:58:32.2731279Z Resolving deltas: 53% (481/906) 2024-02-27T20:58:32.2737022Z Resolving deltas: 54% (490/906) 2024-02-27T20:58:32.2737935Z Resolving deltas: 55% (499/906) 2024-02-27T20:58:32.2738924Z Resolving deltas: 56% (508/906) 2024-02-27T20:58:32.2779036Z Resolving deltas: 57% (517/906) 2024-02-27T20:58:32.2810991Z Resolving deltas: 58% (526/906) 2024-02-27T20:58:32.2827501Z Resolving deltas: 59% (535/906) 2024-02-27T20:58:32.2862154Z Resolving deltas: 60% (544/906) 2024-02-27T20:58:32.2928917Z Resolving deltas: 61% (553/906) 2024-02-27T20:58:32.2939528Z Resolving deltas: 62% (562/906) 2024-02-27T20:58:32.2943900Z Resolving deltas: 63% (571/906) 2024-02-27T20:58:32.2949578Z Resolving deltas: 64% (580/906) 2024-02-27T20:58:32.2963899Z Resolving deltas: 65% (589/906) 2024-02-27T20:58:32.2971091Z Resolving deltas: 66% (598/906) 2024-02-27T20:58:32.2975221Z Resolving deltas: 67% (608/906) 2024-02-27T20:58:32.2980216Z Resolving deltas: 68% (617/906) 2024-02-27T20:58:32.2984710Z Resolving deltas: 69% (626/906) 2024-02-27T20:58:32.2992249Z Resolving deltas: 70% (635/906) 2024-02-27T20:58:32.2994479Z Resolving deltas: 71% (644/906) 2024-02-27T20:58:32.3001941Z Resolving deltas: 72% (653/906) 2024-02-27T20:58:32.3094268Z Resolving deltas: 73% (662/906) 2024-02-27T20:58:32.3166836Z Resolving deltas: 74% (671/906) 2024-02-27T20:58:32.3181498Z Resolving deltas: 75% (680/906) 2024-02-27T20:58:32.3183826Z Resolving deltas: 76% (689/906) 2024-02-27T20:58:32.3188812Z Resolving deltas: 77% (698/906) 2024-02-27T20:58:32.3197136Z Resolving deltas: 78% (707/906) 2024-02-27T20:58:32.3202305Z Resolving deltas: 79% (716/906) 2024-02-27T20:58:32.3209377Z Resolving deltas: 80% (725/906) 2024-02-27T20:58:32.3236886Z Resolving deltas: 81% (734/906) 2024-02-27T20:58:32.3256552Z Resolving deltas: 82% (743/906) 2024-02-27T20:58:32.3268262Z Resolving deltas: 83% (752/906) 2024-02-27T20:58:32.3291903Z Resolving deltas: 84% (762/906) 2024-02-27T20:58:32.3310150Z Resolving deltas: 85% (771/906) 2024-02-27T20:58:32.3315806Z Resolving deltas: 86% (780/906) 2024-02-27T20:58:32.3320579Z Resolving deltas: 87% (789/906) 2024-02-27T20:58:32.3321109Z Resolving deltas: 88% (799/906) 2024-02-27T20:58:32.3321633Z Resolving deltas: 89% (807/906) 2024-02-27T20:58:32.3322414Z Resolving deltas: 90% (816/906) 2024-02-27T20:58:32.3323087Z Resolving deltas: 91% (826/906) 2024-02-27T20:58:32.3326926Z Resolving deltas: 92% (834/906) 2024-02-27T20:58:32.3356812Z Resolving deltas: 93% (843/906) 2024-02-27T20:58:32.3368190Z Resolving deltas: 94% (852/906) 2024-02-27T20:58:32.3375730Z Resolving deltas: 95% (861/906) 2024-02-27T20:58:32.3376271Z Resolving deltas: 96% (870/906) 2024-02-27T20:58:32.3376775Z Resolving deltas: 97% (880/906) 2024-02-27T20:58:32.3382816Z Resolving deltas: 98% (888/906) 2024-02-27T20:58:32.3388942Z Resolving deltas: 99% (897/906) 2024-02-27T20:58:32.3390922Z Resolving deltas: 100% (906/906) 2024-02-27T20:58:32.3391472Z Resolving deltas: 100% (906/906), done. 2024-02-27T20:58:32.5251149Z From https://github.com/rstudio/shinycoreci 2024-02-27T20:58:32.5252588Z * [new ref] 37df12900f7f1d85433b79ade9e91c2c9aaeaa90 -> origin/shinyverse_remotes 2024-02-27T20:58:32.5282638Z ##[endgroup] 2024-02-27T20:58:32.5283258Z ##[group]Determining the checkout info 2024-02-27T20:58:32.5286011Z ##[endgroup] 2024-02-27T20:58:32.5286787Z ##[group]Checking out the ref 2024-02-27T20:58:32.5292717Z [command]/usr/bin/git checkout --progress --force -B shinyverse_remotes refs/remotes/origin/shinyverse_remotes 2024-02-27T20:58:33.5720870Z Updating files: 43% (4160/9556) 2024-02-27T20:58:33.6128325Z Updating files: 44% (4205/9556) 2024-02-27T20:58:33.6473384Z Updating files: 45% (4301/9556) 2024-02-27T20:58:33.6825119Z Updating files: 46% (4396/9556) 2024-02-27T20:58:33.7024697Z Updating files: 47% (4492/9556) 2024-02-27T20:58:33.7170703Z Updating files: 48% (4587/9556) 2024-02-27T20:58:33.7387256Z Updating files: 49% (4683/9556) 2024-02-27T20:58:33.7641825Z Updating files: 50% (4778/9556) 2024-02-27T20:58:33.7896913Z Updating files: 51% (4874/9556) 2024-02-27T20:58:33.7984966Z Updating files: 52% (4970/9556) 2024-02-27T20:58:33.8151574Z Updating files: 53% (5065/9556) 2024-02-27T20:58:33.8230035Z Updating files: 54% (5161/9556) 2024-02-27T20:58:33.8341359Z Updating files: 55% (5256/9556) 2024-02-27T20:58:33.8514145Z Updating files: 56% (5352/9556) 2024-02-27T20:58:33.8708818Z Updating files: 57% (5447/9556) 2024-02-27T20:58:33.8868359Z Updating files: 58% (5543/9556) 2024-02-27T20:58:33.9015795Z Updating files: 59% (5639/9556) 2024-02-27T20:58:33.9109111Z Updating files: 60% (5734/9556) 2024-02-27T20:58:33.9222534Z Updating files: 61% (5830/9556) 2024-02-27T20:58:33.9476725Z Updating files: 62% (5925/9556) 2024-02-27T20:58:33.9669592Z Updating files: 63% (6021/9556) 2024-02-27T20:58:33.9782367Z Updating files: 64% (6116/9556) 2024-02-27T20:58:33.9914299Z Updating files: 65% (6212/9556) 2024-02-27T20:58:33.9999667Z Updating files: 66% (6307/9556) 2024-02-27T20:58:34.0143481Z Updating files: 67% (6403/9556) 2024-02-27T20:58:34.0310132Z Updating files: 68% (6499/9556) 2024-02-27T20:58:34.0574225Z Updating files: 69% (6594/9556) 2024-02-27T20:58:34.0688624Z Updating files: 70% (6690/9556) 2024-02-27T20:58:34.0815445Z Updating files: 71% (6785/9556) 2024-02-27T20:58:34.0931266Z Updating files: 72% (6881/9556) 2024-02-27T20:58:34.1192352Z Updating files: 73% (6976/9556) 2024-02-27T20:58:34.1312038Z Updating files: 74% (7072/9556) 2024-02-27T20:58:34.1413829Z Updating files: 75% (7167/9556) 2024-02-27T20:58:34.1526180Z Updating files: 76% (7263/9556) 2024-02-27T20:58:34.1618156Z Updating files: 77% (7359/9556) 2024-02-27T20:58:34.1908217Z Updating files: 78% (7454/9556) 2024-02-27T20:58:34.2010869Z Updating files: 79% (7550/9556) 2024-02-27T20:58:34.2104812Z Updating files: 80% (7645/9556) 2024-02-27T20:58:34.2176178Z Updating files: 81% (7741/9556) 2024-02-27T20:58:34.2600008Z Updating files: 82% (7836/9556) 2024-02-27T20:58:34.2677182Z Updating files: 83% (7932/9556) 2024-02-27T20:58:34.2772911Z Updating files: 84% (8028/9556) 2024-02-27T20:58:34.2866995Z Updating files: 85% (8123/9556) 2024-02-27T20:58:34.2958251Z Updating files: 86% (8219/9556) 2024-02-27T20:58:34.3029152Z Updating files: 87% (8314/9556) 2024-02-27T20:58:34.3105310Z Updating files: 88% (8410/9556) 2024-02-27T20:58:34.3175965Z Updating files: 89% (8505/9556) 2024-02-27T20:58:34.3403553Z Updating files: 90% (8601/9556) 2024-02-27T20:58:34.3644477Z Updating files: 91% (8696/9556) 2024-02-27T20:58:34.3792477Z Updating files: 92% (8792/9556) 2024-02-27T20:58:34.4036757Z Updating files: 93% (8888/9556) 2024-02-27T20:58:34.4137506Z Updating files: 94% (8983/9556) 2024-02-27T20:58:34.4314649Z Updating files: 95% (9079/9556) 2024-02-27T20:58:34.4555306Z Updating files: 96% (9174/9556) 2024-02-27T20:58:34.4595719Z Updating files: 97% (9270/9556) 2024-02-27T20:58:34.4636045Z Updating files: 98% (9365/9556) 2024-02-27T20:58:34.4695678Z Updating files: 99% (9461/9556) 2024-02-27T20:58:34.4696179Z Updating files: 100% (9556/9556) 2024-02-27T20:58:34.4696582Z Updating files: 100% (9556/9556), done. 2024-02-27T20:58:34.4831502Z Switched to a new branch 'shinyverse_remotes' 2024-02-27T20:58:34.4832272Z branch 'shinyverse_remotes' set up to track 'origin/shinyverse_remotes'. 2024-02-27T20:58:34.4906039Z ##[endgroup] 2024-02-27T20:58:34.4952493Z [command]/usr/bin/git log -1 --format='%H' 2024-02-27T20:58:34.4984900Z '37df12900f7f1d85433b79ade9e91c2c9aaeaa90' 2024-02-27T20:58:34.5237049Z ##[group]Run r-lib/actions/setup-pandoc@v2 2024-02-27T20:58:34.5237416Z with: 2024-02-27T20:58:34.5237633Z pandoc-version: 3.1.11 2024-02-27T20:58:34.5237896Z env: 2024-02-27T20:58:34.5238316Z GITHUB_PAT: *** 2024-02-27T20:58:34.5238563Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:58:34.5238827Z ##[endgroup] 2024-02-27T20:58:34.8121826Z ##[group]Download pandoc 2024-02-27T20:58:35.5840590Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/611811ff-f357-449a-a77c-51d216243b2f -f /home/runner/work/_temp/85940abd-57c7-4791-a898-0341e344def0 2024-02-27T20:58:36.6250615Z ##[group]Run r-lib/actions/setup-r@v2 2024-02-27T20:58:36.6250965Z with: 2024-02-27T20:58:36.6251177Z r-version: 3.5 2024-02-27T20:58:36.6251436Z use-public-rspm: true 2024-02-27T20:58:36.6251710Z Ncpus: 1 2024-02-27T20:58:36.6251940Z remove-openmp-macos: true 2024-02-27T20:58:36.6252220Z http-user-agent: default 2024-02-27T20:58:36.6252485Z install-r: true 2024-02-27T20:58:36.6252752Z windows-path-include-rtools: true 2024-02-27T20:58:36.6253087Z windows-path-include-mingw: true 2024-02-27T20:58:36.6253401Z update-rtools: false 2024-02-27T20:58:36.6253642Z env: 2024-02-27T20:58:36.6254054Z GITHUB_PAT: *** 2024-02-27T20:58:36.6254303Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:58:36.6254570Z ##[endgroup] 2024-02-27T20:58:37.8595654Z ##[group]Downloading R 2024-02-27T20:58:39.2625474Z ##[endgroup] 2024-02-27T20:58:39.2626372Z ##[group]Updating system package data 2024-02-27T20:58:39.2653894Z [command]/usr/bin/sudo DEBIAN_FRONTEND=noninteractive apt-get update -y -qq 2024-02-27T20:58:43.2513551Z ##[endgroup] 2024-02-27T20:58:43.2514151Z ##[group]Installing R system requirements 2024-02-27T20:58:43.2525733Z [command]/usr/bin/sudo DEBIAN_FRONTEND=noninteractive apt-get install -y gdebi-core qpdf devscripts ghostscript 2024-02-27T20:58:43.3025018Z Reading package lists... 2024-02-27T20:58:43.4326177Z Building dependency tree... 2024-02-27T20:58:43.4336512Z Reading state information... 2024-02-27T20:58:43.5450675Z The following additional packages will be installed: 2024-02-27T20:58:43.5452210Z dctrl-tools diffstat dput fonts-droid-fallback fonts-noto-mono 2024-02-27T20:58:43.5453539Z fonts-urw-base35 gettext intltool-debian libaliased-perl libapt-pkg-perl 2024-02-27T20:58:43.5454827Z libarchive-zip-perl libarray-intspan-perl libauthen-sasl-perl 2024-02-27T20:58:43.5455582Z libb-hooks-endofscope-perl libb-hooks-op-check-perl libcapture-tiny-perl 2024-02-27T20:58:43.5456252Z libclass-data-inheritable-perl libclass-method-modifiers-perl 2024-02-27T20:58:43.5457350Z libclass-xsaccessor-perl libconfig-tiny-perl libconst-fast-perl 2024-02-27T20:58:43.5458517Z libcontextual-return-perl libcpanel-json-xs-perl libdata-dpath-perl 2024-02-27T20:58:43.5459453Z libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl 2024-02-27T20:58:43.5460032Z libdata-validate-domain-perl libdata-validate-ip-perl 2024-02-27T20:58:43.5461070Z libdata-validate-uri-perl libdevel-callchecker-perl libdevel-size-perl 2024-02-27T20:58:43.5461822Z libdevel-stacktrace-perl libdistro-info-perl libdynaloader-functions-perl 2024-02-27T20:58:43.5462528Z libemail-address-xs-perl libexception-class-perl libexporter-tiny-perl 2024-02-27T20:58:43.5463169Z libfile-basedir-perl libfile-chdir-perl libfile-dirlist-perl 2024-02-27T20:58:43.5463770Z libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl 2024-02-27T20:58:43.5464415Z libfile-touch-perl libfile-which-perl libfont-afm-perl libfont-ttf-perl 2024-02-27T20:58:43.5465251Z libgit-wrapper-perl libgitlab-api-v4-perl libgs9 libgs9-common 2024-02-27T20:58:43.5466351Z libhash-fieldhash-perl libhtml-form-perl libhtml-format-perl 2024-02-27T20:58:43.5467409Z libhtml-html5-entities-perl libhtml-tree-perl libhttp-cookies-perl 2024-02-27T20:58:43.5468554Z libhttp-daemon-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl 2024-02-27T20:58:43.5469481Z libidn12 libijs-0.35 libimport-into-perl libio-interactive-perl 2024-02-27T20:58:43.5470062Z libio-prompt-tiny-perl libio-prompter-perl libio-pty-perl 2024-02-27T20:58:43.5470684Z libio-socket-ssl-perl libio-string-perl libipc-run-perl libipc-run3-perl 2024-02-27T20:58:43.5471341Z libipc-system-simple-perl libiterator-perl libiterator-util-perl 2024-02-27T20:58:43.5471913Z libjbig2dec0 libjson-maybexs-perl liblist-compare-perl 2024-02-27T20:58:43.5472521Z liblist-moreutils-perl liblist-moreutils-xs-perl liblist-someutils-perl 2024-02-27T20:58:43.5473106Z liblist-someutils-xs-perl liblist-utilsby-perl 2024-02-27T20:58:43.5474077Z liblog-any-adapter-screen-perl liblog-any-perl liblwp-protocol-https-perl 2024-02-27T20:58:43.5474702Z libmailtools-perl libmarkdown2 libmath-base85-perl 2024-02-27T20:58:43.5475253Z libmodule-implementation-perl libmodule-runtime-perl libmoo-perl 2024-02-27T20:58:43.5475831Z libmoox-aliases-perl libmoox-struct-perl libmouse-perl 2024-02-27T20:58:43.5476454Z libnamespace-autoclean-perl libnamespace-clean-perl libnet-domain-tld-perl 2024-02-27T20:58:43.5477079Z libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl 2024-02-27T20:58:43.5477625Z libnet-smtp-ssl-perl libnet-ssleay-perl libnetaddr-ip-perl 2024-02-27T20:58:43.5478200Z libnumber-compare-perl libobject-id-perl libpackage-stash-perl 2024-02-27T20:58:43.5478826Z libpackage-stash-xs-perl libparams-classify-perl libparams-util-perl 2024-02-27T20:58:43.5479473Z libpath-iterator-rule-perl libpath-tiny-perl libperlio-gzip-perl 2024-02-27T20:58:43.5480108Z libperlio-utf8-strict-perl libpod-constants-perl libpod-parser-perl 2024-02-27T20:58:43.5480739Z libqpdf28 libre-engine-re2-perl libreadonly-perl libref-util-perl 2024-02-27T20:58:43.5481411Z libref-util-xs-perl libregexp-pattern-license-perl libregexp-pattern-perl 2024-02-27T20:58:43.5482241Z librole-tiny-perl libsereal-decoder-perl libsereal-encoder-perl 2024-02-27T20:58:43.5482936Z libset-intspan-perl libsocket6-perl libsort-versions-perl libstrictures-perl 2024-02-27T20:58:43.5483653Z libstring-copyright-perl libstring-escape-perl libstring-shellquote-perl 2024-02-27T20:58:43.5484367Z libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl 2024-02-27T20:58:43.5484984Z libsub-install-perl libsub-name-perl libsub-quote-perl 2024-02-27T20:58:43.5485579Z libsyntax-keyword-try-perl libtext-glob-perl libtext-levenshteinxs-perl 2024-02-27T20:58:43.5486270Z libtext-markdown-discount-perl libtext-xslate-perl libtime-duration-perl 2024-02-27T20:58:43.5486978Z libtime-moment-perl libtry-tiny-perl libtype-tiny-perl libtype-tiny-xs-perl 2024-02-27T20:58:43.5487657Z libunicode-utf8-perl libvariable-magic-perl libwant-perl libwww-perl 2024-02-27T20:58:43.5488310Z libwww-robotrules-perl libxs-parse-keyword-perl libyaml-libyaml-perl 2024-02-27T20:58:43.5488991Z licensecheck lintian lzip lzop patchutils perl-openssl-defaults poppler-data 2024-02-27T20:58:43.5489608Z python3-gpg python3-unidiff python3-xdg t1utils wdiff 2024-02-27T20:58:43.5489986Z Suggested packages: 2024-02-27T20:58:43.5490409Z debtags adequate at autopkgtest bls-standalone bsd-mailx | mailx 2024-02-27T20:58:43.5491037Z check-all-the-things cvs-buildpackage debhelper diffoscope disorderfs 2024-02-27T20:58:43.5491651Z dose-extra duck elpa-devscripts faketime gnuplot how-can-i-help 2024-02-27T20:58:43.5492317Z libdbd-pg-perl libfile-desktopentry-perl libnet-smtps-perl libterm-size-perl 2024-02-27T20:58:43.5493037Z libyaml-syck-perl mmdebstrap mozilla-devscripts mutt piuparts pristine-lfs 2024-02-27T20:58:43.5493674Z quilt ratt reprotest svn-buildpackage w3m debian-keyring equivs 2024-02-27T20:58:43.5494305Z libsoap-lite-perl pristine-tar python3-paramiko mini-dinstall fonts-noto 2024-02-27T20:58:43.5494991Z fonts-freefont-otf | fonts-freefont-ttf fonts-texgyre gettext-doc autopoint 2024-02-27T20:58:43.5495655Z libasprintf-dev libgettextpo-dev ghostscript-x libdigest-hmac-perl 2024-02-27T20:58:43.5496328Z libgssapi-perl libxml-parser-perl libcrypt-ssleay-perl libossp-uuid-perl 2024-02-27T20:58:43.5496994Z libscalar-number-perl libbareword-filehandles-perl libindirect-perl 2024-02-27T20:58:43.5497640Z libmultidimensional-perl libdevel-lexalias-perl libauthen-ntlm-perl 2024-02-27T20:58:43.5498318Z binutils-multiarch libtext-template-perl poppler-utils fonts-japanese-mincho 2024-02-27T20:58:43.5499000Z | fonts-ipafont-mincho fonts-japanese-gothic | fonts-ipafont-gothic 2024-02-27T20:58:43.5499589Z fonts-arphic-ukai fonts-arphic-uming fonts-nanum wdiff-doc 2024-02-27T20:58:43.5838383Z The following NEW packages will be installed: 2024-02-27T20:58:43.5839908Z dctrl-tools devscripts diffstat dput fonts-droid-fallback fonts-noto-mono 2024-02-27T20:58:43.5840621Z fonts-urw-base35 gdebi-core gettext ghostscript intltool-debian 2024-02-27T20:58:43.5841305Z libaliased-perl libapt-pkg-perl libarchive-zip-perl libarray-intspan-perl 2024-02-27T20:58:43.5842011Z libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl 2024-02-27T20:58:43.5842606Z libcapture-tiny-perl libclass-data-inheritable-perl 2024-02-27T20:58:43.5843230Z libclass-method-modifiers-perl libclass-xsaccessor-perl libconfig-tiny-perl 2024-02-27T20:58:43.5843918Z libconst-fast-perl libcontextual-return-perl libcpanel-json-xs-perl 2024-02-27T20:58:43.5844535Z libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl 2024-02-27T20:58:43.5845198Z libdata-optlist-perl libdata-validate-domain-perl libdata-validate-ip-perl 2024-02-27T20:58:43.5845888Z libdata-validate-uri-perl libdevel-callchecker-perl libdevel-size-perl 2024-02-27T20:58:43.5846587Z libdevel-stacktrace-perl libdistro-info-perl libdynaloader-functions-perl 2024-02-27T20:58:43.5847296Z libemail-address-xs-perl libexception-class-perl libexporter-tiny-perl 2024-02-27T20:58:43.5847927Z libfile-basedir-perl libfile-chdir-perl libfile-dirlist-perl 2024-02-27T20:58:43.5848798Z libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl 2024-02-27T20:58:43.5849453Z libfile-touch-perl libfile-which-perl libfont-afm-perl libfont-ttf-perl 2024-02-27T20:58:43.5850104Z libgit-wrapper-perl libgitlab-api-v4-perl libgs9 libgs9-common 2024-02-27T20:58:43.5850686Z libhash-fieldhash-perl libhtml-form-perl libhtml-format-perl 2024-02-27T20:58:43.5851295Z libhtml-html5-entities-perl libhtml-tree-perl libhttp-cookies-perl 2024-02-27T20:58:43.5851959Z libhttp-daemon-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl 2024-02-27T20:58:43.5852593Z libidn12 libijs-0.35 libimport-into-perl libio-interactive-perl 2024-02-27T20:58:43.5853165Z libio-prompt-tiny-perl libio-prompter-perl libio-pty-perl 2024-02-27T20:58:43.5853797Z libio-socket-ssl-perl libio-string-perl libipc-run-perl libipc-run3-perl 2024-02-27T20:58:43.5854444Z libipc-system-simple-perl libiterator-perl libiterator-util-perl 2024-02-27T20:58:43.5855015Z libjbig2dec0 libjson-maybexs-perl liblist-compare-perl 2024-02-27T20:58:43.5855623Z liblist-moreutils-perl liblist-moreutils-xs-perl liblist-someutils-perl 2024-02-27T20:58:43.5856182Z liblist-someutils-xs-perl liblist-utilsby-perl 2024-02-27T20:58:43.5856778Z liblog-any-adapter-screen-perl liblog-any-perl liblwp-protocol-https-perl 2024-02-27T20:58:43.5857378Z libmailtools-perl libmarkdown2 libmath-base85-perl 2024-02-27T20:58:43.5857932Z libmodule-implementation-perl libmodule-runtime-perl libmoo-perl 2024-02-27T20:58:43.5858492Z libmoox-aliases-perl libmoox-struct-perl libmouse-perl 2024-02-27T20:58:43.5859111Z libnamespace-autoclean-perl libnamespace-clean-perl libnet-domain-tld-perl 2024-02-27T20:58:43.5859744Z libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl 2024-02-27T20:58:43.5860287Z libnet-smtp-ssl-perl libnet-ssleay-perl libnetaddr-ip-perl 2024-02-27T20:58:43.5861263Z libnumber-compare-perl libobject-id-perl libpackage-stash-perl 2024-02-27T20:58:43.5861906Z libpackage-stash-xs-perl libparams-classify-perl libparams-util-perl 2024-02-27T20:58:43.5862557Z libpath-iterator-rule-perl libpath-tiny-perl libperlio-gzip-perl 2024-02-27T20:58:43.5863197Z libperlio-utf8-strict-perl libpod-constants-perl libpod-parser-perl 2024-02-27T20:58:43.5863834Z libqpdf28 libre-engine-re2-perl libreadonly-perl libref-util-perl 2024-02-27T20:58:43.5864506Z libref-util-xs-perl libregexp-pattern-license-perl libregexp-pattern-perl 2024-02-27T20:58:43.5865164Z librole-tiny-perl libsereal-decoder-perl libsereal-encoder-perl 2024-02-27T20:58:43.5865827Z libset-intspan-perl libsocket6-perl libsort-versions-perl libstrictures-perl 2024-02-27T20:58:43.5866534Z libstring-copyright-perl libstring-escape-perl libstring-shellquote-perl 2024-02-27T20:58:43.5867404Z libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl 2024-02-27T20:58:43.5868035Z libsub-install-perl libsub-name-perl libsub-quote-perl 2024-02-27T20:58:43.5868637Z libsyntax-keyword-try-perl libtext-glob-perl libtext-levenshteinxs-perl 2024-02-27T20:58:43.5869333Z libtext-markdown-discount-perl libtext-xslate-perl libtime-duration-perl 2024-02-27T20:58:43.5870046Z libtime-moment-perl libtry-tiny-perl libtype-tiny-perl libtype-tiny-xs-perl 2024-02-27T20:58:43.5870724Z libunicode-utf8-perl libvariable-magic-perl libwant-perl libwww-perl 2024-02-27T20:58:43.5871368Z libwww-robotrules-perl libxs-parse-keyword-perl libyaml-libyaml-perl 2024-02-27T20:58:43.5872051Z licensecheck lintian lzip lzop patchutils perl-openssl-defaults poppler-data 2024-02-27T20:58:43.5872675Z python3-gpg python3-unidiff python3-xdg qpdf t1utils wdiff 2024-02-27T20:58:43.6085389Z 0 upgraded, 172 newly installed, 0 to remove and 45 not upgraded. 2024-02-27T20:58:43.6086123Z Need to get 27.0 MB of archives. 2024-02-27T20:58:43.6086581Z After this operation, 100 MB of additional disk space will be used. 2024-02-27T20:58:43.6087250Z Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [142 B] 2024-02-27T20:58:43.6983125Z Get:2 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 fonts-droid-fallback all 1:6.0.1r16-1.1build1 [1805 kB] 2024-02-27T20:58:43.7874145Z Get:3 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 poppler-data all 0.4.11-1 [2171 kB] 2024-02-27T20:58:43.8733036Z Get:4 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 dctrl-tools amd64 2.24-3build2 [66.9 kB] 2024-02-27T20:58:43.9443239Z Get:5 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-dirlist-perl all 0.05-2 [7100 B] 2024-02-27T20:58:44.0150490Z Get:6 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-which-perl all 1.23-1 [13.8 kB] 2024-02-27T20:58:44.0876383Z Get:7 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-homedir-perl all 1.006-1 [38.3 kB] 2024-02-27T20:58:44.1583352Z Get:8 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-touch-perl all 0.12-1 [9024 B] 2024-02-27T20:58:44.2305894Z Get:9 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libio-pty-perl amd64 1:1.15-2build2 [35.1 kB] 2024-02-27T20:58:44.3030652Z Get:10 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libipc-run-perl all 20200505.0-1 [89.8 kB] 2024-02-27T20:58:44.3747083Z Get:11 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libclass-method-modifiers-perl all 2.13-1 [16.2 kB] 2024-02-27T20:58:44.4456778Z Get:12 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libclass-xsaccessor-perl amd64 1.19-3build9 [34.1 kB] 2024-02-27T20:58:44.5164856Z Get:13 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libb-hooks-op-check-perl amd64 0.22-1build5 [10.3 kB] 2024-02-27T20:58:44.5872070Z Get:14 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdynaloader-functions-perl all 0.003-1.1 [12.1 kB] 2024-02-27T20:58:44.6573744Z Get:15 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdevel-callchecker-perl amd64 0.008-1ubuntu4 [14.9 kB] 2024-02-27T20:58:44.7281802Z Get:16 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libparams-classify-perl amd64 0.015-1build5 [22.0 kB] 2024-02-27T20:58:44.7991204Z Get:17 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmodule-runtime-perl all 0.016-1 [16.2 kB] 2024-02-27T20:58:44.8701851Z Get:18 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libimport-into-perl all 1.002005-1 [11.0 kB] 2024-02-27T20:58:44.9416049Z Get:19 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 librole-tiny-perl all 2.002004-1 [16.3 kB] 2024-02-27T20:58:45.0119709Z Get:20 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsub-quote-perl all 2.006006-1 [19.5 kB] 2024-02-27T20:58:45.0821751Z Get:21 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmoo-perl all 2.005004-3 [48.0 kB] 2024-02-27T20:58:45.1530040Z Get:22 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-listing-perl all 6.14-1 [11.2 kB] 2024-02-27T20:58:45.2229576Z Get:23 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhtml-tree-perl all 5.07-2 [200 kB] 2024-02-27T20:58:45.2945779Z Get:24 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhttp-cookies-perl all 6.10-1 [18.4 kB] 2024-02-27T20:58:45.3647162Z Get:25 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhttp-negotiate-perl all 6.01-1 [12.5 kB] 2024-02-27T20:58:45.4347682Z Get:26 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 perl-openssl-defaults amd64 5build2 [7542 B] 2024-02-27T20:58:45.5052170Z Get:27 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnet-ssleay-perl amd64 1.92-1build2 [327 kB] 2024-02-27T20:58:45.5775709Z Get:28 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libio-socket-ssl-perl all 2.074-2 [192 kB] 2024-02-27T20:58:45.6489821Z Get:29 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnet-http-perl all 6.22-1 [23.2 kB] 2024-02-27T20:58:45.7264520Z Get:30 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblwp-protocol-https-perl all 6.10-1 [10.9 kB] 2024-02-27T20:58:45.7971324Z Get:31 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtry-tiny-perl all 0.31-1 [21.8 kB] 2024-02-27T20:58:45.8691973Z Get:32 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libwww-robotrules-perl all 6.02-1 [12.6 kB] 2024-02-27T20:58:45.9406762Z Get:33 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libwww-perl all 6.61-1 [141 kB] 2024-02-27T20:58:46.0146257Z Get:34 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 patchutils amd64 0.4.2-1build2 [77.8 kB] 2024-02-27T20:58:46.0862950Z Get:35 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 wdiff amd64 1.2.2-2build3 [29.6 kB] 2024-02-27T20:58:46.1571915Z Get:36 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 devscripts amd64 2.22.1ubuntu1 [1057 kB] 2024-02-27T20:58:46.2388303Z Get:37 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 diffstat amd64 1.64-1build2 [29.2 kB] 2024-02-27T20:58:46.3098753Z Get:38 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-gpg amd64 1.16.0-1.2ubuntu4.1 [214 kB] 2024-02-27T20:58:46.3813872Z Get:39 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 dput all 1.1.0ubuntu2.1 [44.7 kB] 2024-02-27T20:58:46.4533942Z Get:40 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 fonts-noto-mono all 20201225-1build1 [397 kB] 2024-02-27T20:58:46.5266985Z Get:41 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 fonts-urw-base35 all 20200910-1 [6367 kB] 2024-02-27T20:58:46.7367964Z Get:42 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 gdebi-core all 0.9.5.7+nmu6 [133 kB] 2024-02-27T20:58:46.8078645Z Get:43 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 gettext amd64 0.21-4ubuntu4 [868 kB] 2024-02-27T20:58:46.8858029Z Get:44 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgs9-common all 9.55.0~dfsg1-0ubuntu5.6 [751 kB] 2024-02-27T20:58:46.9624969Z Get:45 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libidn12 amd64 1.38-4ubuntu1 [60.0 kB] 2024-02-27T20:58:47.0331198Z Get:46 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libijs-0.35 amd64 0.35-15build2 [16.5 kB] 2024-02-27T20:58:47.1033951Z Get:47 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libjbig2dec0 amd64 0.19-3build2 [64.7 kB] 2024-02-27T20:58:47.1740826Z Get:48 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgs9 amd64 9.55.0~dfsg1-0ubuntu5.6 [5031 kB] 2024-02-27T20:58:47.3310756Z Get:49 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 ghostscript amd64 9.55.0~dfsg1-0ubuntu5.6 [49.4 kB] 2024-02-27T20:58:47.4015296Z Get:50 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 intltool-debian all 0.35.0+20060710.5 [24.9 kB] 2024-02-27T20:58:47.4720787Z Get:51 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libaliased-perl all 0.34-1.1 [13.3 kB] 2024-02-27T20:58:47.5428135Z Get:52 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libapt-pkg-perl amd64 0.1.40build2 [72.5 kB] 2024-02-27T20:58:47.6143118Z Get:53 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libarchive-zip-perl all 1.68-1 [90.2 kB] 2024-02-27T20:58:47.6858487Z Get:54 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libarray-intspan-perl all 2.004-1 [24.5 kB] 2024-02-27T20:58:47.7567166Z Get:55 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmodule-implementation-perl all 0.09-1.1 [11.6 kB] 2024-02-27T20:58:47.8281240Z Get:56 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsub-exporter-progressive-perl all 0.001013-1 [6784 B] 2024-02-27T20:58:47.8990906Z Get:57 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libvariable-magic-perl amd64 0.62-1build5 [35.9 kB] 2024-02-27T20:58:47.9701526Z Get:58 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libb-hooks-endofscope-perl all 0.25-1 [17.8 kB] 2024-02-27T20:58:48.0409591Z Get:59 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcapture-tiny-perl all 0.48-1 [20.4 kB] 2024-02-27T20:58:48.1124005Z Get:60 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libclass-data-inheritable-perl all 0.08-3 [8084 B] 2024-02-27T20:58:48.1835864Z Get:61 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libconfig-tiny-perl all 2.28-1 [13.1 kB] 2024-02-27T20:58:48.2549642Z Get:62 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libparams-util-perl amd64 1.102-1build3 [22.7 kB] 2024-02-27T20:58:48.3263808Z Get:63 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsub-install-perl all 0.928-1.1 [9972 B] 2024-02-27T20:58:48.3975950Z Get:64 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-optlist-perl all 0.112-1 [11.0 kB] 2024-02-27T20:58:48.4691562Z Get:65 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsub-exporter-perl all 0.988-1 [50.6 kB] 2024-02-27T20:58:48.5461060Z Get:66 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libconst-fast-perl all 0.014-1.1 [7756 B] 2024-02-27T20:58:48.6175292Z Get:67 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libwant-perl amd64 0.29-1build7 [24.9 kB] 2024-02-27T20:58:48.6887935Z Get:68 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcontextual-return-perl all 0.004014-2 [53.1 kB] 2024-02-27T20:58:48.7611881Z Get:69 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcpanel-json-xs-perl amd64 4.27-1build1 [114 kB] 2024-02-27T20:58:48.8348717Z Get:70 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdevel-stacktrace-perl all 2.0400-1 [22.7 kB] 2024-02-27T20:58:48.9064523Z Get:71 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libexception-class-perl all 1.45-1 [28.6 kB] 2024-02-27T20:58:48.9778624Z Get:72 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libiterator-perl all 0.03+ds1-1.1 [18.2 kB] 2024-02-27T20:58:49.1185405Z Get:73 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libiterator-util-perl all 0.02+ds1-1.1 [13.6 kB] 2024-02-27T20:58:49.1890736Z Get:74 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libexporter-tiny-perl all 1.002002-1 [36.2 kB] 2024-02-27T20:58:49.3350373Z Get:75 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblist-moreutils-xs-perl amd64 0.430-2build2 [41.9 kB] 2024-02-27T20:58:49.4379479Z Get:76 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblist-moreutils-perl all 0.430-2 [38.2 kB] 2024-02-27T20:58:49.5374214Z Get:77 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-dpath-perl all 0.58-1 [38.8 kB] 2024-02-27T20:58:49.6383230Z Get:78 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-dump-perl all 1.25-1 [25.9 kB] 2024-02-27T20:58:49.7267131Z Get:79 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-messagepack-perl amd64 1.01-2build1 [34.7 kB] 2024-02-27T20:58:49.8265580Z Get:80 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnet-domain-tld-perl all 1.75-1.1 [29.3 kB] 2024-02-27T20:58:49.9173629Z Get:81 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-validate-domain-perl all 0.10-1.1 [9992 B] 2024-02-27T20:58:49.9975907Z Get:82 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnet-ipv6addr-perl all 1.02-1 [21.0 kB] 2024-02-27T20:58:50.0812737Z Get:83 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnet-netmask-perl all 2.0001-1 [27.7 kB] 2024-02-27T20:58:50.1726153Z Get:84 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnetaddr-ip-perl amd64 4.079+dfsg-1build7 [82.4 kB] 2024-02-27T20:58:50.3058858Z Get:85 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-validate-ip-perl all 0.30-1 [17.3 kB] 2024-02-27T20:58:50.3841667Z Get:86 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdata-validate-uri-perl all 0.07-2 [11.1 kB] 2024-02-27T20:58:50.4605914Z Get:87 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdistro-info-perl all 1.1ubuntu0.2 [5222 B] 2024-02-27T20:58:50.5314578Z Get:88 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libemail-address-xs-perl amd64 1.04-1build6 [28.7 kB] 2024-02-27T20:58:50.6159800Z Get:89 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libipc-system-simple-perl all 1.30-1 [23.2 kB] 2024-02-27T20:58:50.6973850Z Get:90 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-basedir-perl all 0.09-1 [15.7 kB] 2024-02-27T20:58:50.7777163Z Get:91 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-chdir-perl all 0.1008-1.1 [10.6 kB] 2024-02-27T20:58:50.8497586Z Get:92 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnumber-compare-perl all 0.03-2 [7058 B] 2024-02-27T20:58:50.9170353Z Get:93 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtext-glob-perl all 0.11-2 [8042 B] 2024-02-27T20:58:50.9902811Z Get:94 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfile-find-rule-perl all 0.34-1 [28.3 kB] 2024-02-27T20:58:51.0642304Z Get:95 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfont-afm-perl all 1.20-3 [13.6 kB] 2024-02-27T20:58:51.1362713Z Get:96 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libio-string-perl all 1.08-3.1 [10.7 kB] 2024-02-27T20:58:51.2079404Z Get:97 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libfont-ttf-perl all 1.06-1.1 [316 kB] 2024-02-27T20:58:51.2886656Z Get:98 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsort-versions-perl all 1.62-1 [9294 B] 2024-02-27T20:58:51.3615677Z Get:99 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgit-wrapper-perl all 0.048-1 [29.9 kB] 2024-02-27T20:58:51.4330187Z Get:100 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhttp-tiny-multipart-perl all 0.08-1.1 [8660 B] 2024-02-27T20:58:51.5042179Z Get:101 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libio-prompter-perl all 0.004015-1 [58.1 kB] 2024-02-27T20:58:51.5757971Z Get:102 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblog-any-perl all 1.710-1 [68.4 kB] 2024-02-27T20:58:51.6496832Z Get:103 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblog-any-adapter-screen-perl all 0.140-2 [12.4 kB] 2024-02-27T20:58:51.7221804Z Get:104 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libpackage-stash-perl all 0.39-1 [19.1 kB] 2024-02-27T20:58:51.7960470Z Get:105 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsub-identify-perl amd64 0.14-1build5 [10.4 kB] 2024-02-27T20:58:51.8676079Z Get:106 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsub-name-perl amd64 0.26-1build3 [11.4 kB] 2024-02-27T20:58:51.9398790Z Get:107 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnamespace-clean-perl all 0.27-1 [13.6 kB] 2024-02-27T20:58:52.0120490Z Get:108 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libpath-tiny-perl all 0.122-1 [45.9 kB] 2024-02-27T20:58:52.0912819Z Get:109 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libstrictures-perl all 2.000006-1 [16.3 kB] 2024-02-27T20:58:52.1615302Z Get:110 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtype-tiny-perl all 1.012004-1 [321 kB] 2024-02-27T20:58:52.2331397Z Get:111 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgitlab-api-v4-perl all 0.26-1 [84.1 kB] 2024-02-27T20:58:52.3002697Z Get:112 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhash-fieldhash-perl amd64 0.15-1build5 [17.3 kB] 2024-02-27T20:58:52.3667272Z Get:113 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhtml-form-perl all 6.07-1 [22.2 kB] 2024-02-27T20:58:52.4426871Z Get:114 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhtml-format-perl all 2.12-1.1 [41.3 kB] 2024-02-27T20:58:52.5163778Z Get:115 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhtml-html5-entities-perl all 0.004-1.1 [20.8 kB] 2024-02-27T20:58:52.5904091Z Get:116 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libhttp-daemon-perl all 6.13-1ubuntu0.1 [22.9 kB] 2024-02-27T20:58:52.6682797Z Get:117 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libio-interactive-perl all 1.023-1 [10.4 kB] 2024-02-27T20:58:52.7397502Z Get:118 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libio-prompt-tiny-perl all 0.003-1 [8924 B] 2024-02-27T20:58:52.8117104Z Get:119 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libjson-maybexs-perl all 1.004003-1 [11.3 kB] 2024-02-27T20:58:52.8851500Z Get:120 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblist-compare-perl all 0.55-1 [63.3 kB] 2024-02-27T20:58:52.9670624Z Get:121 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblist-someutils-perl all 0.58-1 [29.7 kB] 2024-02-27T20:58:53.0383433Z Get:122 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblist-someutils-xs-perl amd64 0.58-2build3 [34.8 kB] 2024-02-27T20:58:53.1053676Z Get:123 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liblist-utilsby-perl all 0.11-1 [14.7 kB] 2024-02-27T20:58:53.1728852Z Get:124 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5948 B] 2024-02-27T20:58:53.2435712Z Get:125 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmailtools-perl all 2.21-1 [80.7 kB] 2024-02-27T20:58:53.3108522Z Get:126 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmarkdown2 amd64 2.2.7-2 [38.3 kB] 2024-02-27T20:58:53.3776711Z Get:127 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmath-base85-perl all 0.5+dfsg-1 [6764 B] 2024-02-27T20:58:53.4487593Z Get:128 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmoox-aliases-perl all 0.001006-1.1 [6632 B] 2024-02-27T20:58:53.5198402Z Get:129 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libnamespace-autoclean-perl all 0.29-1 [12.5 kB] 2024-02-27T20:58:53.5882080Z Get:130 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libobject-id-perl all 0.1.2-2.1ubuntu1 [16.0 kB] 2024-02-27T20:58:53.6547990Z Get:131 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmoox-struct-perl all 0.020-1 [23.7 kB] 2024-02-27T20:58:53.7215114Z Get:132 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmouse-perl amd64 2.5.10-1build4 [161 kB] 2024-02-27T20:58:53.7902497Z Get:133 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libpackage-stash-xs-perl amd64 0.29-1build5 [19.4 kB] 2024-02-27T20:58:53.8572021Z Get:134 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libpath-iterator-rule-perl all 1.015-1 [40.8 kB] 2024-02-27T20:58:53.9247535Z Get:135 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libperlio-gzip-perl amd64 0.19-1build8 [14.9 kB] 2024-02-27T20:58:53.9916387Z Get:136 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libperlio-utf8-strict-perl amd64 0.009-1build1 [11.9 kB] 2024-02-27T20:58:54.0585221Z Get:137 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libpod-parser-perl all 1.63-2 [82.2 kB] 2024-02-27T20:58:54.1268518Z Get:138 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libpod-constants-perl all 0.19-2 [16.3 kB] 2024-02-27T20:58:54.1941923Z Get:139 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libqpdf28 amd64 10.6.3-1 [740 kB] 2024-02-27T20:58:54.2668593Z Get:140 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libre-engine-re2-perl amd64 0.14-1build2 [18.8 kB] 2024-02-27T20:58:54.3343805Z Get:141 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libreadonly-perl all 2.050-3 [19.9 kB] 2024-02-27T20:58:54.4008795Z Get:142 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libref-util-perl all 0.204-1 [15.0 kB] 2024-02-27T20:58:54.4678513Z Get:143 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libref-util-xs-perl amd64 0.117-1build5 [12.7 kB] 2024-02-27T20:58:54.5348026Z Get:144 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libregexp-pattern-license-perl all 3.9.3-1 [84.1 kB] 2024-02-27T20:58:54.6030584Z Get:145 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libregexp-pattern-perl all 0.2.14-1 [17.6 kB] 2024-02-27T20:58:54.6696565Z Get:146 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsereal-decoder-perl amd64 4.023+ds-1 [100 kB] 2024-02-27T20:58:54.7377948Z Get:147 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsereal-encoder-perl amd64 4.023+ds-1 [104 kB] 2024-02-27T20:58:54.8241220Z Get:148 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libset-intspan-perl all 1.19-2 [26.1 kB] 2024-02-27T20:58:54.8966015Z Get:149 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsocket6-perl amd64 0.29-1build4 [19.7 kB] 2024-02-27T20:58:54.9669011Z Get:150 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libstring-copyright-perl all 0.003012-1 [21.3 kB] 2024-02-27T20:58:55.0375071Z Get:151 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libstring-escape-perl all 2010.002-2 [17.6 kB] 2024-02-27T20:58:55.1083555Z Get:152 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libstring-shellquote-perl all 1.04-1 [12.0 kB] 2024-02-27T20:58:55.1789570Z Get:153 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libxs-parse-keyword-perl amd64 0.21-1build1 [51.0 kB] 2024-02-27T20:58:55.2498473Z Get:154 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsyntax-keyword-try-perl amd64 0.26-1build1 [27.1 kB] 2024-02-27T20:58:55.3210710Z Get:155 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtext-levenshteinxs-perl amd64 0.03-4build10 [8254 B] 2024-02-27T20:58:55.3913752Z Get:156 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtext-markdown-discount-perl amd64 0.13-1build1 [12.9 kB] 2024-02-27T20:58:55.4617767Z Get:157 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtext-xslate-perl amd64 3.5.9-1build1 [186 kB] 2024-02-27T20:58:55.5330464Z Get:158 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtime-duration-perl all 1.21-1 [13.1 kB] 2024-02-27T20:58:55.6038595Z Get:159 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtime-moment-perl amd64 0.44-1build6 [74.9 kB] 2024-02-27T20:58:55.6746768Z Get:160 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtype-tiny-xs-perl amd64 0.022-1build2 [25.5 kB] 2024-02-27T20:58:55.7447910Z Get:161 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libunicode-utf8-perl amd64 0.62-1build4 [18.9 kB] 2024-02-27T20:58:55.8149612Z Get:162 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libyaml-libyaml-perl amd64 0.83+ds-1build1 [29.6 kB] 2024-02-27T20:58:55.8852409Z Get:163 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 licensecheck all 3.2.14-2 [40.9 kB] 2024-02-27T20:58:55.9556313Z Get:164 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdevel-size-perl amd64 0.83-1build4 [20.7 kB] 2024-02-27T20:58:56.0254602Z Get:165 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libipc-run3-perl all 0.048-2 [31.4 kB] 2024-02-27T20:58:56.0986700Z Get:166 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 lzip amd64 1.23-1 [80.5 kB] 2024-02-27T20:58:56.1700950Z Get:167 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 lzop amd64 1.04-2build2 [83.7 kB] 2024-02-27T20:58:56.2407911Z Get:168 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 t1utils amd64 1.41-4build2 [61.3 kB] 2024-02-27T20:58:56.3116515Z Get:169 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lintian all 2.114.0ubuntu1.3 [1082 kB] 2024-02-27T20:58:56.3905649Z Get:170 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 python3-unidiff all 0.5.5-2 [9180 B] 2024-02-27T20:58:56.4606258Z Get:171 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 python3-xdg all 0.27-2 [36.9 kB] 2024-02-27T20:58:56.5325796Z Get:172 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 qpdf amd64 10.6.3-1 [69.3 kB] 2024-02-27T20:58:56.6043800Z Get:173 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libauthen-sasl-perl all 2.1600-1.1 [43.1 kB] 2024-02-27T20:58:57.1644759Z Fetched 27.0 MB in 13s (2074 kB/s) 2024-02-27T20:58:57.1968186Z Selecting previously unselected package fonts-droid-fallback. 2024-02-27T20:58:57.2296425Z (Reading database ... 2024-02-27T20:58:57.2296897Z (Reading database ... 5% 2024-02-27T20:58:57.2297354Z (Reading database ... 10% 2024-02-27T20:58:57.2297717Z (Reading database ... 15% 2024-02-27T20:58:57.2297971Z (Reading database ... 20% 2024-02-27T20:58:57.2298230Z (Reading database ... 25% 2024-02-27T20:58:57.2298485Z (Reading database ... 30% 2024-02-27T20:58:57.2298766Z (Reading database ... 35% 2024-02-27T20:58:57.2299040Z (Reading database ... 40% 2024-02-27T20:58:57.2299301Z (Reading database ... 45% 2024-02-27T20:58:57.2299556Z (Reading database ... 50% 2024-02-27T20:58:57.2756251Z (Reading database ... 55% 2024-02-27T20:58:57.3037668Z (Reading database ... 60% 2024-02-27T20:58:57.3414288Z (Reading database ... 65% 2024-02-27T20:58:57.3988064Z (Reading database ... 70% 2024-02-27T20:58:57.4625820Z (Reading database ... 75% 2024-02-27T20:58:57.5278728Z (Reading database ... 80% 2024-02-27T20:58:57.6206781Z (Reading database ... 85% 2024-02-27T20:58:57.7031732Z (Reading database ... 90% 2024-02-27T20:58:57.7943523Z (Reading database ... 95% 2024-02-27T20:58:57.7944079Z (Reading database ... 100% 2024-02-27T20:58:57.7944615Z (Reading database ... 273829 files and directories currently installed.) 2024-02-27T20:58:57.7999971Z Preparing to unpack .../000-fonts-droid-fallback_1%3a6.0.1r16-1.1build1_all.deb ... 2024-02-27T20:58:57.8223608Z Unpacking fonts-droid-fallback (1:6.0.1r16-1.1build1) ... 2024-02-27T20:58:57.9948489Z Selecting previously unselected package poppler-data. 2024-02-27T20:58:58.0109439Z Preparing to unpack .../001-poppler-data_0.4.11-1_all.deb ... 2024-02-27T20:58:58.0121716Z Unpacking poppler-data (0.4.11-1) ... 2024-02-27T20:58:58.1510982Z Selecting previously unselected package dctrl-tools. 2024-02-27T20:58:58.1677025Z Preparing to unpack .../002-dctrl-tools_2.24-3build2_amd64.deb ... 2024-02-27T20:58:58.1753757Z Unpacking dctrl-tools (2.24-3build2) ... 2024-02-27T20:58:58.2201106Z Selecting previously unselected package libfile-dirlist-perl. 2024-02-27T20:58:58.2365780Z Preparing to unpack .../003-libfile-dirlist-perl_0.05-2_all.deb ... 2024-02-27T20:58:58.2377086Z Unpacking libfile-dirlist-perl (0.05-2) ... 2024-02-27T20:58:58.2689497Z Selecting previously unselected package libfile-which-perl. 2024-02-27T20:58:58.2853056Z Preparing to unpack .../004-libfile-which-perl_1.23-1_all.deb ... 2024-02-27T20:58:58.2875003Z Unpacking libfile-which-perl (1.23-1) ... 2024-02-27T20:58:58.3144470Z Selecting previously unselected package libfile-homedir-perl. 2024-02-27T20:58:58.3307616Z Preparing to unpack .../005-libfile-homedir-perl_1.006-1_all.deb ... 2024-02-27T20:58:58.3318916Z Unpacking libfile-homedir-perl (1.006-1) ... 2024-02-27T20:58:58.3641220Z Selecting previously unselected package libfile-touch-perl. 2024-02-27T20:58:58.3804153Z Preparing to unpack .../006-libfile-touch-perl_0.12-1_all.deb ... 2024-02-27T20:58:58.3821008Z Unpacking libfile-touch-perl (0.12-1) ... 2024-02-27T20:58:58.4068410Z Selecting previously unselected package libio-pty-perl. 2024-02-27T20:58:58.4230887Z Preparing to unpack .../007-libio-pty-perl_1%3a1.15-2build2_amd64.deb ... 2024-02-27T20:58:58.4242192Z Unpacking libio-pty-perl (1:1.15-2build2) ... 2024-02-27T20:58:58.4525562Z Selecting previously unselected package libipc-run-perl. 2024-02-27T20:58:58.4688352Z Preparing to unpack .../008-libipc-run-perl_20200505.0-1_all.deb ... 2024-02-27T20:58:58.4700024Z Unpacking libipc-run-perl (20200505.0-1) ... 2024-02-27T20:58:58.5025671Z Selecting previously unselected package libclass-method-modifiers-perl. 2024-02-27T20:58:58.5189831Z Preparing to unpack .../009-libclass-method-modifiers-perl_2.13-1_all.deb ... 2024-02-27T20:58:58.5214448Z Unpacking libclass-method-modifiers-perl (2.13-1) ... 2024-02-27T20:58:58.5514411Z Selecting previously unselected package libclass-xsaccessor-perl. 2024-02-27T20:58:58.5675479Z Preparing to unpack .../010-libclass-xsaccessor-perl_1.19-3build9_amd64.deb ... 2024-02-27T20:58:58.5685244Z Unpacking libclass-xsaccessor-perl (1.19-3build9) ... 2024-02-27T20:58:58.5972481Z Selecting previously unselected package libb-hooks-op-check-perl. 2024-02-27T20:58:58.6134553Z Preparing to unpack .../011-libb-hooks-op-check-perl_0.22-1build5_amd64.deb ... 2024-02-27T20:58:58.6162435Z Unpacking libb-hooks-op-check-perl (0.22-1build5) ... 2024-02-27T20:58:58.6446214Z Selecting previously unselected package libdynaloader-functions-perl. 2024-02-27T20:58:58.6608255Z Preparing to unpack .../012-libdynaloader-functions-perl_0.003-1.1_all.deb ... 2024-02-27T20:58:58.6621036Z Unpacking libdynaloader-functions-perl (0.003-1.1) ... 2024-02-27T20:58:58.6878830Z Selecting previously unselected package libdevel-callchecker-perl. 2024-02-27T20:58:58.7038409Z Preparing to unpack .../013-libdevel-callchecker-perl_0.008-1ubuntu4_amd64.deb ... 2024-02-27T20:58:58.7050719Z Unpacking libdevel-callchecker-perl (0.008-1ubuntu4) ... 2024-02-27T20:58:58.7304661Z Selecting previously unselected package libparams-classify-perl. 2024-02-27T20:58:58.7463047Z Preparing to unpack .../014-libparams-classify-perl_0.015-1build5_amd64.deb ... 2024-02-27T20:58:58.7479995Z Unpacking libparams-classify-perl (0.015-1build5) ... 2024-02-27T20:58:58.7755466Z Selecting previously unselected package libmodule-runtime-perl. 2024-02-27T20:58:58.7916671Z Preparing to unpack .../015-libmodule-runtime-perl_0.016-1_all.deb ... 2024-02-27T20:58:58.7926464Z Unpacking libmodule-runtime-perl (0.016-1) ... 2024-02-27T20:58:58.8178152Z Selecting previously unselected package libimport-into-perl. 2024-02-27T20:58:58.8339609Z Preparing to unpack .../016-libimport-into-perl_1.002005-1_all.deb ... 2024-02-27T20:58:58.8353847Z Unpacking libimport-into-perl (1.002005-1) ... 2024-02-27T20:58:58.8612290Z Selecting previously unselected package librole-tiny-perl. 2024-02-27T20:58:58.8773672Z Preparing to unpack .../017-librole-tiny-perl_2.002004-1_all.deb ... 2024-02-27T20:58:58.8789364Z Unpacking librole-tiny-perl (2.002004-1) ... 2024-02-27T20:58:58.9051868Z Selecting previously unselected package libsub-quote-perl. 2024-02-27T20:58:58.9215496Z Preparing to unpack .../018-libsub-quote-perl_2.006006-1_all.deb ... 2024-02-27T20:58:58.9226066Z Unpacking libsub-quote-perl (2.006006-1) ... 2024-02-27T20:58:58.9495228Z Selecting previously unselected package libmoo-perl. 2024-02-27T20:58:58.9661775Z Preparing to unpack .../019-libmoo-perl_2.005004-3_all.deb ... 2024-02-27T20:58:58.9682490Z Unpacking libmoo-perl (2.005004-3) ... 2024-02-27T20:58:58.9969771Z Selecting previously unselected package libfile-listing-perl. 2024-02-27T20:58:59.0132926Z Preparing to unpack .../020-libfile-listing-perl_6.14-1_all.deb ... 2024-02-27T20:58:59.0143860Z Unpacking libfile-listing-perl (6.14-1) ... 2024-02-27T20:58:59.0411067Z Selecting previously unselected package libhtml-tree-perl. 2024-02-27T20:58:59.0574341Z Preparing to unpack .../021-libhtml-tree-perl_5.07-2_all.deb ... 2024-02-27T20:58:59.0599650Z Unpacking libhtml-tree-perl (5.07-2) ... 2024-02-27T20:58:59.1260916Z Selecting previously unselected package libhttp-cookies-perl. 2024-02-27T20:58:59.1422095Z Preparing to unpack .../022-libhttp-cookies-perl_6.10-1_all.deb ... 2024-02-27T20:58:59.1439961Z Unpacking libhttp-cookies-perl (6.10-1) ... 2024-02-27T20:58:59.1725251Z Selecting previously unselected package libhttp-negotiate-perl. 2024-02-27T20:58:59.1886814Z Preparing to unpack .../023-libhttp-negotiate-perl_6.01-1_all.deb ... 2024-02-27T20:58:59.1921899Z Unpacking libhttp-negotiate-perl (6.01-1) ... 2024-02-27T20:58:59.2199160Z Selecting previously unselected package perl-openssl-defaults:amd64. 2024-02-27T20:58:59.2360933Z Preparing to unpack .../024-perl-openssl-defaults_5build2_amd64.deb ... 2024-02-27T20:58:59.2374149Z Unpacking perl-openssl-defaults:amd64 (5build2) ... 2024-02-27T20:58:59.2658700Z Selecting previously unselected package libnet-ssleay-perl:amd64. 2024-02-27T20:58:59.2820520Z Preparing to unpack .../025-libnet-ssleay-perl_1.92-1build2_amd64.deb ... 2024-02-27T20:58:59.2842247Z Unpacking libnet-ssleay-perl:amd64 (1.92-1build2) ... 2024-02-27T20:58:59.3316054Z Selecting previously unselected package libio-socket-ssl-perl. 2024-02-27T20:58:59.3478780Z Preparing to unpack .../026-libio-socket-ssl-perl_2.074-2_all.deb ... 2024-02-27T20:58:59.3491838Z Unpacking libio-socket-ssl-perl (2.074-2) ... 2024-02-27T20:58:59.3814919Z Selecting previously unselected package libnet-http-perl. 2024-02-27T20:58:59.3978708Z Preparing to unpack .../027-libnet-http-perl_6.22-1_all.deb ... 2024-02-27T20:58:59.3994014Z Unpacking libnet-http-perl (6.22-1) ... 2024-02-27T20:58:59.4311614Z Selecting previously unselected package liblwp-protocol-https-perl. 2024-02-27T20:58:59.4472464Z Preparing to unpack .../028-liblwp-protocol-https-perl_6.10-1_all.deb ... 2024-02-27T20:58:59.4484989Z Unpacking liblwp-protocol-https-perl (6.10-1) ... 2024-02-27T20:58:59.4758689Z Selecting previously unselected package libtry-tiny-perl. 2024-02-27T20:58:59.4920076Z Preparing to unpack .../029-libtry-tiny-perl_0.31-1_all.deb ... 2024-02-27T20:58:59.4932680Z Unpacking libtry-tiny-perl (0.31-1) ... 2024-02-27T20:58:59.5192891Z Selecting previously unselected package libwww-robotrules-perl. 2024-02-27T20:58:59.5353472Z Preparing to unpack .../030-libwww-robotrules-perl_6.02-1_all.deb ... 2024-02-27T20:58:59.5370525Z Unpacking libwww-robotrules-perl (6.02-1) ... 2024-02-27T20:58:59.5657653Z Selecting previously unselected package libwww-perl. 2024-02-27T20:58:59.5817985Z Preparing to unpack .../031-libwww-perl_6.61-1_all.deb ... 2024-02-27T20:58:59.5827913Z Unpacking libwww-perl (6.61-1) ... 2024-02-27T20:58:59.6209087Z Selecting previously unselected package patchutils. 2024-02-27T20:58:59.6370852Z Preparing to unpack .../032-patchutils_0.4.2-1build2_amd64.deb ... 2024-02-27T20:58:59.6389712Z Unpacking patchutils (0.4.2-1build2) ... 2024-02-27T20:58:59.6798778Z Selecting previously unselected package wdiff. 2024-02-27T20:58:59.6960382Z Preparing to unpack .../033-wdiff_1.2.2-2build3_amd64.deb ... 2024-02-27T20:58:59.6969888Z Unpacking wdiff (1.2.2-2build3) ... 2024-02-27T20:58:59.7347202Z Selecting previously unselected package devscripts. 2024-02-27T20:58:59.7507045Z Preparing to unpack .../034-devscripts_2.22.1ubuntu1_amd64.deb ... 2024-02-27T20:58:59.7719007Z Unpacking devscripts (2.22.1ubuntu1) ... 2024-02-27T20:58:59.9046718Z Selecting previously unselected package diffstat. 2024-02-27T20:58:59.9212896Z Preparing to unpack .../035-diffstat_1.64-1build2_amd64.deb ... 2024-02-27T20:58:59.9223567Z Unpacking diffstat (1.64-1build2) ... 2024-02-27T20:58:59.9538695Z Selecting previously unselected package python3-gpg. 2024-02-27T20:58:59.9701430Z Preparing to unpack .../036-python3-gpg_1.16.0-1.2ubuntu4.1_amd64.deb ... 2024-02-27T20:58:59.9716329Z Unpacking python3-gpg (1.16.0-1.2ubuntu4.1) ... 2024-02-27T20:59:00.0193058Z Selecting previously unselected package dput. 2024-02-27T20:59:00.0356751Z Preparing to unpack .../037-dput_1.1.0ubuntu2.1_all.deb ... 2024-02-27T20:59:00.0426507Z Unpacking dput (1.1.0ubuntu2.1) ... 2024-02-27T20:59:00.0808552Z Selecting previously unselected package fonts-noto-mono. 2024-02-27T20:59:00.0972737Z Preparing to unpack .../038-fonts-noto-mono_20201225-1build1_all.deb ... 2024-02-27T20:59:00.0983618Z Unpacking fonts-noto-mono (20201225-1build1) ... 2024-02-27T20:59:00.1634159Z Selecting previously unselected package fonts-urw-base35. 2024-02-27T20:59:00.1800879Z Preparing to unpack .../039-fonts-urw-base35_20200910-1_all.deb ... 2024-02-27T20:59:00.2349293Z Unpacking fonts-urw-base35 (20200910-1) ... 2024-02-27T20:59:00.5412326Z Selecting previously unselected package gdebi-core. 2024-02-27T20:59:00.5573189Z Preparing to unpack .../040-gdebi-core_0.9.5.7+nmu6_all.deb ... 2024-02-27T20:59:00.5583995Z Unpacking gdebi-core (0.9.5.7+nmu6) ... 2024-02-27T20:59:00.6502286Z Selecting previously unselected package gettext. 2024-02-27T20:59:00.6665674Z Preparing to unpack .../041-gettext_0.21-4ubuntu4_amd64.deb ... 2024-02-27T20:59:00.6697322Z Unpacking gettext (0.21-4ubuntu4) ... 2024-02-27T20:59:00.7293146Z Selecting previously unselected package libgs9-common. 2024-02-27T20:59:00.7456960Z Preparing to unpack .../042-libgs9-common_9.55.0~dfsg1-0ubuntu5.6_all.deb ... 2024-02-27T20:59:00.7471972Z Unpacking libgs9-common (9.55.0~dfsg1-0ubuntu5.6) ... 2024-02-27T20:59:00.8389169Z Selecting previously unselected package libidn12:amd64. 2024-02-27T20:59:00.8555121Z Preparing to unpack .../043-libidn12_1.38-4ubuntu1_amd64.deb ... 2024-02-27T20:59:00.8568904Z Unpacking libidn12:amd64 (1.38-4ubuntu1) ... 2024-02-27T20:59:00.8892385Z Selecting previously unselected package libijs-0.35:amd64. 2024-02-27T20:59:00.9057890Z Preparing to unpack .../044-libijs-0.35_0.35-15build2_amd64.deb ... 2024-02-27T20:59:00.9068741Z Unpacking libijs-0.35:amd64 (0.35-15build2) ... 2024-02-27T20:59:00.9369890Z Selecting previously unselected package libjbig2dec0:amd64. 2024-02-27T20:59:00.9535570Z Preparing to unpack .../045-libjbig2dec0_0.19-3build2_amd64.deb ... 2024-02-27T20:59:00.9552051Z Unpacking libjbig2dec0:amd64 (0.19-3build2) ... 2024-02-27T20:59:00.9886764Z Selecting previously unselected package libgs9:amd64. 2024-02-27T20:59:01.0051383Z Preparing to unpack .../046-libgs9_9.55.0~dfsg1-0ubuntu5.6_amd64.deb ... 2024-02-27T20:59:01.0065204Z Unpacking libgs9:amd64 (9.55.0~dfsg1-0ubuntu5.6) ... 2024-02-27T20:59:01.1420314Z Selecting previously unselected package ghostscript. 2024-02-27T20:59:01.1583327Z Preparing to unpack .../047-ghostscript_9.55.0~dfsg1-0ubuntu5.6_amd64.deb ... 2024-02-27T20:59:01.1595861Z Unpacking ghostscript (9.55.0~dfsg1-0ubuntu5.6) ... 2024-02-27T20:59:01.1999921Z Selecting previously unselected package intltool-debian. 2024-02-27T20:59:01.2162276Z Preparing to unpack .../048-intltool-debian_0.35.0+20060710.5_all.deb ... 2024-02-27T20:59:01.2184989Z Unpacking intltool-debian (0.35.0+20060710.5) ... 2024-02-27T20:59:01.2454979Z Selecting previously unselected package libaliased-perl. 2024-02-27T20:59:01.2618543Z Preparing to unpack .../049-libaliased-perl_0.34-1.1_all.deb ... 2024-02-27T20:59:01.2641479Z Unpacking libaliased-perl (0.34-1.1) ... 2024-02-27T20:59:01.2921300Z Selecting previously unselected package libapt-pkg-perl. 2024-02-27T20:59:01.3084464Z Preparing to unpack .../050-libapt-pkg-perl_0.1.40build2_amd64.deb ... 2024-02-27T20:59:01.3097007Z Unpacking libapt-pkg-perl (0.1.40build2) ... 2024-02-27T20:59:01.3403163Z Selecting previously unselected package libarchive-zip-perl. 2024-02-27T20:59:01.3567479Z Preparing to unpack .../051-libarchive-zip-perl_1.68-1_all.deb ... 2024-02-27T20:59:01.3590152Z Unpacking libarchive-zip-perl (1.68-1) ... 2024-02-27T20:59:01.3965149Z Selecting previously unselected package libarray-intspan-perl. 2024-02-27T20:59:01.4128058Z Preparing to unpack .../052-libarray-intspan-perl_2.004-1_all.deb ... 2024-02-27T20:59:01.4158759Z Unpacking libarray-intspan-perl (2.004-1) ... 2024-02-27T20:59:01.4484516Z Selecting previously unselected package libmodule-implementation-perl. 2024-02-27T20:59:01.4646405Z Preparing to unpack .../053-libmodule-implementation-perl_0.09-1.1_all.deb ... 2024-02-27T20:59:01.4661866Z Unpacking libmodule-implementation-perl (0.09-1.1) ... 2024-02-27T20:59:01.4939643Z Selecting previously unselected package libsub-exporter-progressive-perl. 2024-02-27T20:59:01.5103954Z Preparing to unpack .../054-libsub-exporter-progressive-perl_0.001013-1_all.deb ... 2024-02-27T20:59:01.5123213Z Unpacking libsub-exporter-progressive-perl (0.001013-1) ... 2024-02-27T20:59:01.5382714Z Selecting previously unselected package libvariable-magic-perl. 2024-02-27T20:59:01.5545838Z Preparing to unpack .../055-libvariable-magic-perl_0.62-1build5_amd64.deb ... 2024-02-27T20:59:01.5569368Z Unpacking libvariable-magic-perl (0.62-1build5) ... 2024-02-27T20:59:01.5878785Z Selecting previously unselected package libb-hooks-endofscope-perl. 2024-02-27T20:59:01.6041376Z Preparing to unpack .../056-libb-hooks-endofscope-perl_0.25-1_all.deb ... 2024-02-27T20:59:01.6052501Z Unpacking libb-hooks-endofscope-perl (0.25-1) ... 2024-02-27T20:59:01.6308087Z Selecting previously unselected package libcapture-tiny-perl. 2024-02-27T20:59:01.6469429Z Preparing to unpack .../057-libcapture-tiny-perl_0.48-1_all.deb ... 2024-02-27T20:59:01.6490928Z Unpacking libcapture-tiny-perl (0.48-1) ... 2024-02-27T20:59:01.6773569Z Selecting previously unselected package libclass-data-inheritable-perl. 2024-02-27T20:59:01.6943317Z Preparing to unpack .../058-libclass-data-inheritable-perl_0.08-3_all.deb ... 2024-02-27T20:59:01.6966615Z Unpacking libclass-data-inheritable-perl (0.08-3) ... 2024-02-27T20:59:01.7262097Z Selecting previously unselected package libconfig-tiny-perl. 2024-02-27T20:59:01.7424368Z Preparing to unpack .../059-libconfig-tiny-perl_2.28-1_all.deb ... 2024-02-27T20:59:01.7444344Z Unpacking libconfig-tiny-perl (2.28-1) ... 2024-02-27T20:59:01.7745360Z Selecting previously unselected package libparams-util-perl. 2024-02-27T20:59:01.7906776Z Preparing to unpack .../060-libparams-util-perl_1.102-1build3_amd64.deb ... 2024-02-27T20:59:01.7922723Z Unpacking libparams-util-perl (1.102-1build3) ... 2024-02-27T20:59:01.8189522Z Selecting previously unselected package libsub-install-perl. 2024-02-27T20:59:01.8352378Z Preparing to unpack .../061-libsub-install-perl_0.928-1.1_all.deb ... 2024-02-27T20:59:01.8362019Z Unpacking libsub-install-perl (0.928-1.1) ... 2024-02-27T20:59:01.8645146Z Selecting previously unselected package libdata-optlist-perl. 2024-02-27T20:59:01.8809195Z Preparing to unpack .../062-libdata-optlist-perl_0.112-1_all.deb ... 2024-02-27T20:59:01.8819061Z Unpacking libdata-optlist-perl (0.112-1) ... 2024-02-27T20:59:01.9089711Z Selecting previously unselected package libsub-exporter-perl. 2024-02-27T20:59:01.9253523Z Preparing to unpack .../063-libsub-exporter-perl_0.988-1_all.deb ... 2024-02-27T20:59:01.9273470Z Unpacking libsub-exporter-perl (0.988-1) ... 2024-02-27T20:59:01.9575782Z Selecting previously unselected package libconst-fast-perl. 2024-02-27T20:59:01.9739075Z Preparing to unpack .../064-libconst-fast-perl_0.014-1.1_all.deb ... 2024-02-27T20:59:01.9761539Z Unpacking libconst-fast-perl (0.014-1.1) ... 2024-02-27T20:59:02.0036705Z Selecting previously unselected package libwant-perl. 2024-02-27T20:59:02.0199192Z Preparing to unpack .../065-libwant-perl_0.29-1build7_amd64.deb ... 2024-02-27T20:59:02.0215461Z Unpacking libwant-perl (0.29-1build7) ... 2024-02-27T20:59:02.0512933Z Selecting previously unselected package libcontextual-return-perl. 2024-02-27T20:59:02.0676426Z Preparing to unpack .../066-libcontextual-return-perl_0.004014-2_all.deb ... 2024-02-27T20:59:02.0698846Z Unpacking libcontextual-return-perl (0.004014-2) ... 2024-02-27T20:59:02.1021579Z Selecting previously unselected package libcpanel-json-xs-perl:amd64. 2024-02-27T20:59:02.1184484Z Preparing to unpack .../067-libcpanel-json-xs-perl_4.27-1build1_amd64.deb ... 2024-02-27T20:59:02.1197847Z Unpacking libcpanel-json-xs-perl:amd64 (4.27-1build1) ... 2024-02-27T20:59:02.1489090Z Selecting previously unselected package libdevel-stacktrace-perl. 2024-02-27T20:59:02.1652194Z Preparing to unpack .../068-libdevel-stacktrace-perl_2.0400-1_all.deb ... 2024-02-27T20:59:02.1669176Z Unpacking libdevel-stacktrace-perl (2.0400-1) ... 2024-02-27T20:59:02.1943309Z Selecting previously unselected package libexception-class-perl. 2024-02-27T20:59:02.2105829Z Preparing to unpack .../069-libexception-class-perl_1.45-1_all.deb ... 2024-02-27T20:59:02.2120566Z Unpacking libexception-class-perl (1.45-1) ... 2024-02-27T20:59:02.2405841Z Selecting previously unselected package libiterator-perl. 2024-02-27T20:59:02.2569249Z Preparing to unpack .../070-libiterator-perl_0.03+ds1-1.1_all.deb ... 2024-02-27T20:59:02.2588579Z Unpacking libiterator-perl (0.03+ds1-1.1) ... 2024-02-27T20:59:02.2856834Z Selecting previously unselected package libiterator-util-perl. 2024-02-27T20:59:02.3019624Z Preparing to unpack .../071-libiterator-util-perl_0.02+ds1-1.1_all.deb ... 2024-02-27T20:59:02.3029888Z Unpacking libiterator-util-perl (0.02+ds1-1.1) ... 2024-02-27T20:59:02.3302580Z Selecting previously unselected package libexporter-tiny-perl. 2024-02-27T20:59:02.3468570Z Preparing to unpack .../072-libexporter-tiny-perl_1.002002-1_all.deb ... 2024-02-27T20:59:02.3480247Z Unpacking libexporter-tiny-perl (1.002002-1) ... 2024-02-27T20:59:02.3792719Z Selecting previously unselected package liblist-moreutils-xs-perl. 2024-02-27T20:59:02.3956355Z Preparing to unpack .../073-liblist-moreutils-xs-perl_0.430-2build2_amd64.deb ... 2024-02-27T20:59:02.3983732Z Unpacking liblist-moreutils-xs-perl (0.430-2build2) ... 2024-02-27T20:59:02.4263586Z Selecting previously unselected package liblist-moreutils-perl. 2024-02-27T20:59:02.4427608Z Preparing to unpack .../074-liblist-moreutils-perl_0.430-2_all.deb ... 2024-02-27T20:59:02.4448734Z Unpacking liblist-moreutils-perl (0.430-2) ... 2024-02-27T20:59:02.4778080Z Selecting previously unselected package libdata-dpath-perl. 2024-02-27T20:59:02.4942818Z Preparing to unpack .../075-libdata-dpath-perl_0.58-1_all.deb ... 2024-02-27T20:59:02.4953690Z Unpacking libdata-dpath-perl (0.58-1) ... 2024-02-27T20:59:02.5266076Z Selecting previously unselected package libdata-dump-perl. 2024-02-27T20:59:02.5429481Z Preparing to unpack .../076-libdata-dump-perl_1.25-1_all.deb ... 2024-02-27T20:59:02.5441440Z Unpacking libdata-dump-perl (1.25-1) ... 2024-02-27T20:59:02.5716728Z Selecting previously unselected package libdata-messagepack-perl. 2024-02-27T20:59:02.5879192Z Preparing to unpack .../077-libdata-messagepack-perl_1.01-2build1_amd64.deb ... 2024-02-27T20:59:02.5900086Z Unpacking libdata-messagepack-perl (1.01-2build1) ... 2024-02-27T20:59:02.6178796Z Selecting previously unselected package libnet-domain-tld-perl. 2024-02-27T20:59:02.6340494Z Preparing to unpack .../078-libnet-domain-tld-perl_1.75-1.1_all.deb ... 2024-02-27T20:59:02.6350975Z Unpacking libnet-domain-tld-perl (1.75-1.1) ... 2024-02-27T20:59:02.6638495Z Selecting previously unselected package libdata-validate-domain-perl. 2024-02-27T20:59:02.6799814Z Preparing to unpack .../079-libdata-validate-domain-perl_0.10-1.1_all.deb ... 2024-02-27T20:59:02.6815015Z Unpacking libdata-validate-domain-perl (0.10-1.1) ... 2024-02-27T20:59:02.7157921Z Selecting previously unselected package libnet-ipv6addr-perl. 2024-02-27T20:59:02.7330559Z Preparing to unpack .../080-libnet-ipv6addr-perl_1.02-1_all.deb ... 2024-02-27T20:59:02.7400698Z Unpacking libnet-ipv6addr-perl (1.02-1) ... 2024-02-27T20:59:02.8041759Z Selecting previously unselected package libnet-netmask-perl. 2024-02-27T20:59:02.8203419Z Preparing to unpack .../081-libnet-netmask-perl_2.0001-1_all.deb ... 2024-02-27T20:59:02.8216923Z Unpacking libnet-netmask-perl (2.0001-1) ... 2024-02-27T20:59:02.8713736Z Selecting previously unselected package libnetaddr-ip-perl. 2024-02-27T20:59:02.8881705Z Preparing to unpack .../082-libnetaddr-ip-perl_4.079+dfsg-1build7_amd64.deb ... 2024-02-27T20:59:02.8905142Z Unpacking libnetaddr-ip-perl (4.079+dfsg-1build7) ... 2024-02-27T20:59:02.9321023Z Selecting previously unselected package libdata-validate-ip-perl. 2024-02-27T20:59:02.9485418Z Preparing to unpack .../083-libdata-validate-ip-perl_0.30-1_all.deb ... 2024-02-27T20:59:02.9518582Z Unpacking libdata-validate-ip-perl (0.30-1) ... 2024-02-27T20:59:02.9821762Z Selecting previously unselected package libdata-validate-uri-perl. 2024-02-27T20:59:02.9983431Z Preparing to unpack .../084-libdata-validate-uri-perl_0.07-2_all.deb ... 2024-02-27T20:59:03.0004798Z Unpacking libdata-validate-uri-perl (0.07-2) ... 2024-02-27T20:59:03.0332744Z Selecting previously unselected package libdistro-info-perl. 2024-02-27T20:59:03.0497378Z Preparing to unpack .../085-libdistro-info-perl_1.1ubuntu0.2_all.deb ... 2024-02-27T20:59:03.0513269Z Unpacking libdistro-info-perl (1.1ubuntu0.2) ... 2024-02-27T20:59:03.0778066Z Selecting previously unselected package libemail-address-xs-perl. 2024-02-27T20:59:03.0941480Z Preparing to unpack .../086-libemail-address-xs-perl_1.04-1build6_amd64.deb ... 2024-02-27T20:59:03.0952808Z Unpacking libemail-address-xs-perl (1.04-1build6) ... 2024-02-27T20:59:03.1250691Z Selecting previously unselected package libipc-system-simple-perl. 2024-02-27T20:59:03.1412729Z Preparing to unpack .../087-libipc-system-simple-perl_1.30-1_all.deb ... 2024-02-27T20:59:03.1423920Z Unpacking libipc-system-simple-perl (1.30-1) ... 2024-02-27T20:59:03.1715222Z Selecting previously unselected package libfile-basedir-perl. 2024-02-27T20:59:03.1877333Z Preparing to unpack .../088-libfile-basedir-perl_0.09-1_all.deb ... 2024-02-27T20:59:03.1889243Z Unpacking libfile-basedir-perl (0.09-1) ... 2024-02-27T20:59:03.2172948Z Selecting previously unselected package libfile-chdir-perl. 2024-02-27T20:59:03.2335908Z Preparing to unpack .../089-libfile-chdir-perl_0.1008-1.1_all.deb ... 2024-02-27T20:59:03.2355750Z Unpacking libfile-chdir-perl (0.1008-1.1) ... 2024-02-27T20:59:03.2644251Z Selecting previously unselected package libnumber-compare-perl. 2024-02-27T20:59:03.2807538Z Preparing to unpack .../090-libnumber-compare-perl_0.03-2_all.deb ... 2024-02-27T20:59:03.2824495Z Unpacking libnumber-compare-perl (0.03-2) ... 2024-02-27T20:59:03.3116202Z Selecting previously unselected package libtext-glob-perl. 2024-02-27T20:59:03.3278863Z Preparing to unpack .../091-libtext-glob-perl_0.11-2_all.deb ... 2024-02-27T20:59:03.3302992Z Unpacking libtext-glob-perl (0.11-2) ... 2024-02-27T20:59:03.3581355Z Selecting previously unselected package libfile-find-rule-perl. 2024-02-27T20:59:03.3741145Z Preparing to unpack .../092-libfile-find-rule-perl_0.34-1_all.deb ... 2024-02-27T20:59:03.3761094Z Unpacking libfile-find-rule-perl (0.34-1) ... 2024-02-27T20:59:03.4072755Z Selecting previously unselected package libfont-afm-perl. 2024-02-27T20:59:03.4233272Z Preparing to unpack .../093-libfont-afm-perl_1.20-3_all.deb ... 2024-02-27T20:59:03.4253363Z Unpacking libfont-afm-perl (1.20-3) ... 2024-02-27T20:59:03.4563547Z Selecting previously unselected package libio-string-perl. 2024-02-27T20:59:03.4727098Z Preparing to unpack .../094-libio-string-perl_1.08-3.1_all.deb ... 2024-02-27T20:59:03.4741751Z Unpacking libio-string-perl (1.08-3.1) ... 2024-02-27T20:59:03.5042692Z Selecting previously unselected package libfont-ttf-perl. 2024-02-27T20:59:03.5206919Z Preparing to unpack .../095-libfont-ttf-perl_1.06-1.1_all.deb ... 2024-02-27T20:59:03.5224217Z Unpacking libfont-ttf-perl (1.06-1.1) ... 2024-02-27T20:59:03.5833606Z Selecting previously unselected package libsort-versions-perl. 2024-02-27T20:59:03.5997667Z Preparing to unpack .../096-libsort-versions-perl_1.62-1_all.deb ... 2024-02-27T20:59:03.6012859Z Unpacking libsort-versions-perl (1.62-1) ... 2024-02-27T20:59:03.6335235Z Selecting previously unselected package libgit-wrapper-perl. 2024-02-27T20:59:03.6497727Z Preparing to unpack .../097-libgit-wrapper-perl_0.048-1_all.deb ... 2024-02-27T20:59:03.6512617Z Unpacking libgit-wrapper-perl (0.048-1) ... 2024-02-27T20:59:03.6823939Z Selecting previously unselected package libhttp-tiny-multipart-perl. 2024-02-27T20:59:03.6985388Z Preparing to unpack .../098-libhttp-tiny-multipart-perl_0.08-1.1_all.deb ... 2024-02-27T20:59:03.7005804Z Unpacking libhttp-tiny-multipart-perl (0.08-1.1) ... 2024-02-27T20:59:03.7290135Z Selecting previously unselected package libio-prompter-perl. 2024-02-27T20:59:03.7452612Z Preparing to unpack .../099-libio-prompter-perl_0.004015-1_all.deb ... 2024-02-27T20:59:03.7474339Z Unpacking libio-prompter-perl (0.004015-1) ... 2024-02-27T20:59:03.7764969Z Selecting previously unselected package liblog-any-perl. 2024-02-27T20:59:03.7928131Z Preparing to unpack .../100-liblog-any-perl_1.710-1_all.deb ... 2024-02-27T20:59:03.7964500Z Unpacking liblog-any-perl (1.710-1) ... 2024-02-27T20:59:03.8292643Z Selecting previously unselected package liblog-any-adapter-screen-perl. 2024-02-27T20:59:03.8456169Z Preparing to unpack .../101-liblog-any-adapter-screen-perl_0.140-2_all.deb ... 2024-02-27T20:59:03.8471295Z Unpacking liblog-any-adapter-screen-perl (0.140-2) ... 2024-02-27T20:59:03.8745814Z Selecting previously unselected package libpackage-stash-perl. 2024-02-27T20:59:03.8911694Z Preparing to unpack .../102-libpackage-stash-perl_0.39-1_all.deb ... 2024-02-27T20:59:03.8931383Z Unpacking libpackage-stash-perl (0.39-1) ... 2024-02-27T20:59:03.9226108Z Selecting previously unselected package libsub-identify-perl. 2024-02-27T20:59:03.9389089Z Preparing to unpack .../103-libsub-identify-perl_0.14-1build5_amd64.deb ... 2024-02-27T20:59:03.9409403Z Unpacking libsub-identify-perl (0.14-1build5) ... 2024-02-27T20:59:03.9698582Z Selecting previously unselected package libsub-name-perl. 2024-02-27T20:59:03.9861862Z Preparing to unpack .../104-libsub-name-perl_0.26-1build3_amd64.deb ... 2024-02-27T20:59:03.9874510Z Unpacking libsub-name-perl (0.26-1build3) ... 2024-02-27T20:59:04.0145988Z Selecting previously unselected package libnamespace-clean-perl. 2024-02-27T20:59:04.0309165Z Preparing to unpack .../105-libnamespace-clean-perl_0.27-1_all.deb ... 2024-02-27T20:59:04.0330713Z Unpacking libnamespace-clean-perl (0.27-1) ... 2024-02-27T20:59:04.0663273Z Selecting previously unselected package libpath-tiny-perl. 2024-02-27T20:59:04.0833888Z Preparing to unpack .../106-libpath-tiny-perl_0.122-1_all.deb ... 2024-02-27T20:59:04.0848220Z Unpacking libpath-tiny-perl (0.122-1) ... 2024-02-27T20:59:04.1127049Z Selecting previously unselected package libstrictures-perl. 2024-02-27T20:59:04.1289125Z Preparing to unpack .../107-libstrictures-perl_2.000006-1_all.deb ... 2024-02-27T20:59:04.1304113Z Unpacking libstrictures-perl (2.000006-1) ... 2024-02-27T20:59:04.1608259Z Selecting previously unselected package libtype-tiny-perl. 2024-02-27T20:59:04.1771483Z Preparing to unpack .../108-libtype-tiny-perl_1.012004-1_all.deb ... 2024-02-27T20:59:04.1782194Z Unpacking libtype-tiny-perl (1.012004-1) ... 2024-02-27T20:59:04.2383482Z Selecting previously unselected package libgitlab-api-v4-perl. 2024-02-27T20:59:04.2551762Z Preparing to unpack .../109-libgitlab-api-v4-perl_0.26-1_all.deb ... 2024-02-27T20:59:04.2563910Z Unpacking libgitlab-api-v4-perl (0.26-1) ... 2024-02-27T20:59:04.2920118Z Selecting previously unselected package libhash-fieldhash-perl. 2024-02-27T20:59:04.3085623Z Preparing to unpack .../110-libhash-fieldhash-perl_0.15-1build5_amd64.deb ... 2024-02-27T20:59:04.3093490Z Unpacking libhash-fieldhash-perl (0.15-1build5) ... 2024-02-27T20:59:04.3394429Z Selecting previously unselected package libhtml-form-perl. 2024-02-27T20:59:04.3558292Z Preparing to unpack .../111-libhtml-form-perl_6.07-1_all.deb ... 2024-02-27T20:59:04.3585233Z Unpacking libhtml-form-perl (6.07-1) ... 2024-02-27T20:59:04.3879457Z Selecting previously unselected package libhtml-format-perl. 2024-02-27T20:59:04.4044497Z Preparing to unpack .../112-libhtml-format-perl_2.12-1.1_all.deb ... 2024-02-27T20:59:04.4063249Z Unpacking libhtml-format-perl (2.12-1.1) ... 2024-02-27T20:59:04.4373083Z Selecting previously unselected package libhtml-html5-entities-perl. 2024-02-27T20:59:04.4537270Z Preparing to unpack .../113-libhtml-html5-entities-perl_0.004-1.1_all.deb ... 2024-02-27T20:59:04.4565078Z Unpacking libhtml-html5-entities-perl (0.004-1.1) ... 2024-02-27T20:59:04.4876131Z Selecting previously unselected package libhttp-daemon-perl. 2024-02-27T20:59:04.5038049Z Preparing to unpack .../114-libhttp-daemon-perl_6.13-1ubuntu0.1_all.deb ... 2024-02-27T20:59:04.5051933Z Unpacking libhttp-daemon-perl (6.13-1ubuntu0.1) ... 2024-02-27T20:59:04.5376710Z Selecting previously unselected package libio-interactive-perl. 2024-02-27T20:59:04.5540342Z Preparing to unpack .../115-libio-interactive-perl_1.023-1_all.deb ... 2024-02-27T20:59:04.5562942Z Unpacking libio-interactive-perl (1.023-1) ... 2024-02-27T20:59:04.5886412Z Selecting previously unselected package libio-prompt-tiny-perl. 2024-02-27T20:59:04.6050411Z Preparing to unpack .../116-libio-prompt-tiny-perl_0.003-1_all.deb ... 2024-02-27T20:59:04.6060067Z Unpacking libio-prompt-tiny-perl (0.003-1) ... 2024-02-27T20:59:04.6424559Z Selecting previously unselected package libjson-maybexs-perl. 2024-02-27T20:59:04.6587227Z Preparing to unpack .../117-libjson-maybexs-perl_1.004003-1_all.deb ... 2024-02-27T20:59:04.6600727Z Unpacking libjson-maybexs-perl (1.004003-1) ... 2024-02-27T20:59:04.6883778Z Selecting previously unselected package liblist-compare-perl. 2024-02-27T20:59:04.7045695Z Preparing to unpack .../118-liblist-compare-perl_0.55-1_all.deb ... 2024-02-27T20:59:04.7060188Z Unpacking liblist-compare-perl (0.55-1) ... 2024-02-27T20:59:04.7420871Z Selecting previously unselected package liblist-someutils-perl. 2024-02-27T20:59:04.7583267Z Preparing to unpack .../119-liblist-someutils-perl_0.58-1_all.deb ... 2024-02-27T20:59:04.7613291Z Unpacking liblist-someutils-perl (0.58-1) ... 2024-02-27T20:59:04.7935957Z Selecting previously unselected package liblist-someutils-xs-perl. 2024-02-27T20:59:04.8099199Z Preparing to unpack .../120-liblist-someutils-xs-perl_0.58-2build3_amd64.deb ... 2024-02-27T20:59:04.8128442Z Unpacking liblist-someutils-xs-perl (0.58-2build3) ... 2024-02-27T20:59:04.8445067Z Selecting previously unselected package liblist-utilsby-perl. 2024-02-27T20:59:04.8607566Z Preparing to unpack .../121-liblist-utilsby-perl_0.11-1_all.deb ... 2024-02-27T20:59:04.8623541Z Unpacking liblist-utilsby-perl (0.11-1) ... 2024-02-27T20:59:04.8974111Z Selecting previously unselected package libnet-smtp-ssl-perl. 2024-02-27T20:59:04.9137699Z Preparing to unpack .../122-libnet-smtp-ssl-perl_1.04-1_all.deb ... 2024-02-27T20:59:04.9161604Z Unpacking libnet-smtp-ssl-perl (1.04-1) ... 2024-02-27T20:59:04.9451390Z Selecting previously unselected package libmailtools-perl. 2024-02-27T20:59:04.9622593Z Preparing to unpack .../123-libmailtools-perl_2.21-1_all.deb ... 2024-02-27T20:59:04.9636966Z Unpacking libmailtools-perl (2.21-1) ... 2024-02-27T20:59:05.0023947Z Selecting previously unselected package libmarkdown2:amd64. 2024-02-27T20:59:05.0188306Z Preparing to unpack .../124-libmarkdown2_2.2.7-2_amd64.deb ... 2024-02-27T20:59:05.0207381Z Unpacking libmarkdown2:amd64 (2.2.7-2) ... 2024-02-27T20:59:05.0499514Z Selecting previously unselected package libmath-base85-perl. 2024-02-27T20:59:05.0664545Z Preparing to unpack .../125-libmath-base85-perl_0.5+dfsg-1_all.deb ... 2024-02-27T20:59:05.0693878Z Unpacking libmath-base85-perl (0.5+dfsg-1) ... 2024-02-27T20:59:05.1043443Z Selecting previously unselected package libmoox-aliases-perl. 2024-02-27T20:59:05.1207380Z Preparing to unpack .../126-libmoox-aliases-perl_0.001006-1.1_all.deb ... 2024-02-27T20:59:05.1218948Z Unpacking libmoox-aliases-perl (0.001006-1.1) ... 2024-02-27T20:59:05.1499176Z Selecting previously unselected package libnamespace-autoclean-perl. 2024-02-27T20:59:05.1664528Z Preparing to unpack .../127-libnamespace-autoclean-perl_0.29-1_all.deb ... 2024-02-27T20:59:05.1685172Z Unpacking libnamespace-autoclean-perl (0.29-1) ... 2024-02-27T20:59:05.1975699Z Selecting previously unselected package libobject-id-perl. 2024-02-27T20:59:05.2139826Z Preparing to unpack .../128-libobject-id-perl_0.1.2-2.1ubuntu1_all.deb ... 2024-02-27T20:59:05.2160494Z Unpacking libobject-id-perl (0.1.2-2.1ubuntu1) ... 2024-02-27T20:59:05.2435218Z Selecting previously unselected package libmoox-struct-perl. 2024-02-27T20:59:05.2600072Z Preparing to unpack .../129-libmoox-struct-perl_0.020-1_all.deb ... 2024-02-27T20:59:05.2610687Z Unpacking libmoox-struct-perl (0.020-1) ... 2024-02-27T20:59:05.2928428Z Selecting previously unselected package libmouse-perl. 2024-02-27T20:59:05.3092447Z Preparing to unpack .../130-libmouse-perl_2.5.10-1build4_amd64.deb ... 2024-02-27T20:59:05.3102683Z Unpacking libmouse-perl (2.5.10-1build4) ... 2024-02-27T20:59:05.3504218Z Selecting previously unselected package libpackage-stash-xs-perl. 2024-02-27T20:59:05.3668326Z Preparing to unpack .../131-libpackage-stash-xs-perl_0.29-1build5_amd64.deb ... 2024-02-27T20:59:05.3679687Z Unpacking libpackage-stash-xs-perl (0.29-1build5) ... 2024-02-27T20:59:05.4011944Z Selecting previously unselected package libpath-iterator-rule-perl. 2024-02-27T20:59:05.4233359Z Preparing to unpack .../132-libpath-iterator-rule-perl_1.015-1_all.deb ... 2024-02-27T20:59:05.4248024Z Unpacking libpath-iterator-rule-perl (1.015-1) ... 2024-02-27T20:59:05.4555646Z Selecting previously unselected package libperlio-gzip-perl. 2024-02-27T20:59:05.4719638Z Preparing to unpack .../133-libperlio-gzip-perl_0.19-1build8_amd64.deb ... 2024-02-27T20:59:05.4736922Z Unpacking libperlio-gzip-perl (0.19-1build8) ... 2024-02-27T20:59:05.5014886Z Selecting previously unselected package libperlio-utf8-strict-perl. 2024-02-27T20:59:05.5177403Z Preparing to unpack .../134-libperlio-utf8-strict-perl_0.009-1build1_amd64.deb ... 2024-02-27T20:59:05.5191609Z Unpacking libperlio-utf8-strict-perl (0.009-1build1) ... 2024-02-27T20:59:05.5479457Z Selecting previously unselected package libpod-parser-perl. 2024-02-27T20:59:05.5642780Z Preparing to unpack .../135-libpod-parser-perl_1.63-2_all.deb ... 2024-02-27T20:59:05.6024816Z Adding 'diversion of /usr/bin/podselect to /usr/bin/podselect.bundled by libpod-parser-perl' 2024-02-27T20:59:05.6199982Z Adding 'diversion of /usr/share/man/man1/podselect.1.gz to /usr/share/man/man1/podselect.bundled.1.gz by libpod-parser-perl' 2024-02-27T20:59:05.6226605Z Unpacking libpod-parser-perl (1.63-2) ... 2024-02-27T20:59:05.6583089Z Selecting previously unselected package libpod-constants-perl. 2024-02-27T20:59:05.6747628Z Preparing to unpack .../136-libpod-constants-perl_0.19-2_all.deb ... 2024-02-27T20:59:05.6768032Z Unpacking libpod-constants-perl (0.19-2) ... 2024-02-27T20:59:05.7070514Z Selecting previously unselected package libqpdf28:amd64. 2024-02-27T20:59:05.7235321Z Preparing to unpack .../137-libqpdf28_10.6.3-1_amd64.deb ... 2024-02-27T20:59:05.7250656Z Unpacking libqpdf28:amd64 (10.6.3-1) ... 2024-02-27T20:59:05.7652457Z Selecting previously unselected package libre-engine-re2-perl:amd64. 2024-02-27T20:59:05.7815334Z Preparing to unpack .../138-libre-engine-re2-perl_0.14-1build2_amd64.deb ... 2024-02-27T20:59:05.7829635Z Unpacking libre-engine-re2-perl:amd64 (0.14-1build2) ... 2024-02-27T20:59:05.8126226Z Selecting previously unselected package libreadonly-perl. 2024-02-27T20:59:05.8291548Z Preparing to unpack .../139-libreadonly-perl_2.050-3_all.deb ... 2024-02-27T20:59:05.8312689Z Unpacking libreadonly-perl (2.050-3) ... 2024-02-27T20:59:05.8582999Z Selecting previously unselected package libref-util-perl. 2024-02-27T20:59:05.8747858Z Preparing to unpack .../140-libref-util-perl_0.204-1_all.deb ... 2024-02-27T20:59:05.8759683Z Unpacking libref-util-perl (0.204-1) ... 2024-02-27T20:59:05.9053995Z Selecting previously unselected package libref-util-xs-perl. 2024-02-27T20:59:05.9221632Z Preparing to unpack .../141-libref-util-xs-perl_0.117-1build5_amd64.deb ... 2024-02-27T20:59:05.9237469Z Unpacking libref-util-xs-perl (0.117-1build5) ... 2024-02-27T20:59:05.9564611Z Selecting previously unselected package libregexp-pattern-license-perl. 2024-02-27T20:59:05.9730642Z Preparing to unpack .../142-libregexp-pattern-license-perl_3.9.3-1_all.deb ... 2024-02-27T20:59:05.9742322Z Unpacking libregexp-pattern-license-perl (3.9.3-1) ... 2024-02-27T20:59:06.0046218Z Selecting previously unselected package libregexp-pattern-perl. 2024-02-27T20:59:06.0213066Z Preparing to unpack .../143-libregexp-pattern-perl_0.2.14-1_all.deb ... 2024-02-27T20:59:06.0227216Z Unpacking libregexp-pattern-perl (0.2.14-1) ... 2024-02-27T20:59:06.0512583Z Selecting previously unselected package libsereal-decoder-perl. 2024-02-27T20:59:06.0679538Z Preparing to unpack .../144-libsereal-decoder-perl_4.023+ds-1_amd64.deb ... 2024-02-27T20:59:06.0693999Z Unpacking libsereal-decoder-perl (4.023+ds-1) ... 2024-02-27T20:59:06.0999096Z Selecting previously unselected package libsereal-encoder-perl:amd64. 2024-02-27T20:59:06.1164089Z Preparing to unpack .../145-libsereal-encoder-perl_4.023+ds-1_amd64.deb ... 2024-02-27T20:59:06.1176872Z Unpacking libsereal-encoder-perl:amd64 (4.023+ds-1) ... 2024-02-27T20:59:06.1481756Z Selecting previously unselected package libset-intspan-perl. 2024-02-27T20:59:06.1645988Z Preparing to unpack .../146-libset-intspan-perl_1.19-2_all.deb ... 2024-02-27T20:59:06.1673017Z Unpacking libset-intspan-perl (1.19-2) ... 2024-02-27T20:59:06.1939211Z Selecting previously unselected package libsocket6-perl. 2024-02-27T20:59:06.2104172Z Preparing to unpack .../147-libsocket6-perl_0.29-1build4_amd64.deb ... 2024-02-27T20:59:06.2116425Z Unpacking libsocket6-perl (0.29-1build4) ... 2024-02-27T20:59:06.2379593Z Selecting previously unselected package libstring-copyright-perl. 2024-02-27T20:59:06.2543864Z Preparing to unpack .../148-libstring-copyright-perl_0.003012-1_all.deb ... 2024-02-27T20:59:06.2553015Z Unpacking libstring-copyright-perl (0.003012-1) ... 2024-02-27T20:59:06.2817594Z Selecting previously unselected package libstring-escape-perl. 2024-02-27T20:59:06.2982735Z Preparing to unpack .../149-libstring-escape-perl_2010.002-2_all.deb ... 2024-02-27T20:59:06.2991807Z Unpacking libstring-escape-perl (2010.002-2) ... 2024-02-27T20:59:06.3266027Z Selecting previously unselected package libstring-shellquote-perl. 2024-02-27T20:59:06.3431012Z Preparing to unpack .../150-libstring-shellquote-perl_1.04-1_all.deb ... 2024-02-27T20:59:06.3452257Z Unpacking libstring-shellquote-perl (1.04-1) ... 2024-02-27T20:59:06.3753398Z Selecting previously unselected package libxs-parse-keyword-perl. 2024-02-27T20:59:06.3916742Z Preparing to unpack .../151-libxs-parse-keyword-perl_0.21-1build1_amd64.deb ... 2024-02-27T20:59:06.3926285Z Unpacking libxs-parse-keyword-perl (0.21-1build1) ... 2024-02-27T20:59:06.4192143Z Selecting previously unselected package libsyntax-keyword-try-perl. 2024-02-27T20:59:06.4355187Z Preparing to unpack .../152-libsyntax-keyword-try-perl_0.26-1build1_amd64.deb ... 2024-02-27T20:59:06.4364393Z Unpacking libsyntax-keyword-try-perl (0.26-1build1) ... 2024-02-27T20:59:06.4610922Z Selecting previously unselected package libtext-levenshteinxs-perl. 2024-02-27T20:59:06.4773324Z Preparing to unpack .../153-libtext-levenshteinxs-perl_0.03-4build10_amd64.deb ... 2024-02-27T20:59:06.4783417Z Unpacking libtext-levenshteinxs-perl (0.03-4build10) ... 2024-02-27T20:59:06.5037568Z Selecting previously unselected package libtext-markdown-discount-perl:amd64. 2024-02-27T20:59:06.5198854Z Preparing to unpack .../154-libtext-markdown-discount-perl_0.13-1build1_amd64.deb ... 2024-02-27T20:59:06.5207545Z Unpacking libtext-markdown-discount-perl:amd64 (0.13-1build1) ... 2024-02-27T20:59:06.5452894Z Selecting previously unselected package libtext-xslate-perl:amd64. 2024-02-27T20:59:06.5616898Z Preparing to unpack .../155-libtext-xslate-perl_3.5.9-1build1_amd64.deb ... 2024-02-27T20:59:06.5625809Z Unpacking libtext-xslate-perl:amd64 (3.5.9-1build1) ... 2024-02-27T20:59:06.6058504Z Selecting previously unselected package libtime-duration-perl. 2024-02-27T20:59:06.6223174Z Preparing to unpack .../156-libtime-duration-perl_1.21-1_all.deb ... 2024-02-27T20:59:06.6231901Z Unpacking libtime-duration-perl (1.21-1) ... 2024-02-27T20:59:06.6476448Z Selecting previously unselected package libtime-moment-perl. 2024-02-27T20:59:06.6640894Z Preparing to unpack .../157-libtime-moment-perl_0.44-1build6_amd64.deb ... 2024-02-27T20:59:06.6649384Z Unpacking libtime-moment-perl (0.44-1build6) ... 2024-02-27T20:59:06.6927374Z Selecting previously unselected package libtype-tiny-xs-perl. 2024-02-27T20:59:06.7093123Z Preparing to unpack .../158-libtype-tiny-xs-perl_0.022-1build2_amd64.deb ... 2024-02-27T20:59:06.7102230Z Unpacking libtype-tiny-xs-perl (0.022-1build2) ... 2024-02-27T20:59:06.7359139Z Selecting previously unselected package libunicode-utf8-perl. 2024-02-27T20:59:06.7522294Z Preparing to unpack .../159-libunicode-utf8-perl_0.62-1build4_amd64.deb ... 2024-02-27T20:59:06.7531839Z Unpacking libunicode-utf8-perl (0.62-1build4) ... 2024-02-27T20:59:06.7806708Z Selecting previously unselected package libyaml-libyaml-perl. 2024-02-27T20:59:06.7969118Z Preparing to unpack .../160-libyaml-libyaml-perl_0.83+ds-1build1_amd64.deb ... 2024-02-27T20:59:06.7980448Z Unpacking libyaml-libyaml-perl (0.83+ds-1build1) ... 2024-02-27T20:59:06.8272531Z Selecting previously unselected package licensecheck. 2024-02-27T20:59:06.8431863Z Preparing to unpack .../161-licensecheck_3.2.14-2_all.deb ... 2024-02-27T20:59:06.8452094Z Unpacking licensecheck (3.2.14-2) ... 2024-02-27T20:59:06.8734668Z Selecting previously unselected package libdevel-size-perl. 2024-02-27T20:59:06.8894630Z Preparing to unpack .../162-libdevel-size-perl_0.83-1build4_amd64.deb ... 2024-02-27T20:59:06.8903413Z Unpacking libdevel-size-perl (0.83-1build4) ... 2024-02-27T20:59:06.9157429Z Selecting previously unselected package libipc-run3-perl. 2024-02-27T20:59:06.9321032Z Preparing to unpack .../163-libipc-run3-perl_0.048-2_all.deb ... 2024-02-27T20:59:06.9329845Z Unpacking libipc-run3-perl (0.048-2) ... 2024-02-27T20:59:06.9650452Z Selecting previously unselected package lzip. 2024-02-27T20:59:06.9814566Z Preparing to unpack .../164-lzip_1.23-1_amd64.deb ... 2024-02-27T20:59:06.9824051Z Unpacking lzip (1.23-1) ... 2024-02-27T20:59:07.0087775Z Selecting previously unselected package lzop. 2024-02-27T20:59:07.0250256Z Preparing to unpack .../165-lzop_1.04-2build2_amd64.deb ... 2024-02-27T20:59:07.0269988Z Unpacking lzop (1.04-2build2) ... 2024-02-27T20:59:07.0681073Z Selecting previously unselected package t1utils. 2024-02-27T20:59:07.0844881Z Preparing to unpack .../166-t1utils_1.41-4build2_amd64.deb ... 2024-02-27T20:59:07.0853915Z Unpacking t1utils (1.41-4build2) ... 2024-02-27T20:59:07.1244385Z Selecting previously unselected package lintian. 2024-02-27T20:59:07.1406952Z Preparing to unpack .../167-lintian_2.114.0ubuntu1.3_all.deb ... 2024-02-27T20:59:07.1476617Z Unpacking lintian (2.114.0ubuntu1.3) ... 2024-02-27T20:59:07.5996961Z Selecting previously unselected package python3-unidiff. 2024-02-27T20:59:07.6171758Z Preparing to unpack .../168-python3-unidiff_0.5.5-2_all.deb ... 2024-02-27T20:59:07.6185747Z Unpacking python3-unidiff (0.5.5-2) ... 2024-02-27T20:59:07.6483617Z Selecting previously unselected package python3-xdg. 2024-02-27T20:59:07.6650202Z Preparing to unpack .../169-python3-xdg_0.27-2_all.deb ... 2024-02-27T20:59:07.6659139Z Unpacking python3-xdg (0.27-2) ... 2024-02-27T20:59:07.6951436Z Selecting previously unselected package qpdf. 2024-02-27T20:59:07.7117724Z Preparing to unpack .../170-qpdf_10.6.3-1_amd64.deb ... 2024-02-27T20:59:07.7126199Z Unpacking qpdf (10.6.3-1) ... 2024-02-27T20:59:07.7404730Z Selecting previously unselected package libauthen-sasl-perl. 2024-02-27T20:59:07.7568445Z Preparing to unpack .../171-libauthen-sasl-perl_2.1600-1.1_all.deb ... 2024-02-27T20:59:07.7580461Z Unpacking libauthen-sasl-perl (2.1600-1.1) ... 2024-02-27T20:59:07.8157804Z Setting up libapt-pkg-perl (0.1.40build2) ... 2024-02-27T20:59:07.8192804Z Setting up libstring-escape-perl (2010.002-2) ... 2024-02-27T20:59:07.8221727Z Setting up libqpdf28:amd64 (10.6.3-1) ... 2024-02-27T20:59:07.8251791Z Setting up wdiff (1.2.2-2build3) ... 2024-02-27T20:59:07.8279357Z Setting up libhttp-negotiate-perl (6.01-1) ... 2024-02-27T20:59:07.8303312Z Setting up libfile-which-perl (1.23-1) ... 2024-02-27T20:59:07.8335457Z Setting up gettext (0.21-4ubuntu4) ... 2024-02-27T20:59:07.8385708Z Setting up libunicode-utf8-perl (0.62-1build4) ... 2024-02-27T20:59:07.8422479Z Setting up libset-intspan-perl (1.19-2) ... 2024-02-27T20:59:07.8451022Z Setting up libmouse-perl (2.5.10-1build4) ... 2024-02-27T20:59:07.8478055Z Setting up libfile-listing-perl (6.14-1) ... 2024-02-27T20:59:07.8507767Z Setting up fonts-noto-mono (20201225-1build1) ... 2024-02-27T20:59:07.8555483Z Setting up gdebi-core (0.9.5.7+nmu6) ... 2024-02-27T20:59:08.1634435Z Setting up libregexp-pattern-perl (0.2.14-1) ... 2024-02-27T20:59:08.1697270Z Setting up libdata-messagepack-perl (1.01-2build1) ... 2024-02-27T20:59:08.1768832Z Setting up libfont-afm-perl (1.20-3) ... 2024-02-27T20:59:08.2063740Z Setting up libwant-perl (0.29-1build7) ... 2024-02-27T20:59:08.2228350Z Setting up libdynaloader-functions-perl (0.003-1.1) ... 2024-02-27T20:59:08.2535980Z Setting up libtext-glob-perl (0.11-2) ... 2024-02-27T20:59:08.2646614Z Setting up libclass-method-modifiers-perl (2.13-1) ... 2024-02-27T20:59:08.2695545Z Setting up liblist-compare-perl (0.55-1) ... 2024-02-27T20:59:08.2765673Z Setting up libref-util-xs-perl (0.117-1build5) ... 2024-02-27T20:59:08.3062332Z Setting up libio-pty-perl (1:1.15-2build2) ... 2024-02-27T20:59:08.3159529Z Setting up libhttp-cookies-perl (6.10-1) ... 2024-02-27T20:59:08.3247232Z Setting up libarchive-zip-perl (1.68-1) ... 2024-02-27T20:59:08.3700929Z Setting up libsub-identify-perl (0.14-1build5) ... 2024-02-27T20:59:08.3783363Z Setting up libdistro-info-perl (1.1ubuntu0.2) ... 2024-02-27T20:59:08.3835463Z Setting up libcpanel-json-xs-perl:amd64 (4.27-1build1) ... 2024-02-27T20:59:08.3876529Z Setting up liblog-any-perl (1.710-1) ... 2024-02-27T20:59:08.4705301Z Setting up libijs-0.35:amd64 (0.35-15build2) ... 2024-02-27T20:59:08.6150068Z Setting up libauthen-sasl-perl (2.1600-1.1) ... 2024-02-27T20:59:08.8151121Z Setting up libhtml-tree-perl (5.07-2) ... 2024-02-27T20:59:08.9155731Z Setting up libdevel-size-perl (0.83-1build4) ... 2024-02-27T20:59:08.9783845Z Setting up libregexp-pattern-license-perl (3.9.3-1) ... 2024-02-27T20:59:08.9814220Z Setting up libyaml-libyaml-perl (0.83+ds-1build1) ... 2024-02-27T20:59:08.9847108Z Setting up libio-interactive-perl (1.023-1) ... 2024-02-27T20:59:08.9899625Z Setting up libtry-tiny-perl (0.31-1) ... 2024-02-27T20:59:08.9944498Z Setting up perl-openssl-defaults:amd64 (5build2) ... 2024-02-27T20:59:08.9982701Z Setting up libnet-http-perl (6.22-1) ... 2024-02-27T20:59:09.0112999Z Setting up libhttp-tiny-multipart-perl (0.08-1.1) ... 2024-02-27T20:59:09.0159795Z Setting up libtime-moment-perl (0.44-1build6) ... 2024-02-27T20:59:09.0192955Z Setting up libhtml-format-perl (2.12-1.1) ... 2024-02-27T20:59:09.0228944Z Setting up fonts-urw-base35 (20200910-1) ... 2024-02-27T20:59:09.0778051Z Setting up libmath-base85-perl (0.5+dfsg-1) ... 2024-02-27T20:59:09.0827445Z Setting up python3-xdg (0.27-2) ... 2024-02-27T20:59:09.2093957Z Setting up libconfig-tiny-perl (2.28-1) ... 2024-02-27T20:59:09.2121811Z Setting up libsereal-encoder-perl:amd64 (4.023+ds-1) ... 2024-02-27T20:59:09.2154853Z Setting up liblist-utilsby-perl (0.11-1) ... 2024-02-27T20:59:09.2198767Z Setting up libstring-shellquote-perl (1.04-1) ... 2024-02-27T20:59:09.2234772Z Setting up libnet-netmask-perl (2.0001-1) ... 2024-02-27T20:59:09.2279480Z Setting up libsub-install-perl (0.928-1.1) ... 2024-02-27T20:59:09.2326392Z Setting up poppler-data (0.4.11-1) ... 2024-02-27T20:59:09.2519341Z Setting up libnumber-compare-perl (0.03-2) ... 2024-02-27T20:59:09.2556872Z Setting up intltool-debian (0.35.0+20060710.5) ... 2024-02-27T20:59:09.2594219Z Setting up patchutils (0.4.2-1build2) ... 2024-02-27T20:59:09.2620862Z Setting up libjson-maybexs-perl (1.004003-1) ... 2024-02-27T20:59:09.2668842Z Setting up libio-string-perl (1.08-3.1) ... 2024-02-27T20:59:09.2707660Z Setting up libreadonly-perl (2.050-3) ... 2024-02-27T20:59:09.2750432Z Setting up libnetaddr-ip-perl (4.079+dfsg-1build7) ... 2024-02-27T20:59:09.2787471Z Setting up libpackage-stash-xs-perl (0.29-1build5) ... 2024-02-27T20:59:09.2821998Z Setting up libclass-data-inheritable-perl (0.08-3) ... 2024-02-27T20:59:09.2855433Z Setting up libxs-parse-keyword-perl (0.21-1build1) ... 2024-02-27T20:59:09.2891013Z Setting up python3-gpg (1.16.0-1.2ubuntu4.1) ... 2024-02-27T20:59:09.4263889Z Setting up libdata-dump-perl (1.25-1) ... 2024-02-27T20:59:09.4316846Z Setting up libfile-find-rule-perl (0.34-1) ... 2024-02-27T20:59:09.4368875Z Setting up libref-util-perl (0.204-1) ... 2024-02-27T20:59:09.4417481Z Setting up libjbig2dec0:amd64 (0.19-3build2) ... 2024-02-27T20:59:09.4470408Z Setting up libipc-system-simple-perl (1.30-1) ... 2024-02-27T20:59:09.4500172Z Setting up libnet-domain-tld-perl (1.75-1.1) ... 2024-02-27T20:59:09.4536097Z Setting up libperlio-utf8-strict-perl (0.009-1build1) ... 2024-02-27T20:59:09.4572027Z Setting up libsocket6-perl (0.29-1build4) ... 2024-02-27T20:59:09.4608809Z Setting up libio-prompt-tiny-perl (0.003-1) ... 2024-02-27T20:59:09.4634609Z Setting up lzip (1.23-1) ... 2024-02-27T20:59:09.4753295Z update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip (lzip) in auto mode 2024-02-27T20:59:09.4834353Z update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-compressor (lzip-compressor) in auto mode 2024-02-27T20:59:09.4894871Z update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-decompressor (lzip-decompressor) in auto mode 2024-02-27T20:59:09.4937359Z Setting up libhash-fieldhash-perl (0.15-1build5) ... 2024-02-27T20:59:09.4997514Z Setting up qpdf (10.6.3-1) ... 2024-02-27T20:59:09.5024383Z Setting up t1utils (1.41-4build2) ... 2024-02-27T20:59:09.5058396Z Setting up diffstat (1.64-1build2) ... 2024-02-27T20:59:09.5099450Z Setting up libvariable-magic-perl (0.62-1build5) ... 2024-02-27T20:59:09.5131974Z Setting up libidn12:amd64 (1.38-4ubuntu1) ... 2024-02-27T20:59:09.5171408Z Setting up libpod-parser-perl (1.63-2) ... 2024-02-27T20:59:09.5230460Z Setting up libb-hooks-op-check-perl (0.22-1build5) ... 2024-02-27T20:59:09.5267200Z Setting up libipc-run-perl (20200505.0-1) ... 2024-02-27T20:59:09.5469713Z Setting up liblist-moreutils-xs-perl (0.430-2build2) ... 2024-02-27T20:59:09.5505511Z Setting up libparams-util-perl (1.102-1build3) ... 2024-02-27T20:59:09.5574667Z Setting up libtime-duration-perl (1.21-1) ... 2024-02-27T20:59:09.5624070Z Setting up libtext-xslate-perl:amd64 (3.5.9-1build1) ... 2024-02-27T20:59:09.5652185Z Setting up libsub-exporter-progressive-perl (0.001013-1) ... 2024-02-27T20:59:09.5692848Z Setting up libarray-intspan-perl (2.004-1) ... 2024-02-27T20:59:09.5735536Z Setting up libcapture-tiny-perl (0.48-1) ... 2024-02-27T20:59:09.5795008Z Setting up libcontextual-return-perl (0.004014-2) ... 2024-02-27T20:59:09.5863199Z Setting up libsub-name-perl (0.26-1build3) ... 2024-02-27T20:59:09.5892238Z Setting up libwww-robotrules-perl (6.02-1) ... 2024-02-27T20:59:09.5935902Z Setting up libtype-tiny-xs-perl (0.022-1build2) ... 2024-02-27T20:59:09.5969888Z Setting up libsyntax-keyword-try-perl (0.26-1build1) ... 2024-02-27T20:59:09.6002034Z Setting up libdata-validate-domain-perl (0.10-1.1) ... 2024-02-27T20:59:09.6047096Z Setting up libhttp-daemon-perl (6.13-1ubuntu0.1) ... 2024-02-27T20:59:09.6092914Z Setting up libfile-chdir-perl (0.1008-1.1) ... 2024-02-27T20:59:09.6130508Z Setting up libpath-tiny-perl (0.122-1) ... 2024-02-27T20:59:09.6175024Z Setting up lzop (1.04-2build2) ... 2024-02-27T20:59:09.6224858Z Setting up liblog-any-adapter-screen-perl (0.140-2) ... 2024-02-27T20:59:09.6264636Z Setting up librole-tiny-perl (2.002004-1) ... 2024-02-27T20:59:09.6292573Z Setting up libipc-run3-perl (0.048-2) ... 2024-02-27T20:59:09.6370368Z Setting up libaliased-perl (0.34-1.1) ... 2024-02-27T20:59:09.6394404Z Setting up python3-unidiff (0.5.5-2) ... 2024-02-27T20:59:09.7498442Z Setting up libstrictures-perl (2.000006-1) ... 2024-02-27T20:59:09.7529833Z Setting up libsub-quote-perl (2.006006-1) ... 2024-02-27T20:59:09.7581401Z Setting up libdevel-stacktrace-perl (2.0400-1) ... 2024-02-27T20:59:09.7619367Z Setting up libclass-xsaccessor-perl (1.19-3build9) ... 2024-02-27T20:59:09.7653634Z Setting up fonts-droid-fallback (1:6.0.1r16-1.1build1) ... 2024-02-27T20:59:09.7888917Z Setting up libsort-versions-perl (1.62-1) ... 2024-02-27T20:59:09.7917410Z Setting up libexporter-tiny-perl (1.002002-1) ... 2024-02-27T20:59:09.7947711Z Setting up libre-engine-re2-perl:amd64 (0.14-1build2) ... 2024-02-27T20:59:09.7971280Z Setting up libfile-dirlist-perl (0.05-2) ... 2024-02-27T20:59:09.8013113Z Setting up libfont-ttf-perl (1.06-1.1) ... 2024-02-27T20:59:09.8057814Z Setting up libfile-homedir-perl (1.006-1) ... 2024-02-27T20:59:09.8100502Z Setting up libtext-levenshteinxs-perl (0.03-4build10) ... 2024-02-27T20:59:09.8170874Z Setting up libperlio-gzip-perl (0.19-1build8) ... 2024-02-27T20:59:09.8216253Z Setting up libhtml-html5-entities-perl (0.004-1.1) ... 2024-02-27T20:59:09.8257748Z Setting up libsereal-decoder-perl (4.023+ds-1) ... 2024-02-27T20:59:09.8283191Z Setting up libmarkdown2:amd64 (2.2.7-2) ... 2024-02-27T20:59:09.8310340Z Setting up libnet-ipv6addr-perl (1.02-1) ... 2024-02-27T20:59:09.8340150Z Setting up libfile-touch-perl (0.12-1) ... 2024-02-27T20:59:09.8371333Z Setting up dctrl-tools (2.24-3build2) ... 2024-02-27T20:59:09.8470947Z Setting up libdata-validate-ip-perl (0.30-1) ... 2024-02-27T20:59:09.8513092Z Setting up libhtml-form-perl (6.07-1) ... 2024-02-27T20:59:09.8566480Z Setting up libemail-address-xs-perl (1.04-1build6) ... 2024-02-27T20:59:09.8615661Z Setting up libnet-ssleay-perl:amd64 (1.92-1build2) ... 2024-02-27T20:59:09.8649176Z Setting up libgs9-common (9.55.0~dfsg1-0ubuntu5.6) ... 2024-02-27T20:59:09.8682737Z Setting up libfile-basedir-perl (0.09-1) ... 2024-02-27T20:59:09.8713300Z Setting up libio-prompter-perl (0.004015-1) ... 2024-02-27T20:59:09.8750079Z Setting up libgs9:amd64 (9.55.0~dfsg1-0ubuntu5.6) ... 2024-02-27T20:59:09.8790033Z Setting up libobject-id-perl (0.1.2-2.1ubuntu1) ... 2024-02-27T20:59:09.8847931Z Setting up liblist-moreutils-perl (0.430-2) ... 2024-02-27T20:59:09.8891000Z Setting up libpod-constants-perl (0.19-2) ... 2024-02-27T20:59:09.8943292Z Setting up libtype-tiny-perl (1.012004-1) ... 2024-02-27T20:59:09.9002881Z Setting up libpath-iterator-rule-perl (1.015-1) ... 2024-02-27T20:59:09.9032272Z Setting up libtext-markdown-discount-perl:amd64 (0.13-1build1) ... 2024-02-27T20:59:09.9063370Z Setting up libexception-class-perl (1.45-1) ... 2024-02-27T20:59:09.9111145Z Setting up ghostscript (9.55.0~dfsg1-0ubuntu5.6) ... 2024-02-27T20:59:09.9241934Z Setting up libdevel-callchecker-perl (0.008-1ubuntu4) ... 2024-02-27T20:59:09.9290995Z Setting up dput (1.1.0ubuntu2.1) ... 2024-02-27T20:59:10.0531389Z Setting up libdata-validate-uri-perl (0.07-2) ... 2024-02-27T20:59:10.0581834Z Setting up libstring-copyright-perl (0.003012-1) ... 2024-02-27T20:59:10.0612042Z Setting up libdata-optlist-perl (0.112-1) ... 2024-02-27T20:59:10.0662283Z Setting up libgit-wrapper-perl (0.048-1) ... 2024-02-27T20:59:10.0701156Z Setting up libio-socket-ssl-perl (2.074-2) ... 2024-02-27T20:59:10.0737521Z Setting up libsub-exporter-perl (0.988-1) ... 2024-02-27T20:59:10.0790025Z Setting up libiterator-perl (0.03+ds1-1.1) ... 2024-02-27T20:59:10.0818076Z Setting up libiterator-util-perl (0.02+ds1-1.1) ... 2024-02-27T20:59:10.0869677Z Setting up libparams-classify-perl (0.015-1build5) ... 2024-02-27T20:59:10.0903621Z Setting up libnet-smtp-ssl-perl (1.04-1) ... 2024-02-27T20:59:10.0959182Z Setting up libmodule-runtime-perl (0.016-1) ... 2024-02-27T20:59:10.1010608Z Setting up libmailtools-perl (2.21-1) ... 2024-02-27T20:59:10.1042848Z Setting up libconst-fast-perl (0.014-1.1) ... 2024-02-27T20:59:10.1104528Z Setting up libdata-dpath-perl (0.58-1) ... 2024-02-27T20:59:10.1159041Z Setting up libmodule-implementation-perl (0.09-1.1) ... 2024-02-27T20:59:10.1207698Z Setting up libpackage-stash-perl (0.39-1) ... 2024-02-27T20:59:10.1257890Z Setting up libimport-into-perl (1.002005-1) ... 2024-02-27T20:59:10.1286621Z Setting up libmoo-perl (2.005004-3) ... 2024-02-27T20:59:10.1329118Z Setting up liblist-someutils-perl (0.58-1) ... 2024-02-27T20:59:10.1404872Z Setting up liblist-someutils-xs-perl (0.58-2build3) ... 2024-02-27T20:59:10.1443563Z Setting up libmoox-aliases-perl (0.001006-1.1) ... 2024-02-27T20:59:10.1512742Z Setting up libb-hooks-endofscope-perl (0.25-1) ... 2024-02-27T20:59:10.1623277Z Setting up libnamespace-clean-perl (0.27-1) ... 2024-02-27T20:59:10.1667975Z Setting up libnamespace-autoclean-perl (0.29-1) ... 2024-02-27T20:59:10.1910562Z Setting up libgitlab-api-v4-perl (0.26-1) ... 2024-02-27T20:59:10.1963566Z Setting up libmoox-struct-perl (0.020-1) ... 2024-02-27T20:59:10.2019748Z Setting up lintian (2.114.0ubuntu1.3) ... 2024-02-27T20:59:10.2129857Z Setting up licensecheck (3.2.14-2) ... 2024-02-27T20:59:10.2181428Z Setting up liblwp-protocol-https-perl (6.10-1) ... 2024-02-27T20:59:10.2217074Z Setting up libwww-perl (6.61-1) ... 2024-02-27T20:59:10.2273426Z Setting up devscripts (2.22.1ubuntu1) ... 2024-02-27T20:59:10.3580920Z Processing triggers for install-info (6.8-4build1) ... 2024-02-27T20:59:10.8622870Z Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ... 2024-02-27T20:59:10.9805719Z Processing triggers for libc-bin (2.35-0ubuntu3.6) ... 2024-02-27T20:59:14.8165162Z Processing triggers for man-db (2.10.2-1) ... 2024-02-27T20:59:15.7318996Z NEEDRESTART-VER: 3.5 2024-02-27T20:59:16.0591290Z NEEDRESTART-KCUR: 6.2.0-1019-azure 2024-02-27T20:59:16.0592010Z NEEDRESTART-KEXP: 6.2.0-1019-azure 2024-02-27T20:59:16.0592554Z NEEDRESTART-KSTA: 1 2024-02-27T20:59:17.1225984Z ##[endgroup] 2024-02-27T20:59:17.1239859Z ##[group]Installing R 2024-02-27T20:59:17.1240995Z [command]/usr/bin/sudo gdebi --non-interactive /home/runner/work/_temp/r-3.5.3_1_amd64.deb 2024-02-27T20:59:17.2404580Z 2024-02-27T20:59:17.2509075Z Reading package lists... 0% 2024-02-27T20:59:17.2509500Z 2024-02-27T20:59:17.2533312Z Reading package lists... 100% 2024-02-27T20:59:17.2533682Z 2024-02-27T20:59:17.2533689Z 2024-02-27T20:59:17.2533864Z Reading package lists... Done 2024-02-27T20:59:17.2534202Z 2024-02-27T20:59:17.2534338Z Building dependency tree... 0% 2024-02-27T20:59:17.2534581Z 2024-02-27T20:59:17.2798465Z Building dependency tree... 0% 2024-02-27T20:59:17.2798808Z 2024-02-27T20:59:17.2798947Z Building dependency tree... 50% 2024-02-27T20:59:17.2799950Z 2024-02-27T20:59:17.3772783Z Building dependency tree... 50% 2024-02-27T20:59:17.3773319Z 2024-02-27T20:59:17.3773331Z 2024-02-27T20:59:17.3773522Z Building dependency tree... Done 2024-02-27T20:59:17.3773803Z 2024-02-27T20:59:17.3773944Z Reading state information... 0% 2024-02-27T20:59:17.3774291Z 2024-02-27T20:59:17.3774550Z Reading state information... 0% 2024-02-27T20:59:17.4967047Z 2024-02-27T20:59:17.4967341Z 2024-02-27T20:59:17.4967503Z Reading state information... Done 2024-02-27T20:59:17.4967831Z 2024-02-27T20:59:17.4967966Z Reading state information... 0% 2024-02-27T20:59:17.5003820Z 2024-02-27T20:59:17.5004325Z Reading state information... 1% 2024-02-27T20:59:17.5037443Z 2024-02-27T20:59:17.5037847Z Reading state information... 3% 2024-02-27T20:59:17.5072504Z 2024-02-27T20:59:17.5073022Z Reading state information... 5% 2024-02-27T20:59:17.5104441Z 2024-02-27T20:59:17.5104823Z Reading state information... 7% 2024-02-27T20:59:17.5136548Z 2024-02-27T20:59:17.5136922Z Reading state information... 9% 2024-02-27T20:59:17.5169851Z 2024-02-27T20:59:17.5170189Z Reading state information... 11% 2024-02-27T20:59:17.5200851Z 2024-02-27T20:59:17.5201323Z Reading state information... 13% 2024-02-27T20:59:17.5230974Z 2024-02-27T20:59:17.5231440Z Reading state information... 15% 2024-02-27T20:59:17.5264163Z 2024-02-27T20:59:17.5264624Z Reading state information... 17% 2024-02-27T20:59:17.5295806Z 2024-02-27T20:59:17.5296267Z Reading state information... 19% 2024-02-27T20:59:17.5325362Z 2024-02-27T20:59:17.5325830Z Reading state information... 21% 2024-02-27T20:59:17.5361992Z 2024-02-27T20:59:17.5362441Z Reading state information... 23% 2024-02-27T20:59:17.5394983Z 2024-02-27T20:59:17.5395439Z Reading state information... 25% 2024-02-27T20:59:17.5429231Z 2024-02-27T20:59:17.5429695Z Reading state information... 27% 2024-02-27T20:59:17.5463106Z 2024-02-27T20:59:17.5463569Z Reading state information... 29% 2024-02-27T20:59:17.5492289Z 2024-02-27T20:59:17.5492759Z Reading state information... 31% 2024-02-27T20:59:17.5523965Z 2024-02-27T20:59:17.5524312Z Reading state information... 33% 2024-02-27T20:59:17.5558314Z 2024-02-27T20:59:17.5558779Z Reading state information... 35% 2024-02-27T20:59:17.5590752Z 2024-02-27T20:59:17.5591202Z Reading state information... 37% 2024-02-27T20:59:17.5626400Z 2024-02-27T20:59:17.5626847Z Reading state information... 39% 2024-02-27T20:59:17.5686308Z 2024-02-27T20:59:17.5686766Z Reading state information... 41% 2024-02-27T20:59:17.5720000Z 2024-02-27T20:59:17.5720374Z Reading state information... 43% 2024-02-27T20:59:17.5753388Z 2024-02-27T20:59:17.5753836Z Reading state information... 45% 2024-02-27T20:59:17.5785525Z 2024-02-27T20:59:17.5785976Z Reading state information... 47% 2024-02-27T20:59:17.5819383Z 2024-02-27T20:59:17.5820308Z Reading state information... 49% 2024-02-27T20:59:17.5854434Z 2024-02-27T20:59:17.5854807Z Reading state information... 51% 2024-02-27T20:59:17.5892639Z 2024-02-27T20:59:17.5893098Z Reading state information... 53% 2024-02-27T20:59:17.5926139Z 2024-02-27T20:59:17.5926510Z Reading state information... 55% 2024-02-27T20:59:17.5956576Z 2024-02-27T20:59:17.5957028Z Reading state information... 57% 2024-02-27T20:59:17.5986496Z 2024-02-27T20:59:17.5986827Z Reading state information... 59% 2024-02-27T20:59:17.6016503Z 2024-02-27T20:59:17.6016961Z Reading state information... 61% 2024-02-27T20:59:17.6046209Z 2024-02-27T20:59:17.6046653Z Reading state information... 63% 2024-02-27T20:59:17.6075906Z 2024-02-27T20:59:17.6076362Z Reading state information... 65% 2024-02-27T20:59:17.6105308Z 2024-02-27T20:59:17.6105800Z Reading state information... 67% 2024-02-27T20:59:17.6134051Z 2024-02-27T20:59:17.6134499Z Reading state information... 69% 2024-02-27T20:59:17.6167948Z 2024-02-27T20:59:17.6168425Z Reading state information... 71% 2024-02-27T20:59:17.6205720Z 2024-02-27T20:59:17.6206201Z Reading state information... 73% 2024-02-27T20:59:17.6235966Z 2024-02-27T20:59:17.6236751Z Reading state information... 75% 2024-02-27T20:59:17.6267275Z 2024-02-27T20:59:17.6267879Z Reading state information... 77% 2024-02-27T20:59:17.6305930Z 2024-02-27T20:59:17.6306234Z Reading state information... 79% 2024-02-27T20:59:17.6337020Z 2024-02-27T20:59:17.6337489Z Reading state information... 81% 2024-02-27T20:59:17.6370118Z 2024-02-27T20:59:17.6370570Z Reading state information... 83% 2024-02-27T20:59:17.6402052Z 2024-02-27T20:59:17.6402494Z Reading state information... 85% 2024-02-27T20:59:17.6434021Z 2024-02-27T20:59:17.6434363Z Reading state information... 87% 2024-02-27T20:59:17.6466158Z 2024-02-27T20:59:17.6466608Z Reading state information... 89% 2024-02-27T20:59:17.6497682Z 2024-02-27T20:59:17.6498078Z Reading state information... 91% 2024-02-27T20:59:17.6530440Z 2024-02-27T20:59:17.6531258Z Reading state information... 93% 2024-02-27T20:59:17.6564102Z 2024-02-27T20:59:17.6564393Z Reading state information... 95% 2024-02-27T20:59:17.6598864Z 2024-02-27T20:59:17.6600163Z Reading state information... 97% 2024-02-27T20:59:17.6630480Z 2024-02-27T20:59:17.6631783Z Reading state information... 99% 2024-02-27T20:59:18.8885470Z Selecting previously unselected package libopenblas0-pthread:amd64. 2024-02-27T20:59:18.8964632Z (Reading database ... 2024-02-27T20:59:18.8965173Z (Reading database ... 5% 2024-02-27T20:59:18.8965538Z (Reading database ... 10% 2024-02-27T20:59:18.8965876Z (Reading database ... 15% 2024-02-27T20:59:18.8966211Z (Reading database ... 20% 2024-02-27T20:59:18.8966542Z (Reading database ... 25% 2024-02-27T20:59:18.8966850Z (Reading database ... 30% 2024-02-27T20:59:18.8967167Z (Reading database ... 35% 2024-02-27T20:59:18.8967492Z (Reading database ... 40% 2024-02-27T20:59:18.8967812Z (Reading database ... 45% 2024-02-27T20:59:18.8978114Z (Reading database ... 50% 2024-02-27T20:59:18.9007907Z (Reading database ... 55% 2024-02-27T20:59:18.9043084Z (Reading database ... 60% 2024-02-27T20:59:18.9070859Z (Reading database ... 65% 2024-02-27T20:59:18.9162864Z (Reading database ... 70% 2024-02-27T20:59:18.9227530Z (Reading database ... 75% 2024-02-27T20:59:18.9413933Z (Reading database ... 80% 2024-02-27T20:59:18.9491527Z (Reading database ... 85% 2024-02-27T20:59:18.9699274Z (Reading database ... 90% 2024-02-27T20:59:18.9887936Z (Reading database ... 95% 2024-02-27T20:59:18.9888562Z (Reading database ... 100% 2024-02-27T20:59:18.9889455Z (Reading database ... 280814 files and directories currently installed.) 2024-02-27T20:59:18.9943284Z Preparing to unpack .../libopenblas0-pthread_0.3.20+ds-1_amd64.deb ... 2024-02-27T20:59:18.9975806Z Unpacking libopenblas0-pthread:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.2005342Z Selecting previously unselected package libopenblas0:amd64. 2024-02-27T20:59:19.2177102Z Preparing to unpack .../libopenblas0_0.3.20+ds-1_amd64.deb ... 2024-02-27T20:59:19.2194765Z Unpacking libopenblas0:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.2500912Z Selecting previously unselected package libopenblas-pthread-dev:amd64. 2024-02-27T20:59:19.2673524Z Preparing to unpack .../libopenblas-pthread-dev_0.3.20+ds-1_amd64.deb ... 2024-02-27T20:59:19.2691594Z Unpacking libopenblas-pthread-dev:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.5278336Z Selecting previously unselected package libopenblas-dev:amd64. 2024-02-27T20:59:19.5450239Z Preparing to unpack .../libopenblas-dev_0.3.20+ds-1_amd64.deb ... 2024-02-27T20:59:19.5488497Z Unpacking libopenblas-dev:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.6077057Z Setting up libopenblas0-pthread:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.6182562Z update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode 2024-02-27T20:59:19.6246477Z update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode 2024-02-27T20:59:19.6331627Z update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode 2024-02-27T20:59:19.6356586Z Setting up libopenblas0:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.6413529Z Setting up libopenblas-pthread-dev:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.6518683Z update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode 2024-02-27T20:59:19.6585990Z update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode 2024-02-27T20:59:19.6650311Z update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode 2024-02-27T20:59:19.6683952Z Setting up libopenblas-dev:amd64 (0.3.20+ds-1) ... 2024-02-27T20:59:19.6749179Z Processing triggers for libc-bin (2.35-0ubuntu3.6) ... 2024-02-27T20:59:19.9099826Z NEEDRESTART-VER: 3.5 2024-02-27T20:59:20.2277450Z NEEDRESTART-KCUR: 6.2.0-1019-azure 2024-02-27T20:59:20.2278178Z NEEDRESTART-KEXP: 6.2.0-1019-azure 2024-02-27T20:59:20.2278747Z NEEDRESTART-KSTA: 1 2024-02-27T20:59:21.4007612Z Selecting previously unselected package r-3.5.3. 2024-02-27T20:59:21.4988822Z (Reading database ... 280858 files and directories currently installed.) 2024-02-27T20:59:21.5040789Z Preparing to unpack .../work/_temp/r-3.5.3_1_amd64.deb ... 2024-02-27T20:59:21.5055047Z Unpacking r-3.5.3 (1) ... 2024-02-27T20:59:22.1075757Z Setting up r-3.5.3 (1) ... 2024-02-27T20:59:22.1327075Z 2024-02-27T20:59:22.1327287Z 2024-02-27T20:59:22.1327560Z Reading state information... Done 2024-02-27T20:59:22.1329905Z 2024-02-27T20:59:22.1331920Z Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [142 B] 2024-02-27T20:59:22.1332648Z 2024-02-27T20:59:22.1333604Z Get:2 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas0-pthread amd64 0.3.20+ds-1 [6803 kB] 2024-02-27T20:59:22.1335787Z 2024-02-27T20:59:22.1336794Z Get:3 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas0 amd64 0.3.20+ds-1 [6098 B] 2024-02-27T20:59:22.1337737Z 2024-02-27T20:59:22.1338710Z Get:4 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas-pthread-dev amd64 0.3.20+ds-1 [4634 kB] 2024-02-27T20:59:22.1339709Z 2024-02-27T20:59:22.1340552Z Get:5 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas-dev amd64 0.3.20+ds-1 [18.6 kB] 2024-02-27T20:59:22.1341660Z 2024-02-27T20:59:22.1342045Z Fetched 11.5 MB in 0s (0 B/s) 2024-02-27T20:59:22.1651069Z ##[endgroup] 2024-02-27T20:59:22.1661836Z [command]/usr/bin/sudo ln -sf /opt/R/3.5.3/bin/R /usr/local/bin/R 2024-02-27T20:59:22.1779276Z [command]/usr/bin/sudo ln -sf /opt/R/3.5.3/bin/Rscript /usr/local/bin/Rscript 2024-02-27T20:59:22.1986809Z [command]/usr/bin/lsb_release --short --codename 2024-02-27T20:59:22.2252123Z jammy 2024-02-27T20:59:22.2543131Z ##[group]Run r-lib/actions/setup-r-dependencies@v2 2024-02-27T20:59:22.2543531Z with: 2024-02-27T20:59:22.2544049Z packages: url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz, any::sessioninfo 2024-02-27T20:59:22.2544648Z cache-version: 13 2024-02-27T20:59:22.2544883Z cache: true 2024-02-27T20:59:22.2545110Z pak-version: stable 2024-02-27T20:59:22.2545370Z working-directory: . 2024-02-27T20:59:22.2545626Z dependencies: "all" 2024-02-27T20:59:22.2545876Z upgrade: FALSE 2024-02-27T20:59:22.2546113Z pandoc-version: 3.1.11 2024-02-27T20:59:22.2546357Z env: 2024-02-27T20:59:22.2546787Z GITHUB_PAT: *** 2024-02-27T20:59:22.2547043Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:59:22.2547349Z R_LIBS_USER: /home/runner/work/_temp/Library 2024-02-27T20:59:22.2547682Z TZ: UTC 2024-02-27T20:59:22.2547918Z _R_CHECK_SYSTEM_CLOCK_: FALSE 2024-02-27T20:59:22.2548202Z NOT_CRAN: true 2024-02-27T20:59:22.2548829Z RSPM: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:22.2549480Z RENV_CONFIG_REPOS_OVERRIDE: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:22.2549995Z ##[endgroup] 2024-02-27T20:59:22.2779339Z ##[group]Run # Set site library path 2024-02-27T20:59:22.2779772Z # Set site library path 2024-02-27T20:59:22.2780161Z cat("::group::Set site library path\n") 2024-02-27T20:59:22.2780827Z if (Sys.getenv("RENV_PROJECT") != "") { 2024-02-27T20:59:22.2781344Z  message("renv project detected, no need to set R_LIBS_SITE") 2024-02-27T20:59:22.2782069Z  cat(sprintf("R_LIB_FOR_PAK=%s\n", .libPaths()[1]), file = Sys.getenv("GITHUB_ENV"), append = TRUE) 2024-02-27T20:59:22.2782640Z  q("no") 2024-02-27T20:59:22.2782866Z } 2024-02-27T20:59:22.2783110Z lib <- Sys.getenv("R_LIBS_SITE") 2024-02-27T20:59:22.2783437Z if (lib == "") { 2024-02-27T20:59:22.2783813Z  lib <- file.path(dirname(.Library), "site-library") 2024-02-27T20:59:22.2784432Z  cat(sprintf("R_LIBS_SITE=%s\n", lib), file = Sys.getenv("GITHUB_ENV"), append = TRUE) 2024-02-27T20:59:22.2785163Z  cat(sprintf("R_LIB_FOR_PAK=%s\n", lib), file = Sys.getenv("GITHUB_ENV"), append = TRUE) 2024-02-27T20:59:22.2785738Z  message("Setting R_LIBS_SITE to ", lib) 2024-02-27T20:59:22.2786082Z } else { 2024-02-27T20:59:22.2786394Z  message("R_LIBS_SITE is already set to ", lib) 2024-02-27T20:59:22.2787133Z  cat(sprintf("R_LIB_FOR_PAK=%s\n", strsplit(lib, .Platform$path.sep)[[1]][[1]]), file = Sys.getenv("GITHUB_ENV"), append = TRUE) 2024-02-27T20:59:22.2787772Z } 2024-02-27T20:59:22.2787990Z cat("::endgroup::\n") 2024-02-27T20:59:22.2809550Z shell: /usr/local/bin/Rscript {0} 2024-02-27T20:59:22.2809876Z env: 2024-02-27T20:59:22.2810292Z GITHUB_PAT: *** 2024-02-27T20:59:22.2810563Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:59:22.2810883Z R_LIBS_USER: /home/runner/work/_temp/Library 2024-02-27T20:59:22.2811225Z TZ: UTC 2024-02-27T20:59:22.2811448Z _R_CHECK_SYSTEM_CLOCK_: FALSE 2024-02-27T20:59:22.2811733Z NOT_CRAN: true 2024-02-27T20:59:22.2812114Z RSPM: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:22.2812781Z RENV_CONFIG_REPOS_OVERRIDE: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:22.2813297Z ##[endgroup] 2024-02-27T20:59:22.5359446Z ##[group]Set site library path 2024-02-27T20:59:22.5372565Z Setting R_LIBS_SITE to /opt/R/3.5.3/lib/R/site-library 2024-02-27T20:59:22.5373563Z ##[endgroup] 2024-02-27T20:59:22.5690231Z ##[group]Run # Install pak 2024-02-27T20:59:22.5690538Z # Install pak 2024-02-27T20:59:22.5690816Z echo "::group::Install pak" 2024-02-27T20:59:22.5691385Z if which sudo >/dev/null; then SUDO="sudo -E --preserve-env=PATH env"; else SUDO=""; fi 2024-02-27T20:59:22.5692440Z $SUDO R -q -e 'dir.create(Sys.getenv("R_LIB_FOR_PAK"), recursive = TRUE, showWarnings = FALSE)' 2024-02-27T20:59:22.5693436Z $SUDO R -q -e 'install.packages("pak", repos = "https://r-lib.github.io/p/pak/stable/", lib = Sys.getenv("R_LIB_FOR_PAK"))' 2024-02-27T20:59:22.5694149Z echo "::endgroup::" 2024-02-27T20:59:22.5722868Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-02-27T20:59:22.5723299Z env: 2024-02-27T20:59:22.5723725Z GITHUB_PAT: *** 2024-02-27T20:59:22.5723986Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:59:22.5724298Z R_LIBS_USER: /home/runner/work/_temp/Library 2024-02-27T20:59:22.5724634Z TZ: UTC 2024-02-27T20:59:22.5724856Z _R_CHECK_SYSTEM_CLOCK_: FALSE 2024-02-27T20:59:22.5725140Z NOT_CRAN: true 2024-02-27T20:59:22.5725509Z RSPM: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:22.5726164Z RENV_CONFIG_REPOS_OVERRIDE: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:22.5726722Z R_LIBS_SITE: /opt/R/3.5.3/lib/R/site-library 2024-02-27T20:59:22.5727345Z R_LIB_FOR_PAK: /opt/R/3.5.3/lib/R/site-library 2024-02-27T20:59:22.5727689Z ##[endgroup] 2024-02-27T20:59:22.5777360Z ##[group]Install pak 2024-02-27T20:59:22.7405065Z > dir.create(Sys.getenv("R_LIB_FOR_PAK"), recursive = TRUE, showWarnings = FALSE) 2024-02-27T20:59:22.7406054Z > 2024-02-27T20:59:22.7406685Z > 2024-02-27T20:59:22.9430287Z > install.packages("pak", repos = "https://r-lib.github.io/p/pak/stable/", lib = Sys.getenv("R_LIB_FOR_PAK")) 2024-02-27T20:59:23.2226627Z trying URL 'https://r-lib.github.io/p/pak/stable/src/contrib/../../linux/x86_64/pak_0.7.1_R-3-5_x86_64-linux.tar.gz' 2024-02-27T20:59:24.5769805Z Content type 'application/gzip' length 8027339 bytes (7.7 MB) 2024-02-27T20:59:24.9035837Z ================================================== 2024-02-27T20:59:24.9036495Z downloaded 7.7 MB 2024-02-27T20:59:24.9036766Z 2024-02-27T20:59:25.5457111Z * installing *binary* package ‘pak’ ... 2024-02-27T20:59:25.5879968Z * DONE (pak) 2024-02-27T20:59:25.6090442Z 2024-02-27T20:59:25.6090914Z The downloaded source packages are in 2024-02-27T20:59:25.6092261Z ‘/tmp/Rtmpo1vEOX/downloaded_packages’ 2024-02-27T20:59:25.6092817Z > 2024-02-27T20:59:25.6093120Z > 2024-02-27T20:59:25.6194876Z ##[endgroup] 2024-02-27T20:59:25.6218003Z ##[group]Run # Dependency resolution 2024-02-27T20:59:25.6218390Z # Dependency resolution 2024-02-27T20:59:25.6218755Z cat("::group::Dependency resolution\n") 2024-02-27T20:59:25.6219427Z cat("os-version=", sessionInfo()$running, "\n", file = Sys.getenv("GITHUB_OUTPUT"), sep = "", append = TRUE) 2024-02-27T20:59:25.6220036Z r_version <- 2024-02-27T20:59:25.6220385Z  if (grepl("development", R.version.string)) { 2024-02-27T20:59:25.6221130Z  pdf(tempfile()) 2024-02-27T20:59:25.6221700Z  ge_ver <- attr(recordPlot(), "engineVersion") 2024-02-27T20:59:25.6222317Z  dev.off() 2024-02-27T20:59:25.6222828Z  paste0("R version ", getRversion(), " (ge:", ge_ver, "; iid:", .Internal(internalsID()), ")") 2024-02-27T20:59:25.6223360Z  } else { 2024-02-27T20:59:25.6223616Z  R.version.string 2024-02-27T20:59:25.6223895Z  } 2024-02-27T20:59:25.6224371Z cat("r-version=", r_version, "\n", file = Sys.getenv("GITHUB_OUTPUT"), sep = "", append = TRUE) 2024-02-27T20:59:25.6225069Z needs <- sprintf("Config/Needs/%s", strsplit("", "[[:space:],]+")[[1]]) 2024-02-27T20:59:25.6225983Z deps <- strsplit("url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz, any::sessioninfo", "[[:space:],]+")[[1]] 2024-02-27T20:59:25.6226787Z extra_deps <- strsplit("", "[[:space:],]+")[[1]] 2024-02-27T20:59:25.6227214Z dir.create(".github", showWarnings=FALSE) 2024-02-27T20:59:25.6227632Z Sys.setenv("PKGCACHE_HTTP_VERSION" = "2") 2024-02-27T20:59:25.6228089Z library(pak, lib.loc = Sys.getenv("R_LIB_FOR_PAK")) 2024-02-27T20:59:25.6228502Z pak::lockfile_create( 2024-02-27T20:59:25.6228982Z  c(deps, extra_deps), 2024-02-27T20:59:25.6229316Z  lockfile = ".github/pkg.lock", 2024-02-27T20:59:25.6229671Z  upgrade = (FALSE), 2024-02-27T20:59:25.6230001Z  dependencies = c(needs, ("all")) 2024-02-27T20:59:25.6230327Z ) 2024-02-27T20:59:25.6230579Z cat("::endgroup::\n") 2024-02-27T20:59:25.6230881Z cat("::group::Show Lockfile\n") 2024-02-27T20:59:25.6231262Z writeLines(readLines(".github/pkg.lock")) 2024-02-27T20:59:25.6231625Z cat("::endgroup::\n") 2024-02-27T20:59:25.6240429Z shell: /usr/local/bin/Rscript {0} 2024-02-27T20:59:25.6240731Z env: 2024-02-27T20:59:25.6241313Z GITHUB_PAT: *** 2024-02-27T20:59:25.6241570Z R_KEEP_PKG_SOURCE: yes 2024-02-27T20:59:25.6241878Z R_LIBS_USER: /home/runner/work/_temp/Library 2024-02-27T20:59:25.6242209Z TZ: UTC 2024-02-27T20:59:25.6242423Z _R_CHECK_SYSTEM_CLOCK_: FALSE 2024-02-27T20:59:25.6242892Z NOT_CRAN: true 2024-02-27T20:59:25.6243274Z RSPM: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:25.6243918Z RENV_CONFIG_REPOS_OVERRIDE: https://packagemanager.posit.co/cran/__linux__/jammy/latest 2024-02-27T20:59:25.6244474Z R_LIBS_SITE: /opt/R/3.5.3/lib/R/site-library 2024-02-27T20:59:25.6244863Z R_LIB_FOR_PAK: /opt/R/3.5.3/lib/R/site-library 2024-02-27T20:59:25.6245195Z ##[endgroup] 2024-02-27T20:59:25.7822290Z ##[group]Dependency resolution 2024-02-27T20:59:26.6196285Z ℹ Creating lockfile '.github/pkg.lock' 2024-02-27T20:59:26.8773354Z 2024-02-27T20:59:28.1244996Z ✔ Updated metadata database: 2.80 MB in 7 files. 2024-02-27T20:59:28.1253149Z 2024-02-27T20:59:28.1442719Z ℹ Creating lockfile '.github/pkg.lock' 2024-02-27T20:59:28.1443833Z ℹ Updating metadata database 2024-02-27T20:59:30.7985953Z ✔ Updating metadata database ... done 2024-02-27T20:59:30.7993828Z 2024-02-27T20:59:32.1190108Z ℹ Creating lockfile '.github/pkg.lock' 2024-02-27T20:59:32.1190785Z ✖ Creating lockfile '.github/pkg.lock' [5.5s] 2024-02-27T20:59:32.1195432Z 2024-02-27T20:59:33.1390605Z Error: 2024-02-27T20:59:33.1391150Z ! error in pak subprocess 2024-02-27T20:59:33.1391676Z Caused by error: 2024-02-27T20:59:33.1392212Z ! Could not solve package dependencies: 2024-02-27T20:59:33.1393302Z * any::sessioninfo: Can't install dependency cli (>= 3.1.0) 2024-02-27T20:59:33.1394736Z * cli: Conflicts with url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz 2024-02-27T20:59:33.1396189Z * url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz: 2024-02-27T20:59:33.1397146Z * Can't install dependency glue 2024-02-27T20:59:33.1397813Z * Can't install dependency testthat 2024-02-27T20:59:33.1398383Z * glue: Needs R >= 3.6 2024-02-27T20:59:33.1398873Z * testthat: Needs R >= 3.6.0 2024-02-27T20:59:33.1399344Z --- 2024-02-27T20:59:33.1399683Z Backtrace: 2024-02-27T20:59:33.1400541Z 1. pak::lockfile_create(c(deps, extra_deps), lockfile = ".github/pkg.lock", … 2024-02-27T20:59:33.1401491Z 2. pak:::remote(function(...) { … 2024-02-27T20:59:33.1402062Z 3. err$throw(res$error) 2024-02-27T20:59:33.1402505Z --- 2024-02-27T20:59:33.1402886Z Subprocess backtrace: 2024-02-27T20:59:33.1403587Z 1. base::withCallingHandlers(cli_message = function(msg) { … 2024-02-27T20:59:33.1404537Z 2. get("lockfile_create_internal", asNamespace("pak"))(...) 2024-02-27T20:59:33.1405291Z 3. prop$stop_for_solution_error() 2024-02-27T20:59:33.1405878Z 4. private$plan$stop_for_solve_error() 2024-02-27T20:59:33.1406672Z 5. pkgdepends:::pkgplan_stop_for_solve_error(self, private) 2024-02-27T20:59:33.1407723Z 6. base::throw(new_error("Could not solve package dependencies:\n", msg, … 2024-02-27T20:59:33.1408596Z 7. | base::signalCondition(cond) 2024-02-27T20:59:33.1409183Z 8. global (function (e) … 2024-02-27T20:59:33.1409662Z Execution halted 2024-02-27T20:59:33.1706742Z ##[error]Process completed with exit code 1. 2024-02-27T20:59:33.1882935Z Post job cleanup. 2024-02-27T20:59:33.1932944Z Post job cleanup. 2024-02-27T20:59:33.2780775Z [command]/usr/bin/git version 2024-02-27T20:59:33.2829195Z git version 2.43.2 2024-02-27T20:59:33.2868263Z Temporarily overriding HOME='/home/runner/work/_temp/a7b064ab-61df-4ecb-8e4d-311dee66d49b' before making global git config changes 2024-02-27T20:59:33.2869757Z Adding repository directory to the temporary git global config as a safe directory 2024-02-27T20:59:33.2874222Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/shinycoreci/shinycoreci 2024-02-27T20:59:33.2915864Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-02-27T20:59:33.2955779Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2024-02-27T20:59:33.3219057Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-02-27T20:59:33.3249883Z http.https://github.com/.extraheader 2024-02-27T20:59:33.3261298Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-02-27T20:59:33.3302754Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2024-02-27T20:59:33.3824707Z Cleaning up orphan processes ```

Error:

  Error: 
  ! error in pak subprocess
  Caused by error: 
  ! Could not solve package dependencies:
  * any::sessioninfo: Can't install dependency cli (>= 3.1.0)
  * cli: Conflicts with url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz
  * url::https://cran.r-project.org/src/contrib/Archive/cli/cli_3.1.0.tar.gz:
    * Can't install dependency glue
    * Can't install dependency testthat
  * glue: Needs R >= 3.6
  * testthat: Needs R >= 3.6.0

Problem:

Goal:

I know I used a url for {cli}, but it was to have a stable talking point. In reality, packages update their minimum R version all the time and I'd like to not have to play whack-a-mole as new package installation issues are created.

Both {glue} and {testthat} do not have minimum versions within {cli}. It would be great if an installable version of both packages could automatically be found.

(It can easily be that the answer is "no", as R only works with the latest versions of packages. But it would dramatically make my life easier to not play package version whack-a-mole.)

gaborcsardi commented 6 months ago

This is unfortunately not possible in practice, for two reasons. First, there is no easily accessible metadata that contains all versions of all packages. Second, even if we had this data, it would be a very challenging (and NP-complete) integer programming problem to find a set of packages that can be installed together.

In general, the choices you have is

  1. Using the metadata for the latest versions of packages, like we usually do.
  2. Adding some special packages to this, e.g. a package from GitHub, or pinning one or more package versions. The rest of the packages will still use the latest available version.
  3. Or, pinning all package versions, like an renv lock file.

So, for your specific problem, if you really want to do this, you'll also need to pin the versions of glue and testthat. I expect the old glue version to work well in this case, but testthat has many dependencies, and having an old testthat with new dependencies is not tested at all, and I expect you to run into problems, and you'll probably need to pin more package versions.

gaborcsardi commented 6 months ago

Btw. you can also a PPM snapshot to install old packages, as far as pak is concerned that is just option 1, with a custom repository.

schloerke commented 6 months ago

Thank you @gaborcsardi for the suggestions!

github-actions[bot] commented 6 months ago

This issue has been automatically locked. If you believe you have found a related problem, please file a new issue and include a link to this issue