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