Home Quick start All builds News Donations
More
Log In
Light Theme Docs
Workers

SparrowCI Report - gh-melezhik-String-Splice | [image: melezhik/sparrow:debian]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2368
Status: OK
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 29.12.2022 @ 17:36
Time elapsed: 198 sec
---
SCM: https://github.com/melezhik/String-Splice.git
Git sha: 1e0ebef
Git comment: make it all quite
image:
  - melezhik/sparrow:debian
tasks:
  -
    name: main
    default: true
    language: Raku
    code: |
      use Text::Table::Simple;
      my @columns = ("Rakudo Version", "Status", "Time", "Linux Dist");
      my @rows;
      my $fail = False;
      for config()<tasks><multi-versions><state><list><> -> $i {
        @rows.push: [ $i<version>, $i<status>,  $i<time>, os() ];
        $fail = True unless $i<status> eq "OK";
      }
      my @table = lol2table(@columns,@rows);
      .say for @table;
      die "some tests failed" if $fail == True;
    depends:
      -
        name: multi-versions
    followup:
      -
        name: good-doc
  -
    name: good-doc
    plugin: good-doc
    config:
      path: source/README.md
      rakudo_path: "{{ CWD }}/rakudo-moar-2022.12-01-linux-x86_64-gcc"
  -
    name: multi-versions
    language: Raku
    config:
      list:
        # - 2022.04
        # - 2022.07
        - 2022.12
    code: |
      my @state;
      for config()<list><> -> $v {
        my $s = %( version => $v );
        if "{cache_root_dir()}/{$v}_ok".IO ~~ :e {
          $s<status> = "OK";
        } else {
          $s<status> = "FAIL";
        }
        if "{cache_root_dir()}/{$v}_time".IO ~~ :e {
          $s<time> = "{cache_root_dir()}/{$v}_time".IO.slurp();
        } else {
          $s<time> = "NA";
        }
        @state.push: $s;
      }
      update_state %( list => @state );
    init: |
      for config()<list><> -> $v {
        run_task("test", %( version => $v ));
      }
    subtasks:
      -
        name: test
        language: Bash
        init: |
          ignore_error
        code: |
          set -e
          echo "Linux version: $os"
          curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
          -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
          tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
          eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh --quiet)"
          which raku
          which zef
          raku --version
          zef --version
          
          cd source/
          zef install . --deps-only --test-depends --build-depends --/test -to=home         
          /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
          zef test --debug . && touch "${cache_root_dir}/${version}_ok"
          
    depends:
      -
        name: install-deps
  -
    name: install-deps
    language: Bash
    code: |
      sudo apt-get install -y -qq -o=Dpkg::Use-Pty=0 time graphviz
      zef install --/test Text::Table::Simple
