Mastodon S3

Overview

This is a mastodon installation that can be started with pot.

The jail configures itself on the first start for your environment (see notes below).

Important: this jail is dependent on external postgresql and redis instances, along with S3 storage.

S3 storage also needs a frontend such as nginx-s3-nomad configured beforehand.

Deploying the image or flavour should be quite straight forward, however it will take some time to become functional. This is not a fast image to boot!

The mastodon installation is not persistent. It will rebuild on every new version of the image.

Requirements

Do not startup this jail unless you have running postgresql and redis jails, such as the Postgres-Single or Redis-Single pot jails on the potluck site.

You also need a S3 bucket setup, with anonymous download enabled, and a user/pass setup for the mastodon user.

Then setup nginx-s3-nomad or similar with access to that bucket.

You will need an external HTTPS provider, such as acme.sh and haproxy on your firewall device, with rule for the nomad pot image.

However the mastodon pot jail will register a SSL certificate directly.

Installation

  • Create your local jail from the image or the flavour files.
  • Create a ZFS dataset for certificates and keys
  • Clone the local jail
  • Mount in persistent storage for certificates and keys to /mnt specifically
  • Adjust to your environment:
      sudo pot set-env -p <clonejailname> \
      -E DATACENTER=<datacentername> \
      -E IP=<IP address of this nomad instance> \
      -E NODENAME=<an internal name for image> \
      -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
      -E GOSSIPKEY="<32 byte Base64 key from consul keygen>" \
      -E DOMAIN=<FQDN for host> \
      -E EMAIL=<email address for letsencrypt setup> \
      -E MAILHOST=<mailserver hostname or IP> \
      -E MAILUSER=<SMTP username> \
      -E MAILPASS=<SMTP password> \
      -E MAILFROM=<SMTP from address> \
      -E DBHOST=<host of postgres jail> \
      -E DBUSER=<username> \
      -E DBPASS=<password> \
      -E DBNAME=<database name> \
      -E REDISHOST=<IP of redis instance> \
      -E BUCKETHOST=<hostname or IP of S3 storage> \
      -E BUCKETUSER=<S3 access id> \
      -E BUCKETPASS=<S3 password> \
      -E BUCKETALIAS=<web address for files, S3 proxy> \
      -E BUCKETREGION=<S3 region> \
      [ -E MAILPORT=<SMTP port> ] \
      [ -E DBPORT=<database port> ] \
      [ -E REDISPORT=<redis port> ] \
      [ -E REMOTELOG="<IP syslog-ng server>" ]
    
  • Start the pot: pot start <yourjailname>. On the first run the jail will configure itself and start the services.

Required Paramaters

The DATACENTER parameter defines a common datacenter.

The NODENAME parameter defines the name of this node.

The IP parameter is the IP address which will be used to access services.

The CONSULSERVERS parameter is a comma-deliminated list of IP addresses for the consul server or cluster. Do not include spaces!

e.g. CONSULSERVERS="10.0.0.2" or CONSULSERVERS="10.0.0.2,10.0.0.3,10.0.0.4,10.0.0.5,10.0.0.6"

The GOSSIPKEY parameter is the gossip encryption key for consul agent. We’re using a default key if you do not set the parameter, do not use the default key for production encryption, instead provide your own.

The DOMAIN parameter is the domain name of the mastodon-s3 instance.

The EMAIL parameter is the email address to use for letsencrypt registration. SSL certificates are mandatory, modern browsers won’t open camera or microphone unless SSL enabled.

The MAILHOST parameter is the hostname or IP address of a mail server to us.

The MAILUSER and MAILPASS parameters are the mail user credentials.

The MAILFROM parameter is the from email address to use for notifications.

The DBHOST parameter is the IP address or hostname of the external postgresql instance, such as the postgresql-single potluck instance.

The DBUSER parameter is the username to use for accessing the external postgresql instance. Usually this would be mastodon.

The DBPASS parameter is the password for the user on the external postgresql instance.

The DBNAME parameter is the database name on the external postgresql instance. Normally this would be mastodon_production.

The REDISHOST parameter is the IP address of a LAN-based redis host, such as the redis-single potluck instance.

The BUCKETHOST paramter is the hostname of your S3 storage.

The BUCKETUSER parameter is the S3 access id of your storage.

The BUCKETPASS parameter is the S3 password of your storage.

The BUCKETALIAS parameter is the public hostname for the files storage.

The BUCKETREGION parameter is the S3 region.

Optional Parameters

The MAILPORT parameter is the SMTP port to use of the mail server. It defaults to port 25 if not set.

The DBPORT parameter is the port to use for postgresql. It defaults to port 5432 if not set.

The REDISPORT parameter is the port to use for redis. It defaults to port 6379 if not set.

The REMOTELOG parameter is the IP address of a destination syslog-ng server, such as with the loki flavour, or beast-of-argh flavour.

Usage

Secret Key

A secret key is generated and stored in a file in persistent storage at /mnt/mastodon/private/secret.key

On reboot or an upgraded pot image, this file will be read to configure the mastodon settings.

OTP Key

An OTP key is generated and stored in a file in persistent storage at /mnt/mastodon/private/otp.key

On reboot or an upgraded pot image, this file will be read to configure the mastodon settings.

Vapid Keys

Vapid private/public keys are stored in a file in persistent storage at /mnt/mastodon/private/vapid.keys

On reboot or an upgraded pot image, this file will be read to configure the mastodon settings.

Getting Started

How To Use The Ready-Made Image

FreeBSD 13.2:
pot import -p mastodon-s3-amd64-13_2 -t 0.2.8 -U https://potluck.honeyguide.net/mastodon-s3

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p mastodon-s3-amd64-13_2 -t 0.2.8 -C potluck.pub -U https://potluck.honeyguide.net/mastodon-s3

If you don’t want to use the default pot bridged network configuration but instead need an individual network setup (e.g. assign a host IP address), after importing it you can simply clone the jail like that (em0 is the host network adapter in this example):
pot clone -P mastodon-s3-amd64-13_2 -p my-cloned-jail -N alias -i "em0|10.10.10.10"

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

Save all files and directories from https://github.com/hny-gd/potluck/tree/master/mastodon-s3 to /usr/local/etc/pot/flavours/

2. Create Jail From Flavour

Run
pot create -b <FreeBSD Version> -p <jailname> -t single -N public-bridge -f fbsd-update

with your FreeBSD version (e.g. 13.2) and the name your jail should get.

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Version History

0.2

  • Remove internal postgresql and redis as now external pot jails
  • Add parameters for external DB and redis
  • Update README
  • Update requirements to include a jail with S3 frontend
  • Fix ruby environment variables in scripts
  • Change postgresql settings in ENV file
  • Make note in readme about slow image boot
  • Check if database exists before creating it
  • Make note of long running commands in output
  • Improve database checks
  • Attempted fix by locking rubygem Psyche to < 4, due to breaking changes with Psyche4 and Ruby3.1
  • Note that /usr/local/www/mastodon install is not persistent storage, will rebuild on new image
  • Attempt with manual install rubygem-psych3 because other approaches not working

0.1

  • Version bump for new base image
  • Fix otp.key in README
  • Fix postgresql-exporter by building inside directory

0.0

  • Initiate all-in-one mastodon with S3 storage pot image
  • Add missing steps to create database and assets These images were built on Thu Sep 21 20:53:28 UTC 2023

Manual Image Download Links

mastodon-s3-amd64-13_2_0.2.8.xz ( )
mastodon-s3-amd64-13_2_0.2.8.xz.skein ( ) mastodon-s3-amd64-13_2_0.2.8.xz.skein.sig ( ) mastodon-s3-amd64-13_2_0.2.8.xz.meta ( )

Jenkins Pot Creation Logs

mastodon-s3-amd64-13_2_0.2.8:


mastodon-s3/mastodon-s3:
copy-in -s /usr/local/etc/pot/flavours/mastodon-s3.d/local -d /root/.pot_local
mastodon-s3/mastodon-s3.sh:
#!/bin/sh

# Based on POTLUCK TEMPLATE v3.0
# Altered by Michael Gmelin
#
# EDIT THE FOLLOWING FOR NEW FLAVOUR:
# 1. RUNS_IN_NOMAD - true or false
# 2. If RUNS_IN_NOMAD is false, can delete the <flavour>+4 file, else
#    make sure pot create command doesn't include it
# 3. Create a matching <flavour> file with this <flavour>.sh file that
#    contains the copy-in commands for the config files from <flavour>.d/
#    Remember that the package directories don't exist yet, so likely copy
#    to /root
# 4. Adjust package installation between BEGIN & END PACKAGE SETUP
# 5. Adjust jail configuration script generation between BEGIN & END COOK
#    Configure the config files that have been copied in where necessary

# Set this to true if this jail flavour is to be created as a nomad
# (i.e. blocking) jail.
# You can then query it in the cook script generation below and the script
# is installed appropriately at the end of this script
RUNS_IN_NOMAD=false

# set the cook log path/filename
COOKLOG=/var/log/cook.log

# check if cooklog exists, create it if not
if [ ! -e $COOKLOG ]
then
    echo "Creating $COOKLOG" | tee -a $COOKLOG
else
    echo "WARNING $COOKLOG already exists"  | tee -a $COOKLOG
fi
date >> $COOKLOG

# -------------------- COMMON ---------------

STEPCOUNT=0
step() {
  STEPCOUNT=$(("$STEPCOUNT" + 1))
  STEP="$*"
  echo "Step $STEPCOUNT: $STEP" | tee -a $COOKLOG
}

exit_ok() {
  trap - EXIT
  exit 0
}

FAILED=" failed"
exit_error() {
  STEP="$*"
  FAILED=""
  exit 1
}

set -e
trap 'echo ERROR: $STEP$FAILED | (>&2 tee -a $COOKLOG)' EXIT

# -------------- BEGIN PACKAGE SETUP -------------

step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# only modify repo if not already done in base image
# shellcheck disable=SC2016
test -e /usr/local/etc/pkg/repos/FreeBSD.conf || \
  echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
    >/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap

step "Touch /etc/rc.conf"
touch /etc/rc.conf

# this is important, otherwise running /etc/rc from cook will
# overwrite the IP address set in tinirc
step "Remove ifconfig_epair0b from config"
# shellcheck disable=SC2015
sysrc -cq ifconfig_epair0b && sysrc -x ifconfig_epair0b || true

step "Disable sendmail"
service sendmail onedisable

step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d

# we need consul for consul agent
step "Install package consul"
pkg install -y consul

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

# necessary if installing curl now
step "Install package ca_root_nss"
pkg install -y ca_root_nss

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

step "Install package node_exporter"
pkg install -y node_exporter

# nginx-full has conflicts and will remove any nginx
step "Install package nginx"
pkg install -y nginx

step "Install package syslog-ng"
pkg install -y syslog-ng

step "Install package acme.sh"
pkg install -y acme.sh

step "Install package gnupg"
pkg install -y gnupg

step "Install package wget"
pkg install -y wget

step "Install package postgresql13-client"
pkg install -y postgresql13-client

# we still install redis, we don't configure or start it
step "Install package redis"
pkg install -y redis

step "Install package yarn"
pkg install -y yarn

step "Install package npm"
pkg install -y npm

step "Install package git"
pkg install -y git

step "Install package go"
pkg install -y go

step "Install package gmake"
pkg install -y gmake

step "Install package autoconf"
pkg install -y autoconf

step "Install package ffmpeg"
pkg install -y ffmpeg

step "Install package rubygem-bundler"
pkg install -y rubygem-bundler

step "Install package ImageMagick7-nox11"
pkg install -y ImageMagick7-nox11

step "Install package libidn"
pkg install -y libidn

step "Install package icu"
pkg install -y icu

step "Install package bison"
pkg install -y bison

step "Install package libyaml"
pkg install -y libyaml

step "Install package libffi"
pkg install -y libffi

step "Install package libxml2"
pkg install -y libxml2

step "Install package libxslt"
pkg install -y libxslt

step "Install package libyaml"
pkg install -y libyaml

step "Install package readline"
pkg install -y readline

