Pixelfed

Overview

This flavour currently contains the pixelfed PHP application.

It is dependent on external Postgres instance, but uses a local socket-based redis instance.

The flavour includes a local consul agent instance to be available that it can connect to (see configuration below). You can e.g. use the consul pot flavour on this site to run consul. You can also connect to this host and service consul restart manually.

Installation

  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E DATACENTER=<datacentername> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system> \
      -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
      -E GOSSIPKEY="<32 byte Base64 key from consul keygen>" \
      -E APPNAME=<name of pixelfed instance> \
      -E DOMAIN=<domain name of pixelfed instance> \
      -E EMAIL=<email address for SSL certificate registration> \
      -E DBHOST=<database hostname or IP address> \
      -E DBPORT=<database port> \
      -E DBUSER=<database username> \
      -E DBPASS=<database password> \
      -E DBNAME=<database name, i.e. pixelfed> \
      -E MAILHOST=<smtp host> \
      -E MAILPORT=<smtp port> \
      -E MAILUSER=<smtp username> \
      -E MAILPASS=<smtp password> \
      -E MAILFROM=<smtp from address> \
      -E REDISHOST=<hostname or IP of redis instance> \
      -E S3REGION=<s3 region or global> \
      -E S3USER=<s3 username> \
      -E S3PASS=<s3 password> \
      -E S3BUCKET=<s3 bucket> \
      -E S3URL=<s3 write point, include http or https> \
      -E S3ENDPOINT=<s3 endpoint, include http or https> \
      -E TOPNAME=<name of admin account> \
      -E TOPEMAIL=<email address of admin account, will become username too> \
      [ -E PVTCERT=<any value enables> ] \
      [ -E REDISPORT=<non-standard redis port> ] \
      [ -E REDISPASS=<authentication password for redis if required> ] \
      [ -E REMOTELOG=<IP address> ]
    
  • Start the jail

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 APPNAME parameter is the name of the pixelfed instance.

The DOMAIN parameter is the domain name of the pixelfed instance.

The EMAIL parameter is the email address associated with SSL certificate registration for the DOMAIN parameter. You must still set this even if PVTCERT option is enabled for self-signed certificate generation.

The parameters DBHOST, DBPORT, DBNAME, DBUSER, DBPASS relate to a postgresql instance for this pot jail. The user must be setup beforehand, see note below for database setup.

The parameters MAILHOST, MAILPORT, MAILUSER, MAILPASS, MAILFROM relate to an SMTP account for sending mail notices.

The REDISHOST parameter is the IP address or hostname of a redis instance, such as the redis pot jail.

The parameters S3REGION, S3USER, S3PASS, S3BUCKET related to object storage configuration. This must be setup beforehand with applicable write permissions.

The parameter S3URL is the url to post to when writing to object storage. Include http:// or https:// as applicable.

The parameter S3ENDPOINT is the url for public read-only access to the bucket, such as served by nginx-s3-nomad or nginx-s3-ssl-nomad pot images. Include https://.

The TOPNAME parameter is the name of the admin account and will become the account name on the instance. This is used in the create-admin.sh script which can be run after first setup.

The TOPEMAIL parameter is the email address of the admin account, which will also become the username for logging in. This is used in the create-admin.sh script which can be run after first setup.

Optional Parameters

The PVTCERT parameter will configure a self-signed certificate for use with nginx. Enable this if you have SSL certificates configured via a frontend such as haproxy which is reverse-proxying to this image. No acme.sh registration will take place.

The REDISPORT parameter allows for setting a custom redis port.

The REDISPASS parameter is for authentication to a redis instance, if required.

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

Database setup

Before running this pot image, create a user for pixelfed with permissions to create databases on a running postgresql server.

sudo -u postgres psql -c "CREATE USER pixelfed with encrypted password 'pAsSwoRd' CREATEDB;"

Usage

If this is the first time setting up this pixelfed instance, you can setup an admin user by running as root inside the jail:

/root/bin/create-admin.sh

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.0:
pot import -p pixelfed-amd64-14_0 -t 0.2.1 -U https://potluck.honeyguide.net/pixelfed

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p pixelfed-amd64-14_0 -t 0.2.1 -C potluck.pub -U https://potluck.honeyguide.net/pixelfed

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 pixelfed-amd64-14_0 -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/pixelfed 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. 14.0) 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

  • Version bump for new base image
  • Python is now py311

0.1

  • Version bump for new base image

0.0

  • First bash at a pot jail for pixelfed
  • Fix typos
  • Fix env file formatting
  • Redis must be running before pixelfed is configured, optionally user www must be part of redis group
  • Add www user to redis group
  • Remove redis socket in favour of remote redis jail over tcp
  • Postgresql databases aren’t automatically created, we need a step to do this
  • Remove horizon:publish step as no longer needed
  • Adjust database creation process
  • Properly fix prior fix with db create step and error return codes
  • Ensure nginx root has correct directory with public appended in all places
  • Ensure port 80 bound to ip
  • Add script to create admin user
  • Make sure /usr/local/www/acmetmp/ is created for both SSL options
  • Add ffmpeg to packages
  • Adjust pixelfed env parameters and add steps to migrate2cloud
  • Adjust pixelfed env parameters
  • Adjust admin user creation script
  • Try more recent commit of pixelfed to get working admin dashboard
  • Add script to clear cache
  • Modify parameters for supervisord and cron to remove ansi
  • Adjust admin user creation script so username is not an email address
  • Cleanup nginx formatting and minor adjustments
  • Adjustments to pixelfed setup to try get admin dashboard to show
  • Revert to prior setup for user creation. db records ‘f’.
  • Fixed admin user creation script, use true or false, not yes/no or 1/0.
  • Don’t quote mail or S3 parameters in pixelfed env
  • S3 posting URL needs bucketname too
  • Remove old redis.conf template as not in use
  • Add blackbox_exporter
  • Update certificate renewal script

These images were built on Thu Jul 11 20:59:42 UTC 2024

Manual Image Download Links

pixelfed-amd64-14_0_0.2.1.xz ( )
pixelfed-amd64-14_0_0.2.1.xz.skein ( ) pixelfed-amd64-14_0_0.2.1.xz.skein.sig ( ) pixelfed-amd64-14_0_0.2.1.xz.meta ( )

Jenkins Pot Creation Logs

pixelfed-amd64-14_0_0.2.1:


pixelfed/pixelfed:
copy-in -s /usr/local/etc/pot/flavours/pixelfed.d/local -d /root/.pot_local
pixelfed/pixelfed.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 git-lite"
pkg install -y git-lite

step "Install package python311"
pkg install -y python311

step "Install package py311-supervisor"
pkg install -y py311-supervisor

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

step "Install package rsync"
pkg install -y rsync

step "Install package node_exporter"
pkg install -y node_exporter

step "Install package blackbox_exporter"
pkg install -y blackbox_exporter

step "Install package nginx"
pkg install -y nginx

step "Install package redis"
pkg install -y redis

step "Install package ffmpeg"
pkg install -y ffmpeg

step "Install package node20"
pkg install -y node20

step "Install package yarn-node20"
pkg install -y yarn-node20

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

step "Install package php82"
pkg install -y php82

step "Install package php82-mbstring"
pkg install -y php82-mbstring

step "Install package php82-zlib"
pkg install -y php82-zlib

step "Install package php82-curl"
pkg install -y php82-curl

step "Install package php82-gd"
pkg install -y php82-gd

step "Install package php82-bcmath"
pkg install -y php82-bcmath

step "Install package php82-ctype"
pkg install -y php82-ctype

step "Install package php82-exif"
pkg install -y php82-exif

step "Install package php82-iconv"
pkg install -y php82-iconv

step "Install package php82-intl"
pkg install -y php82-intl

step "Install package php82-pecl-redis"
pkg install -y php82-pecl-redis

step "Install package php82-tokenizer"
pkg install -y php82-tokenizer

step "Install package php82-simplexml"
pkg install -y php82-simplexml

step "Install package php82-xml"
pkg install -y php82-xml

step "Install package php82-xmlreader"
pkg install -y php82-xmlreader

step "Install package php82-xmlwriter"
pkg install -y php82-xmlwriter

step "Install package php82-fileinfo"
pkg install -y php82-fileinfo

step "Install package php82-pcntl"
pkg install -y php82-pcntl

step "Install package php82-sodium"
pkg install -y php82-sodium

step "Install package php82-posix"
pkg install -y php82-posix

step "Install package php82-zip"
pkg install -y php82-zip

step "Install package php82-pgsql"
pkg install -y php82-pgsql

step "Install package php82-pdo_pgsql"
pkg install -y php82-pdo_pgsql

step "Install package php82-mysqli"
pkg install -y php82-mysqli

step "Install package php82-pdo_mysql"
pkg install -y php82-pdo_mysql

step "Install package php82-composer"
pkg install -y php82-composer

step "Install package php82-pecl-imagick"
pkg install -y php82-pecl-imagick

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

step "Clean package installation"
pkg clean -y

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

# make directory for pixelfed
step "Make directory for pixelfed"
mkdir -p /usr/local/www/pixelfed

step "Setting www:www owner of /usr/local/www/pixelfed"
chown -R www:www /usr/local/www/pixelfed

step "Initiating git repo in /usr/local/www/pixelfed"
su -m www -c "cd /usr/local/www/pixelfed; git init -b dev"

step "Adding remote origin https://github.com/pixelfed/pixelfed.git"
su -m www -c "cd /usr/local/www/pixelfed; git remote add origin https://github.com/pixelfed/pixelfed.git"

step "Running git fetch"
su -m www -c "cd /usr/local/www/pixelfed; git fetch"

step "Checking out the latest commit"
#su -m www -c "cd /usr/local/www/pixelfed; git checkout e9bcc52944ffab87d9971f21832046942058570d"
# https://github.com/pixelfed/pixelfed/commit/ceb375d91d736e72f31931e19701b6cff191d0db
su -m www -c "cd /usr/local/www/pixelfed; git checkout ceb375d91d736e72f31931e19701b6cff191d0db"

# include --no-cache because user www can't create cache dir in /root
step "Run composer install"
su -m www -c "cd /usr/local/www/pixelfed; /usr/local/bin/composer install --no-ansi --no-interaction --optimize-autoloader --no-cache"

# include --no-cache because user www can't create cache dir in /root
step "Run composer update"
su -m www -c "cd /usr/local/www/pixelfed; /usr/local/bin/composer update --no-cache"

#
# 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

pixelfed/pixelfed+1:
pixelfed/pixelfed+1.sh:

pixelfed/pixelfed+2:
pixelfed/pixelfed+2.sh:

pixelfed/pixelfed+3:
pixelfed/pixelfed+3.sh:

