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: 2366
Status: OK
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 28.12.2022 @ 20:57
Time elapsed: 197 sec
---
SCM: https://github.com/melezhik/String-Splice.git
Git sha: 021ddf1
Git comment: ci file
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)"
          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 time graphviz
      zef install --/test Text::Table::Simple
20:57:05 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
20:57:09 :: [repository] - installing good-doc, version 0.000013
[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)"
[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]
20:57:11 :: 
20:57:11 :: use String::Splice;
20:57:11 :: 
20:57:11 :: say 'Perl 6 is awesome'.&splice(0, 6, 'Raku');
20:57:11 :: # Raku is awesome
20:57:11 :: 
20:57:11 :: say splice('This is Rakudo', *-2, 2);
20:57:11 :: # This is Raku
20:57:11 :: 
20:57:11 :: say "Tonight I'm gonna party like it's 1999"
20:57:11 ::   .&splice(18, 5, 'program').&splice(*-4, 2, 20);
20:57:11 :: # Tonight I'm gonna program like it's 2099
20:57:12 :: Using rakudo from /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc:
20:57:13 ::                            Adding Rakudo to PATH
20:57:13 ::                           =======================
20:57:13 :: 
20:57:13 :: Paths successfully added.
20:57:13 :: 
20:57:13 :: ================================================================================
20:57:13 ::  =========                                                             __   __
20:57:13 ::   ||_|_||                =============================                (  \,/  )
20:57:13 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
20:57:13 ::   || # ||                =============================                 (_/ \_)
20:57:13 :: 
20:57:13 :: This console has all the tools available you need to get started using Raku.
20:57:13 :: 
20:57:13 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
20:57:13 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
20:57:13 :: Start it by typing:
20:57:13 :: 
20:57:13 ::     raku
20:57:13 :: 
20:57:13 :: If you already have a Raku program in a file, you can run it by typing:
20:57:13 :: 
20:57:13 ::     raku path/to/my/program.raku
20:57:13 :: 
20:57:13 :: To install additional modules you can use the Zef module manager:
20:57:13 :: 
20:57:13 ::     zef install Some::Module
20:57:13 :: 
20:57:13 :: https://rakudo.org/           - The home of this implementation of Raku.
20:57:13 :: https://raku.land/            - Go here to browse for Raku modules.
20:57:13 :: https://docs.raku.org/        - The Raku documentation.
20:57:13 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
20:57:13 :: 
20:57:13 ::                               Happy hacking!
20:57:13 :: 
20:57:13 :: ================================================================================
20:57:13 :: 
20:57:13 :: Welcome to Rakudo™ v2022.12.
20:57:13 :: Implementing the Raku® Programming Language v6.d.
20:57:13 :: Built on MoarVM version 2022.12.
20:57:13 :: run raku -I lib /home/worker/.sparrow6/tmp/7455/code.raku ...
20:57:14 :: warn: good_doc failed
[task stderr]
20:57:14 :: ===SORRY!=== Error while compiling /home/worker/.sparrow6/tmp/7455/code.raku
20:57:14 :: Malformed postfix call (only basic method calls that exclusively use a dot can be detached)
20:57:14 :: at /home/worker/.sparrow6/tmp/7455/code.raku:11
20:57:14 :: ------>   .⏏&splice(18, 5, 'program').&splice(*-4, 2
20:54:55 :: [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
20:54:59 :: [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]
20:55:02 :: 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]
20:56:36 :: O----------------O--------O--------------------------------------------------------O------------O
20:56:36 :: | Rakudo Version | Status | Time                                                   | Linux Dist |
20:56:36 :: O================O========O========================================================O============O
20:56:36 :: | 2022.12        | OK     | 0:03.83 real,5.16 user,0.61 sys | CPU Percentage: 150% | debian     |
20:56:36 :: -------------------------------------------------------------------------------------------------
20:55:34 :: [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)"
[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]
20:56:21 :: Linux version: debian
20:56:23 ::                            Adding Rakudo to PATH
20:56:23 ::                           =======================
20:56:23 :: 
20:56:23 :: Paths successfully added.
20:56:23 :: 
20:56:23 :: ================================================================================
20:56:23 ::  =========                                                             __   __
20:56:23 ::   ||_|_||                =============================                (  \,/  )
20:56:23 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
20:56:23 ::   || # ||                =============================                 (_/ \_)
20:56:23 :: 
20:56:23 :: This console has all the tools available you need to get started using Raku.
20:56:23 :: 
20:56:23 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
20:56:23 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
20:56:23 :: Start it by typing:
20:56:23 :: 
20:56:23 ::     raku
20:56:23 :: 
20:56:23 :: If you already have a Raku program in a file, you can run it by typing:
20:56:23 :: 
20:56:23 ::     raku path/to/my/program.raku
20:56:23 :: 
20:56:23 :: To install additional modules you can use the Zef module manager:
20:56:23 :: 
20:56:23 ::     zef install Some::Module
20:56:23 :: 
20:56:23 :: https://rakudo.org/           - The home of this implementation of Raku.
20:56:23 :: https://raku.land/            - Go here to browse for Raku modules.
20:56:23 :: https://docs.raku.org/        - The Raku documentation.
20:56:23 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
20:56:23 :: 
20:56:23 ::                               Happy hacking!
20:56:23 :: 
20:56:23 :: ================================================================================
20:56:23 :: 
20:56:23 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/bin/raku
20:56:23 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/site/bin/zef
20:56:23 :: Welcome to Rakudo™ v2022.12.
20:56:23 :: Implementing the Raku® Programming Language v6.d.
20:56:23 :: Built on MoarVM version 2022.12.
20:56:24 :: v0.14.5
20:56:28 :: ===> Testing: String::Splice:ver<0.0.4>:auth<zef:thundergnat>
20:56:31 :: [String::Splice] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
20:56:31 :: [String::Splice] t/01-basic.rakutest .. 
20:56:31 :: [String::Splice] 1..28
20:56:31 :: [String::Splice] ok 1 - sub splice insert at 0 ok
20:56:31 :: [String::Splice] ok 2 - sub splice insert at string end ok
20:56:31 :: [String::Splice] ok 3 - sub splice insert in interior ok
20:56:31 :: [String::Splice] ok 4 - sub splice with replace in interior is ok
20:56:31 :: [String::Splice] ok 5 - sub splice with blank replace in interior is ok
20:56:31 :: [String::Splice] ok 6 - sub replace with non-string replace is ok
20:56:31 :: [String::Splice] ok 7 - sub coerce numeric receiver to string works
20:56:31 :: [String::Splice] ok 8 - sub coerce array receiver to string works
20:56:31 :: [String::Splice] ok 9 - chained methods, place coercion to Ints work ok: 0
20:56:31 :: [String::Splice] ok 10 - chained methods, place coercion to Ints work ok: 1
20:56:31 :: [String::Splice] ok 11 - chained methods, place coercion to Ints work ok: 2
20:56:31 :: [String::Splice] ok 12 - chained methods, place coercion to Ints work ok: 3
20:56:31 :: [String::Splice] ok 13 - chained methods, place coercion to Ints work ok: 4
20:56:31 :: [String::Splice] ok 14 - chained methods, place coercion to Ints work ok: 5
20:56:31 :: [String::Splice] ok 15 - chained methods, place coercion to Ints work ok: 6
20:56:31 :: [String::Splice] ok 16 - chained methods, place coercion to Ints work ok: 7
20:56:31 :: [String::Splice] ok 17 - chained methods, place coercion to Ints work ok: 8
20:56:31 :: [String::Splice] ok 18 - chained methods, place coercion to Ints work ok: 9
20:56:31 :: [String::Splice] ok 19 - splice past end works
20:56:31 :: [String::Splice] ok 20 - whatevercode works
20:56:31 :: [String::Splice] ok 21 - whatevercode splice with replace works
20:56:31 :: [String::Splice] ok 22 - positive whatevercode works ok
20:56:31 :: [String::Splice] ok 23 - positive whatevercode past end works ok
20:56:31 :: [String::Splice] ok 24 - whatevercode splice with replace works
20:56:31 :: [String::Splice] ok 25 - too large negative whatevercode doesn't fail
20:56:31 :: [String::Splice] ok 26 - negative start fails ok
20:56:31 :: [String::Splice] ok 27 - 3 param non-string insert fails ok
20:56:31 :: [String::Splice] ok 28 - 4 param non-string insert works ok
20:56:31 :: [String::Splice] ok
20:56:31 :: [String::Splice] All tests successful.
20:56:31 :: [String::Splice] Files=1, Tests=28,  2 wallclock secs ( 0.03 usr  0.00 sys +  2.87 cusr  0.26 csys =  3.16 CPU)
20:56:31 :: [String::Splice] Result: PASS
20:56:31 :: ===> Testing [OK] for String::Splice:ver<0.0.4>:auth<zef:thundergnat>
[task stderr]
20:56:31 :: 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]
20:55:46 :: [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 time graphviz
[2] zef install --/test Text::Table::Simple
[3] 
[task stdout]
20:55:50 :: Reading package lists...
20:55:50 :: Building dependency tree...
20:55:50 :: Reading state information...
20:55:50 :: The following additional packages will be installed:
20:55:50 ::   fontconfig fonts-liberation libann0 libcairo2 libcdt5 libcgraph6 libdatrie1
20:55:50 ::   libfribidi0 libglib2.0-0 libglib2.0-data libgraphite2-3 libgts-0.7-5
20:55:50 ::   libgts-bin libgvc6 libgvpr2 libharfbuzz0b libice6 libicu67 liblab-gamut1
20:55:50 ::   libltdl7 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpathplan4
20:55:50 ::   libpixman-1-0 libsm6 libthai-data libthai0 libxaw7 libxcb-render0
20:55:50 ::   libxcb-shm0 libxml2 libxmu6 libxrender1 libxt6 shared-mime-info x11-common
20:55:50 ::   xdg-user-dirs
20:55:50 :: Suggested packages:
20:55:50 ::   gsfonts graphviz-doc
20:55:50 :: The following NEW packages will be installed:
20:55:50 ::   fontconfig fonts-liberation graphviz libann0 libcairo2 libcdt5 libcgraph6
20:55:50 ::   libdatrie1 libfribidi0 libglib2.0-0 libglib2.0-data libgraphite2-3
20:55:50 ::   libgts-0.7-5 libgts-bin libgvc6 libgvpr2 libharfbuzz0b libice6 libicu67
20:55:50 ::   liblab-gamut1 libltdl7 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0
20:55:50 ::   libpathplan4 libpixman-1-0 libsm6 libthai-data libthai0 libxaw7
20:55:50 ::   libxcb-render0 libxcb-shm0 libxml2 libxmu6 libxrender1 libxt6
20:55:50 ::   shared-mime-info time x11-common xdg-user-dirs
20:55:50 :: 0 upgraded, 40 newly installed, 0 to remove and 0 not upgraded.
20:55:50 :: Need to get 21.0 MB of archives.
20:55:50 :: After this operation, 75.8 MB of additional disk space will be used.
20:55:50 :: Get:1 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB]
20:55:50 :: Get:2 http://deb.debian.org/debian bullseye/main amd64 fonts-liberation all 1:1.07.4-11 [828 kB]
20:55:50 :: Get:3 http://deb.debian.org/debian bullseye/main amd64 libann0 amd64 1.1.2+doc-7 [25.3 kB]
20:55:50 :: Get:4 http://deb.debian.org/debian bullseye/main amd64 libcdt5 amd64 2.42.2-5 [62.2 kB]
20:55:50 :: Get:5 http://deb.debian.org/debian bullseye/main amd64 libcgraph6 amd64 2.42.2-5 [85.5 kB]
20:55:50 :: Get:6 http://deb.debian.org/debian bullseye/main amd64 libglib2.0-0 amd64 2.66.8-1 [1370 kB]
20:55:50 :: Get:7 http://deb.debian.org/debian bullseye/main amd64 libgts-0.7-5 amd64 0.7.6+darcs121130-4+b1 [158 kB]
20:55:50 :: Get:8 http://deb.debian.org/debian-security bullseye-security/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB]
20:55:50 :: Get:9 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB]
20:55:50 :: Get:10 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB]
20:55:50 :: Get:11 http://deb.debian.org/debian bullseye/main amd64 libxrender1 amd64 1:0.9.10-1 [33.0 kB]
20:55:50 :: Get:12 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB]
20:55:50 :: Get:13 http://deb.debian.org/debian bullseye/main amd64 libltdl7 amd64 2.4.6-15 [391 kB]
20:55:50 :: Get:14 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB]
20:55:50 :: Get:15 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB]
20:55:50 :: Get:16 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB]
20:55:50 :: Get:17 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB]
20:55:50 :: Get:18 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB]
20:55:51 :: Get:19 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB]
20:55:51 :: Get:20 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB]
20:55:51 :: Get:21 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB]
20:55:51 :: Get:22 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB]
20:55:51 :: Get:23 http://deb.debian.org/debian bullseye/main amd64 libpathplan4 amd64 2.42.2-5 [64.3 kB]
20:55:51 :: Get:24 http://deb.debian.org/debian bullseye/main amd64 libgvc6 amd64 2.42.2-5 [695 kB]
20:55:51 :: Get:25 http://deb.debian.org/debian bullseye/main amd64 libgvpr2 amd64 2.42.2-5 [212 kB]
20:55:51 :: Get:26 http://deb.debian.org/debian bullseye/main amd64 liblab-gamut1 amd64 2.42.2-5 [221 kB]
20:55:51 :: Get:27 http://deb.debian.org/debian bullseye/main amd64 x11-common all 1:7.7+22 [252 kB]
20:55:51 :: Get:28 http://deb.debian.org/debian bullseye/main amd64 libice6 amd64 2:1.0.10-1 [58.5 kB]
20:55:51 :: Get:29 http://deb.debian.org/debian bullseye/main amd64 libsm6 amd64 2:1.2.3-1 [35.1 kB]
20:55:51 :: Get:30 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB]
20:55:51 :: Get:31 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB]
20:55:51 :: Get:32 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB]
20:55:51 :: Get:33 http://deb.debian.org/debian bullseye/main amd64 graphviz amd64 2.42.2-5 [632 kB]
20:55:51 :: Get:34 http://deb.debian.org/debian bullseye/main amd64 libglib2.0-data all 2.66.8-1 [1164 kB]
20:55:51 :: Get:35 http://deb.debian.org/debian bullseye/main amd64 libgts-bin amd64 0.7.6+darcs121130-4+b1 [50.3 kB]
20:55:51 :: Get:36 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB]
20:55:51 :: Get:37 http://deb.debian.org/debian-security bullseye-security/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u3 [693 kB]
20:55:51 :: Get:38 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB]
20:55:51 :: Get:39 http://deb.debian.org/debian bullseye/main amd64 time amd64 1.9-0.1 [50.8 kB]
20:55:51 :: Get:40 http://deb.debian.org/debian bullseye/main amd64 xdg-user-dirs amd64 0.17-2 [53.8 kB]
20:55:51 :: Fetched 21.0 MB in 0s (68.5 MB/s)
20:55:51 :: Selecting previously unselected package fontconfig.
20:55:51 :: (Reading database ... 
20:55:51 :: (Reading database ... 5%
20:55:51 :: (Reading database ... 10%
20:55:51 :: (Reading database ... 15%
20:55:51 :: (Reading database ... 20%
20:55:51 :: (Reading database ... 25%
20:55:51 :: (Reading database ... 30%
20:55:51 :: (Reading database ... 35%
20:55:51 :: (Reading database ... 40%
20:55:51 :: (Reading database ... 45%
20:55:51 :: (Reading database ... 50%
20:55:51 :: (Reading database ... 55%
20:55:51 :: (Reading database ... 60%
20:55:51 :: (Reading database ... 65%
20:55:51 :: (Reading database ... 70%
20:55:51 :: (Reading database ... 75%
20:55:51 :: (Reading database ... 80%
20:55:51 :: (Reading database ... 85%
20:55:51 :: (Reading database ... 90%
20:55:51 :: (Reading database ... 95%
20:55:51 :: (Reading database ... 100%
20:55:51 :: (Reading database ... 19016 files and directories currently installed.)
20:55:51 :: Preparing to unpack .../00-fontconfig_2.13.1-4.2_amd64.deb ...
20:55:51 :: Unpacking fontconfig (2.13.1-4.2) ...
20:55:51 :: Selecting previously unselected package fonts-liberation.
20:55:51 :: Preparing to unpack .../01-fonts-liberation_1%3a1.07.4-11_all.deb ...
20:55:51 :: Unpacking fonts-liberation (1:1.07.4-11) ...
20:55:51 :: Selecting previously unselected package libann0.
20:55:51 :: Preparing to unpack .../02-libann0_1.1.2+doc-7_amd64.deb ...
20:55:51 :: Unpacking libann0 (1.1.2+doc-7) ...
20:55:51 :: Selecting previously unselected package libcdt5:amd64.
20:55:51 :: Preparing to unpack .../03-libcdt5_2.42.2-5_amd64.deb ...
20:55:51 :: Unpacking libcdt5:amd64 (2.42.2-5) ...
20:55:51 :: Selecting previously unselected package libcgraph6:amd64.
20:55:51 :: Preparing to unpack .../04-libcgraph6_2.42.2-5_amd64.deb ...
20:55:51 :: Unpacking libcgraph6:amd64 (2.42.2-5) ...
20:55:51 :: Selecting previously unselected package libglib2.0-0:amd64.
20:55:51 :: Preparing to unpack .../05-libglib2.0-0_2.66.8-1_amd64.deb ...
20:55:51 :: Unpacking libglib2.0-0:amd64 (2.66.8-1) ...
20:55:52 :: Selecting previously unselected package libgts-0.7-5:amd64.
20:55:52 :: Preparing to unpack .../06-libgts-0.7-5_0.7.6+darcs121130-4+b1_amd64.deb ...
20:55:52 :: Unpacking libgts-0.7-5:amd64 (0.7.6+darcs121130-4+b1) ...
20:55:52 :: Selecting previously unselected package libpixman-1-0:amd64.
20:55:52 :: Preparing to unpack .../07-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ...
20:55:52 :: Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ...
20:55:52 :: Selecting previously unselected package libxcb-render0:amd64.
20:55:52 :: Preparing to unpack .../08-libxcb-render0_1.14-3_amd64.deb ...
20:55:52 :: Unpacking libxcb-render0:amd64 (1.14-3) ...
20:55:52 :: Selecting previously unselected package libxcb-shm0:amd64.
20:55:52 :: Preparing to unpack .../09-libxcb-shm0_1.14-3_amd64.deb ...
20:55:52 :: Unpacking libxcb-shm0:amd64 (1.14-3) ...
20:55:52 :: Selecting previously unselected package libxrender1:amd64.
20:55:52 :: Preparing to unpack .../10-libxrender1_1%3a0.9.10-1_amd64.deb ...
20:55:52 :: Unpacking libxrender1:amd64 (1:0.9.10-1) ...
20:55:52 :: Selecting previously unselected package libcairo2:amd64.
20:55:52 :: Preparing to unpack .../11-libcairo2_1.16.0-5_amd64.deb ...
20:55:52 :: Unpacking libcairo2:amd64 (1.16.0-5) ...
20:55:52 :: Selecting previously unselected package libltdl7:amd64.
20:55:52 :: Preparing to unpack .../12-libltdl7_2.4.6-15_amd64.deb ...
20:55:52 :: Unpacking libltdl7:amd64 (2.4.6-15) ...
20:55:52 :: Selecting previously unselected package libfribidi0:amd64.
20:55:52 :: Preparing to unpack .../13-libfribidi0_1.0.8-2+deb11u1_amd64.deb ...
20:55:52 :: Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ...
20:55:52 :: Selecting previously unselected package libgraphite2-3:amd64.
20:55:52 :: Preparing to unpack .../14-libgraphite2-3_1.3.14-1_amd64.deb ...
20:55:52 :: Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
20:55:52 :: Selecting previously unselected package libharfbuzz0b:amd64.
20:55:52 :: Preparing to unpack .../15-libharfbuzz0b_2.7.4-1_amd64.deb ...
20:55:52 :: Unpacking libharfbuzz0b:amd64 (2.7.4-1) ...
20:55:52 :: Selecting previously unselected package libthai-data.
20:55:52 :: Preparing to unpack .../16-libthai-data_0.1.28-3_all.deb ...
20:55:52 :: Unpacking libthai-data (0.1.28-3) ...
20:55:52 :: Selecting previously unselected package libdatrie1:amd64.
20:55:52 :: Preparing to unpack .../17-libdatrie1_0.2.13-1_amd64.deb ...
20:55:52 :: Unpacking libdatrie1:amd64 (0.2.13-1) ...
20:55:52 :: Selecting previously unselected package libthai0:amd64.
20:55:52 :: Preparing to unpack .../18-libthai0_0.1.28-3_amd64.deb ...
20:55:52 :: Unpacking libthai0:amd64 (0.1.28-3) ...
20:55:52 :: Selecting previously unselected package libpango-1.0-0:amd64.
20:55:52 :: Preparing to unpack .../19-libpango-1.0-0_1.46.2-3_amd64.deb ...
20:55:52 :: Unpacking libpango-1.0-0:amd64 (1.46.2-3) ...
20:55:52 :: Selecting previously unselected package libpangoft2-1.0-0:amd64.
20:55:52 :: Preparing to unpack .../20-libpangoft2-1.0-0_1.46.2-3_amd64.deb ...
20:55:52 :: Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ...
20:55:52 :: Selecting previously unselected package libpangocairo-1.0-0:amd64.
20:55:52 :: Preparing to unpack .../21-libpangocairo-1.0-0_1.46.2-3_amd64.deb ...
20:55:52 :: Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ...
20:55:52 :: Selecting previously unselected package libpathplan4:amd64.
20:55:52 :: Preparing to unpack .../22-libpathplan4_2.42.2-5_amd64.deb ...
20:55:52 :: Unpacking libpathplan4:amd64 (2.42.2-5) ...
20:55:52 :: Selecting previously unselected package libgvc6.
20:55:52 :: Preparing to unpack .../23-libgvc6_2.42.2-5_amd64.deb ...
20:55:52 :: Unpacking libgvc6 (2.42.2-5) ...
20:55:52 :: Selecting previously unselected package libgvpr2:amd64.
20:55:52 :: Preparing to unpack .../24-libgvpr2_2.42.2-5_amd64.deb ...
20:55:52 :: Unpacking libgvpr2:amd64 (2.42.2-5) ...
20:55:52 :: Selecting previously unselected package liblab-gamut1:amd64.
20:55:53 :: Preparing to unpack .../25-liblab-gamut1_2.42.2-5_amd64.deb ...
20:55:53 :: Unpacking liblab-gamut1:amd64 (2.42.2-5) ...
20:55:53 :: Selecting previously unselected package x11-common.
20:55:53 :: Preparing to unpack .../26-x11-common_1%3a7.7+22_all.deb ...
20:55:53 :: Unpacking x11-common (1:7.7+22) ...
20:55:53 :: Selecting previously unselected package libice6:amd64.
20:55:53 :: Preparing to unpack .../27-libice6_2%3a1.0.10-1_amd64.deb ...
20:55:53 :: Unpacking libice6:amd64 (2:1.0.10-1) ...
20:55:53 :: Selecting previously unselected package libsm6:amd64.
20:55:53 :: Preparing to unpack .../28-libsm6_2%3a1.2.3-1_amd64.deb ...
20:55:53 :: Unpacking libsm6:amd64 (2:1.2.3-1) ...
20:55:53 :: Selecting previously unselected package libxt6:amd64.
20:55:53 :: Preparing to unpack .../29-libxt6_1%3a1.2.0-1_amd64.deb ...
20:55:53 :: Unpacking libxt6:amd64 (1:1.2.0-1) ...
20:55:53 :: Selecting previously unselected package libxmu6:amd64.
20:55:53 :: Preparing to unpack .../30-libxmu6_2%3a1.1.2-2+b3_amd64.deb ...
20:55:53 :: Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ...
20:55:53 :: Selecting previously unselected package libxaw7:amd64.
20:55:53 :: Preparing to unpack .../31-libxaw7_2%3a1.0.13-1.1_amd64.deb ...
20:55:53 :: Unpacking libxaw7:amd64 (2:1.0.13-1.1) ...
20:55:53 :: Selecting previously unselected package graphviz.
20:55:53 :: Preparing to unpack .../32-graphviz_2.42.2-5_amd64.deb ...
20:55:53 :: Unpacking graphviz (2.42.2-5) ...
20:55:53 :: Selecting previously unselected package libglib2.0-data.
20:55:53 :: Preparing to unpack .../33-libglib2.0-data_2.66.8-1_all.deb ...
20:55:53 :: Unpacking libglib2.0-data (2.66.8-1) ...
20:55:53 :: Selecting previously unselected package libgts-bin.
20:55:53 :: Preparing to unpack .../34-libgts-bin_0.7.6+darcs121130-4+b1_amd64.deb ...
20:55:53 :: Unpacking libgts-bin (0.7.6+darcs121130-4+b1) ...
20:55:53 :: Selecting previously unselected package libicu67:amd64.
20:55:53 :: Preparing to unpack .../35-libicu67_67.1-7_amd64.deb ...
20:55:53 :: Unpacking libicu67:amd64 (67.1-7) ...
20:55:54 :: Selecting previously unselected package libxml2:amd64.
20:55:54 :: Preparing to unpack .../36-libxml2_2.9.10+dfsg-6.7+deb11u3_amd64.deb ...
20:55:54 :: Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
20:55:54 :: Selecting previously unselected package shared-mime-info.
20:55:54 :: Preparing to unpack .../37-shared-mime-info_2.0-1_amd64.deb ...
20:55:54 :: Unpacking shared-mime-info (2.0-1) ...
20:55:54 :: Selecting previously unselected package time.
20:55:54 :: Preparing to unpack .../38-time_1.9-0.1_amd64.deb ...
20:55:54 :: Unpacking time (1.9-0.1) ...
20:55:54 :: Selecting previously unselected package xdg-user-dirs.
20:55:54 :: Preparing to unpack .../39-xdg-user-dirs_0.17-2_amd64.deb ...
20:55:54 :: Unpacking xdg-user-dirs (0.17-2) ...
20:55:54 :: Setting up libgraphite2-3:amd64 (1.3.14-1) ...
20:55:55 :: Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ...
20:55:55 :: Setting up fontconfig (2.13.1-4.2) ...
20:55:57 :: Regenerating fonts cache... done.
20:55:57 :: Setting up time (1.9-0.1) ...
20:55:57 :: Setting up libxrender1:amd64 (1:0.9.10-1) ...
20:55:57 :: Setting up libicu67:amd64 (67.1-7) ...
20:55:57 :: Setting up libdatrie1:amd64 (0.2.13-1) ...
20:55:57 :: Setting up xdg-user-dirs (0.17-2) ...
20:55:57 :: Setting up libxcb-render0:amd64 (1.14-3) ...
20:55:57 :: Setting up libglib2.0-0:amd64 (2.66.8-1) ...
20:55:57 :: No schema files found: doing nothing.
20:55:57 :: Setting up liblab-gamut1:amd64 (2.42.2-5) ...
20:55:57 :: Setting up x11-common (1:7.7+22) ...
20:55:57 :: debconf: unable to initialize frontend: Dialog
20:55:57 :: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
20:55:57 :: debconf: falling back to frontend: Readline
20:55:57 :: invoke-rc.d: could not determine current runlevel
20:55:57 :: invoke-rc.d: policy-rc.d denied execution of start.
20:55:57 :: Setting up libxcb-shm0:amd64 (1.14-3) ...
20:55:57 :: Setting up libcairo2:amd64 (1.16.0-5) ...
20:55:57 :: Setting up libgts-0.7-5:amd64 (0.7.6+darcs121130-4+b1) ...
20:55:57 :: Setting up libglib2.0-data (2.66.8-1) ...
20:55:57 :: Setting up libpathplan4:amd64 (2.42.2-5) ...
20:55:57 :: Setting up libann0 (1.1.2+doc-7) ...
20:55:57 :: Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ...
20:55:57 :: Setting up libltdl7:amd64 (2.4.6-15) ...
20:55:57 :: Setting up fonts-liberation (1:1.07.4-11) ...
20:55:57 :: Setting up libharfbuzz0b:amd64 (2.7.4-1) ...
20:55:57 :: Setting up libthai-data (0.1.28-3) ...
20:55:57 :: Setting up libcdt5:amd64 (2.42.2-5) ...
20:55:57 :: Setting up libcgraph6:amd64 (2.42.2-5) ...
20:55:57 :: Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
20:55:57 :: Setting up libgts-bin (0.7.6+darcs121130-4+b1) ...
20:55:57 :: Setting up libice6:amd64 (2:1.0.10-1) ...
20:55:57 :: Setting up libthai0:amd64 (0.1.28-3) ...
20:55:57 :: Setting up shared-mime-info (2.0-1) ...
20:56:00 :: Setting up libgvpr2:amd64 (2.42.2-5) ...
20:56:00 :: Setting up libsm6:amd64 (2:1.2.3-1) ...
20:56:00 :: Setting up libpango-1.0-0:amd64 (1.46.2-3) ...
20:56:00 :: Setting up libxt6:amd64 (1:1.2.0-1) ...
20:56:00 :: Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ...
20:56:00 :: Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ...
20:56:00 :: Setting up libxmu6:amd64 (2:1.1.2-2+b3) ...
20:56:00 :: Setting up libxaw7:amd64 (2:1.0.13-1.1) ...
20:56:00 :: Setting up libgvc6 (2.42.2-5) ...
20:56:00 :: Setting up graphviz (2.42.2-5) ...
20:56:00 :: Processing triggers for libc-bin (2.31-13+deb11u5) ...
20:56:03 :: ===> Searching for: Text::Table::Simple
20:56:15 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
20:56:15 :: debconf: delaying package configuration, since apt-utils is not installed
20:56:15 :: ===> Updating fez mirror: https://360.zef.pm/
20:56:15 :: ===> Updated fez mirror: https://360.zef.pm/
20:56:15 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
20:56:15 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json