# breaking changes with Psyche 4, which is default for Ruby 3.1
# https://bugs.ruby-lang.org/issues/17866
# https://stackoverflow.com/questions/74725359/ruby-on-rails-legacy-application-update-generates-gem-psych-alias-error-psychb
# https://github.com/mastodon/mastodon/issues/24455
step "Instal package rubygem-psych3"
pkg install -y rubygem-psych3

step "Install package mastodon"
pkg install -y mastodon

step "Clean package installation"
pkg clean -y

# -------------- END PACKAGE SETUP -------------

# ------------ BEGIN MASTODON CUSTOM -----------

# The FreeBSD wiki has a set of instructions
# https://wiki.freebsd.org/Ports/net-im/mastodon
# however it is missing a step to 'yarn add node-gyp'
# as covered in the Bastillefile at
# https://codeberg.org/ddowse/mastodon/src/branch/main/Bastillefile

# We setup the bundle and yarn steps here in order to make them happen
# during image build, to avoid delaying the pot image boot process

step "enable corepack"
/usr/local/bin/corepack enable

step "Add node-gyp to yarn"
/usr/local/bin/yarn add node-gyp

step "user mastodon - set yarn classic"
su - mastodon -c "/usr/local/bin/yarn set version classic"

step "user mastodon - enable deployment"
su - mastodon -c "cd /usr/local/www/mastodon && /usr/local/bin/bundle config deployment 'true'"

step "user mastodon - remove development and test environments"
su - mastodon -c "cd /usr/local/www/mastodon && /usr/local/bin/bundle config without 'development test'"

step "user mastodon - bundle install"
su - mastodon -c "cd /usr/local/www/mastodon && /usr/local/bin/bundle install -j1"

step "user mastodon - yarn install process"
su - mastodon -c "cd /usr/local/www/mastodon && /usr/local/bin/yarn install --pure-lockfile"

#
# Now generate the run command script "cook"
# It configures the system on the first run by creating the config file(s)
# On subsequent runs, it only starts sleeps (if nomad-jail) or simply exits
#

# this runs when image boots
# ----------------- BEGIN COOK ------------------

step "Clean cook artifacts"
rm -rf /usr/local/bin/cook /usr/local/share/cook

step "Install pot local"
tar -C /root/.pot_local -cf - . | tar -C /usr/local -xf -
rm -rf /root/.pot_local