pixelfed/pixelfed+4:
pixelfed/pixelfed+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/pixelfed-amd64-14_0/conf)
=====>  Cloning freebsd-potluck-amd64-14_0_0_0_26 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_0_0_0_26/m@1720718608 into zroot/srv/pot/jails/pixelfed-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting pixelfed-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot pixelfed-amd64-14_0
=====>  Pot pixelfed-amd64-14_0 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=pixelfed-amd64-14_0 host.hostname=pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p8 path=/mnt/srv/pot/jails/pixelfed-amd64-14_0/m persist vnet vnet.interface=epair0b
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=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x7
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:9e:de:bc:2f: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 /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Thu Jul 11 20:51:13 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on pixelfed-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching metadata signature for 14.0-RELEASE from update1.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 14.0-RELEASE-p8.
No updates are available to install.
=====>  Stop the pot pixelfed-amd64-14_0
=====>  Remove p4669045bf1056c epair network interfaces
=====>  unmount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/dev
=====>  Flavour: pixelfed
=====>  Executing pixelfed pot commands on pixelfed-amd64-14_0
=====>  mount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/pixelfed.d/local copied in the pot pixelfed-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/dev is already unmounted
=====>  Starting pixelfed-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot pixelfed-amd64-14_0
=====>  Pot pixelfed-amd64-14_0 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=pixelfed-amd64-14_0 host.hostname=pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p8 path=/mnt/srv/pot/jails/pixelfed-amd64-14_0/m persist vnet vnet.interface=epair0b
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=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:05:21:86:d0: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 /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Thu Jul 11 20:51:45 UTC 2024
/usr/local/etc/pot/flavours/pixelfed.sh -> /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp/pixelfed.sh
=====>  Executing pixelfed script on pixelfed-amd64-14_0
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_submit 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...
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:
	consul: 1.19.0_2

Number of packages to be installed: 1

The process will require 124 MiB more space.
24 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.19.0_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.19.0_2...
===> Creating groups
Creating group 'consul' with gid '469'
===> Creating users
Creating user 'consul' with uid '469'
===> Creating homedir(s)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.19.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 git-lite
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:
	expat: 2.6.2
	git-lite: 2.45.2_1
	pcre2: 10.43

Number of packages to be installed: 3

The process will require 42 MiB more space.
8 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching pcre2-10.43.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching expat-2.6.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching git-lite-2.45.2_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing pcre2-10.43...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting pcre2-10.43: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing expat-2.6.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting expat-2.6.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing git-lite-2.45.2_1...
===> Creating groups
Creating group 'git_daemon' with gid '964'
===> Creating users
Creating user 'git_daemon' with uid '964'
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting git-lite-2.45.2_1: .......... done
=====
Message from git-lite-2.45.2_1:

--
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 16: Install package python311
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:
	libffi: 3.4.6
	mpdecimal: 4.0.0
	python311: 3.11.9

Number of packages to be installed: 3

The process will require 202 MiB more space.
27 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching mpdecimal-4.0.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching libffi-3.4.6.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching python311-3.11.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing mpdecimal-4.0.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting mpdecimal-4.0.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing libffi-3.4.6...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting libffi-3.4.6: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing python311-3.11.9...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting python311-3.11.9: .......... done
=====
Message from python311-3.11.9:

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

py311-gdbm       databases/py-gdbm@py311
py311-sqlite3    databases/py-sqlite3@py311
py311-tkinter    x11-toolkits/py-tkinter@py311
Step 17: Install package py311-supervisor
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:
	py311-setuptools: 63.1.0_1
	py311-supervisor: 4.2.5,1

Number of packages to be installed: 2

The process will require 17 MiB more space.
2 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py311-setuptools-63.1.0_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py311-supervisor-4.2.5,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py311-setuptools-63.1.0_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py311-setuptools-63.1.0_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py311-supervisor-4.2.5,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py311-supervisor-4.2.5,1: .......... done
Step 18: Install package postgresql15-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:
	postgresql15-client: 15.7

Number of packages to be installed: 1

The process will require 14 MiB more space.
3 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching postgresql15-client-15.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing postgresql15-client-15.7...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting postgresql15-client-15.7: .......... done
=====
Message from postgresql15-client-15.7:

--
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 19: 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 20: 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.6.1_7

Number of packages to be installed: 1

The process will require 11 MiB more space.
4 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.6.1_7.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.6.1_7...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.6.1_7: .......... done
=====
Message from node_exporter-1.6.1_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 21: Install package blackbox_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:
	blackbox_exporter: 0.25.0_4

Number of packages to be installed: 1

The process will require 14 MiB more space.
4 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching blackbox_exporter-0.25.0_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing blackbox_exporter-0.25.0_4...
===> Creating groups
Creating group 'prometheus' with gid '478'
===> Creating users
Creating user 'prometheus' with uid '478'
===> Creating homedir(s)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting blackbox_exporter-0.25.0_4: ......... done
=====
Message from blackbox_exporter-0.25.0_4:

--
To start blackbox_exporter, create a configuration file at
/usr/local/etc/blackbox_exporter.yml and run
"sysrc blackbox_exporter_enable=yes".

For details about the configuration file format, visit
https://github.com/prometheus/blackbox_exporter/blob/v0.25.0/CONFIGURATION.md

Since blackbox_exporter allows setting arbitrary probe
targets via HTTP parameters, it is set to listen on localhost
only by default. To change the listen address, set the
blackbox_exporter_listen_address rcvar.

To use the 'ping' module, blackbox_exporter needs to run with
root privileges. To run blackbox_exporter with root privileges,
run "sysrc blackbox_exporter_user=root".

By default, blackbox exporter will log via syslog.  Examples for
controlling which log file and setting up log rotation may be found in:
/usr/local/share/blackbox_exporter
Step 22: Install package nginx
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:
	nginx: 1.26.1,3

Number of packages to be installed: 1

The process will require 2 MiB more space.
554 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.26.1,3.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing nginx-1.26.1,3...
===> Creating groups
Using existing group 'www'
===> Creating users
Using existing user 'www'
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting nginx-1.26.1,3: .......... done
=====
Message from nginx-1.26.1,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 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.2.5

Number of packages to be installed: 1

The process will require 8 MiB more space.
944 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching redis-7.2.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing redis-7.2.5...
===> Creating groups
Creating group 'redis' with gid '535'
===> Creating users
Creating user 'redis' with uid '535'
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting redis-7.2.5: ......... done
=====
Message from redis-7.2.5:

--
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 ffmpeg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 65 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	Imath: 3.1.11
	aom: 3.9.1
	brotli: 1.1.0,1
	dav1d: 1.4.3_1
	ffmpeg: 6.1.1_6,1
	fontconfig: 2.15.0_2,1
	freetype2: 2.13.2
	fribidi: 1.0.15
	gdk-pixbuf2: 2.42.10_3
	giflib: 5.2.2
	glib: 2.80.3,2
	gmp: 6.3.0
	gnutls: 3.8.5_3
	graphite2: 1.3.14
	harfbuzz: 9.0.0
	highway: 1.2.0
	jbigkit: 2.1_3
	jpeg-turbo: 3.0.3
	lame: 3.100_5
	lcms2: 2.16_2
	lerc: 4.0.0
	libX11: 1.8.9,1
	libXau: 1.0.9_1
	libXdmcp: 1.1.5
	libXext: 1.3.6,1
	libXfixes: 6.0.0_1
	libXrandr: 1.5.2_1
	libXrender: 0.9.10_2
	libass: 0.17.3
	libdeflate: 1.20
	libdrm: 2.4.122,1
	libepoll-shim: 0.0.20240608
	libglvnd: 1.7.0
	libjxl: 0.10.3
	libogg: 1.3.5,4
	libpciaccess: 0.18
	libplacebo: 7.349.0
	libtasn1: 4.19.0_1
	libudev-devd: 0.5.2
	libunibreak: 6.1,1
	libunwind: 20240221
	libv4l: 1.23.0_4
	libva: 2.22.0
	libvdpau: 1.5
	libvorbis: 1.3.7_2,3
	libvpx: 1.14.1
	libx264: 0.164.3095
	libxcb: 1.17.0
	libxml2: 2.11.8
	nettle: 3.10_1
	openexr: 3.2.4
	opus: 1.5.2
	p11-kit: 0.25.3_2
	png: 1.6.43
	py311-packaging: 24.1
	shaderc: 2024.1
	shared-mime-info: 2.2_3
	svt-av1: 2.1.2
	tiff: 4.6.0
	vmaf: 3.0.0
	vulkan-loader: 1.3.289
	wayland: 1.23.0
	webp: 1.4.0_1
	x265: 3.5_2
	xorgproto: 2024.1

Number of packages to be installed: 65