17:36:16 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
17:36:19 :: [repository] - installing good-doc, version 0.000014
[task run: task.bash - good-doc]
[dump code: task.bash]
[1] set -e
[2] 
[3] cd $dir
[4] 
[5] cat $file
[6] 
[7] rakudo_path=$(config rakudo_path)
[8] 
[9] if ! test -z $rakudo_path; then
[10]   echo "Using rakudo from $rakudo_path:"
[11]   eval "$($rakudo_path/scripts/set-env.sh --quiet)"
[12]   raku --version
[13] fi
[14] 
[15] echo "run raku -I lib $file ..."
[16] 
[17] raku -I lib $file || echo "warn: good_doc failed"
[18] 
[task stdout]
17:36:21 :: 
17:36:21 :: use String::Splice;
17:36:21 :: 
17:36:21 :: say 'Perl 6 is awesome'.&splice(0, 6, 'Raku');
17:36:21 :: # Raku is awesome
17:36:21 :: 
17:36:21 :: say splice('This is Rakudo', *-2, 2);
17:36:21 :: # This is Raku
17:36:21 :: 
17:36:21 :: say "Tonight I'm gonna party like it's 1999"
17:36:21 ::   .&splice(18, 5, 'program').&splice(*-4, 2, 20);
17:36:21 :: # Tonight I'm gonna program like it's 2099
17:36:22 :: Using rakudo from /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc:
17:36:22 :: Welcome to Rakudo™ v2022.12.
17:36:22 :: Implementing the Raku® Programming Language v6.d.
17:36:22 :: Built on MoarVM version 2022.12.
17:36:22 :: run raku -I lib /home/worker/.sparrow6/tmp/7470/code.raku ...
17:36:24 :: warn: good_doc failed
[task stderr]
17:36:24 :: ===SORRY!=== Error while compiling /home/worker/.sparrow6/tmp/7470/code.raku
17:36:24 :: Malformed postfix call (only basic method calls that exclusively use a dot can be detached)
17:36:24 :: at /home/worker/.sparrow6/tmp/7470/code.raku:11
17:36:24 :: ------>   .⏏&splice(18, 5, 'program').&splice(*-4, 2
17:34:07 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
source directory does not yet exist, download source archive from storage
17:34:11 :: [repository] - installing pack-unpack, version 0.000001
[task run: task.bash - unpack source archive]
[dump code: task.bash]
[1] set -e
[2] 
[3] file=$(config file)
[4] dir=$(config dir)
[5] 
[6] echo "tar -xzf $file "
[7] 
[8] tar -xzf $file
[9] 
[10] if test $dir; then
[11]   ls -l $dir
[12] fi
[13] 
[14] 
[task stdout]
17:34:14 :: tar -xzf source.tar.gz 
[task run: task.raku - tasks/main]
[dump code: task.raku]
[1] use Text::Table::Simple;
[2] my @columns = ("Rakudo Version", "Status", "Time", "Linux Dist");
[3] my @rows;
[4] my $fail = False;
[5] for config()<tasks><multi-versions><state><list><> -> $i {
[6]   @rows.push: [ $i<version>, $i<status>,  $i<time>, os() ];
[7]   $fail = True unless $i<status> eq "OK";
[8] }
[9] my @table = lol2table(@columns,@rows);
[10] .say for @table;
[11] die "some tests failed" if $fail == True;
[12] 
[task stdout]
17:35:48 :: O----------------O--------O--------------------------------------------------------O------------O
17:35:48 :: | Rakudo Version | Status | Time                                                   | Linux Dist |
17:35:48 :: O================O========O========================================================O============O
17:35:48 :: | 2022.12        | OK     | 0:05.04 real,7.14 user,0.76 sys | CPU Percentage: 156% | debian     |
17:35:48 :: -------------------------------------------------------------------------------------------------
17:34:39 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.bash - tasks/multi-versions]
[dump code: task.bash]
[1] set -e
[2] echo "Linux version: $os"
[3] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[4] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[5] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
[6] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh --quiet)"
[7] which raku
[8] which zef
[9] raku --version
[10] zef --version
[11] 
[12] cd source/
[13] zef install . --deps-only --test-depends --build-depends --/test -to=home         
[14] /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[15] zef test --debug . && touch "${cache_root_dir}/${version}_ok"
[16] 
[task stdout]
17:35:31 :: Linux version: debian
17:35:32 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/bin/raku
17:35:32 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/site/bin/zef
17:35:32 :: Welcome to Rakudo™ v2022.12.
17:35:32 :: Implementing the Raku® Programming Language v6.d.
17:35:32 :: Built on MoarVM version 2022.12.
17:35:33 :: v0.14.5
17:35:38 :: ===> Testing: String::Splice:ver<0.0.4>:auth<zef:thundergnat>
17:35:41 :: [String::Splice] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
17:35:41 :: [String::Splice] t/01-basic.rakutest .. 
17:35:41 :: [String::Splice] 1..28
17:35:41 :: [String::Splice] ok 1 - sub splice insert at 0 ok
17:35:41 :: [String::Splice] ok 2 - sub splice insert at string end ok
17:35:41 :: [String::Splice] ok 3 - sub splice insert in interior ok
17:35:41 :: [String::Splice] ok 4 - sub splice with replace in interior is ok
17:35:41 :: [String::Splice] ok 5 - sub splice with blank replace in interior is ok
17:35:41 :: [String::Splice] ok 6 - sub replace with non-string replace is ok
17:35:41 :: [String::Splice] ok 7 - sub coerce numeric receiver to string works
17:35:41 :: [String::Splice] ok 8 - sub coerce array receiver to string works
17:35:41 :: [String::Splice] ok 9 - chained methods, place coercion to Ints work ok: 0
17:35:41 :: [String::Splice] ok 10 - chained methods, place coercion to Ints work ok: 1
17:35:41 :: [String::Splice] ok 11 - chained methods, place coercion to Ints work ok: 2
17:35:41 :: [String::Splice] ok 12 - chained methods, place coercion to Ints work ok: 3
17:35:41 :: [String::Splice] ok 13 - chained methods, place coercion to Ints work ok: 4
17:35:41 :: [String::Splice] ok 14 - chained methods, place coercion to Ints work ok: 5
17:35:41 :: [String::Splice] ok 15 - chained methods, place coercion to Ints work ok: 6
17:35:41 :: [String::Splice] ok 16 - chained methods, place coercion to Ints work ok: 7
17:35:41 :: [String::Splice] ok 17 - chained methods, place coercion to Ints work ok: 8
17:35:41 :: [String::Splice] ok 18 - chained methods, place coercion to Ints work ok: 9
17:35:41 :: [String::Splice] ok 19 - splice past end works
17:35:41 :: [String::Splice] ok 20 - whatevercode works
17:35:41 :: [String::Splice] ok 21 - whatevercode splice with replace works
17:35:41 :: [String::Splice] ok 22 - positive whatevercode works ok
17:35:41 :: [String::Splice] ok 23 - positive whatevercode past end works ok
17:35:41 :: [String::Splice] ok 24 - whatevercode splice with replace works
17:35:41 :: [String::Splice] ok 25 - too large negative whatevercode doesn't fail
17:35:41 :: [String::Splice] ok 26 - negative start fails ok
17:35:41 :: [String::Splice] ok 27 - 3 param non-string insert fails ok
17:35:41 :: [String::Splice] ok 28 - 4 param non-string insert works ok
17:35:41 :: [String::Splice] ok
17:35:41 :: [String::Splice] All tests successful.
17:35:41 :: [String::Splice] Files=1, Tests=28,  3 wallclock secs ( 0.04 usr  0.02 sys +  4.52 cusr  0.36 csys =  4.94 CPU)
17:35:41 :: [String::Splice] Result: PASS
17:35:41 :: ===> Testing [OK] for String::Splice:ver<0.0.4>:auth<zef:thundergnat>
[task stderr]
17:35:41 :: All candidates are currently installed
[task run: task.raku - tasks/multi-versions]
[dump code: task.raku]
[1] my @state;
[2] for config()<list><> -> $v {
[3]   my $s = %( version => $v );
[4]   if "{cache_root_dir()}/{$v}_ok".IO ~~ :e {
[5]     $s<status> = "OK";
[6]   } else {
[7]     $s<status> = "FAIL";
[8]   }
[9]   if "{cache_root_dir()}/{$v}_time".IO ~~ :e {
[10]     $s<time> = "{cache_root_dir()}/{$v}_time".IO.slurp();
[11]   } else {
[12]     $s<time> = "NA";
[13]   }
[14]   @state.push: $s;
[15] }
[16] update_state %( list => @state );
[17] 
[task stdout]
17:34:51 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.bash - tasks/install-deps]
[dump code: task.bash]
[1] sudo apt-get install -y -qq -o=Dpkg::Use-Pty=0 time graphviz
[2] zef install --/test Text::Table::Simple
[3] 
[task stdout]
17:34:58 :: Selecting previously unselected package fontconfig.
17:34:58 :: (Reading database ... 19016 files and directories currently installed.)
17:34:58 :: Preparing to unpack .../00-fontconfig_2.13.1-4.2_amd64.deb ...
17:34:58 :: Unpacking fontconfig (2.13.1-4.2) ...
17:34:58 :: Selecting previously unselected package fonts-liberation.
17:34:58 :: Preparing to unpack .../01-fonts-liberation_1%3a1.07.4-11_all.deb ...
17:34:58 :: Unpacking fonts-liberation (1:1.07.4-11) ...
17:34:58 :: Selecting previously unselected package libann0.
17:34:58 :: Preparing to unpack .../02-libann0_1.1.2+doc-7_amd64.deb ...
17:34:58 :: Unpacking libann0 (1.1.2+doc-7) ...
17:34:58 :: Selecting previously unselected package libcdt5:amd64.
17:34:58 :: Preparing to unpack .../03-libcdt5_2.42.2-5_amd64.deb ...
17:34:58 :: Unpacking libcdt5:amd64 (2.42.2-5) ...
17:34:58 :: Selecting previously unselected package libcgraph6:amd64.
17:34:58 :: Preparing to unpack .../04-libcgraph6_2.42.2-5_amd64.deb ...
17:34:58 :: Unpacking libcgraph6:amd64 (2.42.2-5) ...
17:34:58 :: Selecting previously unselected package libglib2.0-0:amd64.
17:34:58 :: Preparing to unpack .../05-libglib2.0-0_2.66.8-1_amd64.deb ...
17:34:58 :: Unpacking libglib2.0-0:amd64 (2.66.8-1) ...
17:34:58 :: Selecting previously unselected package libgts-0.7-5:amd64.
17:34:58 :: Preparing to unpack .../06-libgts-0.7-5_0.7.6+darcs121130-4+b1_amd64.deb ...
17:34:58 :: Unpacking libgts-0.7-5:amd64 (0.7.6+darcs121130-4+b1) ...
17:34:58 :: Selecting previously unselected package libpixman-1-0:amd64.
17:34:58 :: Preparing to unpack .../07-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ...
17:34:58 :: Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ...
17:34:59 :: Selecting previously unselected package libxcb-render0:amd64.
17:34:59 :: Preparing to unpack .../08-libxcb-render0_1.14-3_amd64.deb ...
17:34:59 :: Unpacking libxcb-render0:amd64 (1.14-3) ...
17:34:59 :: Selecting previously unselected package libxcb-shm0:amd64.
17:34:59 :: Preparing to unpack .../09-libxcb-shm0_1.14-3_amd64.deb ...
17:34:59 :: Unpacking libxcb-shm0:amd64 (1.14-3) ...
17:34:59 :: Selecting previously unselected package libxrender1:amd64.
17:34:59 :: Preparing to unpack .../10-libxrender1_1%3a0.9.10-1_amd64.deb ...
17:34:59 :: Unpacking libxrender1:amd64 (1:0.9.10-1) ...
17:34:59 :: Selecting previously unselected package libcairo2:amd64.
17:34:59 :: Preparing to unpack .../11-libcairo2_1.16.0-5_amd64.deb ...
17:34:59 :: Unpacking libcairo2:amd64 (1.16.0-5) ...
17:34:59 :: Selecting previously unselected package libltdl7:amd64.
17:34:59 :: Preparing to unpack .../12-libltdl7_2.4.6-15_amd64.deb ...
17:34:59 :: Unpacking libltdl7:amd64 (2.4.6-15) ...
17:34:59 :: Selecting previously unselected package libfribidi0:amd64.
17:34:59 :: Preparing to unpack .../13-libfribidi0_1.0.8-2+deb11u1_amd64.deb ...
17:34:59 :: Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ...
17:34:59 :: Selecting previously unselected package libgraphite2-3:amd64.
17:34:59 :: Preparing to unpack .../14-libgraphite2-3_1.3.14-1_amd64.deb ...
17:34:59 :: Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
17:34:59 :: Selecting previously unselected package libharfbuzz0b:amd64.
17:34:59 :: Preparing to unpack .../15-libharfbuzz0b_2.7.4-1_amd64.deb ...
17:34:59 :: Unpacking libharfbuzz0b:amd64 (2.7.4-1) ...
17:34:59 :: Selecting previously unselected package libthai-data.
17:34:59 :: Preparing to unpack .../16-libthai-data_0.1.28-3_all.deb ...
17:34:59 :: Unpacking libthai-data (0.1.28-3) ...
17:34:59 :: Selecting previously unselected package libdatrie1:amd64.
17:34:59 :: Preparing to unpack .../17-libdatrie1_0.2.13-1_amd64.deb ...
17:34:59 :: Unpacking libdatrie1:amd64 (0.2.13-1) ...
17:34:59 :: Selecting previously unselected package libthai0:amd64.
17:34:59 :: Preparing to unpack .../18-libthai0_0.1.28-3_amd64.deb ...
17:34:59 :: Unpacking libthai0:amd64 (0.1.28-3) ...
17:34:59 :: Selecting previously unselected package libpango-1.0-0:amd64.
17:34:59 :: Preparing to unpack .../19-libpango-1.0-0_1.46.2-3_amd64.deb ...
17:34:59 :: Unpacking libpango-1.0-0:amd64 (1.46.2-3) ...
17:34:59 :: Selecting previously unselected package libpangoft2-1.0-0:amd64.
17:34:59 :: Preparing to unpack .../20-libpangoft2-1.0-0_1.46.2-3_amd64.deb ...
17:34:59 :: Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ...
17:34:59 :: Selecting previously unselected package libpangocairo-1.0-0:amd64.
17:34:59 :: Preparing to unpack .../21-libpangocairo-1.0-0_1.46.2-3_amd64.deb ...
17:34:59 :: Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ...
17:34:59 :: Selecting previously unselected package libpathplan4:amd64.
17:34:59 :: Preparing to unpack .../22-libpathplan4_2.42.2-5_amd64.deb ...
17:34:59 :: Unpacking libpathplan4:amd64 (2.42.2-5) ...
17:34:59 :: Selecting previously unselected package libgvc6.
17:34:59 :: Preparing to unpack .../23-libgvc6_2.42.2-5_amd64.deb ...
17:34:59 :: Unpacking libgvc6 (2.42.2-5) ...
17:34:59 :: Selecting previously unselected package libgvpr2:amd64.
17:34:59 :: Preparing to unpack .../24-libgvpr2_2.42.2-5_amd64.deb ...
17:34:59 :: Unpacking libgvpr2:amd64 (2.42.2-5) ...
17:35:00 :: Selecting previously unselected package liblab-gamut1:amd64.
17:35:00 :: Preparing to unpack .../25-liblab-gamut1_2.42.2-5_amd64.deb ...
17:35:00 :: Unpacking liblab-gamut1:amd64 (2.42.2-5) ...
17:35:00 :: Selecting previously unselected package x11-common.
17:35:00 :: Preparing to unpack .../26-x11-common_1%3a7.7+22_all.deb ...
17:35:00 :: Unpacking x11-common (1:7.7+22) ...
17:35:00 :: Selecting previously unselected package libice6:amd64.
17:35:00 :: Preparing to unpack .../27-libice6_2%3a1.0.10-1_amd64.deb ...
17:35:00 :: Unpacking libice6:amd64 (2:1.0.10-1) ...
17:35:00 :: Selecting previously unselected package libsm6:amd64.
17:35:00 :: Preparing to unpack .../28-libsm6_2%3a1.2.3-1_amd64.deb ...
17:35:00 :: Unpacking libsm6:amd64 (2:1.2.3-1) ...
17:35:00 :: Selecting previously unselected package libxt6:amd64.
17:35:00 :: Preparing to unpack .../29-libxt6_1%3a1.2.0-1_amd64.deb ...
17:35:00 :: Unpacking libxt6:amd64 (1:1.2.0-1) ...
17:35:00 :: Selecting previously unselected package libxmu6:amd64.
17:35:00 :: Preparing to unpack .../30-libxmu6_2%3a1.1.2-2+b3_amd64.deb ...
17:35:00 :: Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ...
17:35:00 :: Selecting previously unselected package libxaw7:amd64.
17:35:00 :: Preparing to unpack .../31-libxaw7_2%3a1.0.13-1.1_amd64.deb ...
17:35:00 :: Unpacking libxaw7:amd64 (2:1.0.13-1.1) ...
17:35:00 :: Selecting previously unselected package graphviz.
17:35:00 :: Preparing to unpack .../32-graphviz_2.42.2-5_amd64.deb ...
17:35:00 :: Unpacking graphviz (2.42.2-5) ...
17:35:00 :: Selecting previously unselected package libglib2.0-data.
17:35:00 :: Preparing to unpack .../33-libglib2.0-data_2.66.8-1_all.deb ...
17:35:00 :: Unpacking libglib2.0-data (2.66.8-1) ...
17:35:00 :: Selecting previously unselected package libgts-bin.
17:35:00 :: Preparing to unpack .../34-libgts-bin_0.7.6+darcs121130-4+b1_amd64.deb ...
17:35:00 :: Unpacking libgts-bin (0.7.6+darcs121130-4+b1) ...
17:35:00 :: Selecting previously unselected package libicu67:amd64.
17:35:00 :: Preparing to unpack .../35-libicu67_67.1-7_amd64.deb ...
17:35:00 :: Unpacking libicu67:amd64 (67.1-7) ...
17:35:02 :: Selecting previously unselected package libxml2:amd64.
17:35:02 :: Preparing to unpack .../36-libxml2_2.9.10+dfsg-6.7+deb11u3_amd64.deb ...
17:35:02 :: Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
17:35:02 :: Selecting previously unselected package shared-mime-info.
17:35:02 :: Preparing to unpack .../37-shared-mime-info_2.0-1_amd64.deb ...
17:35:02 :: Unpacking shared-mime-info (2.0-1) ...
17:35:02 :: Selecting previously unselected package time.
17:35:02 :: Preparing to unpack .../38-time_1.9-0.1_amd64.deb ...
17:35:02 :: Unpacking time (1.9-0.1) ...
17:35:02 :: Selecting previously unselected package xdg-user-dirs.
17:35:02 :: Preparing to unpack .../39-xdg-user-dirs_0.17-2_amd64.deb ...
17:35:02 :: Unpacking xdg-user-dirs (0.17-2) ...
17:35:02 :: Setting up libgraphite2-3:amd64 (1.3.14-1) ...
17:35:02 :: Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ...
17:35:02 :: Setting up fontconfig (2.13.1-4.2) ...
17:35:04 :: Regenerating fonts cache... done.
17:35:04 :: Setting up time (1.9-0.1) ...
17:35:04 :: Setting up libxrender1:amd64 (1:0.9.10-1) ...
17:35:04 :: Setting up libicu67:amd64 (67.1-7) ...
17:35:04 :: Setting up libdatrie1:amd64 (0.2.13-1) ...
17:35:04 :: Setting up xdg-user-dirs (0.17-2) ...
17:35:04 :: Setting up libxcb-render0:amd64 (1.14-3) ...
17:35:04 :: Setting up libglib2.0-0:amd64 (2.66.8-1) ...
17:35:04 :: No schema files found: doing nothing.
17:35:04 :: Setting up liblab-gamut1:amd64 (2.42.2-5) ...
17:35:04 :: Setting up x11-common (1:7.7+22) ...
17:35:05 :: Setting up libxcb-shm0:amd64 (1.14-3) ...
17:35:05 :: Setting up libcairo2:amd64 (1.16.0-5) ...
17:35:05 :: Setting up libgts-0.7-5:amd64 (0.7.6+darcs121130-4+b1) ...
17:35:05 :: Setting up libglib2.0-data (2.66.8-1) ...
17:35:05 :: Setting up libpathplan4:amd64 (2.42.2-5) ...
17:35:05 :: Setting up libann0 (1.1.2+doc-7) ...
17:35:05 :: Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ...
17:35:05 :: Setting up libltdl7:amd64 (2.4.6-15) ...
17:35:05 :: Setting up fonts-liberation (1:1.07.4-11) ...
17:35:05 :: Setting up libharfbuzz0b:amd64 (2.7.4-1) ...
17:35:05 :: Setting up libthai-data (0.1.28-3) ...
17:35:05 :: Setting up libcdt5:amd64 (2.42.2-5) ...
17:35:05 :: Setting up libcgraph6:amd64 (2.42.2-5) ...
17:35:05 :: Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
17:35:05 :: Setting up libgts-bin (0.7.6+darcs121130-4+b1) ...
17:35:05 :: Setting up libice6:amd64 (2:1.0.10-1) ...
17:35:05 :: Setting up libthai0:amd64 (0.1.28-3) ...
17:35:05 :: Setting up shared-mime-info (2.0-1) ...
17:35:06 :: Setting up libgvpr2:amd64 (2.42.2-5) ...
17:35:06 :: Setting up libsm6:amd64 (2:1.2.3-1) ...
17:35:06 :: Setting up libpango-1.0-0:amd64 (1.46.2-3) ...
17:35:06 :: Setting up libxt6:amd64 (1:1.2.0-1) ...
17:35:06 :: Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ...
17:35:06 :: Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ...
17:35:06 :: Setting up libxmu6:amd64 (2:1.1.2-2+b3) ...
17:35:06 :: Setting up libxaw7:amd64 (2:1.0.13-1.1) ...
17:35:07 :: Setting up libgvc6 (2.42.2-5) ...
17:35:07 :: Setting up graphviz (2.42.2-5) ...
17:35:07 :: Processing triggers for libc-bin (2.31-13+deb11u5) ...
17:35:09 :: ===> Searching for: Text::Table::Simple
17:35:25 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
17:35:25 :: debconf: delaying package configuration, since apt-utils is not installed
17:35:25 :: debconf: unable to initialize frontend: Dialog
17:35:25 :: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
17:35:25 :: debconf: falling back to frontend: Readline
17:35:25 :: debconf: unable to initialize frontend: Readline
17:35:25 :: debconf: (This frontend requires a controlling tty.)
17:35:25 :: debconf: falling back to frontend: Teletype
17:35:25 :: invoke-rc.d: could not determine current runlevel
17:35:25 :: invoke-rc.d: policy-rc.d denied execution of start.
17:35:25 :: ===> Updating fez mirror: https://360.zef.pm/
17:35:25 :: ===> Updated fez mirror: https://360.zef.pm/
17:35:25 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
17:35:25 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json