step "Set file ownership on cook scripts"
chown -R root:wheel /usr/local/bin/cook /usr/local/share/cook
chmod 755 /usr/local/share/cook/bin/*

# ----------------- END COOK ------------------


# ---------- NO NEED TO EDIT BELOW ------------

step "Make cook script executable"
if [ -e /usr/local/bin/cook ]
then
    echo "setting executable bit on /usr/local/bin/cook" | tee -a $COOKLOG
    chmod u+x /usr/local/bin/cook
else
    exit_error "there is no /usr/local/bin/cook to make executable"
fi

#
# There are two ways of running a pot jail: "Normal", non-blocking mode and
# "Nomad", i.e. blocking mode (the pot start command does not return until
# the jail is stopped).
# For the normal mode, we create a /usr/local/etc/rc.d script that starts
# the "cook" script generated above each time, for the "Nomad" mode, the cook
# script is started by pot (configuration through flavour file), therefore
# we do not need to do anything here.
#

# Create rc.d script for "normal" mode:
step "Create rc.d script to start cook"
echo "creating rc.d script to start cook" | tee -a $COOKLOG

# shellcheck disable=SC2016
echo '#!/bin/sh
#
# PROVIDE: cook
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
. /etc/rc.subr
name="cook"
rcvar="cook_enable"
load_rc_config $name
: ${cook_enable:="NO"}
: ${cook_env:=""}
command="/usr/local/bin/cook"
command_args=""
run_rc_command "$1"
' > /usr/local/etc/rc.d/cook

step "Make rc.d script to start cook executable"
if [ -e /usr/local/etc/rc.d/cook ]
then
  echo "Setting executable bit on cook rc file" | tee -a $COOKLOG
  chmod u+x /usr/local/etc/rc.d/cook
else
  exit_error "/usr/local/etc/rc.d/cook does not exist"
fi

if [ "$RUNS_IN_NOMAD" != "true" ]
then
  step "Enable cook service"
  # This is a non-nomad (non-blocking) jail, so we need to make sure the script
  # gets started when the jail is started:
  # Otherwise, /usr/local/bin/cook will be set as start script by the pot
  # flavour
  echo "enabling cook" | tee -a $COOKLOG
  service cook enable
fi

# -------------------- DONE ---------------
exit_ok

mastodon-s3/mastodon-s3+1:
mastodon-s3/mastodon-s3+1.sh:

mastodon-s3/mastodon-s3+2:
mastodon-s3/mastodon-s3+2.sh:

mastodon-s3/mastodon-s3+3:
mastodon-s3/mastodon-s3+3.sh:

mastodon-s3/mastodon-s3+4:
mastodon-s3/mastodon-s3+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/mastodon-s3-amd64-13_2/conf)
=====>  Cloning freebsd-potluck-amd64-13_2_0_0_17 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-13_2_0_0_17/m@1694195587 into zroot/srv/pot/jails/mastodon-s3-amd64-13_2/m
=====>  Flavour: fbsd-update
=====>  Starting mastodon-s3-amd64-13_2 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot mastodon-s3-amd64-13_2
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:6e:29:71:61:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Starting sendmail_outbound.

Thu Sep 21 20:35:43 UTC 2023
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on mastodon-s3-amd64-13_2
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching metadata signature for 13.2-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 13.2-RELEASE-p3.
No updates are available to install.
=====>  Stop the pot mastodon-s3-amd64-13_2
=====>  Remove p4650ca91b754c epair network interfaces
=====>  unmount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp
=====>  unmount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/dev
=====>  Flavour: mastodon-s3
=====>  Executing mastodon-s3 pot commands on mastodon-s3-amd64-13_2
=====>  mount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp
=====>  Source /usr/local/etc/pot/flavours/mastodon-s3.d/local copied in the pot mastodon-s3-amd64-13_2
=====>  unmount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp
=====>  /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/dev is already unmounted
=====>  Starting mastodon-s3-amd64-13_2 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot mastodon-s3-amd64-13_2
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:14:27:bd:4c:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Starting sendmail_outbound.

Thu Sep 21 20:35:52 UTC 2023
/usr/local/etc/pot/flavours/mastodon-s3.sh -> /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp/mastodon-s3.sh
=====>  Executing mastodon-s3 script on mastodon-s3-amd64-13_2
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_outbound disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package consul
Updating FreeBSD repository catalogue...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 33858 packages processed.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	consul: 1.16.0_2

Number of packages to be installed: 1

The process will require 108 MiB more space.
19 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching consul-1.16.0_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing consul-1.16.0_2...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting consul-1.16.0_2: ..... done
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 8: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 10: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 12: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 13: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 14: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 15: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 16: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	node_exporter: 1.5.0_7

Number of packages to be installed: 1

The process will require 11 MiB more space.
3 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.5.0_7.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.5.0_7...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.5.0_7: .......... done
=====
Message from node_exporter-1.5.0_7:

--
If upgrading from a version of node_exporter <0.15.0 you'll need to update any
custom command line flags that you may have set as it now requires a
double-dash (--flag) instead of a single dash (-flag).
The collector flags in 0.15.0 have now been replaced with individual boolean
flags and the -collector.procfs` and -collector.sysfs` flags have been renamed
to --path.procfs and --path.sysfs respectively.
Step 17: Install package nginx
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	nginx: 1.24.0_6,3
	pcre2: 10.42

Number of packages to be installed: 2

The process will require 8 MiB more space.
2 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.24.0_6,3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre2-10.42.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre2-10.42...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre2-10.42: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.24.0_6,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.24.0_6,3: .......... done
=====
Message from nginx-1.24.0_6,3:

--
Recent version of the NGINX introduces dynamic modules support.  In
FreeBSD ports tree this feature was enabled by default with the DSO
knob.  Several vendor's and third-party modules have been converted
to dynamic modules.  Unset the DSO knob builds an NGINX without
dynamic modules support.

To load a module at runtime, include the new `load_module'
directive in the main context, specifying the path to the shared
object file for the module, enclosed in quotation marks.  When you
reload the configuration or restart NGINX, the module is loaded in.
It is possible to specify a path relative to the source directory,
or a full path, please see
https://www.nginx.com/blog/dynamic-modules-nginx-1-9-11/ and
http://nginx.org/en/docs/ngx_core_module.html#load_module for
details.

Default path for the NGINX dynamic modules is

/usr/local/libexec/nginx.
Step 18: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 9 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	e2fsprogs-libuuid: 1.47.0
	glib: 2.76.5,2
	json-c: 0.16
	libffi: 3.4.4
	libxml2: 2.10.4
	mpdecimal: 2.5.1
	pcre: 8.45_3
	python39: 3.9.18
	syslog-ng: 4.2.0

Number of packages to be installed: 9

The process will require 164 MiB more space.
25 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/9] Fetching libxml2-2.10.4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/9] Fetching mpdecimal-2.5.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/9] Fetching python39-3.9.18.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/9] Fetching pcre-8.45_3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/9] Fetching glib-2.76.5,2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/9] Fetching syslog-ng-4.2.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/9] Fetching libffi-3.4.4.pkg: ...... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/9] Fetching json-c-0.16.pkg: ........ done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/9] Fetching e2fsprogs-libuuid-1.47.0.pkg: ..... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/9] Installing mpdecimal-2.5.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/9] Extracting mpdecimal-2.5.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/9] Installing libffi-3.4.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/9] Extracting libffi-3.4.4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/9] Installing libxml2-2.10.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/9] Extracting libxml2-2.10.4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/9] Installing python39-3.9.18...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/9] Extracting python39-3.9.18: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/9] Installing pcre-8.45_3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/9] Extracting pcre-8.45_3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/9] Installing glib-2.76.5,2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/9] Extracting glib-2.76.5,2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/9] Installing json-c-0.16...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/9] Extracting json-c-0.16: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/9] Installing e2fsprogs-libuuid-1.47.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/9] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/9] Installing syslog-ng-4.2.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/9] Extracting syslog-ng-4.2.0: .......... done
Generating GIO modules cache
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python39-3.9.18:

--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:

py39-gdbm       databases/py-gdbm@py39
py39-sqlite3    databases/py-sqlite3@py39
py39-tkinter    x11-toolkits/py-tkinter@py39
=====
Message from syslog-ng-4.2.0:

--
syslog-ng is now installed!  To replace FreeBSD's standard syslogd
(/usr/sbin/syslogd), complete these steps:

1. Create a configuration file named /usr/local/etc/syslog-ng.conf
   (a sample named syslog-ng.conf.sample has been included in
   /usr/local/etc). Note that this is a change in 2.0.2
   version, previous ones put the config file in
   /usr/local/etc/syslog-ng/syslog-ng.conf, so if this is an update
   move that file in the right place

2. Configure syslog-ng to start automatically by adding the following
   to /etc/rc.conf:

        syslog_ng_enable="YES"

3. Prevent the standard FreeBSD syslogd from starting automatically by
   adding a line to the end of your /etc/rc.conf file that reads:

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

     kill `cat /var/run/syslog.pid`

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
Step 19: Install package acme.sh
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	acme.sh: 3.0.6
	socat: 1.7.4.4

Number of packages to be installed: 2

The process will require 2 MiB more space.
382 KiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching acme.sh-3.0.6.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching socat-1.7.4.4.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing socat-1.7.4.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting socat-1.7.4.4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.0.6...
===> Creating groups.
Creating group 'acme' with gid '169'.
===> Creating users
Creating user 'acme' with uid '169'.
===> Creating homedir(s)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.0.6: .......... done
=====
Message from acme.sh-3.0.6:

--
This script will create the following directories if they do not exist:

 ~acme/.acme.sh
 ~acme/certs

The script will also install ~acme/.acme.sh/account.conf.sample which has
sane defaults.  Copy this to ~acme/.acme.sh/account.conf and edit contents
to suit.

If you have EXAMPLES on:

* In the /usr/local/share/examples/acme.sh directory, you can find the dnsapi 
  scripts which will be useful if you decide to use dns-01 challenges. Also 
  included are the deploy scripts.

* A newsyslog.conf sample file is installed at 
  /usr/local/etc/newsyslog.conf.d/acme.sh.conf - you must modify it by
  at least uncommenting the line.

* If you run `newsyslog -NC` it will create the required logfiles.

* Please review /usr/local/share/examples/acme.sh/acme.sh-cron.d - instructions are
  contained in that file.
Step 20: Install package gnupg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 15 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gmp: 6.2.1
	gnupg: 2.3.8
	gnutls: 3.7.9
	libassuan: 2.5.6
	libedit: 3.1.20221030,1
	libgcrypt: 1.10.2
	libgpg-error: 1.47
	libksba: 1.6.3
	libtasn1: 4.19.0
	nettle: 3.9.1
	npth: 1.6
	p11-kit: 0.24.1_2
	pinentry: 1.2.1
	pinentry-curses: 1.2.1
	sqlite3: 3.42.0,1

Number of packages to be installed: 15

The process will require 45 MiB more space.
10 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/15] Fetching p11-kit-0.24.1_2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/15] Fetching pinentry-curses-1.2.1.pkg: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/15] Fetching libksba-1.6.3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/15] Fetching libassuan-2.5.6.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/15] Fetching libedit-3.1.20221030,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/15] Fetching gnutls-3.7.9.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/15] Fetching sqlite3-3.42.0,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/15] Fetching libgcrypt-1.10.2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/15] Fetching pinentry-1.2.1.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/15] Fetching nettle-3.9.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/15] Fetching libgpg-error-1.47.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/15] Fetching gmp-6.2.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/15] Fetching npth-1.6.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/15] Fetching libtasn1-4.19.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/15] Fetching gnupg-2.3.8.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/15] Installing libgpg-error-1.47...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/15] Extracting libgpg-error-1.47: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/15] Installing libassuan-2.5.6...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/15] Extracting libassuan-2.5.6: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/15] Installing gmp-6.2.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/15] Extracting gmp-6.2.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/15] Installing libtasn1-4.19.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/15] Extracting libtasn1-4.19.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/15] Installing p11-kit-0.24.1_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/15] Extracting p11-kit-0.24.1_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/15] Installing pinentry-curses-1.2.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/15] Extracting pinentry-curses-1.2.1: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/15] Installing libedit-3.1.20221030,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/15] Extracting libedit-3.1.20221030,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/15] Installing nettle-3.9.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/15] Extracting nettle-3.9.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/15] Installing libksba-1.6.3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/15] Extracting libksba-1.6.3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/15] Installing gnutls-3.7.9...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/15] Extracting gnutls-3.7.9: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/15] Installing sqlite3-3.42.0,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/15] Extracting sqlite3-3.42.0,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/15] Installing libgcrypt-1.10.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/15] Extracting libgcrypt-1.10.2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/15] Installing pinentry-1.2.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/15] Extracting pinentry-1.2.1: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/15] Installing npth-1.6...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/15] Extracting npth-1.6: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/15] Installing gnupg-2.3.8...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/15] Extracting gnupg-2.3.8: .......... done
Step 21: Install package wget
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	wget: 1.21.4

Number of packages to be installed: 1

The process will require 3 MiB more space.
701 KiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching wget-1.21.4.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing wget-1.21.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting wget-1.21.4: .......... done
Step 22: Install package postgresql13-client
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	postgresql13-client: 13.12

Number of packages to be installed: 1

The process will require 12 MiB more space.
3 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching postgresql13-client-13.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing postgresql13-client-13.12...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting postgresql13-client-13.12: .......... done
=====
Message from postgresql13-client-13.12:

--
The PostgreSQL port has a collection of "side orders":

postgresql-docs
  For all of the html documentation

p5-Pg
  A perl5 API for client access to PostgreSQL databases.

postgresql-tcltk 
  If you want tcl/tk client support.

postgresql-jdbc
  For Java JDBC support.

postgresql-odbc
  For client access from unix applications using ODBC as access
  method. Not needed to access unix PostgreSQL servers from Win32
  using ODBC. See below.

ruby-postgres, py-psycopg2
  For client access to PostgreSQL databases using the ruby & python
  languages.

postgresql-plperl, postgresql-pltcl & postgresql-plruby
  For using perl5, tcl & ruby as procedural languages.

postgresql-contrib
  Lots of contributed utilities, postgresql functions and
  datatypes. There you find pg_standby, pgcrypto and many other cool
  things.

etc...
Step 23: Install package redis
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	redis: 7.0.13

Number of packages to be installed: 1

The process will require 8 MiB more space.
847 KiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching redis-7.0.13.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing redis-7.0.13...
===> Creating groups.
Creating group 'redis' with gid '535'.
===> Creating users
Creating user 'redis' with uid '535'.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting redis-7.0.13: ......... done
=====
Message from redis-7.0.13:

--
To setup "redis" you need to edit the configuration file:
      /usr/local/etc/redis.conf

      To run redis from startup, add redis_enable="YES"
      in your /etc/rc.conf.
Step 24: Install package yarn
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 7 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.0.9,1
	c-ares: 1.19.1
	icu: 73.2,1
	libuv: 1.46.0
	node18: 18.16.0
	yarn: 1.22.18_1
	yarn-node18: 1.22.19

Number of packages to be installed: 7

The process will require 106 MiB more space.
21 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Fetching c-ares-1.19.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Fetching node18-18.16.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Fetching icu-73.2,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Fetching libuv-1.46.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Fetching brotli-1.0.9,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Fetching yarn-node18-1.22.19.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Fetching yarn-1.22.18_1.pkg: . done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Installing c-ares-1.19.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Extracting c-ares-1.19.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Installing icu-73.2,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Extracting icu-73.2,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Installing libuv-1.46.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Extracting libuv-1.46.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Installing brotli-1.0.9,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Extracting brotli-1.0.9,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Installing node18-18.16.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Extracting node18-18.16.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Installing yarn-node18-1.22.19...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Extracting yarn-node18-1.22.19: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Installing yarn-1.22.18_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Extracting yarn-1.22.18_1: ... done
=====
Message from node18-18.16.0:

--
Note: If you need npm (Node Package Manager), please install www/npm.
Step 25: Install package npm
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gmake: 4.3_2
	npm: 9.7.2
	npm-node18: 9.7.2

Number of packages to be installed: 3

The process will require 14 MiB more space.
2 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching gmake-4.3_2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching npm-9.7.2.pkg: . done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching npm-node18-9.7.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Installing gmake-4.3_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting gmake-4.3_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Installing npm-node18-9.7.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting npm-node18-9.7.2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Installing npm-9.7.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting npm-9.7.2: ... done
Step 26: Install package git
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 22 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.5.0
	git: 2.41.0
	p5-Authen-SASL: 2.16_1
	p5-CGI: 4.57
	p5-Clone: 0.46
	p5-Digest-HMAC: 1.04
	p5-Encode-Locale: 1.05
	p5-Error: 0.17029
	p5-GSSAPI: 0.28_2
	p5-HTML-Parser: 3.81
	p5-HTML-Tagset: 3.20_1
	p5-HTTP-Date: 6.05
	p5-HTTP-Message: 6.44
	p5-IO-HTML: 1.004
	p5-IO-Socket-IP: 0.41
	p5-IO-Socket-SSL: 2.083_1
	p5-LWP-MediaTypes: 6.04
	p5-Mozilla-CA: 20221114
	p5-Net-SSLeay: 1.92
	p5-TimeDate: 2.33,1
	p5-URI: 5.19
	perl5: 5.32.1_3

Number of packages to be installed: 22

The process will require 98 MiB more space.
21 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/22] Fetching p5-Net-SSLeay-1.92.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/22] Fetching p5-IO-Socket-SSL-2.083_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/22] Fetching p5-IO-Socket-IP-0.41.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/22] Fetching p5-URI-5.19.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/22] Fetching p5-CGI-4.57.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/22] Fetching p5-TimeDate-2.33,1.pkg: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/22] Fetching p5-Clone-0.46.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/22] Fetching p5-Error-0.17029.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/22] Fetching p5-HTML-Tagset-3.20_1.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/22] Fetching git-2.41.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/22] Fetching p5-Authen-SASL-2.16_1.pkg: ...... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/22] Fetching p5-HTTP-Date-6.05.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/22] Fetching p5-GSSAPI-0.28_2.pkg: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/22] Fetching p5-Encode-Locale-1.05.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/22] Fetching perl5-5.32.1_3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/22] Fetching p5-HTML-Parser-3.81.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/22] Fetching p5-Mozilla-CA-20221114.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/22] Fetching p5-LWP-MediaTypes-6.04.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/22] Fetching p5-IO-HTML-1.004.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/22] Fetching p5-Digest-HMAC-1.04.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/22] Fetching expat-2.5.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/22] Fetching p5-HTTP-Message-6.44.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/22] Installing perl5-5.32.1_3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/22] Extracting perl5-5.32.1_3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/22] Installing p5-TimeDate-2.33,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/22] Extracting p5-TimeDate-2.33,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/22] Installing p5-URI-5.19...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/22] Extracting p5-URI-5.19: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/22] Installing p5-Clone-0.46...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/22] Extracting p5-Clone-0.46: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/22] Installing p5-HTTP-Date-6.05...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/22] Extracting p5-HTTP-Date-6.05: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/22] Installing p5-Encode-Locale-1.05...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/22] Extracting p5-Encode-Locale-1.05: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/22] Installing p5-LWP-MediaTypes-6.04...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/22] Extracting p5-LWP-MediaTypes-6.04: ........ done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/22] Installing p5-IO-HTML-1.004...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/22] Extracting p5-IO-HTML-1.004: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/22] Installing p5-HTML-Tagset-3.20_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/22] Extracting p5-HTML-Tagset-3.20_1: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/22] Installing p5-HTTP-Message-6.44...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/22] Extracting p5-HTTP-Message-6.44: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/22] Installing p5-Net-SSLeay-1.92...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/22] Extracting p5-Net-SSLeay-1.92: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/22] Installing p5-IO-Socket-IP-0.41...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/22] Extracting p5-IO-Socket-IP-0.41: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/22] Installing p5-GSSAPI-0.28_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/22] Extracting p5-GSSAPI-0.28_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/22] Installing p5-HTML-Parser-3.81...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/22] Extracting p5-HTML-Parser-3.81: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/22] Installing p5-Mozilla-CA-20221114...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/22] Extracting p5-Mozilla-CA-20221114: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/22] Installing p5-Digest-HMAC-1.04...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/22] Extracting p5-Digest-HMAC-1.04: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/22] Installing p5-IO-Socket-SSL-2.083_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/22] Extracting p5-IO-Socket-SSL-2.083_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/22] Installing p5-CGI-4.57...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/22] Extracting p5-CGI-4.57: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/22] Installing p5-Error-0.17029...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/22] Extracting p5-Error-0.17029: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/22] Installing p5-Authen-SASL-2.16_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/22] Extracting p5-Authen-SASL-2.16_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/22] Installing expat-2.5.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/22] Extracting expat-2.5.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/22] Installing git-2.41.0...
===> Creating groups.
Creating group 'git_daemon' with gid '964'.
===> Creating users
Creating user 'git_daemon' with uid '964'.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/22] Extracting git-2.41.0: .......... done
=====
Message from git-2.41.0:

--
If you installed the GITWEB option please follow these instructions:

In the directory /usr/local/share/examples/git/gitweb you can find all files to
make gitweb work as a public repository on the web.

All you have to do to make gitweb work is:
1) Please be sure you're able to execute CGI scripts in
   /usr/local/share/examples/git/gitweb.
2) Set the GITWEB_CONFIG variable in your webserver's config to
   /usr/local/etc/git/gitweb.conf. This variable is passed to gitweb.cgi.
3) Restart server.


If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 27: Install package go
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	go: 1.20,2
	go120: 1.20.8

Number of packages to be installed: 2

The process will require 200 MiB more space.
38 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching go-1.20,2.pkg: . done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching go120-1.20.8.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing go120-1.20.8...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting go120-1.20.8: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing go-1.20,2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting go-1.20,2: .. done
Step 28: Install package gmake
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 29: Install package autoconf
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	autoconf: 2.71
	autoconf-switch: 20220527
	m4: 1.4.19,1

Number of packages to be installed: 3

The process will require 4 MiB more space.
816 KiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching m4-1.4.19,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching autoconf-switch-20220527.pkg: . done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching autoconf-2.71.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Installing m4-1.4.19,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting m4-1.4.19,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Installing autoconf-switch-20220527...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting autoconf-switch-20220527: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Installing autoconf-2.71...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting autoconf-2.71: .......... done
Step 30: Install package ffmpeg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 55 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	Imath: 3.1.9
	aom: 3.6.1
	argp-standalone: 1.5.0
	dav1d: 1.2.1
	ffmpeg: 6.0,1
	fontconfig: 2.14.2,1
	freetype2: 2.12.1_2
	fribidi: 1.0.13
	gdk-pixbuf2: 2.42.10
	giflib: 5.2.1
	graphite2: 1.3.14
	harfbuzz: 7.3.0
	highway: 1.0.4_1
	jbigkit: 2.1_1
	jpeg-turbo: 2.1.5.1
	lame: 3.100_4
	lcms2: 2.15_1
	libX11: 1.8.6,1
	libXau: 1.0.9
	libXdmcp: 1.1.3
	libXext: 1.3.4,1
	libXfixes: 6.0.0
	libXrandr: 1.5.2
	libXrender: 0.9.10_2
	libass: 0.17.1_1
	libdeflate: 1.18
	libdrm: 2.4.115,1
	libepoll-shim: 0.0.20230411
	libjxl: 0.8.2
	libogg: 1.3.5,4
	libpciaccess: 0.17
	libplacebo: 5.264.1
	libudev-devd: 0.5.1
	libunibreak: 5.1,1
	libunwind: 20211201_2
	libv4l: 1.23.0
	libva: 2.18.0
	libvdpau: 1.5
	libvorbis: 1.3.7_2,3
	libvpx: 1.13.0
	libx264: 0.164.3095
	libxcb: 1.15_1
	openexr: 3.1.11
	opus: 1.4
	png: 1.6.39
	shaderc: 2023.4
	shared-mime-info: 2.2_1
	svt-av1: 1.7.0
	tiff: 4.4.0_1
	vmaf: 2.3.1
	vulkan-loader: 1.3.257
	wayland: 1.22.0
	webp: 1.3.0_1
	x265: 3.4_2
	xorgproto: 2022.1_1

Number of packages to be installed: 55

The process will require 233 MiB more space.
47 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/55] Fetching freetype2-2.12.1_2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/55] Fetching libx264-0.164.3095.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/55] Fetching lcms2-2.15_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/55] Fetching vmaf-2.3.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/55] Fetching libva-2.18.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/55] Fetching libXfixes-6.0.0.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/55] Fetching aom-3.6.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/55] Fetching gdk-pixbuf2-2.42.10.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/55] Fetching shaderc-2023.4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/55] Fetching libepoll-shim-0.0.20230411.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/55] Fetching libX11-1.8.6,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/55] Fetching giflib-5.2.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/55] Fetching xorgproto-2022.1_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/55] Fetching graphite2-1.3.14.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/55] Fetching shared-mime-info-2.2_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/55] Fetching lame-3.100_4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/55] Fetching libpciaccess-0.17.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/55] Fetching vulkan-loader-1.3.257.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/55] Fetching libass-0.17.1_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/55] Fetching ffmpeg-6.0,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/55] Fetching opus-1.4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/55] Fetching libunwind-20211201_2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/55] Fetching Imath-3.1.9.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/55] Fetching svt-av1-1.7.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/55] Fetching libXau-1.0.9.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/55] Fetching libplacebo-5.264.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/55] Fetching fontconfig-2.14.2,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/55] Fetching jbigkit-2.1_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/55] Fetching libvdpau-1.5.pkg: ........ done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/55] Fetching libXdmcp-1.1.3.pkg: .. done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/55] Fetching tiff-4.4.0_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/55] Fetching png-1.6.39.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/55] Fetching libxcb-1.15_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/55] Fetching jpeg-turbo-2.1.5.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/55] Fetching libXrandr-1.5.2.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/55] Fetching libunibreak-5.1,1.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/55] Fetching libdeflate-1.18.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/55] Fetching fribidi-1.0.13.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/55] Fetching libdrm-2.4.115,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/55] Fetching wayland-1.22.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/55] Fetching libjxl-0.8.2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/55] Fetching libXrender-0.9.10_2.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/55] Fetching webp-1.3.0_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/55] Fetching libv4l-1.23.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/55] Fetching harfbuzz-7.3.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/55] Fetching x265-3.4_2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/55] Fetching highway-1.0.4_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/55] Fetching libudev-devd-0.5.1.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/55] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/55] Fetching libXext-1.3.4,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/55] Fetching argp-standalone-1.5.0.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/55] Fetching libogg-1.3.5,4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/55] Fetching dav1d-1.2.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/55] Fetching openexr-3.1.11.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/55] Fetching libvpx-1.13.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/55] Installing xorgproto-2022.1_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/55] Extracting xorgproto-2022.1_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/55] Installing libXau-1.0.9...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/55] Extracting libXau-1.0.9: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/55] Installing libXdmcp-1.1.3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/55] Extracting libXdmcp-1.1.3: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/55] Installing libxcb-1.15_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/55] Extracting libxcb-1.15_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/55] Installing libX11-1.8.6,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/55] Extracting libX11-1.8.6,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/55] Installing jbigkit-2.1_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/55] Extracting jbigkit-2.1_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/55] Installing jpeg-turbo-2.1.5.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/55] Extracting jpeg-turbo-2.1.5.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/55] Installing libdeflate-1.18...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/55] Extracting libdeflate-1.18: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/55] Installing libepoll-shim-0.0.20230411...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/55] Extracting libepoll-shim-0.0.20230411: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/55] Installing shared-mime-info-2.2_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/55] Extracting shared-mime-info-2.2_1: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/55] Installing Imath-3.1.9...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/55] Extracting Imath-3.1.9: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/55] Installing tiff-4.4.0_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/55] Extracting tiff-4.4.0_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/55] Installing png-1.6.39...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/55] Extracting png-1.6.39: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/55] Installing libXrender-0.9.10_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/55] Extracting libXrender-0.9.10_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/55] Installing libXext-1.3.4,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/55] Extracting libXext-1.3.4,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/55] Installing freetype2-2.12.1_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/55] Extracting freetype2-2.12.1_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/55] Installing gdk-pixbuf2-2.42.10...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/55] Extracting gdk-pixbuf2-2.42.10: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/55] Installing giflib-5.2.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/55] Extracting giflib-5.2.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/55] Installing graphite2-1.3.14...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/55] Extracting graphite2-1.3.14: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/55] Installing libpciaccess-0.17...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/55] Extracting libpciaccess-0.17: ........ done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/55] Installing libXrandr-1.5.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/55] Extracting libXrandr-1.5.2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/55] Installing wayland-1.22.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/55] Extracting wayland-1.22.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/55] Installing highway-1.0.4_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/55] Extracting highway-1.0.4_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/55] Installing openexr-3.1.11...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/55] Extracting openexr-3.1.11: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/55] Installing lcms2-2.15_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/55] Extracting lcms2-2.15_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/55] Installing vmaf-2.3.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/55] Extracting vmaf-2.3.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/55] Installing libXfixes-6.0.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/55] Extracting libXfixes-6.0.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/55] Installing shaderc-2023.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/55] Extracting shaderc-2023.4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/55] Installing vulkan-loader-1.3.257...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/55] Extracting vulkan-loader-1.3.257: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/55] Installing libunwind-20211201_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/55] Extracting libunwind-20211201_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/55] Installing fontconfig-2.14.2,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/55] Extracting fontconfig-2.14.2,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/55] Installing libunibreak-5.1,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/55] Extracting libunibreak-5.1,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/55] Installing fribidi-1.0.13...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/55] Extracting fribidi-1.0.13: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/55] Installing libdrm-2.4.115,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/55] Extracting libdrm-2.4.115,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/55] Installing libjxl-0.8.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/55] Extracting libjxl-0.8.2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/55] Installing harfbuzz-7.3.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/55] Extracting harfbuzz-7.3.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/55] Installing libudev-devd-0.5.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/55] Extracting libudev-devd-0.5.1: ........ done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/55] Installing argp-standalone-1.5.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/55] Extracting argp-standalone-1.5.0: ........ done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/55] Installing libogg-1.3.5,4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/55] Extracting libogg-1.3.5,4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/55] Installing libx264-0.164.3095...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/55] Extracting libx264-0.164.3095: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/55] Installing libva-2.18.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/55] Extracting libva-2.18.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/55] Installing aom-3.6.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/55] Extracting aom-3.6.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/55] Installing lame-3.100_4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/55] Extracting lame-3.100_4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/55] Installing libass-0.17.1_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/55] Extracting libass-0.17.1_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/55] Installing opus-1.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/55] Extracting opus-1.4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/55] Installing svt-av1-1.7.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/55] Extracting svt-av1-1.7.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/55] Installing libplacebo-5.264.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/55] Extracting libplacebo-5.264.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/55] Installing libvdpau-1.5...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/55] Extracting libvdpau-1.5: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/55] Installing webp-1.3.0_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/55] Extracting webp-1.3.0_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/55] Installing libv4l-1.23.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/55] Extracting libv4l-1.23.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/55] Installing x265-3.4_2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/55] Extracting x265-3.4_2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/55] Installing libvorbis-1.3.7_2,3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/55] Extracting libvorbis-1.3.7_2,3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/55] Installing dav1d-1.2.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/55] Extracting dav1d-1.2.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/55] Installing libvpx-1.13.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/55] Extracting libvpx-1.13.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/55] Installing ffmpeg-6.0,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/55] Extracting ffmpeg-6.0,1: .......... done
Generating gdk-pixbuf modules cache
Building the Shared MIME-Info database cache
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.12.1_2:

--
The 2.7.x series now uses the new subpixel hinting mode (V40 port's option) as
the default, emulating a modern version of ClearType. This change inevitably
leads to different rendering results, and you might change port's options to
adapt it to your taste (or use the new "FREETYPE_PROPERTIES" environment
variable).

The environment variable "FREETYPE_PROPERTIES" can be used to control the
driver properties. Example:

FREETYPE_PROPERTIES=truetype:interpreter-version=35 \
	cff:no-stem-darkening=1 \
	autofitter:warping=1

This allows to select, say, the subpixel hinting mode at runtime for a given
application.

If LONG_PCF_NAMES port's option was enabled, the PCF family names may include
the foundry and information whether they contain wide characters. For example,
"Sony Fixed" or "Misc Fixed Wide", instead of "Fixed". This can be disabled at
run time with using pcf:no-long-family-names property, if needed. Example:

FREETYPE_PROPERTIES=pcf:no-long-family-names=1

How to recreate fontconfig cache with using such environment variable,
if needed:
# env FREETYPE_PROPERTIES=pcf:no-long-family-names=1 fc-cache -fsv

The controllable properties are listed in the section "Controlling FreeType
Modules" in the reference's table of contents
(/usr/local/share/doc/freetype2/reference/index.html, if documentation was installed).
=====
Message from wayland-1.22.0:

--
Wayland requires XDG_RUNTIME_DIR to be defined to a path that will
contain "wayland-%d" unix(4) sockets. This is usually handled by
consolekit2 (via ck-launch-session) or pam_xdg (via login).
=====
Message from libjxl-0.8.2:

--
Additional packages recommended for new users:
- imlib2-jxl (e.g., feh, scrot)
- kf5-kimageformats (e.g., nomacs, flameshot, skanlite)
- gimp-jxl-plugin
Step 31: Install package rubygem-bundler
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 4 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libyaml: 0.2.5
	ruby: 3.1.4_1,1
	ruby31-gems: 3.4.13
	rubygem-bundler: 2.4.13,1

Number of packages to be installed: 4

The process will require 46 MiB more space.
9 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching ruby-3.1.4_1,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching libyaml-0.2.5.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching rubygem-bundler-2.4.13,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching ruby31-gems-3.4.13.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Installing libyaml-0.2.5...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting libyaml-0.2.5: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Installing ruby-3.1.4_1,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting ruby-3.1.4_1,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Installing ruby31-gems-3.4.13...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting ruby31-gems-3.4.13: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Installing rubygem-bundler-2.4.13,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting rubygem-bundler-2.4.13,1: .......... done
=====
Message from ruby-3.1.4_1,1:

--
Some of the standard commands and libraries are provided as separate
ports for ease of upgrading:

	devel/ruby-gems:		gem - RubyGems package manager
	devel/rubygem-debug:		debug - Debugging functionality for Ruby
	devel/rubygem-erb:		erb - Templating system for Ruby
	devel/rubygem-irb:		irb - Interactive Ruby
	devel/rubygem-minitest:		minitest - Complete suite of testing facilities
	devel/rubygem-power_assert:	power_assert - Power Assert for Ruby
	devel/rubygem-rake:		rake - Ruby Make
	devel/rubygem-rbs:		rbs - Language for type signatures for Ruby and standard library definitions
	devel/rubygem-rdoc:		rdoc - Ruby Documentation System
	devel/rubygem-test-unit:	test-unit - Unit testing framework for Ruby
	devel/rubygem-typeprof:		typeprof - Type analysis tool for Ruby code
	ftp/rubygem-net-ftp:		net-ftp - Support for the File Transfer Protocol
	mail/rubygem-net-imap:		net-imap - Ruby client api for Internet Message Access Protocol
	mail/rubygem-net-pop:		net-pop - Ruby client library for POP3
	mail/rubygem-net-smtp:		net-smtp - Simple Mail Transfer Protocol client library for Ruby
	math/rubygem-matrix:		matrix - Implementation of Matrix and Vector classes
	math/rubygem-prime:		prime - Prime numbers and factorization library
	sysutils/rubygem-bundler:	bundler - Tool that manages gem dependencies for ruby applications
	textproc/rubygem-rexml:		rexml - XML toolkit for Ruby
	www/rubygem-rss:		rss - Family of libraries that support various formats of XML "feeds"

And some of the standard libraries are provided as separate ports
since they require extra dependencies:

	databases/rubygem-dbm:	DBM module
	databases/rubygem-gdbm:	GDBM module

Install them as occasion demands.
Step 32: Install package ImageMagick7-nox11
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 28 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ImageMagick7-nox11: 7.1.0.62_5
	avahi-app: 0.8_1
	cups: 2.4.6
	dbus: 1.14.6,1
	dbus-glib: 0.112
	fftw3: 3.3.10_3
	gdbm: 1.23
	ghostscript9-agpl-base: 9.56.1_11
	gnome_subr: 1.0
	gsfonts: 8.11_8
	jbig2dec: 0.19
	libICE: 1.1.0_1,1
	libSM: 1.2.3,1
	libdaemon: 0.14_1
	libde265: 1.0.12
	libevent: 2.1.12
	libgd: 2.3.3_5,1
	libheif: 1.16.1
	libidn: 1.38
	liblqr-1: 0.4.2
	libltdl: 2.4.7
	libpaper: 1.1.28
	libraw: 0.21.1_1
	libwmf-nox11: 0.2.13
	libzip: 1.10.0
	openjpeg: 2.5.0
	pkgconf: 1.8.1,1
	poppler-data: 0.4.12

Number of packages to be installed: 28

The process will require 133 MiB more space.
39 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/28] Fetching libzip-1.10.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/28] Fetching openjpeg-2.5.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/28] Fetching libgd-2.3.3_5,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/28] Fetching ghostscript9-agpl-base-9.56.1_11.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/28] Fetching ImageMagick7-nox11-7.1.0.62_5.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/28] Fetching libevent-2.1.12.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/28] Fetching gdbm-1.23.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/28] Fetching avahi-app-0.8_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/28] Fetching dbus-1.14.6,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/28] Fetching dbus-glib-0.112.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/28] Fetching jbig2dec-0.19.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/28] Fetching libltdl-2.4.7.pkg: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/28] Fetching libwmf-nox11-0.2.13.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/28] Fetching fftw3-3.3.10_3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/28] Fetching libdaemon-0.14_1.pkg: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/28] Fetching gsfonts-8.11_8.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/28] Fetching poppler-data-0.4.12.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/28] Fetching cups-2.4.6.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/28] Fetching libidn-1.38.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/28] Fetching liblqr-1-0.4.2.pkg: ...... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/28] Fetching gnome_subr-1.0.pkg: . done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/28] Fetching libpaper-1.1.28.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/28] Fetching libraw-0.21.1_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/28] Fetching pkgconf-1.8.1,1.pkg: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/28] Fetching libde265-1.0.12.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/28] Fetching libICE-1.1.0_1,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/28] Fetching libSM-1.2.3,1.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/28] Fetching libheif-1.16.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/28] Installing libICE-1.1.0_1,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/28] Extracting libICE-1.1.0_1,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/28] Installing libSM-1.2.3,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/28] Extracting libSM-1.2.3,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/28] Installing dbus-1.14.6,1...
===> Creating groups.
Creating group 'messagebus' with gid '556'.
===> Creating users
Creating user 'messagebus' with uid '556'.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/28] Extracting dbus-1.14.6,1: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/28] Installing libevent-2.1.12...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/28] Extracting libevent-2.1.12: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/28] Installing gdbm-1.23...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/28] Extracting gdbm-1.23: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/28] Installing dbus-glib-0.112...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/28] Extracting dbus-glib-0.112: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/28] Installing libdaemon-0.14_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/28] Extracting libdaemon-0.14_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/28] Installing gnome_subr-1.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/28] Extracting gnome_subr-1.0: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/28] Installing avahi-app-0.8_1...
===> Creating groups.
Creating group 'avahi' with gid '558'.
===> Creating users
Creating user 'avahi' with uid '558'.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/28] Extracting avahi-app-0.8_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/28] Installing libpaper-1.1.28...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/28] Extracting libpaper-1.1.28: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/28] Installing openjpeg-2.5.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/28] Extracting openjpeg-2.5.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/28] Installing libgd-2.3.3_5,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/28] Extracting libgd-2.3.3_5,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/28] Installing jbig2dec-0.19...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/28] Extracting jbig2dec-0.19: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/28] Installing poppler-data-0.4.12...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/28] Extracting poppler-data-0.4.12: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/28] Installing cups-2.4.6...
===> Creating groups.
Creating group 'cups' with gid '193'.
===> Creating users
Creating user 'cups' with uid '193'.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/28] Extracting cups-2.4.6: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/28] Installing libidn-1.38...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/28] Extracting libidn-1.38: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/28] Installing libde265-1.0.12...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/28] Extracting libde265-1.0.12: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/28] Installing libzip-1.10.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/28] Extracting libzip-1.10.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/28] Installing ghostscript9-agpl-base-9.56.1_11...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/28] Extracting ghostscript9-agpl-base-9.56.1_11: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/28] Installing libltdl-2.4.7...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/28] Extracting libltdl-2.4.7: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/28] Installing libwmf-nox11-0.2.13...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/28] Extracting libwmf-nox11-0.2.13: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/28] Installing fftw3-3.3.10_3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/28] Extracting fftw3-3.3.10_3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/28] Installing gsfonts-8.11_8...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/28] Extracting gsfonts-8.11_8: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/28] Installing liblqr-1-0.4.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/28] Extracting liblqr-1-0.4.2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/28] Installing libraw-0.21.1_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/28] Extracting libraw-0.21.1_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/28] Installing pkgconf-1.8.1,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/28] Extracting pkgconf-1.8.1,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/28] Installing libheif-1.16.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/28] Extracting libheif-1.16.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/28] Installing ImageMagick7-nox11-7.1.0.62_5...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/28] Extracting ImageMagick7-nox11-7.1.0.62_5: .......... done
Generating gdk-pixbuf modules cache
=====
Message from ghostscript9-agpl-base-9.56.1_11:

--
This package installs a script named dvipdf that depends on dvips.  If you
want to use this script you need to install print/tex-dvipsk.
=====
Message from libwmf-nox11-0.2.13:

--
===>   NOTICE:

The libwmf-nox11 port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from gsfonts-8.11_8:

--
===>   NOTICE:

The gsfonts port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from liblqr-1-0.4.2:

--
NOTE: In order to compile examples for liblqr, you will
also need pngwriter port (/usr/ports/graphics/pngwriter).
Examples are located in /usr/local/share/examples/liblqr-1
Step 33: Install package libidn
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 34: Install package icu
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 35: Install package bison
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	bison: 3.8.2,1
	libtextstyle: 0.21.1

Number of packages to be installed: 2

The process will require 6 MiB more space.
1 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libtextstyle-0.21.1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching bison-3.8.2,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libtextstyle-0.21.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libtextstyle-0.21.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing bison-3.8.2,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting bison-3.8.2,1: .......... done
Step 36: Install package libyaml
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 37: Install package libffi
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 38: Install package libxml2
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 39: Install package libxslt
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libxslt: 1.1.37

Number of packages to be installed: 1

The process will require 2 MiB more space.
279 KiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libxslt-1.1.37.pkg: .......... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libxslt-1.1.37...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libxslt-1.1.37: .......... done
Step 40: Install package libyaml
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 41: Install package readline
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 42: Instal package rubygem-psych3
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	rubygem-psych3: 3.3.4

Number of packages to be installed: 1

34 KiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching rubygem-psych3-3.3.4.pkg: ..... done
Checking integrity... done (0 conflicting)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing rubygem-psych3-3.3.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting rubygem-psych3-3.3.4: .......... done
Step 43: Install package mastodon
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 22 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ImageMagick7: 7.1.0.62_5
	cairo: 1.17.4_2,3
	dejavu: 2.37_1
	encodings: 1.0.5,1
	font-bh-ttf: 1.0.3_4
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_4
	ghostscript9-agpl-x11: 9.56.1
	libXft: 2.3.7
	libXt: 1.2.1,1
	libdatrie: 0.2.13_1
	libfontenc: 1.1.4
	libglvnd: 1.6.0
	libraqm: 0.10.1
	librsvg2-rust: 2.56.3
	libthai: 0.1.29
	libwmf: 0.2.13
	mastodon: 4.1.2_2
	mkfontscale: 1.2.1
	pango: 1.50.14
	pixman: 0.42.2
	xorg-fonts-truetype: 7.7_1

Number of packages to be installed: 22

The process will require 149 MiB more space.
46 MiB to be downloaded.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/22] Fetching libglvnd-1.6.0.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/22] Fetching libwmf-0.2.13.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/22] Fetching libthai-0.1.29.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/22] Fetching ghostscript9-agpl-x11-9.56.1.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/22] Fetching libXft-2.3.7.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/22] Fetching cairo-1.17.4_2,3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/22] Fetching font-misc-meltho-1.0.3_4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/22] Fetching ImageMagick7-7.1.0.62_5.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/22] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/22] Fetching dejavu-2.37_1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/22] Fetching libdatrie-0.2.13_1.pkg: ..... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/22] Fetching libraqm-0.10.1.pkg: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/22] Fetching librsvg2-rust-2.56.3.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/22] Fetching libXt-1.2.1,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/22] Fetching mkfontscale-1.2.1.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/22] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/22] Fetching encodings-1.0.5,1.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/22] Fetching mastodon-4.1.2_2.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/22] Fetching libfontenc-1.1.4.pkg: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/22] Fetching font-bh-ttf-1.0.3_4.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/22] Fetching pango-1.50.14.pkg: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/22] Fetching pixman-0.42.2.pkg: .......... done
Checking integrity... done (3 conflicting)
  - libwmf-0.2.13 conflicts with libwmf-nox11-0.2.13 on /usr/local/bin/libwmf-config
  - libwmf-0.2.13 conflicts with libwmf-nox11-0.2.13 on /usr/local/bin/libwmf-config
  - ImageMagick7-7.1.0.62_5 conflicts with ImageMagick7-nox11-7.1.0.62_5 on /usr/local/bin/Magick++-config
Checking integrity... done (0 conflicting)
Conflicts with the existing packages have been found.
One more solver iteration is needed to resolve them.
The following 24 package(s) will be affected (of 0 checked):

Installed packages to be REMOVED:
	ImageMagick7-nox11: 7.1.0.62_5
	libwmf-nox11: 0.2.13

New packages to be INSTALLED:
	ImageMagick7: 7.1.0.62_5
	cairo: 1.17.4_2,3
	dejavu: 2.37_1
	encodings: 1.0.5,1
	font-bh-ttf: 1.0.3_4
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_4
	ghostscript9-agpl-x11: 9.56.1
	libXft: 2.3.7
	libXt: 1.2.1,1
	libdatrie: 0.2.13_1
	libfontenc: 1.1.4
	libglvnd: 1.6.0
	libraqm: 0.10.1
	librsvg2-rust: 2.56.3
	libthai: 0.1.29
	libwmf: 0.2.13
	mastodon: 4.1.2_2
	mkfontscale: 1.2.1
	pango: 1.50.14
	pixman: 0.42.2
	xorg-fonts-truetype: 7.7_1

Number of packages to be removed: 2
Number of packages to be installed: 22

The process will require 117 MiB more space.
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/24] Deinstalling ImageMagick7-nox11-7.1.0.62_5...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/24] Deleting files for ImageMagick7-nox11-7.1.0.62_5: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/24] Deinstalling libwmf-nox11-0.2.13...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/24] Deleting files for libwmf-nox11-0.2.13: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/24] Installing libfontenc-1.1.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/24] Extracting libfontenc-1.1.4: ......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/24] Installing mkfontscale-1.2.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/24] Extracting mkfontscale-1.2.1: ....... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/24] Installing libglvnd-1.6.0...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/24] Extracting libglvnd-1.6.0: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/24] Installing font-misc-meltho-1.0.3_4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/24] Extracting font-misc-meltho-1.0.3_4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/24] Installing dejavu-2.37_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/24] Extracting dejavu-2.37_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/24] Installing libdatrie-0.2.13_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/24] Extracting libdatrie-0.2.13_1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/24] Installing font-misc-ethiopic-1.0.4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/24] Extracting font-misc-ethiopic-1.0.4: ...... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/24] Installing encodings-1.0.5,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/24] Extracting encodings-1.0.5,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/24] Installing font-bh-ttf-1.0.3_4...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/24] Extracting font-bh-ttf-1.0.3_4: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/24] Installing pixman-0.42.2...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/24] Extracting pixman-0.42.2: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/24] Installing libthai-0.1.29...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/24] Extracting libthai-0.1.29: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/24] Installing libXft-2.3.7...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/24] Extracting libXft-2.3.7: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/24] Installing cairo-1.17.4_2,3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/24] Extracting cairo-1.17.4_2,3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/24] Installing xorg-fonts-truetype-7.7_1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/24] Extracting xorg-fonts-truetype-7.7_1: ... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/24] Installing libXt-1.2.1,1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/24] Extracting libXt-1.2.1,1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/24] Installing pango-1.50.14...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/24] Extracting pango-1.50.14: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/24] Installing libwmf-0.2.13...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/24] Extracting libwmf-0.2.13: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/24] Installing ghostscript9-agpl-x11-9.56.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/24] Extracting ghostscript9-agpl-x11-9.56.1: .... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/24] Installing libraqm-0.10.1...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/24] Extracting libraqm-0.10.1: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/24] Installing librsvg2-rust-2.56.3...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/24] Extracting librsvg2-rust-2.56.3: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/24] Installing ImageMagick7-7.1.0.62_5...
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/24] Extracting ImageMagick7-7.1.0.62_5: .......... done
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/24] Installing mastodon-4.1.2_2...
===> Creating groups.
Creating group 'mastodon' with gid '244'.
===> Creating users
Creating user 'mastodon' with uid '244'.
===> Creating homedir(s)
[mastodon-s3-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/24] Extracting mastodon-4.1.2_2: .......... done
Generating gdk-pixbuf modules cache
Running fc-cache to build fontconfig cache...
=====
Message from dejavu-2.37_1:

--
Make sure that the freetype module is loaded.  If it is not, add the following
line to the "Modules" section of your X Windows configuration file:

	Load "freetype"

Add the following line to the "Files" section of X Windows configuration file:

	FontPath "/usr/local/share/fonts/dejavu/"

Note: your X Windows configuration file is typically /etc/X11/XF86Config
if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org.
=====
Message from libthai-0.1.29:

--
===>   NOTICE:

The libthai port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from libwmf-0.2.13:

--
===>   NOTICE:

The libwmf port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from mastodon-4.1.2_2:

--
############################################################
Visit this URL to get started with Mastodon.
https://wiki.freebsd.org/Ports/net-im/mastodon
############################################################
Step 44: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/libpsl-0.21.2_3.pkg
	/var/cache/pkg/xxhash-0.8.1_2~22103e30b8.pkg
	/var/cache/pkg/readline-8.2.1~79fa263862.pkg
	/var/cache/pkg/nano-7.2~dcbf5706ed.pkg
	/var/cache/pkg/libiconv-1.17.pkg
	/var/cache/pkg/curl-8.1.2~decc7358d0.pkg
	/var/cache/pkg/libnghttp2-1.53.0.pkg
	/var/cache/pkg/libnghttp2-1.53.0~0053b245cf.pkg
	/var/cache/pkg/zstd-1.5.5~004f08fc68.pkg
	/var/cache/pkg/oniguruma-6.9.8_1~e5394f3141.pkg
	/var/cache/pkg/sudo-1.9.14p3~512da96b37.pkg
	/var/cache/pkg/libidn2-2.3.4~195d30d193.pkg
	/var/cache/pkg/libiconv-1.17~3784ca2446.pkg
	/var/cache/pkg/nano-7.2.pkg
	/var/cache/pkg/oniguruma-6.9.8_1.pkg
	/var/cache/pkg/zstd-1.5.5.pkg
	/var/cache/pkg/jo-1.6.pkg
	/var/cache/pkg/rsync-3.2.7~b76b768c0d.pkg
	/var/cache/pkg/bash-5.2.15~9d8d31e49f.pkg
	/var/cache/pkg/libpsl-0.21.2_3~957241a3cd.pkg
	/var/cache/pkg/xxhash-0.8.1_2.pkg
	/var/cache/pkg/liblz4-1.9.4,1~2ca3e7ee10.pkg
	/var/cache/pkg/indexinfo-0.3.1~fd3d922bbc.pkg
	/var/cache/pkg/openssl-1.1.1v,1.pkg
	/var/cache/pkg/rsync-3.2.7.pkg
	/var/cache/pkg/jq-1.6.pkg
	/var/cache/pkg/bash-5.2.15.pkg
	/var/cache/pkg/sudo-1.9.14p3.pkg
	/var/cache/pkg/jo-1.6~2017109813.pkg
	/var/cache/pkg/libidn2-2.3.4.pkg
	/var/cache/pkg/jq-1.6~b690353873.pkg
	/var/cache/pkg/openssl-1.1.1v,1~f18cd61968.pkg
	/var/cache/pkg/libssh2-1.11.0,3.pkg
	/var/cache/pkg/ca_root_nss-3.89.1.pkg
	/var/cache/pkg/readline-8.2.1.pkg
	/var/cache/pkg/libssh2-1.11.0,3~4e04cb57e0.pkg
	/var/cache/pkg/libunistring-1.1~e90d520587.pkg
	/var/cache/pkg/liblz4-1.9.4,1.pkg
	/var/cache/pkg/indexinfo-0.3.1.pkg
	/var/cache/pkg/curl-8.1.2.pkg
	/var/cache/pkg/ca_root_nss-3.89.1~1e31f81529.pkg
	/var/cache/pkg/gettext-runtime-0.21.1.pkg
	/var/cache/pkg/gettext-runtime-0.21.1~f826fcaaa4.pkg
	/var/cache/pkg/libunistring-1.1.pkg
The cleanup will free 13 MiB
Deleting files: .......... done
All done
Step 45: enable corepack
Step 46: Add node-gyp to yarn
yarn add v1.22.19
info No lockfile found.
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Saved lockfile.
success Saved 89 new dependencies.
info Direct dependencies
└─ node-gyp@9.4.0
info All dependencies
├─ @isaacs/cliui@8.0.2
├─ @npmcli/fs@3.1.0
├─ @pkgjs/parseargs@0.11.0
├─ @tootallnate/once@2.0.0
├─ abbrev@1.1.1
├─ agent-base@6.0.2
├─ agentkeepalive@4.5.0
├─ aggregate-error@3.1.0
├─ ansi-styles@4.3.0
├─ aproba@2.0.0
├─ are-we-there-yet@3.0.1
├─ brace-expansion@1.1.11
├─ cacache@17.1.4
├─ chownr@2.0.0
├─ clean-stack@2.2.0
├─ color-convert@2.0.1
├─ color-name@1.1.4
├─ color-support@1.1.3
├─ concat-map@0.0.1
├─ cross-spawn@7.0.3
├─ debug@4.3.4
├─ delegates@1.0.0
├─ eastasianwidth@0.2.0
├─ encoding@0.1.13
├─ env-paths@2.2.1
├─ err-code@2.0.3
├─ exponential-backoff@3.1.1
├─ foreground-child@3.1.1
├─ fs-minipass@2.1.0
├─ fs.realpath@1.0.0
├─ gauge@4.0.4
├─ glob@7.2.3
├─ graceful-fs@4.2.11
├─ has-unicode@2.0.1
├─ http-cache-semantics@4.1.1
├─ http-proxy-agent@5.0.0
├─ https-proxy-agent@5.0.1
├─ humanize-ms@1.2.1
├─ iconv-lite@0.6.3
├─ imurmurhash@0.1.4
├─ indent-string@4.0.0
├─ inflight@1.0.6
├─ inherits@2.0.4
├─ ip@2.0.0
├─ is-lambda@1.0.1
├─ isexe@2.0.0
├─ jackspeak@2.3.3
├─ make-fetch-happen@11.1.1
├─ minimatch@3.1.2
├─ minipass-collect@1.0.2
├─ minipass-fetch@3.0.4
├─ minipass-sized@1.0.3
├─ minizlib@2.1.2
├─ mkdirp@1.0.4
├─ ms@2.1.2
├─ negotiator@0.6.3
├─ node-gyp@9.4.0
├─ nopt@6.0.0
├─ npmlog@6.0.2
├─ p-map@4.0.0
├─ path-is-absolute@1.0.1
├─ path-key@3.1.1
├─ path-scurry@1.10.1
├─ promise-retry@2.0.1
├─ readable-stream@3.6.2
├─ retry@0.12.0
├─ rimraf@3.0.2
├─ safe-buffer@5.2.1
├─ safer-buffer@2.1.2
├─ set-blocking@2.0.0
├─ shebang-command@2.0.0
├─ shebang-regex@3.0.0
├─ signal-exit@3.0.7
├─ smart-buffer@4.2.0
├─ socks-proxy-agent@7.0.0
├─ socks@2.7.1
├─ string_decoder@1.3.0
├─ string-width-cjs@4.2.3
├─ string-width@4.2.3
├─ strip-ansi-cjs@6.0.1
├─ strip-ansi@6.0.1
├─ tar@6.2.0
├─ unique-filename@3.0.0
├─ unique-slug@4.0.0
├─ util-deprecate@1.0.2
├─ which@2.0.2
├─ wide-align@1.1.5
├─ wrap-ansi-cjs@7.0.0
└─ wrap-ansi@8.1.0
Done in 8.86s.
Step 47: user mastodon - set yarn classic
warning ../../../../package.json: No license field
Resolving classic to a url...
Downloading https://github.com/yarnpkg/yarn/releases/download/v1.22.19/yarn-1.22.19.js...
Saving it into /usr/local/www/mastodon/.yarn/releases/yarn-1.22.19.cjs...
Updating /usr/local/www/mastodon/.yarnrc...
Done!
Step 48: user mastodon - enable deployment
Step 49: user mastodon - remove development and test environments
Step 50: user mastodon - bundle install
Fetching gem metadata from https://rubygems.org/.........
Fetching https://github.com/ClearlyClaire/webpush.git
Fetching rake 13.0.6
Installing rake 13.0.6
Fetching concurrent-ruby 1.2.0
Installing concurrent-ruby 1.2.0
Fetching i18n 1.12.0
Installing i18n 1.12.0
Fetching minitest 5.17.0
Installing minitest 5.17.0
Fetching tzinfo 2.0.6
Installing tzinfo 2.0.6
Fetching zeitwerk 2.6.6
Installing zeitwerk 2.6.6
Fetching activesupport 6.1.7.2
Installing activesupport 6.1.7.2
Fetching builder 3.2.4
Installing builder 3.2.4
Fetching erubi 1.12.0
Installing erubi 1.12.0
Fetching mini_portile2 2.8.1
Installing mini_portile2 2.8.1
Fetching racc 1.6.2
Installing racc 1.6.2 with native extensions
Fetching nokogiri 1.14.1
Installing nokogiri 1.14.1 with native extensions
Fetching rails-dom-testing 2.0.3
Installing rails-dom-testing 2.0.3
Fetching crass 1.0.6
Installing crass 1.0.6
Fetching loofah 2.19.1
Installing loofah 2.19.1
Fetching rails-html-sanitizer 1.5.0
Installing rails-html-sanitizer 1.5.0
Fetching actionview 6.1.7.2
Installing actionview 6.1.7.2
Fetching rack 2.2.6.2
Installing rack 2.2.6.2
Fetching rack-test 2.0.2
Installing rack-test 2.0.2
Fetching actionpack 6.1.7.2
Installing actionpack 6.1.7.2
Fetching nio4r 2.5.8
Installing nio4r 2.5.8 with native extensions
Fetching websocket-extensions 0.1.5
Installing websocket-extensions 0.1.5
Fetching websocket-driver 0.7.5
Installing websocket-driver 0.7.5 with native extensions
Fetching actioncable 6.1.7.2
Installing actioncable 6.1.7.2
Fetching globalid 1.1.0
Installing globalid 1.1.0
Fetching activejob 6.1.7.2
Installing activejob 6.1.7.2
Fetching activemodel 6.1.7.2
Installing activemodel 6.1.7.2
Fetching activerecord 6.1.7.2
Installing activerecord 6.1.7.2
Fetching marcel 1.0.2
Installing marcel 1.0.2
Fetching mini_mime 1.1.2
Installing mini_mime 1.1.2
Fetching activestorage 6.1.7.2
Installing activestorage 6.1.7.2
Fetching date 3.3.3
Installing date 3.3.3 with native extensions
Fetching timeout 0.3.1
Installing timeout 0.3.1
Fetching net-protocol 0.2.1
Installing net-protocol 0.2.1
Fetching net-imap 0.3.4
Installing net-imap 0.3.4
Fetching net-pop 0.1.2
Installing net-pop 0.1.2
Fetching net-smtp 0.3.3
Installing net-smtp 0.3.3
Fetching mail 2.8.0.1
Installing mail 2.8.0.1
Fetching actionmailbox 6.1.7.2
Installing actionmailbox 6.1.7.2
Fetching actionmailer 6.1.7.2
Installing actionmailer 6.1.7.2
Fetching actiontext 6.1.7.2
Installing actiontext 6.1.7.2
Fetching case_transform 0.2
Installing case_transform 0.2
Fetching jsonapi-renderer 0.2.2
Installing jsonapi-renderer 0.2.2
Fetching active_model_serializers 0.10.13
Installing active_model_serializers 0.10.13
Fetching public_suffix 5.0.1
Installing public_suffix 5.0.1
Fetching addressable 2.8.1
Installing addressable 2.8.1
Fetching aes_key_wrap 1.1.0
Installing aes_key_wrap 1.1.0
Fetching android_key_attestation 0.3.0
Installing android_key_attestation 0.3.0
Fetching encryptor 3.0.0
Installing encryptor 3.0.0
Fetching attr_encrypted 3.1.0
Installing attr_encrypted 3.1.0
Fetching attr_required 1.0.1
Installing attr_required 1.0.1
Fetching awrence 1.2.1
Installing awrence 1.2.1
Fetching aws-eventstream 1.2.0
Installing aws-eventstream 1.2.0
Fetching aws-partitions 1.701.0
Installing aws-partitions 1.701.0
Fetching aws-sigv4 1.5.2
Installing aws-sigv4 1.5.2
Fetching jmespath 1.6.2
Installing jmespath 1.6.2
Fetching aws-sdk-core 3.170.0
Installing aws-sdk-core 3.170.0
Fetching aws-sdk-kms 1.62.0
Installing aws-sdk-kms 1.62.0
Fetching aws-sdk-s3 1.119.0
Installing aws-sdk-s3 1.119.0
Fetching bcrypt 3.1.17
Installing bcrypt 3.1.17 with native extensions
Fetching bindata 2.4.14
Installing bindata 2.4.14
Fetching blurhash 0.1.7
Installing blurhash 0.1.7 with native extensions
Fetching msgpack 1.6.0
Installing msgpack 1.6.0 with native extensions
Fetching bootsnap 1.16.0
Installing bootsnap 1.16.0 with native extensions
Fetching browser 4.2.0
Installing browser 4.2.0
Fetching redis 4.5.1
Installing redis 4.5.1
Fetching brpoplpush-redis_script 0.1.3
Installing brpoplpush-redis_script 0.1.3
Using bundler 2.4.13
Fetching cbor 0.5.9.6
Installing cbor 0.5.9.6 with native extensions
Fetching charlock_holmes 0.7.7
Installing charlock_holmes 0.7.7 with native extensions
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching elasticsearch-api 7.13.3
Installing elasticsearch-api 7.13.3
Fetching faraday-em_http 1.0.0
Installing faraday-em_http 1.0.0
Fetching faraday-em_synchrony 1.0.0
Installing faraday-em_synchrony 1.0.0
Fetching faraday-excon 1.1.0
Installing faraday-excon 1.1.0
Fetching faraday-httpclient 1.0.1
Installing faraday-httpclient 1.0.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching faraday-multipart 1.0.3
Installing faraday-multipart 1.0.3
Fetching faraday-net_http 1.0.1
Installing faraday-net_http 1.0.1
Fetching faraday-net_http_persistent 1.2.0
Installing faraday-net_http_persistent 1.2.0
Fetching faraday-patron 1.0.0
Installing faraday-patron 1.0.0
Fetching faraday-rack 1.0.0
Installing faraday-rack 1.0.0
Fetching faraday-retry 1.0.3
Installing faraday-retry 1.0.3
Fetching ruby2_keywords 0.0.5
Installing ruby2_keywords 0.0.5
Fetching faraday 1.9.3
Installing faraday 1.9.3
Fetching elasticsearch-transport 7.13.3
Installing elasticsearch-transport 7.13.3
Fetching elasticsearch 7.13.3
Installing elasticsearch 7.13.3
Fetching elasticsearch-dsl 0.1.10
Installing elasticsearch-dsl 0.1.10
Fetching chewy 7.2.4
Installing chewy 7.2.4
Fetching chunky_png 1.4.0
Installing chunky_png 1.4.0
Fetching climate_control 0.2.0
Installing climate_control 0.2.0
Fetching cocoon 1.2.15
Installing cocoon 1.2.15
Fetching color_diff 0.1
Installing color_diff 0.1
Fetching connection_pool 2.3.0
Installing connection_pool 2.3.0
Fetching openssl 3.0.0
Installing openssl 3.0.0 with native extensions
Fetching openssl-signature_algorithm 1.2.1
Installing openssl-signature_algorithm 1.2.1
Fetching cose 1.2.1
Installing cose 1.2.1
Fetching css_parser 1.12.0
Installing css_parser 1.12.0
Fetching orm_adapter 0.5.0
Installing orm_adapter 0.5.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching thor 1.2.1
Installing thor 1.2.1
Fetching railties 6.1.7.2
Installing railties 6.1.7.2
Fetching responders 3.0.1
Installing responders 3.0.1
Fetching warden 1.2.9
Installing warden 1.2.9
Fetching devise 4.8.1
Installing devise 4.8.1
Fetching rotp 6.2.0
Installing rotp 6.2.0
Fetching devise-two-factor 4.0.2
Installing devise-two-factor 4.0.2
Fetching discard 1.2.1
Installing discard 1.2.1
Fetching unf_ext 0.0.8.2
Installing unf_ext 0.0.8.2 with native extensions
Fetching unf 0.1.4
Installing unf 0.1.4
Fetching domain_name 0.5.20190701
Installing domain_name 0.5.20190701
Fetching doorkeeper 5.6.4
Installing doorkeeper 5.6.4
Fetching dotenv 2.8.1
Installing dotenv 2.8.1
Fetching dotenv-rails 2.8.1
Installing dotenv-rails 2.8.1
Fetching ed25519 1.3.0
Installing ed25519 1.3.0 with native extensions
Fetching et-orbi 1.2.7
Installing et-orbi 1.2.7
Fetching excon 0.95.0
Installing excon 0.95.0
Fetching fast_blank 1.0.1
Installing fast_blank 1.0.1 with native extensions
Fetching fastimage 2.2.6
Installing fastimage 2.2.6
Fetching ffi 1.15.5
Installing ffi 1.15.5 with native extensions
Fetching ffi-compiler 1.0.1
Installing ffi-compiler 1.0.1
Fetching formatador 0.3.0
Installing formatador 0.3.0
Fetching mime-types-data 3.2022.0105
Installing mime-types-data 3.2022.0105
Fetching mime-types 3.4.1
Installing mime-types 3.4.1
Fetching fog-core 2.1.0
Installing fog-core 2.1.0
Fetching fog-json 1.2.0
Installing fog-json 1.2.0
Fetching ipaddress 0.8.3
Installing ipaddress 0.8.3
Fetching fog-openstack 0.3.10
Installing fog-openstack 0.3.10
Fetching raabro 1.4.0
Installing raabro 1.4.0
Fetching fugit 1.7.1
Installing fugit 1.7.1
Fetching hashie 5.0.0
Installing hashie 5.0.0
Fetching omniauth 1.9.2
Installing omniauth 1.9.2
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching json-jwt 1.15.3
Installing json-jwt 1.15.3
Fetching rack-oauth2 1.21.3
Installing rack-oauth2 1.21.3
Fetching swd 1.3.0
Installing swd 1.3.0
Fetching validate_email 0.1.6
Installing validate_email 0.1.6
Fetching validate_url 1.0.15
Installing validate_url 1.0.15
Fetching webfinger 1.2.0
Installing webfinger 1.2.0
Fetching openid_connect 1.4.2
Installing openid_connect 1.4.2
Fetching gitlab-omniauth-openid-connect 0.10.1
Installing gitlab-omniauth-openid-connect 0.10.1
Fetching temple 0.8.2
Installing temple 0.8.2
Fetching tilt 2.0.11
Installing tilt 2.0.11
Fetching hamlit 2.13.0
Installing hamlit 2.13.0 with native extensions
Fetching hamlit-rails 0.2.3
Installing hamlit-rails 0.2.3
Fetching hiredis 0.6.3
Installing hiredis 0.6.3 with native extensions
Fetching hkdf 0.3.0
Installing hkdf 0.3.0
Fetching htmlentities 4.3.4
Installing htmlentities 4.3.4
Fetching http-cookie 1.0.5
Installing http-cookie 1.0.5
Fetching http-form_data 2.3.0
Installing http-form_data 2.3.0
Fetching llhttp-ffi 0.4.0
Installing llhttp-ffi 0.4.0 with native extensions
Fetching http 5.1.1
Installing http 5.1.1
Fetching http_accept_language 2.1.1
Installing http_accept_language 2.1.1
Fetching rainbow 3.1.1
Installing rainbow 3.1.1
Fetching httplog 1.6.2
Installing httplog 1.6.2
Fetching idn-ruby 0.1.5
Installing idn-ruby 0.1.5 with native extensions
Fetching json-canonicalization 0.3.0
Installing json-canonicalization 0.3.0
Fetching link_header 0.0.8
Installing link_header 0.0.8
Fetching rdf 3.2.9
Installing rdf 3.2.9
Fetching json-ld 3.2.3
Installing json-ld 3.2.3
Fetching json-ld-preloaded 3.2.2
Installing json-ld-preloaded 3.2.2
Fetching jwt 2.5.0
Installing jwt 2.5.0
Fetching kaminari-core 1.2.2
Installing kaminari-core 1.2.2
Fetching kaminari-actionview 1.2.2
Installing kaminari-actionview 1.2.2
Fetching kaminari-activerecord 1.2.2
Installing kaminari-activerecord 1.2.2
Fetching kaminari 1.2.2
Installing kaminari 1.2.2
Fetching terrapin 0.6.0
Installing terrapin 0.6.0
Fetching kt-paperclip 7.1.1
Installing kt-paperclip 7.1.1
Fetching request_store 1.5.1
Installing request_store 1.5.1
Fetching lograge 0.12.0
Installing lograge 0.12.0
Fetching makara 0.5.1
Installing makara 0.5.1
Fetching mario-redis-lock 1.2.1
Installing mario-redis-lock 1.2.1
Fetching net-ldap 0.17.1
Installing net-ldap 0.17.1
Fetching sidekiq 6.5.8
Installing sidekiq 6.5.8
Fetching statsd-ruby 1.5.0
Installing statsd-ruby 1.5.0
Fetching nsa 0.2.8
Installing nsa 0.2.8
Fetching oj 3.13.23
Installing oj 3.13.23 with native extensions
Fetching omniauth-cas 2.0.0
Installing omniauth-cas 2.0.0
Fetching omniauth-rails_csrf_protection 0.1.2
Installing omniauth-rails_csrf_protection 0.1.2
Fetching rexml 3.2.5
Installing rexml 3.2.5
Fetching ruby-saml 1.13.0
Installing ruby-saml 1.13.0
Fetching omniauth-saml 1.10.3
Installing omniauth-saml 1.10.3
Fetching ox 2.14.14
Installing ox 2.14.14 with native extensions
Fetching parslet 2.0.0
Installing parslet 2.0.0
Fetching tty-color 0.6.0
Installing tty-color 0.6.0
Fetching pastel 0.8.0
Installing pastel 0.8.0
Fetching pg 1.4.5
Installing pg 1.4.5 with native extensions
Fetching pghero 3.1.0
Installing pghero 3.1.0
Fetching pkg-config 1.5.1
Installing pkg-config 1.5.1
Fetching posix-spawn 0.3.15
Installing posix-spawn 0.3.15 with native extensions
Fetching premailer 1.18.0
Installing premailer 1.18.0
Fetching premailer-rails 1.12.0
Installing premailer-rails 1.12.0
Fetching private_address_check 0.5.0
Installing private_address_check 0.5.0
Fetching puma 5.6.5
Installing puma 5.6.5 with native extensions
Fetching pundit 2.3.0
Installing pundit 2.3.0
Fetching rack-attack 6.6.1
Installing rack-attack 6.6.1
Fetching rack-cors 1.1.1
Installing rack-cors 1.1.1
Fetching rack-proxy 0.7.6
Installing rack-proxy 0.7.6
Fetching sprockets 3.7.2
Installing sprockets 3.7.2
Fetching sprockets-rails 3.4.2
Installing sprockets-rails 3.4.2
Fetching rails 6.1.7.2
Installing rails 6.1.7.2
Fetching rails-i18n 6.0.0
Installing rails-i18n 6.0.0
Fetching rails-settings-cached 0.6.6
Installing rails-settings-cached 0.6.6
Fetching rdf-normalize 0.5.1
Installing rdf-normalize 0.5.1
Fetching redcarpet 3.6.0
Installing redcarpet 3.6.0 with native extensions
Fetching redis-namespace 1.10.0
Installing redis-namespace 1.10.0
Fetching redlock 1.3.2
Installing redlock 1.3.2
Fetching rqrcode_core 1.2.0
Installing rqrcode_core 1.2.0
Fetching rqrcode 2.1.2
Installing rqrcode 2.1.2
Fetching ruby-progressbar 1.11.0
Installing ruby-progressbar 1.11.0
Fetching rufus-scheduler 3.8.2
Installing rufus-scheduler 3.8.2
Fetching safety_net_attestation 0.4.0
Installing safety_net_attestation 0.4.0
Fetching sanitize 6.0.1
Installing sanitize 6.0.1
Fetching scenic 1.7.0
Installing scenic 1.7.0
Fetching semantic_range 3.0.0
Installing semantic_range 3.0.0
Fetching sidekiq-bulk 0.2.0
Installing sidekiq-bulk 0.2.0
Fetching sidekiq-scheduler 4.0.3
Installing sidekiq-scheduler 4.0.3
Fetching sidekiq-unique-jobs 7.1.29
Installing sidekiq-unique-jobs 7.1.29
Fetching simple-navigation 4.4.0
Installing simple-navigation 4.4.0
Fetching simple_form 5.2.0
Installing simple_form 5.2.0
Fetching stoplight 3.0.1
Installing stoplight 3.0.1
Fetching strong_migrations 0.7.9
Installing strong_migrations 0.7.9
Fetching tpm-key_attestation 0.11.0
Installing tpm-key_attestation 0.11.0
Fetching tty-cursor 0.7.1
Installing tty-cursor 0.7.1
Fetching tty-screen 0.8.1
Installing tty-screen 0.8.1
Fetching wisper 2.0.1
Installing wisper 2.0.1
Fetching tty-reader 0.9.0
Installing tty-reader 0.9.0
Fetching tty-prompt 0.23.1
Installing tty-prompt 0.23.1
Fetching twitter-text 3.1.0
Installing twitter-text 3.1.0
Fetching tzinfo-data 1.2022.7
Installing tzinfo-data 1.2022.7
Fetching webauthn 2.5.2
Installing webauthn 2.5.2
Fetching webpacker 5.4.4
Installing webpacker 5.4.4
Using webpush 0.3.8 from https://github.com/ClearlyClaire/webpush.git (at f14a4d5@f14a4d5)
Fetching xorcist 1.1.3
Installing xorcist 1.1.3 with native extensions
Bundle complete! 127 Gemfile dependencies, 234 gems now installed.
Gems in the groups 'development' and 'test' were not installed.
Bundled gems are installed into `./vendor/bundle`
Post-install message from encryptor:



Please be aware that Encryptor v2.0.0 had a major security bug when using AES-*-GCM algorithms.

By default You will not be able to decrypt data that was previously encrypted using an AES-*-GCM algorithm.

Please see the README and https://github.com/attr-encrypted/encryptor/pull/22 for more information.


Post-install message from attr_encrypted:



WARNING: Several insecure default options and features were deprecated in attr_encrypted v2.0.0.

Additionally, there was a bug in Encryptor v2.0.0 that insecurely encrypted data when using an AES-*-GCM algorithm.

This bug was fixed but introduced breaking changes between v2.x and v3.x.

Please see the README for more information regarding upgrading to attr_encrypted v3.0.0.


Post-install message from doorkeeper:
Starting from 5.5.0 RC1 Doorkeeper requires client authentication for Resource Owner Password Grant
as stated in the OAuth RFC. You have to create a new OAuth client (Doorkeeper::Application) if you didn't
have it before and use client credentials in HTTP Basic auth if you previously used this grant flow without
client authentication. 

To opt out of this you could set the "skip_client_authentication_for_password_grant" configuration option
to "true", but note that this is in violation of the OAuth spec and represents a security risk.

Read https://github.com/doorkeeper-gem/doorkeeper/issues/561#issuecomment-612857163 for more details.
Post-install message from gitlab-omniauth-openid-connect:
############################################################
#  Deprecation notice for gitlab-omniauth-openid-connect gem
############################################################

All changes in this gem are now upstreamed in omniauth_openid_connect
gem v0.6.0 under the OmniAuth group: https://github.com/omniauth/omniauth_openid_connect.

In your Gemfile, replace the line:

gem 'gitlab-omniauth-openid-connect', '~> 0.10', require: 'omniauth_openid_connect'

With:

gem 'omniauth_openid_connect', '~> 0.6'

The gitlab-omniauth-openid-connect gem is no longer updated.
Post-install message from kt-paperclip:
##################################################
#  NOTE FOR UPGRADING FROM 4.3.0 OR EARLIER      #
##################################################

Paperclip is now compatible with aws-sdk-s3.

If you are using S3 storage, aws-sdk-s3 requires you to make a few small
changes:

* You must set the `s3_region`
* If you are explicitly setting permissions anywhere, such as in an initializer,
  note that the format of the permissions changed from using an underscore to
  using a hyphen. For example, `:public_read` needs to be changed to
  `public-read`.

For a walkthrough of upgrading from 4 to *5* (not 6) and aws-sdk >= 2.0 you can watch
http://rubythursday.com/episodes/ruby-snack-27-upgrade-paperclip-and-aws-sdk-in-prep-for-rails-5
Post-install message from sidekiq-unique-jobs:
IMPORTANT!

Automatic configuration of the sidekiq middleware is no longer done.
Please see: https://github.com/mhenrixon/sidekiq-unique-jobs/blob/master/README.md#add-the-middleware

This version deprecated the following sidekiq_options

  - sidekiq_options lock_args: :method_name

It is now configured with:

  - sidekiq_options lock_args_method: :method_name

This is also true for `Sidekiq.default_worker_options`

We also deprecated the global configuration options:
  - default_lock_ttl
  - default_lock_ttl=
  - default_lock_timeout
  - default_lock_timeout=

The new methods to use are:
  - lock_ttl
  - lock_ttl=
  - lock_timeout
  - lock_timeout=
Step 51: user mastodon - yarn install process
yarn install v1.22.19
warning ../../../../package.json: No license field
[1/6] Validating package.json...
[2/6] Resolving packages...
[3/6] Fetching packages...
[4/6] Linking dependencies...
warning Workspaces can only be enabled in private projects.
[5/6] Building fresh packages...
info This module is OPTIONAL, you can safely ignore this error
warning Error running install script for optional dependency: "/usr/local/www/mastodon/node_modules/utf-8-validate: Command failed.
Exit code: 1
Command: node-gyp-build
Arguments: 
Directory: /usr/local/www/mastodon/node_modules/utf-8-validate
Output:
node:events:491
      throw er; // Unhandled 'error' event
      ^

Error: spawn node-gyp ENOENT
    at ChildProcess._handle.onexit (node:internal/child_process:283:19)
    at onErrorNT (node:internal/child_process:476:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Emitted 'error' event on ChildProcess instance at:
    at ChildProcess._handle.onexit (node:internal/child_process:289:12)
    at onErrorNT (node:internal/child_process:476:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
  errno: -2,
  code: 'ENOENT',
  syscall: 'spawn node-gyp',
  path: 'node-gyp',
  spawnargs: [ 'rebuild' ]
}

Node.js v18.16.0"
warning Error running install script for optional dependency: "/usr/local/www/mastodon/node_modules/bufferutil: Command failed.
Exit code: 1
Command: node-gyp-build
Arguments: 
Directory: /usr/local/www/mastodon/node_modules/bufferutil
Output:
node:events:491
      throw er; // Unhandled 'error' event
      ^

Error: spawn node-gyp ENOENT
    at ChildProcess._handle.onexit (node:internal/child_process:283:19)
    at onErrorNT (node:internal/child_process:476:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Emitted 'error' event on ChildProcess instance at:
    at ChildProcess._handle.onexit (node:internal/child_process:289:12)
    at onErrorNT (node:internal/child_process:476:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
  errno: -2,
  code: 'ENOENT',
  syscall: 'spawn node-gyp',
  path: 'node-gyp',
  spawnargs: [ 'rebuild' ]
}

Node.js v18.16.0"
info This module is OPTIONAL, you can safely ignore this error
[6/6] Cleaning modules...
Done in 76.01s.
Step 52: Clean cook artifacts
Step 53: Install pot local
Step 54: Set file ownership on cook scripts
Step 55: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 56: Create rc.d script to start cook
creating rc.d script to start cook
Step 57: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 58: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot mastodon-s3-amd64-13_2
=====>  Remove p4650ca925754c epair network interfaces
=====>  unmount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/tmp
=====>  unmount /mnt/srv/pot/jails/mastodon-s3-amd64-13_2/m/dev
===>  exporting mastodon-s3-amd64-13_2 @ 1695329164 to /tmp/mastodon-s3-amd64-13_2_0.2.8.xz
xz: Reduced the number of threads from 4 to 3 to not exceed the memory usage limit of 503 MiB

This site © Honeyguide Group (Pty) Ltd, all the hosted software their respective license owners 2020 - 2021 - Disclaimer