The process will require 283 MiB more space.
59 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/65] Fetching png-1.6.43.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/65] Fetching libxcb-1.17.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/65] Fetching freetype2-2.13.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/65] Fetching jpeg-turbo-3.0.3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/65] Fetching libx264-0.164.3095.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/65] Fetching libglvnd-1.7.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/65] Fetching nettle-3.10_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/65] Fetching libXrandr-1.5.2_1.pkg: ....... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/65] Fetching libunibreak-6.1,1.pkg: ....... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/65] Fetching lcms2-2.16_2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/65] Fetching libdeflate-1.20.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/65] Fetching fribidi-1.0.15.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/65] Fetching vmaf-3.0.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/65] Fetching libva-2.22.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/65] Fetching libdrm-2.4.122,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/65] Fetching libtasn1-4.19.0_1.pkg: ...... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/65] Fetching libXfixes-6.0.0_1.pkg: .... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/65] Fetching libxml2-2.11.8.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/65] Fetching wayland-1.23.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/65] Fetching aom-3.9.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/65] Fetching gdk-pixbuf2-2.42.10_3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/65] Fetching shaderc-2024.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/65] Fetching gnutls-3.8.5_3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/65] Fetching py311-packaging-24.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/65] Fetching libepoll-shim-0.0.20240608.pkg: ... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/65] Fetching libjxl-0.10.3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/65] Fetching libX11-1.8.9,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/65] Fetching giflib-5.2.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/65] Fetching libXrender-0.9.10_2.pkg: ...... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/65] Fetching xorgproto-2024.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/65] Fetching webp-1.4.0_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/65] Fetching graphite2-1.3.14.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/65] Fetching shared-mime-info-2.2_3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/65] Fetching libv4l-1.23.0_4.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/65] Fetching harfbuzz-9.0.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/65] Fetching lame-3.100_5.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/65] Fetching libpciaccess-0.18.pkg: ... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/65] Fetching vulkan-loader-1.3.289.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/65] Fetching libass-0.17.3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/65] Fetching x265-3.5_2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/65] Fetching highway-1.2.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/65] Fetching libudev-devd-0.5.2.pkg: ..... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/65] Fetching ffmpeg-6.1.1_6,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/65] Fetching opus-1.5.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/65] Fetching libunwind-20240221.pkg: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/65] Fetching brotli-1.1.0,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/65] Fetching gmp-6.3.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/65] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/65] Fetching Imath-3.1.11.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/65] Fetching svt-av1-2.1.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/65] Fetching libXext-1.3.6,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/65] Fetching libogg-1.3.5,4.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/65] Fetching p11-kit-0.25.3_2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/65] Fetching libXau-1.0.9_1.pkg: .. done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/65] Fetching libplacebo-7.349.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/65] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/65] Fetching dav1d-1.4.3_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/65] Fetching openexr-3.2.4.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/65] Fetching glib-2.80.3,2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/65] Fetching libvpx-1.14.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/65] Fetching jbigkit-2.1_3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/65] Fetching libvdpau-1.5.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/65] Fetching libXdmcp-1.1.5.pkg: ... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/65] Fetching tiff-4.6.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/65] Fetching lerc-4.0.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/65] Installing xorgproto-2024.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/65] Extracting xorgproto-2024.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/65] Installing libXau-1.0.9_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/65] Extracting libXau-1.0.9_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/65] Installing libXdmcp-1.1.5...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/65] Extracting libXdmcp-1.1.5: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/65] Installing libxcb-1.17.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/65] Extracting libxcb-1.17.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/65] Installing py311-packaging-24.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/65] Extracting py311-packaging-24.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/65] Installing libX11-1.8.9,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/65] Extracting libX11-1.8.9,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/65] Installing png-1.6.43...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/65] Extracting png-1.6.43: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/65] Installing jpeg-turbo-3.0.3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/65] Extracting jpeg-turbo-3.0.3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/65] Installing libdeflate-1.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/65] Extracting libdeflate-1.20: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/65] Installing libxml2-2.11.8...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/65] Extracting libxml2-2.11.8: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/65] Installing libepoll-shim-0.0.20240608...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/65] Extracting libepoll-shim-0.0.20240608: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/65] Installing libXrender-0.9.10_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/65] Extracting libXrender-0.9.10_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/65] Installing brotli-1.1.0,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/65] Extracting brotli-1.1.0,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/65] Installing libXext-1.3.6,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/65] Extracting libXext-1.3.6,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/65] Installing glib-2.80.3,2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/65] Extracting glib-2.80.3,2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/65] Installing jbigkit-2.1_3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/65] Extracting jbigkit-2.1_3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/65] Installing lerc-4.0.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/65] Extracting lerc-4.0.0: ........ done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/65] Installing freetype2-2.13.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/65] Extracting freetype2-2.13.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/65] Installing libXrandr-1.5.2_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/65] Extracting libXrandr-1.5.2_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/65] Installing libtasn1-4.19.0_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/65] Extracting libtasn1-4.19.0_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/65] Installing wayland-1.23.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/65] Extracting wayland-1.23.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/65] Installing graphite2-1.3.14...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/65] Extracting graphite2-1.3.14: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/65] Installing shared-mime-info-2.2_3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/65] Extracting shared-mime-info-2.2_3: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/65] Installing libpciaccess-0.18...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/65] Extracting libpciaccess-0.18: ........ done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/65] Installing gmp-6.3.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/65] Extracting gmp-6.3.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/65] Installing Imath-3.1.11...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/65] Extracting Imath-3.1.11: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/65] Installing tiff-4.6.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/65] Extracting tiff-4.6.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/65] Installing libglvnd-1.7.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/65] Extracting libglvnd-1.7.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/65] Installing nettle-3.10_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/65] Extracting nettle-3.10_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/65] Installing libunibreak-6.1,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/65] Extracting libunibreak-6.1,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/65] Installing lcms2-2.16_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/65] Extracting lcms2-2.16_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/65] Installing fribidi-1.0.15...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/65] Extracting fribidi-1.0.15: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/65] Installing vmaf-3.0.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/65] Extracting vmaf-3.0.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/65] Installing libdrm-2.4.122,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/65] Extracting libdrm-2.4.122,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/65] Installing libXfixes-6.0.0_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/65] Extracting libXfixes-6.0.0_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/65] Installing gdk-pixbuf2-2.42.10_3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/65] Extracting gdk-pixbuf2-2.42.10_3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/65] Installing shaderc-2024.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/65] Extracting shaderc-2024.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/65] Installing giflib-5.2.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/65] Extracting giflib-5.2.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/65] Installing harfbuzz-9.0.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/65] Extracting harfbuzz-9.0.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/65] Installing vulkan-loader-1.3.289...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/65] Extracting vulkan-loader-1.3.289: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/65] Installing highway-1.2.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/65] Extracting highway-1.2.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/65] Installing libudev-devd-0.5.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/65] Extracting libudev-devd-0.5.2: ........ done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/65] Installing libunwind-20240221...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/65] Extracting libunwind-20240221: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/65] Installing libogg-1.3.5,4...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/65] Extracting libogg-1.3.5,4: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/65] Installing p11-kit-0.25.3_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/65] Extracting p11-kit-0.25.3_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/65] Installing fontconfig-2.15.0_2,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/65] Extracting fontconfig-2.15.0_2,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/65] Installing openexr-3.2.4...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/65] Extracting openexr-3.2.4: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/65] Installing libx264-0.164.3095...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/65] Extracting libx264-0.164.3095: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/65] Installing libva-2.22.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/65] Extracting libva-2.22.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/65] Installing aom-3.9.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/65] Extracting aom-3.9.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/65] Installing gnutls-3.8.5_3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/65] Extracting gnutls-3.8.5_3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/65] Installing libjxl-0.10.3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/65] Extracting libjxl-0.10.3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/65] Installing webp-1.4.0_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/65] Extracting webp-1.4.0_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/65] Installing libv4l-1.23.0_4...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/65] Extracting libv4l-1.23.0_4: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/65] Installing lame-3.100_5...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/65] Extracting lame-3.100_5: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/65] Installing libass-0.17.3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/65] Extracting libass-0.17.3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/65] Installing x265-3.5_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/65] Extracting x265-3.5_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/65] Installing opus-1.5.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/65] Extracting opus-1.5.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/65] Installing libvorbis-1.3.7_2,3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/65] Extracting libvorbis-1.3.7_2,3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/65] Installing svt-av1-2.1.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/65] Extracting svt-av1-2.1.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/65] Installing libplacebo-7.349.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/65] Extracting libplacebo-7.349.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/65] Installing dav1d-1.4.3_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/65] Extracting dav1d-1.4.3_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/65] Installing libvpx-1.14.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/65] Extracting libvpx-1.14.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/65] Installing libvdpau-1.5...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/65] Extracting libvdpau-1.5: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/65] Installing ffmpeg-6.1.1_6,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/65] Extracting ffmpeg-6.1.1_6,1: .......... done
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: shared-mime-info.ucl
Building the Shared MIME-Info database cache
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.13.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.23.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.10.3:

--
Additional packages recommended for new users:
- imlib2-jxl (e.g., feh, scrot)
- kf5-kimageformats (e.g., nomacs, flameshot, skanlite)
- gimp-jxl-plugin
Step 25: Install package node20
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:
	c-ares: 1.30.0
	icu: 74.2_1,1
	libuv: 1.48.0
	node20: 20.14.0

Number of packages to be installed: 4

The process will require 95 MiB more space.
23 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching libuv-1.48.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching icu-74.2_1,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching node20-20.14.0.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching c-ares-1.30.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing libuv-1.48.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting libuv-1.48.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing icu-74.2_1,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting icu-74.2_1,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing c-ares-1.30.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting c-ares-1.30.0: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing node20-20.14.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting node20-20.14.0: .......... done
=====
Message from node20-20.14.0:

--
Note: If you need npm (Node Package Manager), please install www/npm.
Step 26: Install package yarn-node20
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:
	yarn-node20: 1.22.19

Number of packages to be installed: 1

The process will require 5 MiB more space.
940 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching yarn-node20-1.22.19.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing yarn-node20-1.22.19...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting yarn-node20-1.22.19: .......... done
Step 27: Install package ImageMagick7-nox11
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 32 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ImageMagick7-nox11: 7.1.1.26_4
	avahi-app: 0.8_2
	cups: 2.4.10_1
	dbus: 1.14.10_5,1
	dbus-glib: 0.112_1
	fftw3: 3.3.10_5
	gdbm: 1.23
	ghostscript10: 10.03.1
	gnome_subr: 1.0
	gsfonts: 8.11_8
	jbig2dec: 0.20_1
	libICE: 1.1.1,1
	libSM: 1.2.3_1,1
	libXt: 1.3.0,1
	libdaemon: 0.14_1
	libevent: 2.1.12
	libfontenc: 1.1.8
	libgd: 2.3.3_13,1
	libheif: 1.17.6_2
	libidn: 1.42
	liblqr-1: 0.4.2
	libltdl: 2.4.7
	libpaper: 1.1.28_1
	libraw: 0.21.2
	libwmf-nox11: 0.2.13_2
	libzip: 1.10.1
	mkfontscale: 1.2.3
	openjpeg: 2.5.2_1
	perl5: 5.36.3_1
	pkgconf: 2.2.0,1
	poppler-data: 0.4.12
	urw-base35-fonts: 20200910

Number of packages to be installed: 32

The process will require 198 MiB more space.
56 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/32] Fetching libzip-1.10.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/32] Fetching openjpeg-2.5.2_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/32] Fetching libgd-2.3.3_13,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/32] Fetching urw-base35-fonts-20200910.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/32] Fetching ImageMagick7-nox11-7.1.1.26_4.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/32] Fetching libevent-2.1.12.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/32] Fetching gdbm-1.23.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/32] Fetching avahi-app-0.8_2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/32] Fetching dbus-1.14.10_5,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/32] Fetching dbus-glib-0.112_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/32] Fetching jbig2dec-0.20_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/32] Fetching libltdl-2.4.7.pkg: ........ done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/32] Fetching libwmf-nox11-0.2.13_2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/32] Fetching fftw3-3.3.10_5.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/32] Fetching perl5-5.36.3_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/32] Fetching libdaemon-0.14_1.pkg: ....... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/32] Fetching gsfonts-8.11_8.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/32] Fetching poppler-data-0.4.12.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/32] Fetching libXt-1.3.0,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/32] Fetching cups-2.4.10_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/32] Fetching mkfontscale-1.2.3.pkg: ..... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/32] Fetching libidn-1.42.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/32] Fetching liblqr-1-0.4.2.pkg: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/32] Fetching gnome_subr-1.0.pkg: . done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/32] Fetching libpaper-1.1.28_1.pkg: ...... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/32] Fetching libraw-0.21.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/32] Fetching pkgconf-2.2.0,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/32] Fetching ghostscript10-10.03.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/32] Fetching libfontenc-1.1.8.pkg: ... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/32] Fetching libICE-1.1.1,1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/32] Fetching libSM-1.2.3_1,1.pkg: ...... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/32] Fetching libheif-1.17.6_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/32] Installing libICE-1.1.1,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/32] Extracting libICE-1.1.1,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/32] Installing libSM-1.2.3_1,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/32] Extracting libSM-1.2.3_1,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/32] Installing dbus-1.14.10_5,1...
===> Creating groups
Creating group 'messagebus' with gid '556'
===> Creating users
Creating user 'messagebus' with uid '556'
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/32] Extracting dbus-1.14.10_5,1: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/32] Installing libevent-2.1.12...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/32] Extracting libevent-2.1.12: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/32] Installing gdbm-1.23...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/32] Extracting gdbm-1.23: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/32] Installing dbus-glib-0.112_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/32] Extracting dbus-glib-0.112_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/32] Installing libdaemon-0.14_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/32] Extracting libdaemon-0.14_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/32] Installing gnome_subr-1.0...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/32] Extracting gnome_subr-1.0: .... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/32] Installing libfontenc-1.1.8...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/32] Extracting libfontenc-1.1.8: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/32] Installing avahi-app-0.8_2...
===> Creating groups
Creating group 'avahi' with gid '558'
===> Creating users
Creating user 'avahi' with uid '558'
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/32] Extracting avahi-app-0.8_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/32] Installing mkfontscale-1.2.3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/32] Extracting mkfontscale-1.2.3: ....... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/32] Installing libpaper-1.1.28_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/32] Extracting libpaper-1.1.28_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/32] Installing openjpeg-2.5.2_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/32] Extracting openjpeg-2.5.2_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/32] Installing libgd-2.3.3_13,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/32] Extracting libgd-2.3.3_13,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/32] Installing urw-base35-fonts-20200910...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/32] Extracting urw-base35-fonts-20200910: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/32] Installing jbig2dec-0.20_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/32] Extracting jbig2dec-0.20_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/32] Installing poppler-data-0.4.12...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/32] Extracting poppler-data-0.4.12: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/32] Installing libXt-1.3.0,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/32] Extracting libXt-1.3.0,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/32] Installing cups-2.4.10_1...
===> Creating groups
Creating group 'cups' with gid '193'
===> Creating users
Creating user 'cups' with uid '193'
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/32] Extracting cups-2.4.10_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/32] Installing libidn-1.42...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/32] Extracting libidn-1.42: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/32] Installing libzip-1.10.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/32] Extracting libzip-1.10.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/32] Installing libltdl-2.4.7...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/32] Extracting libltdl-2.4.7: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/32] Installing libwmf-nox11-0.2.13_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/32] Extracting libwmf-nox11-0.2.13_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/32] Installing fftw3-3.3.10_5...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/32] Extracting fftw3-3.3.10_5: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/32] Installing perl5-5.36.3_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/32] Extracting perl5-5.36.3_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/32] Installing gsfonts-8.11_8...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/32] Extracting gsfonts-8.11_8: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/32] Installing liblqr-1-0.4.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/32] Extracting liblqr-1-0.4.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/32] Installing libraw-0.21.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/32] Extracting libraw-0.21.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/32] Installing pkgconf-2.2.0,1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/32] Extracting pkgconf-2.2.0,1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/32] Installing ghostscript10-10.03.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/32] Extracting ghostscript10-10.03.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/32] Installing libheif-1.17.6_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/32] Extracting libheif-1.17.6_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/32] Installing ImageMagick7-nox11-7.1.1.26_4...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/32] Extracting ImageMagick7-nox11-7.1.1.26_4: .......... done
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from libwmf-nox11-0.2.13_2:

--
===>   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
=====
Message from ghostscript10-10.03.1:

--
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.
Step 28: Install package php82
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:
	libargon2: 20190702_1
	php82: 8.2.20

Number of packages to be installed: 2

The process will require 25 MiB more space.
4 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libargon2-20190702_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-8.2.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libargon2-20190702_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libargon2-20190702_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-8.2.20: .......... done
Step 29: Install package php82-mbstring
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:
	php82-mbstring: 8.2.20

Number of packages to be installed: 1

The process will require 4 MiB more space.
917 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mbstring-8.2.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mbstring-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mbstring-8.2.20: .......... done
=====
Message from php82-mbstring-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini.sample
Step 30: Install package php82-zlib
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:
	php82-zlib: 8.2.20

Number of packages to be installed: 1

22 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-zlib-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-zlib-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-zlib-8.2.20: ........ done
=====
Message from php82-zlib-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini.sample
Step 31: Install package php82-curl
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:
	php82-curl: 8.2.20

Number of packages to be installed: 1

46 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-curl-8.2.20.pkg: ......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-curl-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-curl-8.2.20: .......... done
=====
Message from php82-curl-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini.sample
Step 32: Install package php82-gd
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:
	php82-gd: 8.2.20

Number of packages to be installed: 1

37 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-gd-8.2.20.pkg: ....... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-gd-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-gd-8.2.20: ......... done
=====
Message from php82-gd-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini.sample
Step 33: Install package php82-bcmath
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:
	php82-bcmath: 8.2.20

Number of packages to be installed: 1

22 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-bcmath-8.2.20.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-bcmath-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-bcmath-8.2.20: .......... done
=====
Message from php82-bcmath-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bcmath.ini.sample
Step 34: Install package php82-ctype
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:
	php82-ctype: 8.2.20

Number of packages to be installed: 1

8 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-ctype-8.2.20.pkg: .. done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-ctype-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-ctype-8.2.20: ........ done
=====
Message from php82-ctype-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini.sample
Step 35: Install package php82-exif
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:
	php82-exif: 8.2.20

Number of packages to be installed: 1

32 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-exif-8.2.20.pkg: ...... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-exif-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-exif-8.2.20: ........ done
=====
Message from php82-exif-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-exif.ini.sample
Step 36: Install package php82-iconv
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:
	php82-iconv: 8.2.20

Number of packages to be installed: 1

20 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-iconv-8.2.20.pkg: .... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-iconv-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-iconv-8.2.20: ........ done
=====
Message from php82-iconv-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini.sample
Step 37: Install package php82-intl
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:
	php82-intl: 8.2.20

Number of packages to be installed: 1

148 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-intl-8.2.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-intl-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-intl-8.2.20: .......... done
=====
Message from php82-intl-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-intl.ini.sample
Step 38: Install package php82-pecl-redis
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:
	php82-pecl-redis: 5.3.7_1
	php82-session: 8.2.20

Number of packages to be installed: 2

209 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-pecl-redis-5.3.7_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-session-8.2.20.pkg: ......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-session-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-session-8.2.20: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-pecl-redis-5.3.7_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-pecl-redis-5.3.7_1: .......... done
=====
Message from php82-session-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini.sample
=====
Message from php82-pecl-redis-5.3.7_1:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-redis.ini.sample
Step 39: Install package php82-tokenizer
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:
	php82-tokenizer: 8.2.20

Number of packages to be installed: 1

15 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-tokenizer-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-tokenizer-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-tokenizer-8.2.20: ......... done
=====
Message from php82-tokenizer-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini.sample
Step 40: Install package php82-simplexml
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:
	php82-simplexml: 8.2.20

Number of packages to be installed: 1

25 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-simplexml-8.2.20.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-simplexml-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-simplexml-8.2.20: ......... done
=====
Message from php82-simplexml-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini.sample
Step 41: Install package php82-xml
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:
	php82-xml: 8.2.20

Number of packages to be installed: 1

23 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-xml-8.2.20.pkg: .. done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-xml-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-xml-8.2.20: ......... done
=====
Message from php82-xml-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini.sample
Step 42: Install package php82-xmlreader
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:
	php82-dom: 8.2.20
	php82-xmlreader: 8.2.20

Number of packages to be installed: 2

90 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-dom-8.2.20.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-xmlreader-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-dom-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-dom-8.2.20: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-xmlreader-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-xmlreader-8.2.20: ........ done
=====
Message from php82-dom-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini.sample
=====
Message from php82-xmlreader-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini.sample
Step 43: Install package php82-xmlwriter
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:
	php82-xmlwriter: 8.2.20

Number of packages to be installed: 1

16 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-xmlwriter-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-xmlwriter-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-xmlwriter-8.2.20: ........ done
=====
Message from php82-xmlwriter-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini.sample
Step 44: Install package php82-fileinfo
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:
	php82-fileinfo: 8.2.20

Number of packages to be installed: 1

The process will require 7 MiB more space.
311 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-fileinfo-8.2.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-fileinfo-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-fileinfo-8.2.20: .......... done
=====
Message from php82-fileinfo-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-fileinfo.ini.sample
Step 45: Install package php82-pcntl
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:
	php82-pcntl: 8.2.20

Number of packages to be installed: 1

20 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pcntl-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pcntl-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pcntl-8.2.20: ......... done
=====
Message from php82-pcntl-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pcntl.ini.sample
Step 46: Install package php82-sodium
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:
	libsodium: 1.0.19
	php82-sodium: 8.2.20

Number of packages to be installed: 2

The process will require 2 MiB more space.
288 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-sodium-8.2.20.pkg: ....... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libsodium-1.0.19.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libsodium-1.0.19...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libsodium-1.0.19: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-sodium-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-sodium-8.2.20: ........ done
=====
Message from php82-sodium-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sodium.ini.sample
Step 47: Install package php82-posix
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:
	php82-posix: 8.2.20

Number of packages to be installed: 1

15 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-posix-8.2.20.pkg: .... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-posix-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-posix-8.2.20: ........ done
=====
Message from php82-posix-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini.sample
Step 48: Install package php82-zip
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:
	php82-zip: 8.2.20

Number of packages to be installed: 1

34 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-zip-8.2.20.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-zip-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-zip-8.2.20: ........ done
=====
Message from php82-zip-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini.sample
Step 49: Install package php82-pgsql
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:
	php82-pgsql: 8.2.20

Number of packages to be installed: 1

49 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pgsql-8.2.20.pkg: ......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pgsql-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pgsql-8.2.20: ........ done
=====
Message from php82-pgsql-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pgsql.ini.sample
Step 50: Install package php82-pdo_pgsql
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:
	php82-pdo: 8.2.20
	php82-pdo_pgsql: 8.2.20

Number of packages to be installed: 2

77 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-pdo-8.2.20.pkg: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-pdo_pgsql-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-pdo-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-pdo-8.2.20: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-pdo_pgsql-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-pdo_pgsql-8.2.20: ......... done
=====
Message from php82-pdo-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pdo.ini.sample
=====
Message from php82-pdo_pgsql-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_pgsql.ini.sample
Step 51: Install package php82-mysqli
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:
	php82-mysqli: 8.2.20

Number of packages to be installed: 1

53 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mysqli-8.2.20.pkg: ......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mysqli-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mysqli-8.2.20: .......... done
=====
Message from php82-mysqli-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini.sample
Step 52: Install package php82-pdo_mysql
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:
	php82-pdo_mysql: 8.2.20

Number of packages to be installed: 1

19 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pdo_mysql-8.2.20.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pdo_mysql-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pdo_mysql-8.2.20: ......... done
=====
Message from php82-pdo_mysql-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_mysql.ini.sample
Step 53: Install package php82-composer
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:
	php82-composer: 2.7.7_1
	php82-filter: 8.2.20
	php82-phar: 8.2.20

Number of packages to be installed: 3

The process will require 3 MiB more space.
693 KiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching php82-composer-2.7.7_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching php82-phar-8.2.20.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching php82-filter-8.2.20.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing php82-phar-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting php82-phar-8.2.20: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing php82-filter-8.2.20...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting php82-filter-8.2.20: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing php82-composer-2.7.7_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting php82-composer-2.7.7_1: ..... done
=====
Message from php82-phar-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-phar.ini.sample
=====
Message from php82-filter-8.2.20:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini.sample
Step 54: Install package php82-pecl-imagick
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 11 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ImageMagick7: 7.1.1.26_4
	cairo: 1.17.4_2,3
	libXft: 2.3.8
	libdatrie: 0.2.13_2
	libraqm: 0.10.1
	librsvg2-rust: 2.58.1_1
	libthai: 0.1.29_1
	libwmf: 0.2.13_2
	pango: 1.52.2_1
	php82-pecl-imagick: 3.7.0_3
	pixman: 0.42.2

Number of packages to be installed: 11

The process will require 77 MiB more space.
20 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/11] Fetching libwmf-0.2.13_2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/11] Fetching libthai-0.1.29_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/11] Fetching libXft-2.3.8.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/11] Fetching cairo-1.17.4_2,3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/11] Fetching ImageMagick7-7.1.1.26_4.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/11] Fetching libdatrie-0.2.13_2.pkg: ......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/11] Fetching libraqm-0.10.1.pkg: ...... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/11] Fetching librsvg2-rust-2.58.1_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/11] Fetching php82-pecl-imagick-3.7.0_3.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/11] Fetching pango-1.52.2_1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/11] Fetching pixman-0.42.2.pkg: .......... done
Checking integrity... done (4 conflicting)
  - libwmf-0.2.13_2 conflicts with libwmf-nox11-0.2.13_2 on /usr/local/bin/libwmf-config
  - libwmf-0.2.13_2 conflicts with libwmf-nox11-0.2.13_2 on /usr/local/bin/libwmf-config
  - ImageMagick7-7.1.1.26_4 conflicts with ImageMagick7-nox11-7.1.1.26_4 on /usr/local/bin/Magick++-config
  - ImageMagick7-7.1.1.26_4 conflicts with ImageMagick7-nox11-7.1.1.26_4 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 13 package(s) will be affected (of 0 checked):

Installed packages to be REMOVED:
	ImageMagick7-nox11: 7.1.1.26_4
	libwmf-nox11: 0.2.13_2

New packages to be INSTALLED:
	ImageMagick7: 7.1.1.26_4
	cairo: 1.17.4_2,3
	libXft: 2.3.8
	libdatrie: 0.2.13_2
	libraqm: 0.10.1
	librsvg2-rust: 2.58.1_1
	libthai: 0.1.29_1
	libwmf: 0.2.13_2
	pango: 1.52.2_1
	php82-pecl-imagick: 3.7.0_3
	pixman: 0.42.2

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

The process will require 45 MiB more space.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/13] Deinstalling ImageMagick7-nox11-7.1.1.26_4...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/13] Deleting files for ImageMagick7-nox11-7.1.1.26_4: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/13] Deinstalling libwmf-nox11-0.2.13_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/13] Deleting files for libwmf-nox11-0.2.13_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/13] Installing libdatrie-0.2.13_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/13] Extracting libdatrie-0.2.13_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/13] Installing pixman-0.42.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/13] Extracting pixman-0.42.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/13] Installing libthai-0.1.29_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/13] Extracting libthai-0.1.29_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/13] Installing libXft-2.3.8...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/13] Extracting libXft-2.3.8: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/13] Installing cairo-1.17.4_2,3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/13] Extracting cairo-1.17.4_2,3: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/13] Installing pango-1.52.2_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/13] Extracting pango-1.52.2_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/13] Installing libwmf-0.2.13_2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/13] Extracting libwmf-0.2.13_2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/13] Installing libraqm-0.10.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/13] Extracting libraqm-0.10.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/13] Installing librsvg2-rust-2.58.1_1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/13] Extracting librsvg2-rust-2.58.1_1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/13] Installing ImageMagick7-7.1.1.26_4...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/13] Extracting ImageMagick7-7.1.1.26_4: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/13] Installing php82-pecl-imagick-3.7.0_3...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/13] Extracting php82-pecl-imagick-3.7.0_3: .......... done
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from libwmf-0.2.13_2:

--
===>   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 php82-pecl-imagick-3.7.0_3:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-imagick.ini.sample
Step 55: Install package syslog-ng
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:
	e2fsprogs-libuuid: 1.47.1
	ivykis: 0.43.2
	json-c: 0.17
	syslog-ng: 4.7.1

Number of packages to be installed: 4

The process will require 6 MiB more space.
1 MiB to be downloaded.
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching e2fsprogs-libuuid-1.47.1.pkg: ..... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching syslog-ng-4.7.1.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching ivykis-0.43.2.pkg: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching json-c-0.17.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing e2fsprogs-libuuid-1.47.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting e2fsprogs-libuuid-1.47.1: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing ivykis-0.43.2...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting ivykis-0.43.2: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing json-c-0.17...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting json-c-0.17: .......... done
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing syslog-ng-4.7.1...
[pixelfed-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting syslog-ng-4.7.1: .......... done
=====
Message from syslog-ng-4.7.1:

--
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 56: Clean package installation
Nothing to do.
Step 57: Make directory for pixelfed
Step 58: Setting www:www owner of /usr/local/www/pixelfed
Step 59: Initiating git repo in /usr/local/www/pixelfed
Initialized empty Git repository in /usr/local/www/pixelfed/.git/
Step 60: Adding remote origin https://github.com/pixelfed/pixelfed.git
Step 61: Running git fetch
From https://github.com/pixelfed/pixelfed
 * [new branch]        dev          -> origin/dev
 * [new branch]        groups       -> origin/groups
 * [new branch]        l10n_staging -> origin/l10n_staging
 * [new branch]        staging      -> origin/staging
 * [new branch]        vue3         -> origin/vue3
 * [new tag]           v0.1.9       -> v0.1.9
 * [new tag]           v0.10.0      -> v0.10.0
 * [new tag]           v0.10.1      -> v0.10.1
 * [new tag]           v0.10.10     -> v0.10.10
 * [new tag]           v0.10.2      -> v0.10.2
 * [new tag]           v0.10.3      -> v0.10.3
 * [new tag]           v0.10.4      -> v0.10.4
 * [new tag]           v0.10.5      -> v0.10.5
 * [new tag]           v0.10.6      -> v0.10.6
 * [new tag]           v0.10.7      -> v0.10.7
 * [new tag]           v0.10.8      -> v0.10.8
 * [new tag]           v0.10.9      -> v0.10.9
 * [new tag]           v0.11.0      -> v0.11.0
 * [new tag]           v0.11.1      -> v0.11.1
 * [new tag]           v0.11.10     -> v0.11.10
 * [new tag]           v0.11.11     -> v0.11.11
 * [new tag]           v0.11.12     -> v0.11.12
 * [new tag]           v0.11.13     -> v0.11.13
 * [new tag]           v0.11.2      -> v0.11.2
 * [new tag]           v0.11.3      -> v0.11.3
 * [new tag]           v0.11.4      -> v0.11.4
 * [new tag]           v0.11.5      -> v0.11.5
 * [new tag]           v0.11.6      -> v0.11.6
 * [new tag]           v0.11.7      -> v0.11.7
 * [new tag]           v0.11.8      -> v0.11.8
 * [new tag]           v0.11.9      -> v0.11.9
 * [new tag]           v0.12.0      -> v0.12.0
 * [new tag]           v0.12.1      -> v0.12.1
 * [new tag]           v0.12.2      -> v0.12.2
 * [new tag]           v0.12.3      -> v0.12.3
 * [new tag]           v0.5.9       -> v0.5.9
 * [new tag]           v0.6.0       -> v0.6.0
 * [new tag]           v0.6.1       -> v0.6.1
 * [new tag]           v0.7.6       -> v0.7.6
 * [new tag]           v0.8.0       -> v0.8.0
 * [new tag]           v0.8.5       -> v0.8.5
 * [new tag]           v0.8.6       -> v0.8.6
 * [new tag]           v0.9.0       -> v0.9.0
 * [new tag]           v0.9.4       -> v0.9.4
 * [new tag]           v0.9.5       -> v0.9.5
 * [new tag]           v0.9.6       -> v0.9.6
Step 62: Checking out the latest commit
warning: unable to access '/root/.config/git/ignore': Permission denied
warning: unable to access '/root/.config/git/attributes': Permission denied
warning: unable to access '/root/.config/git/ignore': Permission denied
Note: switching to 'ceb375d91d736e72f31931e19701b6cff191d0db'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name>

Or undo this operation with:

  git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at ceb375d9 Merge pull request #5174 from pixelfed/staging
Step 63: Run composer install
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Package operations: 191 installs, 0 updates, 0 removals
  - Downloading aws/aws-crt-php (v1.2.5)
  - Downloading dasprid/enum (1.0.5)
  - Downloading bacon/bacon-qr-code (2.0.8)
  - Downloading symfony/polyfill-php80 (v1.29.0)
  - Downloading symfony/polyfill-php83 (v1.29.0)
  - Downloading symfony/polyfill-mbstring (v1.29.0)
  - Downloading symfony/deprecation-contracts (v3.5.0)
  - Downloading symfony/http-foundation (v6.4.7)
  - Downloading psr/http-message (1.1)
  - Downloading symfony/psr-http-message-bridge (v2.3.1)
  - Downloading symfony/polyfill-ctype (v1.29.0)
  - Downloading psr/event-dispatcher (1.0.0)
  - Downloading symfony/event-dispatcher-contracts (v3.5.0)
  - Downloading symfony/event-dispatcher (v7.1.0)
  - Downloading symfony/var-dumper (v6.4.7)
  - Downloading psr/log (3.0.0)
  - Downloading symfony/error-handler (v6.4.7)
  - Downloading symfony/http-kernel (v6.4.7)
  - Downloading react/event-loop (v1.5.0)
  - Downloading evenement/evenement (v3.0.2)
  - Downloading react/stream (v1.3.0)
  - Downloading react/promise (v3.2.0)
  - Downloading react/cache (v1.2.0)
  - Downloading react/dns (v1.12.0)
  - Downloading react/socket (v1.15.0)
  - Downloading fig/http-message-util (1.1.5)
  - Downloading react/http (v1.10.0)
  - Downloading paragonie/random_compat (v9.99.100)
  - Downloading paragonie/sodium_compat (v1.21.1)
  - Downloading psr/http-client (1.0.3)
  - Downloading ralouphie/getallheaders (3.0.3)
  - Downloading psr/http-factory (1.1.0)
  - Downloading guzzlehttp/psr7 (2.6.2)
  - Downloading guzzlehttp/promises (2.0.2)
  - Downloading guzzlehttp/guzzle (7.8.1)
  - Downloading pusher/pusher-php-server (7.2.4)
  - Downloading voku/portable-ascii (2.0.1)
  - Downloading phpoption/phpoption (1.9.2)
  - Downloading graham-campbell/result-type (v1.1.2)
  - Downloading vlucas/phpdotenv (v5.6.0)
  - Downloading symfony/css-selector (v7.1.0)
  - Downloading tijsverkoyen/css-to-inline-styles (v2.2.7)
  - Downloading symfony/polyfill-uuid (v1.29.0)
  - Downloading symfony/uid (v6.4.7)
  - Downloading symfony/routing (v6.4.7)
  - Downloading symfony/process (v6.4.7)
  - Downloading symfony/polyfill-php72 (v1.29.0)
  - Downloading symfony/polyfill-intl-normalizer (v1.29.0)
  - Downloading symfony/polyfill-intl-idn (v1.29.0)
  - Downloading symfony/mime (v6.4.7)
  - Downloading psr/container (2.0.2)
  - Downloading symfony/service-contracts (v3.5.0)
  - Downloading doctrine/lexer (3.0.1)
  - Downloading egulias/email-validator (4.0.2)
  - Downloading symfony/mailer (v6.4.7)
  - Downloading symfony/finder (v6.4.7)
  - Downloading symfony/polyfill-intl-grapheme (v1.29.0)
  - Downloading symfony/string (v7.1.0)
  - Downloading symfony/console (v6.4.7)
  - Downloading ramsey/collection (2.0.0)
  - Downloading brick/math (0.9.3)
  - Downloading ramsey/uuid (4.7.6)
  - Downloading psr/simple-cache (3.0.0)
  - Downloading nunomaduro/termwind (v1.15.1)
  - Downloading symfony/translation-contracts (v3.5.0)
  - Downloading symfony/translation (v6.4.7)
  - Downloading psr/clock (1.0.0)
  - Downloading carbonphp/carbon-doctrine-types (2.1.0)
  - Downloading nesbot/carbon (2.72.3)
  - Downloading monolog/monolog (3.6.0)
  - Downloading league/mime-type-detection (1.15.0)
  - Downloading league/flysystem (3.28.0)
  - Downloading league/flysystem-local (3.28.0)
  - Downloading nette/utils (v4.0.4)
  - Downloading nette/schema (v1.3.0)
  - Downloading dflydev/dot-access-data (v3.0.2)
  - Downloading league/config (v1.2.0)
  - Downloading league/commonmark (2.4.2)
  - Downloading laravel/serializable-closure (v1.3.3)
  - Downloading laravel/framework (v10.48.12)
  - Downloading laravel/prompts (v0.1.23)
  - Downloading guzzlehttp/uri-template (v1.0.3)
  - Downloading fruitcake/php-cors (v1.3.0)
  - Downloading webmozart/assert (1.11.0)
  - Downloading dragonmantank/cron-expression (v3.3.3)
  - Downloading doctrine/inflector (2.0.10)
  - Downloading facade/ignition-contracts (1.0.2)
  - Downloading ratchet/rfc6455 (v0.3.1)
  - Downloading cboden/ratchet (v0.4.4)
  - Downloading beyondcode/laravel-websockets (1.14.1)
  - Downloading sebastian/environment (5.1.5)
  - Downloading sebastian/version (3.0.2)
  - Downloading sebastian/type (3.2.1)
  - Downloading sebastian/resource-operations (3.0.4)
  - Downloading sebastian/recursion-context (4.0.5)
  - Downloading sebastian/object-reflector (2.0.4)
  - Downloading sebastian/object-enumerator (4.0.4)
  - Downloading sebastian/global-state (5.0.7)
  - Downloading sebastian/exporter (4.0.6)
  - Downloading sebastian/diff (4.0.6)
  - Downloading sebastian/comparator (4.0.8)
  - Downloading sebastian/code-unit (1.0.8)
  - Downloading sebastian/cli-parser (1.0.2)
  - Downloading phpunit/php-timer (5.0.3)
  - Downloading phpunit/php-text-template (2.0.4)
  - Downloading phpunit/php-invoker (3.1.1)
  - Downloading phpunit/php-file-iterator (3.0.6)
  - Downloading theseer/tokenizer (1.2.3)
  - Downloading nikic/php-parser (v5.0.2)
  - Downloading sebastian/lines-of-code (1.0.4)
  - Downloading sebastian/complexity (2.0.3)
  - Downloading sebastian/code-unit-reverse-lookup (2.0.3)
  - Downloading phpunit/php-code-coverage (9.2.31)
  - Downloading phar-io/version (3.2.1)
  - Downloading phar-io/manifest (2.0.4)
  - Downloading myclabs/deep-copy (1.11.1)
  - Downloading doctrine/instantiator (2.0.0)
  - Downloading phpunit/phpunit (9.6.19)
  - Downloading jean85/pretty-package-versions (2.0.6)
  - Downloading fidry/cpu-core-counter (1.1.0)
  - Downloading brianium/paratest (v6.11.1)
  - Downloading buzz/laravel-h-captcha (v1.0.5)
  - Downloading psr/cache (3.0.0)
  - Downloading doctrine/event-manager (2.0.1)
  - Downloading doctrine/deprecations (1.1.3)
  - Downloading doctrine/cache (2.2.0)
  - Downloading doctrine/dbal (3.8.4)
  - Downloading fakerphp/faker (v1.23.1)
  - Downloading fgrosse/phpasn1 (v2.5.0)
  - Downloading intervention/image (2.7.2)
  - Downloading mobiledetect/mobiledetectlib (2.8.45)
  - Downloading jaybizzle/crawler-detect (v1.2.118)
  - Downloading jenssegers/agent (v2.6.4)
  - Downloading web-token/jwt-util-ecc (3.2.10)
  - Downloading paragonie/constant_time_encoding (v2.7.0)
  - Downloading web-token/jwt-core (3.1.2)
  - Downloading web-token/jwt-signature (3.1.7)
  - Downloading web-token/jwt-signature-algorithm-ecdsa (3.1.7)
  - Downloading web-token/jwt-key-mgmt (3.1.7)
  - Downloading spomky-labs/base64url (v2.0.4)
  - Downloading minishlink/web-push (v8.0.0)
  - Downloading laravel-notification-channels/webpush (7.1.0)
  - Downloading laravel/helpers (v1.7.0)
  - Downloading laravel/horizon (v5.24.4)
  - Downloading phpseclib/phpseclib (2.0.47)
  - Downloading nyholm/psr7 (1.8.1)
  - Downloading league/uri-interfaces (7.4.1)
  - Downloading league/uri (7.4.1)
  - Downloading league/event (2.2.0)
  - Downloading lcobucci/jwt (5.3.0)
  - Downloading lcobucci/clock (3.2.0)
  - Downloading defuse/php-encryption (v2.4.0)
  - Downloading league/oauth2-server (8.5.4)
  - Downloading firebase/php-jwt (v6.10.1)
  - Downloading laravel/passport (v11.10.6)
  - Downloading laravel/pint (v1.16.0)
  - Downloading laravel/telescope (v4.17.6)
  - Downloading psy/psysh (v0.12.3)
  - Downloading laravel/tinker (v2.9.0)
  - Downloading laravel/ui (v4.5.2)
  - Downloading mtdowling/jmespath.php (2.7.0)
  - Downloading aws/aws-sdk-php (3.308.6)
  - Downloading league/flysystem-aws-s3-v3 (3.28.0)
  - Downloading league/iso3166 (4.3.1)
  - Downloading hamcrest/hamcrest-php (v2.0.1)
  - Downloading mockery/mockery (1.6.12)
  - Downloading filp/whoops (2.15.4)
  - Downloading nunomaduro/collision (v6.4.0)
  - Downloading symfony/var-exporter (v7.1.0)
  - Downloading symfony/cache-contracts (v3.5.0)
  - Downloading symfony/cache (v7.1.0)
  - Downloading spatie/temporary-directory (2.2.1)
  - Downloading php-ffmpeg/php-ffmpeg (v1.2.0)
  - Downloading pbmedia/laravel-ffmpeg (8.5.0)
  - Downloading pixelfed/fractal (0.18.0)
  - Downloading pixelfed/laravel-snowflake (v2.0.0)
  - Downloading tightenco/collect (v5.6.33)
  - Downloading pixelfed/zttp (v0.5.0)
  - Downloading pragmarx/google2fa (v8.0.1)
  - Downloading predis/predis (v2.2.2)
  - Downloading spatie/laravel-package-tools (1.16.4)
  - Downloading spatie/laravel-signal-aware-command (1.3.0)
  - Downloading spatie/db-dumper (3.6.0)
  - Downloading spatie/laravel-backup (8.8.0)
  - Downloading spatie/image-optimizer (1.7.5)
  - Downloading spatie/laravel-image-optimizer (1.8.0)
  - Downloading ezyang/htmlpurifier (v4.17.0)
  - Downloading stevebauman/purify (v6.0.2)
  - Downloading symfony/http-client-contracts (v3.5.0)
  - Downloading symfony/http-client (v6.4.7)
  - Downloading symfony/mailgun-mailer (v6.4.7)
  - Installing aws/aws-crt-php (v1.2.5): Extracting archive
  - Installing dasprid/enum (1.0.5): Extracting archive
  - Installing bacon/bacon-qr-code (2.0.8): Extracting archive
  - Installing symfony/polyfill-php80 (v1.29.0): Extracting archive
  - Installing symfony/polyfill-php83 (v1.29.0): Extracting archive
  - Installing symfony/polyfill-mbstring (v1.29.0): Extracting archive
  - Installing symfony/deprecation-contracts (v3.5.0): Extracting archive
  - Installing symfony/http-foundation (v6.4.7): Extracting archive
  - Installing psr/http-message (1.1): Extracting archive
  - Installing symfony/psr-http-message-bridge (v2.3.1): Extracting archive
  - Installing symfony/polyfill-ctype (v1.29.0): Extracting archive
  - Installing psr/event-dispatcher (1.0.0): Extracting archive
  - Installing symfony/event-dispatcher-contracts (v3.5.0): Extracting archive
  - Installing symfony/event-dispatcher (v7.1.0): Extracting archive
  - Installing symfony/var-dumper (v6.4.7): Extracting archive
  - Installing psr/log (3.0.0): Extracting archive
  - Installing symfony/error-handler (v6.4.7): Extracting archive
  - Installing symfony/http-kernel (v6.4.7): Extracting archive
  - Installing react/event-loop (v1.5.0): Extracting archive
  - Installing evenement/evenement (v3.0.2): Extracting archive
  - Installing react/stream (v1.3.0): Extracting archive
  - Installing react/promise (v3.2.0): Extracting archive
  - Installing react/cache (v1.2.0): Extracting archive
  - Installing react/dns (v1.12.0): Extracting archive
  - Installing react/socket (v1.15.0): Extracting archive
  - Installing fig/http-message-util (1.1.5): Extracting archive
  - Installing react/http (v1.10.0): Extracting archive
  - Installing paragonie/random_compat (v9.99.100): Extracting archive
  - Installing paragonie/sodium_compat (v1.21.1): Extracting archive
  - Installing psr/http-client (1.0.3): Extracting archive
  - Installing ralouphie/getallheaders (3.0.3): Extracting archive
  - Installing psr/http-factory (1.1.0): Extracting archive
  - Installing guzzlehttp/psr7 (2.6.2): Extracting archive
  - Installing guzzlehttp/promises (2.0.2): Extracting archive
  - Installing guzzlehttp/guzzle (7.8.1): Extracting archive
  - Installing pusher/pusher-php-server (7.2.4): Extracting archive
  - Installing voku/portable-ascii (2.0.1): Extracting archive
  - Installing phpoption/phpoption (1.9.2): Extracting archive
  - Installing graham-campbell/result-type (v1.1.2): Extracting archive
  - Installing vlucas/phpdotenv (v5.6.0): Extracting archive
  - Installing symfony/css-selector (v7.1.0): Extracting archive
  - Installing tijsverkoyen/css-to-inline-styles (v2.2.7): Extracting archive
  - Installing symfony/polyfill-uuid (v1.29.0): Extracting archive
  - Installing symfony/uid (v6.4.7): Extracting archive
  - Installing symfony/routing (v6.4.7): Extracting archive
  - Installing symfony/process (v6.4.7): Extracting archive
  - Installing symfony/polyfill-php72 (v1.29.0): Extracting archive
  - Installing symfony/polyfill-intl-normalizer (v1.29.0): Extracting archive
  - Installing symfony/polyfill-intl-idn (v1.29.0): Extracting archive
  - Installing symfony/mime (v6.4.7): Extracting archive
  - Installing psr/container (2.0.2): Extracting archive
  - Installing symfony/service-contracts (v3.5.0): Extracting archive
  - Installing doctrine/lexer (3.0.1): Extracting archive
  - Installing egulias/email-validator (4.0.2): Extracting archive
  - Installing symfony/mailer (v6.4.7): Extracting archive
  - Installing symfony/finder (v6.4.7): Extracting archive
  - Installing symfony/polyfill-intl-grapheme (v1.29.0): Extracting archive
  - Installing symfony/string (v7.1.0): Extracting archive
  - Installing symfony/console (v6.4.7): Extracting archive
  - Installing ramsey/collection (2.0.0): Extracting archive
  - Installing brick/math (0.9.3): Extracting archive
  - Installing ramsey/uuid (4.7.6): Extracting archive
  - Installing psr/simple-cache (3.0.0): Extracting archive
  - Installing nunomaduro/termwind (v1.15.1): Extracting archive
  - Installing symfony/translation-contracts (v3.5.0): Extracting archive
  - Installing symfony/translation (v6.4.7): Extracting archive
  - Installing psr/clock (1.0.0): Extracting archive
  - Installing carbonphp/carbon-doctrine-types (2.1.0): Extracting archive
  - Installing nesbot/carbon (2.72.3): Extracting archive
  - Installing monolog/monolog (3.6.0): Extracting archive
  - Installing league/mime-type-detection (1.15.0): Extracting archive
  - Installing league/flysystem (3.28.0): Extracting archive
  - Installing league/flysystem-local (3.28.0): Extracting archive
  - Installing nette/utils (v4.0.4): Extracting archive
  - Installing nette/schema (v1.3.0): Extracting archive
  - Installing dflydev/dot-access-data (v3.0.2): Extracting archive
  - Installing league/config (v1.2.0): Extracting archive
  - Installing league/commonmark (2.4.2): Extracting archive
  - Installing laravel/serializable-closure (v1.3.3): Extracting archive
  - Installing laravel/framework (v10.48.12): Extracting archive
  - Installing laravel/prompts (v0.1.23): Extracting archive
  - Installing guzzlehttp/uri-template (v1.0.3): Extracting archive
  - Installing fruitcake/php-cors (v1.3.0): Extracting archive
  - Installing webmozart/assert (1.11.0): Extracting archive
  - Installing dragonmantank/cron-expression (v3.3.3): Extracting archive
  - Installing doctrine/inflector (2.0.10): Extracting archive
  - Installing facade/ignition-contracts (1.0.2): Extracting archive
  - Installing ratchet/rfc6455 (v0.3.1): Extracting archive
  - Installing cboden/ratchet (v0.4.4): Extracting archive
  - Installing beyondcode/laravel-websockets (1.14.1): Extracting archive
  - Installing sebastian/environment (5.1.5): Extracting archive
  - Installing sebastian/version (3.0.2): Extracting archive
  - Installing sebastian/type (3.2.1): Extracting archive
  - Installing sebastian/resource-operations (3.0.4): Extracting archive
  - Installing sebastian/recursion-context (4.0.5): Extracting archive
  - Installing sebastian/object-reflector (2.0.4): Extracting archive
  - Installing sebastian/object-enumerator (4.0.4): Extracting archive
  - Installing sebastian/global-state (5.0.7): Extracting archive
  - Installing sebastian/exporter (4.0.6): Extracting archive
  - Installing sebastian/diff (4.0.6): Extracting archive
  - Installing sebastian/comparator (4.0.8): Extracting archive
  - Installing sebastian/code-unit (1.0.8): Extracting archive
  - Installing sebastian/cli-parser (1.0.2): Extracting archive
  - Installing phpunit/php-timer (5.0.3): Extracting archive
  - Installing phpunit/php-text-template (2.0.4): Extracting archive
  - Installing phpunit/php-invoker (3.1.1): Extracting archive
  - Installing phpunit/php-file-iterator (3.0.6): Extracting archive
  - Installing theseer/tokenizer (1.2.3): Extracting archive
  - Installing nikic/php-parser (v5.0.2): Extracting archive
  - Installing sebastian/lines-of-code (1.0.4): Extracting archive
  - Installing sebastian/complexity (2.0.3): Extracting archive
  - Installing sebastian/code-unit-reverse-lookup (2.0.3): Extracting archive
  - Installing phpunit/php-code-coverage (9.2.31): Extracting archive
  - Installing phar-io/version (3.2.1): Extracting archive
  - Installing phar-io/manifest (2.0.4): Extracting archive
  - Installing myclabs/deep-copy (1.11.1): Extracting archive
  - Installing doctrine/instantiator (2.0.0): Extracting archive
  - Installing phpunit/phpunit (9.6.19): Extracting archive
  - Installing jean85/pretty-package-versions (2.0.6): Extracting archive
  - Installing fidry/cpu-core-counter (1.1.0): Extracting archive
  - Installing brianium/paratest (v6.11.1): Extracting archive
  - Installing buzz/laravel-h-captcha (v1.0.5): Extracting archive
  - Installing psr/cache (3.0.0): Extracting archive
  - Installing doctrine/event-manager (2.0.1): Extracting archive
  - Installing doctrine/deprecations (1.1.3): Extracting archive
  - Installing doctrine/cache (2.2.0): Extracting archive
  - Installing doctrine/dbal (3.8.4): Extracting archive
  - Installing fakerphp/faker (v1.23.1): Extracting archive
  - Installing fgrosse/phpasn1 (v2.5.0): Extracting archive
  - Installing intervention/image (2.7.2): Extracting archive
  - Installing mobiledetect/mobiledetectlib (2.8.45): Extracting archive
  - Installing jaybizzle/crawler-detect (v1.2.118): Extracting archive
  - Installing jenssegers/agent (v2.6.4): Extracting archive
  - Installing web-token/jwt-util-ecc (3.2.10): Extracting archive
  - Installing paragonie/constant_time_encoding (v2.7.0): Extracting archive
  - Installing web-token/jwt-core (3.1.2): Extracting archive
  - Installing web-token/jwt-signature (3.1.7): Extracting archive
  - Installing web-token/jwt-signature-algorithm-ecdsa (3.1.7): Extracting archive
  - Installing web-token/jwt-key-mgmt (3.1.7): Extracting archive
  - Installing spomky-labs/base64url (v2.0.4): Extracting archive
  - Installing minishlink/web-push (v8.0.0): Extracting archive
  - Installing laravel-notification-channels/webpush (7.1.0): Extracting archive
  - Installing laravel/helpers (v1.7.0): Extracting archive
  - Installing laravel/horizon (v5.24.4): Extracting archive
  - Installing phpseclib/phpseclib (2.0.47): Extracting archive
  - Installing nyholm/psr7 (1.8.1): Extracting archive
  - Installing league/uri-interfaces (7.4.1): Extracting archive
  - Installing league/uri (7.4.1): Extracting archive
  - Installing league/event (2.2.0): Extracting archive
  - Installing lcobucci/jwt (5.3.0): Extracting archive
  - Installing lcobucci/clock (3.2.0): Extracting archive
  - Installing defuse/php-encryption (v2.4.0): Extracting archive
  - Installing league/oauth2-server (8.5.4): Extracting archive
  - Installing firebase/php-jwt (v6.10.1): Extracting archive
  - Installing laravel/passport (v11.10.6): Extracting archive
  - Installing laravel/pint (v1.16.0): Extracting archive
  - Installing laravel/telescope (v4.17.6): Extracting archive
  - Installing psy/psysh (v0.12.3): Extracting archive
  - Installing laravel/tinker (v2.9.0): Extracting archive
  - Installing laravel/ui (v4.5.2): Extracting archive
  - Installing mtdowling/jmespath.php (2.7.0): Extracting archive
  - Installing aws/aws-sdk-php (3.308.6): Extracting archive
  - Installing league/flysystem-aws-s3-v3 (3.28.0): Extracting archive
  - Installing league/iso3166 (4.3.1): Extracting archive
  - Installing hamcrest/hamcrest-php (v2.0.1): Extracting archive
  - Installing mockery/mockery (1.6.12): Extracting archive
  - Installing filp/whoops (2.15.4): Extracting archive
  - Installing nunomaduro/collision (v6.4.0): Extracting archive
  - Installing symfony/var-exporter (v7.1.0): Extracting archive
  - Installing symfony/cache-contracts (v3.5.0): Extracting archive
  - Installing symfony/cache (v7.1.0): Extracting archive
  - Installing spatie/temporary-directory (2.2.1): Extracting archive
  - Installing php-ffmpeg/php-ffmpeg (v1.2.0): Extracting archive
  - Installing pbmedia/laravel-ffmpeg (8.5.0): Extracting archive
  - Installing pixelfed/fractal (0.18.0): Extracting archive
  - Installing pixelfed/laravel-snowflake (v2.0.0): Extracting archive
  - Installing tightenco/collect (v5.6.33): Extracting archive
  - Installing pixelfed/zttp (v0.5.0): Extracting archive
  - Installing pragmarx/google2fa (v8.0.1): Extracting archive
  - Installing predis/predis (v2.2.2): Extracting archive
  - Installing spatie/laravel-package-tools (1.16.4): Extracting archive
  - Installing spatie/laravel-signal-aware-command (1.3.0): Extracting archive
  - Installing spatie/db-dumper (3.6.0): Extracting archive
  - Installing spatie/laravel-backup (8.8.0): Extracting archive
  - Installing spatie/image-optimizer (1.7.5): Extracting archive
  - Installing spatie/laravel-image-optimizer (1.8.0): Extracting archive
  - Installing ezyang/htmlpurifier (v4.17.0): Extracting archive
  - Installing stevebauman/purify (v6.0.2): Extracting archive
  - Installing symfony/http-client-contracts (v3.5.0): Extracting archive
  - Installing symfony/http-client (v6.4.7): Extracting archive
  - Installing symfony/mailgun-mailer (v6.4.7): Extracting archive
Package beyondcode/laravel-websockets is abandoned, you should avoid using it. No replacement was suggested.
Package fgrosse/phpasn1 is abandoned, you should avoid using it. No replacement was suggested.
Package tightenco/collect is abandoned, you should avoid using it. Use illuminate/collections instead.
Package web-token/jwt-core is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-key-mgmt is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-signature is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-signature-algorithm-ecdsa is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-util-ecc is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Generating optimized autoload files
> Illuminate\Foundation\ComposerScripts::postAutoloadDump
> @php artisan package:discover --ansi

   INFO  Discovering packages.  

  beyondcode/laravel-websockets ......................................... DONE
  buzz/laravel-h-captcha ................................................ DONE
  intervention/image .................................................... DONE
  jenssegers/agent ...................................................... DONE
  laravel-notification-channels/webpush ................................. DONE
  laravel/horizon ....................................................... DONE
  laravel/telescope ..................................................... DONE
  laravel/tinker ........................................................ DONE
  laravel/ui ............................................................ DONE
  nesbot/carbon ......................................................... DONE
  nunomaduro/collision .................................................. DONE
  nunomaduro/termwind ................................................... DONE
  pbmedia/laravel-ffmpeg ................................................ DONE
  pixelfed/laravel-snowflake ............................................ DONE
  spatie/laravel-backup ................................................. DONE
  spatie/laravel-image-optimizer ........................................ DONE
  spatie/laravel-signal-aware-command ................................... DONE
  stevebauman/purify .................................................... DONE

122 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Step 64: Run composer update
Loading composer repositories with package information
Updating dependencies
Lock file operations: 0 installs, 46 updates, 0 removals
  - Upgrading aws/aws-crt-php (v1.2.5 => v1.2.6)
  - Upgrading aws/aws-sdk-php (3.308.6 => 3.316.2)
  - Upgrading dflydev/dot-access-data (v3.0.2 => v3.0.3)
  - Upgrading doctrine/dbal (3.8.4 => 3.8.6)
  - Upgrading jaybizzle/crawler-detect (v1.2.118 => v1.2.119)
  - Upgrading laravel/framework (v10.48.12 => v10.48.16)
  - Upgrading laravel/horizon (v5.24.4 => v5.25.0)
  - Upgrading laravel/pint (v1.16.0 => v1.16.2)
  - Upgrading laravel/prompts (v0.1.23 => v0.1.24)
  - Upgrading monolog/monolog (3.6.0 => 3.7.0)
  - Upgrading myclabs/deep-copy (1.11.1 => 1.12.0)
  - Upgrading nesbot/carbon (2.72.3 => 2.72.5)
  - Upgrading nikic/php-parser (v5.0.2 => v5.1.0)
  - Upgrading phpunit/phpunit (9.6.19 => 9.6.20)
  - Upgrading psy/psysh (v0.12.3 => v0.12.4)
  - Upgrading react/dns (v1.12.0 => v1.13.0)
  - Upgrading react/stream (v1.3.0 => v1.4.0)
  - Upgrading spatie/laravel-backup (8.8.0 => 8.8.1)
  - Upgrading symfony/cache (v7.1.0 => v7.1.2)
  - Upgrading symfony/console (v6.4.7 => v6.4.9)
  - Upgrading symfony/css-selector (v7.1.0 => v7.1.1)
  - Upgrading symfony/error-handler (v6.4.7 => v6.4.9)
  - Upgrading symfony/event-dispatcher (v7.1.0 => v7.1.1)
  - Upgrading symfony/finder (v6.4.7 => v6.4.8)
  - Upgrading symfony/http-client (v6.4.7 => v6.4.9)
  - Upgrading symfony/http-foundation (v6.4.7 => v6.4.8)
  - Upgrading symfony/http-kernel (v6.4.7 => v6.4.9)
  - Upgrading symfony/mailer (v6.4.7 => v6.4.9)
  - Upgrading symfony/mailgun-mailer (v6.4.7 => v6.4.9)
  - Upgrading symfony/mime (v6.4.7 => v6.4.9)
  - Upgrading symfony/polyfill-ctype (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-intl-grapheme (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-intl-idn (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-intl-normalizer (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-mbstring (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-php72 (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-php80 (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-php83 (v1.29.0 => v1.30.0)
  - Upgrading symfony/polyfill-uuid (v1.29.0 => v1.30.0)
  - Upgrading symfony/process (v6.4.7 => v6.4.8)
  - Upgrading symfony/routing (v6.4.7 => v6.4.8)
  - Upgrading symfony/string (v7.1.0 => v7.1.2)
  - Upgrading symfony/translation (v6.4.7 => v6.4.8)
  - Upgrading symfony/uid (v6.4.7 => v6.4.8)
  - Upgrading symfony/var-dumper (v6.4.7 => v6.4.9)
  - Upgrading symfony/var-exporter (v7.1.0 => v7.1.2)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 46 updates, 0 removals
  - Downloading aws/aws-crt-php (v1.2.6)
  - Downloading symfony/polyfill-php83 (v1.30.0)
  - Downloading symfony/polyfill-mbstring (v1.30.0)
  - Downloading symfony/http-foundation (v6.4.8)
  - Downloading symfony/polyfill-ctype (v1.30.0)
  - Downloading symfony/event-dispatcher (v7.1.1)
  - Downloading symfony/var-dumper (v6.4.9)
  - Downloading symfony/error-handler (v6.4.9)
  - Downloading symfony/http-kernel (v6.4.9)
  - Downloading react/stream (v1.4.0)
  - Downloading react/dns (v1.13.0)
  - Downloading symfony/polyfill-php80 (v1.30.0)
  - Downloading symfony/css-selector (v7.1.1)
  - Downloading symfony/polyfill-uuid (v1.30.0)
  - Downloading symfony/uid (v6.4.8)
  - Downloading symfony/routing (v6.4.8)
  - Downloading symfony/process (v6.4.8)
  - Downloading symfony/polyfill-php72 (v1.30.0)
  - Downloading symfony/polyfill-intl-normalizer (v1.30.0)
  - Downloading symfony/polyfill-intl-idn (v1.30.0)
  - Downloading symfony/mime (v6.4.9)
  - Downloading symfony/mailer (v6.4.9)
  - Downloading symfony/finder (v6.4.8)
  - Downloading symfony/polyfill-intl-grapheme (v1.30.0)
  - Downloading symfony/string (v7.1.2)
  - Downloading symfony/console (v6.4.9)
  - Downloading symfony/translation (v6.4.8)
  - Downloading nesbot/carbon (2.72.5)
  - Downloading monolog/monolog (3.7.0)
  - Downloading dflydev/dot-access-data (v3.0.3)
  - Downloading laravel/framework (v10.48.16)
  - Downloading laravel/prompts (v0.1.24)
  - Downloading nikic/php-parser (v5.1.0)
  - Downloading myclabs/deep-copy (1.12.0)
  - Downloading phpunit/phpunit (9.6.20)
  - Downloading doctrine/dbal (3.8.6)
  - Downloading jaybizzle/crawler-detect (v1.2.119)
  - Downloading laravel/horizon (v5.25.0)
  - Downloading laravel/pint (v1.16.2)
  - Downloading psy/psysh (v0.12.4)
  - Downloading aws/aws-sdk-php (3.316.2)
  - Downloading symfony/var-exporter (v7.1.2)
  - Downloading symfony/cache (v7.1.2)
  - Downloading spatie/laravel-backup (8.8.1)
  - Downloading symfony/http-client (v6.4.9)
  - Downloading symfony/mailgun-mailer (v6.4.9)
  0/46 [>---------------------------]   0%
  7/46 [====>-----------------------]  15%
 13/46 [=======>--------------------]  28%
 14/46 [========>-------------------]  30%
 21/46 [============>---------------]  45%
 24/46 [==============>-------------]  52%
 28/46 [=================>----------]  60%
 33/46 [====================>-------]  71%
 37/46 [======================>-----]  80%
 42/46 [=========================>--]  91%
 46/46 [============================] 100%
  - Upgrading aws/aws-crt-php (v1.2.5 => v1.2.6): Extracting archive
  - Upgrading symfony/polyfill-php83 (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/polyfill-mbstring (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/http-foundation (v6.4.7 => v6.4.8): Extracting archive
  - Upgrading symfony/polyfill-ctype (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/event-dispatcher (v7.1.0 => v7.1.1): Extracting archive
  - Upgrading symfony/var-dumper (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading symfony/error-handler (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading symfony/http-kernel (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading react/stream (v1.3.0 => v1.4.0): Extracting archive
  - Upgrading react/dns (v1.12.0 => v1.13.0): Extracting archive
  - Upgrading symfony/polyfill-php80 (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/css-selector (v7.1.0 => v7.1.1): Extracting archive
  - Upgrading symfony/polyfill-uuid (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/uid (v6.4.7 => v6.4.8): Extracting archive
  - Upgrading symfony/routing (v6.4.7 => v6.4.8): Extracting archive
  - Upgrading symfony/process (v6.4.7 => v6.4.8): Extracting archive
  - Upgrading symfony/polyfill-php72 (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/polyfill-intl-normalizer (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/polyfill-intl-idn (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/mime (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading symfony/mailer (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading symfony/finder (v6.4.7 => v6.4.8): Extracting archive
  - Upgrading symfony/polyfill-intl-grapheme (v1.29.0 => v1.30.0): Extracting archive
  - Upgrading symfony/string (v7.1.0 => v7.1.2): Extracting archive
  - Upgrading symfony/console (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading symfony/translation (v6.4.7 => v6.4.8): Extracting archive
  - Upgrading nesbot/carbon (2.72.3 => 2.72.5): Extracting archive
  - Upgrading monolog/monolog (3.6.0 => 3.7.0): Extracting archive
  - Upgrading dflydev/dot-access-data (v3.0.2 => v3.0.3): Extracting archive
  - Upgrading laravel/framework (v10.48.12 => v10.48.16): Extracting archive
  - Upgrading laravel/prompts (v0.1.23 => v0.1.24): Extracting archive
  - Upgrading nikic/php-parser (v5.0.2 => v5.1.0): Extracting archive
  - Upgrading myclabs/deep-copy (1.11.1 => 1.12.0): Extracting archive
  - Upgrading phpunit/phpunit (9.6.19 => 9.6.20): Extracting archive
  - Upgrading doctrine/dbal (3.8.4 => 3.8.6): Extracting archive
  - Upgrading jaybizzle/crawler-detect (v1.2.118 => v1.2.119): Extracting archive
  - Upgrading laravel/horizon (v5.24.4 => v5.25.0): Extracting archive
  - Upgrading laravel/pint (v1.16.0 => v1.16.2): Extracting archive
  - Upgrading psy/psysh (v0.12.3 => v0.12.4): Extracting archive
  - Upgrading aws/aws-sdk-php (3.308.6 => 3.316.2): Extracting archive
  - Upgrading symfony/var-exporter (v7.1.0 => v7.1.2): Extracting archive
  - Upgrading symfony/cache (v7.1.0 => v7.1.2): Extracting archive
  - Upgrading spatie/laravel-backup (8.8.0 => 8.8.1): Extracting archive
  - Upgrading symfony/http-client (v6.4.7 => v6.4.9): Extracting archive
  - Upgrading symfony/mailgun-mailer (v6.4.7 => v6.4.9): Extracting archive
  0/46 [>---------------------------]   0%
 10/46 [======>---------------------]  21%
 20/46 [============>---------------]  43%
 30/46 [==================>---------]  65%
 39/46 [=======================>----]  84%
 45/46 [===========================>]  97%
 46/46 [============================] 100%
Package beyondcode/laravel-websockets is abandoned, you should avoid using it. No replacement was suggested.
Package fgrosse/phpasn1 is abandoned, you should avoid using it. No replacement was suggested.
Package tightenco/collect is abandoned, you should avoid using it. Use illuminate/collections instead.
Package web-token/jwt-core is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-key-mgmt is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-signature is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-signature-algorithm-ecdsa is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Package web-token/jwt-util-ecc is abandoned, you should avoid using it. Use web-token/jwt-library instead.
Generating optimized autoload files
> Illuminate\Foundation\ComposerScripts::postAutoloadDump
> @php artisan package:discover --ansi

   INFO  Discovering packages.  

  beyondcode/laravel-websockets ......................................... DONE
  buzz/laravel-h-captcha ................................................ DONE
  intervention/image .................................................... DONE
  jenssegers/agent ...................................................... DONE
  laravel-notification-channels/webpush ................................. DONE
  laravel/horizon ....................................................... DONE
  laravel/telescope ..................................................... DONE
  laravel/tinker ........................................................ DONE
  laravel/ui ............................................................ DONE
  nesbot/carbon ......................................................... DONE
  nunomaduro/collision .................................................. DONE
  nunomaduro/termwind ................................................... DONE
  pbmedia/laravel-ffmpeg ................................................ DONE
  pixelfed/laravel-snowflake ............................................ DONE
  spatie/laravel-backup ................................................. DONE
  spatie/laravel-image-optimizer ........................................ DONE
  spatie/laravel-signal-aware-command ................................... DONE
  stevebauman/purify .................................................... DONE

122 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Step 65: Clean cook artifacts
Step 66: Install pot local
Step 67: Set file ownership on cook scripts
Step 68: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 69: Create rc.d script to start cook
creating rc.d script to start cook
Step 70: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 71: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot pixelfed-amd64-14_0
=====>  Remove p4669045e01056c epair network interfaces
=====>  unmount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/pixelfed-amd64-14_0/m/dev
===>  exporting pixelfed-amd64-14_0 @ 1720731376 to /tmp/pixelfed-amd64-14_0_0.2.1.xz

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