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
- Image Readme
- How To Use The Ready-Made Image
- Alternatively: Create a Jail With This Flavour Yourself
- Version History
- Manual Image Download Links
- Jenkins Pot Creation Logs
How To Use The Ready-Made Image
FreeBSD 14.1:
pot import -p pixelfed-amd64-14_1 -t 0.7.3 -U https://potluck.honeyguide.net/pixelfed
With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p pixelfed-amd64-14_1 -t 0.7.3 -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_1 -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.1) 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.7
- Version bump for new base image
- Enable milliseconds in syslog-ng for all log timestamps
- Update syslog-ng config to use modern config options
0.6
- Version bump for new base image 14.1
- Extra steps to trim image size
0.5
- Version bump for new base image
0.4
- Version bump for new base image
- Adjust for php-fpm/php_fpm in RC service
0.3
- Version bump for new base image
- Set .env variable “FILESYSTEM_DRIVER=s3”
- Switch to latest package stream
- Build as non-layered image
- Add script to help with laravel.log
0.2
- Version bump for new base image
- Python is now py311
- Update cache clear script
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 Wed Nov 6 18:36:32 UTC 2024
Manual Image Download Links
pixelfed-amd64-14_1_0.7.3.xz (
)
pixelfed-amd64-14_1_0.7.3.xz.skein (
)
pixelfed-amd64-14_1_0.7.3.xz.skein.sig (
)
pixelfed-amd64-14_1_0.7.3.xz.meta (
)
Jenkins Pot Creation Logs
pixelfed-amd64-14_1_0.7.3:
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}/latest" }' \
>/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
step "Clean freebsd-update"
rm -rf /var/db/freebsd-update
mkdir -p /var/db/freebsd-update
# 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
# this automatically installs ImageMagick7-nox11 too
step "Install package vips-nox11"
pkg install -y vips-nox11
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
# ---------------- SETUP PORTS -----------------
#step "Add openssl settings to make.conf"
#echo "BATCH=yes" > /etc/make.conf
#echo "DEFAULT_VERSIONS+=ssl=openssl" >> /etc/make.conf
##echo "OPTIONS_SET+= " >> /etc/make.conf
#step "Make directory /usr/ports"
#mkdir -p /usr/ports
#step "Clone ports repo (slow, large)"
#git clone https://git.freebsd.org/ports.git /usr/ports
#step "Checkout the quarterly distribution"
#cd /usr/ports
#git checkout 2024Q3
#step "Build ffmpeg"
#cd /usr/ports/multimedia/ffmpeg/
#make install clean BATCH=YES NO_CHECKSUM=yes
#step "Build ImageMagick7"
#cd /usr/ports/graphics/ImageMagick7/
#make install clean BATCH=YES
#step "Change directory to /root"
#cd /root
#step "Remove /usr/ports"
#rm -rf /usr/ports
# --------------- CLEAN PACKAGES ---------------
step "Package autoremove"
pkg autoremove -y
step "Clean package installation"
pkg clean -ay
# -------------- 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"
# lock to release v0.12.3 on 2024-08-15
su -m www -c "cd /usr/local/www/pixelfed; git checkout 4c245cf429330d01fcb8ebeb9aa8c84a9574a645"
# 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:
===> Creating a new pot
===> pot name : pixelfed-amd64-14_1
===> type : single
===> base : 14.1
===> pot_base :
===> level : 0
===> network-type : public-bridge
===> network-stack: ipv4
===> ip : 10.192.0.3
===> bridge :
===> dns : inherit
===> flavours : fbsd-update pixelfed
===> Fetching FreeBSD 14.1
===> Extract the tarball
=====> Flavour: fbsd-update
=====> Starting pixelfed-amd64-14_1 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp
defaultrouter: NO -> 10.192.0.1
===> Starting the pot pixelfed-amd64-14_1
=====> Pot pixelfed-amd64-14_1 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_1 host.hostname=pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net osrelease=14.1-RELEASE path=/mnt/srv/pot/jails/pixelfed-amd64-14_1/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32 /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:77:ff:fe:a5: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
Updating /var/run/os-release done.
Clearing /tmp (X related).
Updating motd:.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Wed Nov 6 18:22:24 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on pixelfed-amd64-14_1
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 14.1-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 59 patches.....10....20....30....40....50.... done.
Applying patches... done.
The following files will be updated as part of updating to
14.1-RELEASE-p6:
/bin/freebsd-version
/lib/libc++.so.1
/lib/libcrypto.so.30
/lib/libnv.so.1
/lib/libzpool.so.2
/rescue/[
/rescue/bectl
/rescue/bsdlabel
/rescue/bunzip2
/rescue/bzcat
/rescue/bzip2
/rescue/camcontrol
/rescue/cat
/rescue/ccdconfig
/rescue/chflags
/rescue/chgrp
/rescue/chio
/rescue/chmod
/rescue/chown
/rescue/chroot
/rescue/clri
/rescue/cp
/rescue/csh
/rescue/date
/rescue/dd
/rescue/devfs
/rescue/df
/rescue/dhclient
/rescue/disklabel
/rescue/dmesg
/rescue/dump
/rescue/dumpfs
/rescue/dumpon
/rescue/echo
/rescue/ed
/rescue/ex
/rescue/expr
/rescue/fastboot
/rescue/fasthalt
/rescue/fdisk
/rescue/fetch
/rescue/fsck
/rescue/fsck_4.2bsd
/rescue/fsck_ffs
/rescue/fsck_msdosfs
/rescue/fsck_ufs
/rescue/fsdb
/rescue/fsirand
/rescue/gbde
/rescue/geom
/rescue/getfacl
/rescue/glabel
/rescue/gpart
/rescue/groups
/rescue/gunzip
/rescue/gzcat
/rescue/gzip
/rescue/halt
/rescue/head
/rescue/hostname
/rescue/id
/rescue/ifconfig
/rescue/init
/rescue/ipf
/rescue/iscsictl
/rescue/iscsid
/rescue/kenv
/rescue/kill
/rescue/kldconfig
/rescue/kldload
/rescue/kldstat
/rescue/kldunload
/rescue/ldconfig
/rescue/less
/rescue/link
/rescue/ln
/rescue/ls
/rescue/lzcat
/rescue/lzma
/rescue/md5
/rescue/mdconfig
/rescue/mdmfs
/rescue/mkdir
/rescue/mknod
/rescue/more
/rescue/mount
/rescue/mount_cd9660
/rescue/mount_msdosfs
/rescue/mount_nfs
/rescue/mount_nullfs
/rescue/mount_udf
/rescue/mount_unionfs
/rescue/mt
/rescue/mv
/rescue/nc
/rescue/newfs
/rescue/newfs_msdos
/rescue/nos-tun
/rescue/pgrep
/rescue/ping
/rescue/ping6
/rescue/pkill
/rescue/poweroff
/rescue/ps
/rescue/pwd
/rescue/rcorder
/rescue/rdump
/rescue/realpath
/rescue/reboot
/rescue/red
/rescue/rescue
/rescue/restore
/rescue/rm
/rescue/rmdir
/rescue/route
/rescue/routed
/rescue/rrestore
/rescue/rtquery
/rescue/rtsol
/rescue/savecore
/rescue/sed
/rescue/setfacl
/rescue/sh
/rescue/shutdown
/rescue/sleep
/rescue/stty
/rescue/swapon
/rescue/sync
/rescue/sysctl
/rescue/tail
/rescue/tar
/rescue/tcsh
/rescue/tee
/rescue/test
/rescue/tunefs
/rescue/umount
/rescue/unlink
/rescue/unlzma
/rescue/unxz
/rescue/unzstd
/rescue/vi
/rescue/whoami
/rescue/xz
/rescue/xzcat
/rescue/zcat
/rescue/zdb
/rescue/zfs
/rescue/zpool
/rescue/zstd
/rescue/zstdcat
/rescue/zstdmt
/sbin/devd
/sbin/ifconfig
/usr/bin/c++
/usr/bin/c++filt
/usr/bin/calendar
/usr/bin/cc
/usr/bin/clang
/usr/bin/clang++
/usr/bin/clang-cpp
/usr/bin/cpp
/usr/bin/dtc
/usr/bin/fetch
/usr/bin/gcov
/usr/bin/kyua
/usr/bin/ld.lld
/usr/bin/lldb
/usr/bin/lldb-server
/usr/bin/llvm-addr2line
/usr/bin/llvm-ar
/usr/bin/llvm-cov
/usr/bin/llvm-cxxfilt
/usr/bin/llvm-nm
/usr/bin/llvm-objcopy
/usr/bin/llvm-objdump
/usr/bin/llvm-profdata
/usr/bin/llvm-ranlib
/usr/bin/llvm-readelf
/usr/bin/llvm-readobj
/usr/bin/llvm-size
/usr/bin/llvm-strings
/usr/bin/llvm-strip
/usr/bin/llvm-symbolizer
/usr/bin/objdump
/usr/bin/users
/usr/include/c++/v1/string
/usr/include/net/pfvar.h
/usr/lib/clang/18/lib/freebsd/libclang_rt.fuzzer-x86_64.a
/usr/lib/clang/18/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a
/usr/lib/libc++.a
/usr/lib/libcrypto.a
/usr/lib/libnv.a
/usr/lib/libpam.a
/usr/lib/libpmc.a
/usr/lib/libpmc.so.5
/usr/lib/libprivateatf-c++.a
/usr/lib/libprivateatf-c++.so.2
/usr/lib/libprivatedevdctl.a
/usr/lib/libprivatedevdctl.so.0
/usr/lib/libprivategmock.a
/usr/lib/libprivategmock.so.0
/usr/lib/libprivategmock_main.a
/usr/lib/libprivategmock_main.so.0
/usr/lib/libprivategtest.a
/usr/lib/libprivategtest.so.0
/usr/lib/libprivatessh.a
/usr/lib/libprivatessh.so.5
/usr/lib/libzpool.a
/usr/lib/pam_xdg.so.6
/usr/libexec/atf-check
/usr/libexec/atf-sh
/usr/libexec/atf_pytest_wrapper
/usr/sbin/bhyve
/usr/sbin/config
/usr/sbin/sshd
/usr/sbin/zfsd
Installing updates...Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
done.
=====> Stop the pot pixelfed-amd64-14_1
=====> Remove p4672bb3dff6db epair network interfaces
=====> unmount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp
=====> unmount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/dev
=====> Flavour: pixelfed
=====> Executing pixelfed pot commands on pixelfed-amd64-14_1
=====> mount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp
=====> Source /usr/local/etc/pot/flavours/pixelfed.d/local copied in the pot pixelfed-amd64-14_1
=====> unmount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp
=====> /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/dev is already unmounted
=====> Starting pixelfed-amd64-14_1 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot pixelfed-amd64-14_1
=====> Pot pixelfed-amd64-14_1 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_1 host.hostname=pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net osrelease=14.1-RELEASE-p6 path=/mnt/srv/pot/jails/pixelfed-amd64-14_1/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32 /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:74:53:33:6e: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
Updating /var/run/os-release done.
Clearing /tmp (X related).
Updating motd:.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Wed Nov 6 18:24:57 UTC 2024
/usr/local/etc/pot/flavours/pixelfed.sh -> /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp/pixelfed.sh
=====> Executing pixelfed script on pixelfed-amd64-14_1
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] Installing pkg-1.21.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] Extracting pkg-1.21.3: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:14:amd64/latest, please wait...
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Clean freebsd-update
Step 7: Install package consul
Updating FreeBSD repository catalogue...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] Fetching meta.conf: . done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 35607 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
consul: 1.20.1
Number of packages to be installed: 1
The process will require 121 MiB more space.
24 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.20.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.20.1...
===> Creating groups
Creating group 'consul' with gid '469'
===> Creating users
Creating user 'consul' with uid '469'
===> Creating homedir(s)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.20.1: ..... done
Step 8: Install package openssl
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:
openssl: 3.0.15_1,1
Number of packages to be installed: 1
The process will require 22 MiB more space.
6 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.15_1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing openssl-3.0.15_1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.15_1,1: .......... done
Step 9: Install package sudo
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:
gettext-runtime: 0.22.5
indexinfo: 0.3.1
sudo: 1.9.16
Number of packages to be installed: 3
The process will require 9 MiB more space.
2 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching indexinfo-0.3.1.pkg: . done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching sudo-1.9.16.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching gettext-runtime-0.22.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Installing indexinfo-0.3.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting indexinfo-0.3.1: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.22.5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.22.5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Installing sudo-1.9.16...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting sudo-1.9.16: .......... done
Step 10: Install package ca_root_nss
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:
ca_root_nss: 3.104
Number of packages to be installed: 1
299 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching ca_root_nss-3.104.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing ca_root_nss-3.104...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting ca_root_nss-3.104: ....... done
Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
Scanning /usr/local/share/certs for certificates...
=====
Message from ca_root_nss-3.104:
--
FreeBSD does not, and can not warrant that the certification authorities
whose certificates are included in this package have in any way been
audited for trustworthiness or RFC 3647 compliance.
Assessment and verification of trust is the complete responsibility of
the system administrator.
This package installs symlinks to support root certificate discovery
for software that either uses other cryptographic libraries than
OpenSSL, or use OpenSSL but do not follow recommended practice.
If you prefer to do this manually, replace the following symlinks with
either an empty file or your site-local certificate bundle.
* /etc/ssl/cert.pem
* /usr/local/etc/ssl/cert.pem
* /usr/local/openssl/cert.pem
Step 11: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
curl: 8.10.1
libidn2: 2.3.7
libnghttp2: 1.64.0
libpsl: 0.21.5_1
libssh2: 1.11.1,3
libunistring: 1.2
Number of packages to be installed: 6
The process will require 10 MiB more space.
3 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/6] Fetching libnghttp2-1.64.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/6] Fetching libidn2-2.3.7.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/6] Fetching libunistring-1.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/6] Fetching libssh2-1.11.1,3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/6] Fetching libpsl-0.21.5_1.pkg: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/6] Fetching curl-8.10.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/6] Installing libunistring-1.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/6] Extracting libunistring-1.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/6] Installing libidn2-2.3.7...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/6] Extracting libidn2-2.3.7: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/6] Installing libnghttp2-1.64.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/6] Extracting libnghttp2-1.64.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/6] Installing libssh2-1.11.1,3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/6] Extracting libssh2-1.11.1,3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/6] Installing libpsl-0.21.5_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/6] Extracting libpsl-0.21.5_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/6] Installing curl-8.10.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/6] Extracting curl-8.10.1: .......... done
Step 12: Install package jq
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:
jq: 1.7.1
oniguruma: 6.9.9
Number of packages to be installed: 2
The process will require 3 MiB more space.
605 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching jq-1.7.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching oniguruma-6.9.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing oniguruma-6.9.9...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting oniguruma-6.9.9: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing jq-1.7.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting jq-1.7.1: .......... done
Step 13: Install package jo
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:
jo: 1.6_1
Number of packages to be installed: 1
21 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching jo-1.6_1.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing jo-1.6_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting jo-1.6_1: ....... done
Step 14: Install package nano
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:
nano: 8.2
Number of packages to be installed: 1
The process will require 3 MiB more space.
673 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nano-8.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing nano-8.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting nano-8.2: .......... done
Step 15: Install package bash
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:
bash: 5.2.37
readline: 8.2.13_2
Number of packages to be installed: 2
The process will require 11 MiB more space.
2 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching readline-8.2.13_2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching bash-5.2.37.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing readline-8.2.13_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting readline-8.2.13_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing bash-5.2.37...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting bash-5.2.37: .......... done
Step 16: 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.3
git-lite: 2.47.0
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_1.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching pcre2-10.43.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching expat-2.6.3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching git-lite-2.47.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Installing pcre2-10.43...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting pcre2-10.43: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Installing expat-2.6.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting expat-2.6.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Installing git-lite-2.47.0...
===> Creating groups
Creating group 'git_daemon' with gid '964'
===> Creating users
Creating user 'git_daemon' with uid '964'
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting git-lite-2.47.0: .......... done
=====
Message from git-lite-2.47.0:
--
If you installed the GITWEB option please follow these instructions:
In the directory /usr/local/share/examples/git/gitweb you can find all files to
make gitweb work as a public repository on the web.
All you have to do to make gitweb work is:
1) Please be sure you're able to execute CGI scripts in
/usr/local/share/examples/git/gitweb.
2) Set the GITWEB_CONFIG variable in your webserver's config to
/usr/local/etc/git/gitweb.conf. This variable is passed to gitweb.cgi.
3) Restart server.
If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 17: 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.10
Number of packages to be installed: 3
The process will require 202 MiB more space.
27 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching mpdecimal-4.0.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching libffi-3.4.6.pkg: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching python311-3.11.10.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Installing mpdecimal-4.0.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting mpdecimal-4.0.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Installing libffi-3.4.6...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting libffi-3.4.6: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Installing python311-3.11.10...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting python311-3.11.10: .......... done
=====
Message from python311-3.11.10:
--
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 18: 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_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py311-setuptools-63.1.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py311-supervisor-4.2.5,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py311-setuptools-63.1.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py311-setuptools-63.1.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py311-supervisor-4.2.5,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py311-supervisor-4.2.5,1: .......... done
Step 19: 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.8
Number of packages to be installed: 1
The process will require 14 MiB more space.
3 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching postgresql15-client-15.8.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing postgresql15-client-15.8...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting postgresql15-client-15.8: .......... done
=====
Message from postgresql15-client-15.8:
--
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 20: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
libiconv: 1.17_1
liblz4: 1.10.0,1
rsync: 3.3.0
xxhash: 0.8.2_1
zstd: 1.5.6
Number of packages to be installed: 5
The process will require 7 MiB more space.
2 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/5] Fetching rsync-3.3.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/5] Fetching liblz4-1.10.0,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/5] Fetching zstd-1.5.6.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/5] Fetching xxhash-0.8.2_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/5] Fetching libiconv-1.17_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/5] Installing liblz4-1.10.0,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/5] Extracting liblz4-1.10.0,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/5] Installing zstd-1.5.6...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/5] Extracting zstd-1.5.6: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/5] Installing xxhash-0.8.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/5] Extracting xxhash-0.8.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/5] Installing libiconv-1.17_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/5] Extracting libiconv-1.17_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/5] Installing rsync-3.3.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/5] Extracting rsync-3.3.0: .......... done
=====
Message from rsync-3.3.0:
--
Some scripts provided by rsync, such as rrsync,
require Python, which is not installed by default.
Step 21: 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.8.2
Number of packages to be installed: 1
The process will require 11 MiB more space.
4 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.8.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.8.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.8.2: .......... done
=====
Message from node_exporter-1.8.2:
--
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 22: 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_5
Number of packages to be installed: 1
The process will require 14 MiB more space.
4 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching blackbox_exporter-0.25.0_5.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing blackbox_exporter-0.25.0_5...
===> Creating groups
Creating group 'prometheus' with gid '478'
===> Creating users
Creating user 'prometheus' with uid '478'
===> Creating homedir(s)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting blackbox_exporter-0.25.0_5: ......... done
=====
Message from blackbox_exporter-0.25.0_5:
--
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 23: 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.2_7,3
Number of packages to be installed: 1
The process will require 2 MiB more space.
558 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.26.2_7,3.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing nginx-1.26.2_7,3...
===> Creating groups
Using existing group 'www'
===> Creating users
Using existing user 'www'
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting nginx-1.26.2_7,3: .......... done
=====
Message from nginx-1.26.2_7,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 24: 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.4.1
Number of packages to be installed: 1
The process will require 9 MiB more space.
962 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching redis-7.4.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing redis-7.4.1...
===> Creating groups
Creating group 'redis' with gid '535'
===> Creating users
Creating user 'redis' with uid '535'
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting redis-7.4.1: ......... done
=====
Message from redis-7.4.1:
--
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 25: 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.12
aom: 3.10.0_1
brotli: 1.1.0,1
dav1d: 1.5.0
ffmpeg: 6.1.2_5,1
fontconfig: 2.15.0_3,1
freetype2: 2.13.3
fribidi: 1.0.16
gdk-pixbuf2: 2.42.10_3
giflib: 5.2.2
glib: 2.80.5_1,2
gmp: 6.3.0
gnutls: 3.8.7.1
graphite2: 1.3.14
harfbuzz: 10.0.1
highway: 1.2.0
jbigkit: 2.1_3
jpeg-turbo: 3.0.4
lame: 3.100_5
lcms2: 2.16_2
lerc: 4.0.0
libX11: 1.8.9,1
libXau: 1.0.11
libXdmcp: 1.1.5
libXext: 1.3.6,1
libXfixes: 6.0.1
libXrandr: 1.5.4
libXrender: 0.9.11
libass: 0.17.3
libdeflate: 1.22
libdrm: 2.4.123,1
libepoll-shim: 0.0.20240608
libglvnd: 1.7.0
libjxl: 0.11.0_1
libogg: 1.3.5,4
libpciaccess: 0.18.1
libplacebo: 7.349.0
libtasn1: 4.19.0_1
libudev-devd: 0.6.0
libunibreak: 6.1,1
libunwind: 20240221_1
libv4l: 1.23.0_5
libva: 2.22.0
libvdpau: 1.5
libvorbis: 1.3.7_2,3
libvpx: 1.15.0
libx264: 0.164.3095
libxcb: 1.17.0
libxml2: 2.11.9
nettle: 3.10_1
openexr: 3.3.1
opus: 1.5.2
p11-kit: 0.25.5
png: 1.6.44
py311-packaging: 24.1
shaderc: 2024.3
shared-mime-info: 2.2_3
svt-av1: 2.3.0
tiff: 4.7.0
vmaf: 3.0.0
vulkan-loader: 1.3.301
wayland: 1.23.1
webp: 1.4.0_1
x265: 3.6
xorgproto: 2024.1
Number of packages to be installed: 65
The process will require 284 MiB more space.
60 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/65] Fetching png-1.6.44.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/65] Fetching libxcb-1.17.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/65] Fetching freetype2-2.13.3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/65] Fetching jpeg-turbo-3.0.4.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/65] Fetching libx264-0.164.3095.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/65] Fetching libglvnd-1.7.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/65] Fetching nettle-3.10_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/65] Fetching libXrandr-1.5.4.pkg: ..... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/65] Fetching libunibreak-6.1,1.pkg: ...... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/65] Fetching lcms2-2.16_2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/65] Fetching libdeflate-1.22.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/65] Fetching fribidi-1.0.16.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/65] Fetching vmaf-3.0.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/65] Fetching libva-2.22.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/65] Fetching libdrm-2.4.123,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/65] Fetching libtasn1-4.19.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/65] Fetching libXfixes-6.0.1.pkg: ... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/65] Fetching libxml2-2.11.9.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/65] Fetching wayland-1.23.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/65] Fetching aom-3.10.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/65] Fetching gdk-pixbuf2-2.42.10_3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/65] Fetching shaderc-2024.3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/65] Fetching gnutls-3.8.7.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/65] Fetching py311-packaging-24.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/65] Fetching libepoll-shim-0.0.20240608.pkg: ... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/65] Fetching libjxl-0.11.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/65] Fetching libX11-1.8.9,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/65] Fetching giflib-5.2.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/65] Fetching libXrender-0.9.11.pkg: ....... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/65] Fetching xorgproto-2024.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/65] Fetching webp-1.4.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [32/65] Fetching graphite2-1.3.14.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [33/65] Fetching shared-mime-info-2.2_3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [34/65] Fetching libv4l-1.23.0_5.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [35/65] Fetching harfbuzz-10.0.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [36/65] Fetching lame-3.100_5.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [37/65] Fetching libpciaccess-0.18.1.pkg: . done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [38/65] Fetching vulkan-loader-1.3.301.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [39/65] Fetching libass-0.17.3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [40/65] Fetching x265-3.6.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [41/65] Fetching highway-1.2.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [42/65] Fetching libudev-devd-0.6.0.pkg: ... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [43/65] Fetching ffmpeg-6.1.2_5,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [44/65] Fetching opus-1.5.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [45/65] Fetching libunwind-20240221_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [46/65] Fetching brotli-1.1.0,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [47/65] Fetching gmp-6.3.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [48/65] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [49/65] Fetching Imath-3.1.12.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [50/65] Fetching svt-av1-2.3.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [51/65] Fetching libXext-1.3.6,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [52/65] Fetching libogg-1.3.5,4.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [53/65] Fetching p11-kit-0.25.5.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [54/65] Fetching libXau-1.0.11.pkg: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [55/65] Fetching libplacebo-7.349.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [56/65] Fetching fontconfig-2.15.0_3,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [57/65] Fetching dav1d-1.5.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [58/65] Fetching openexr-3.3.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [59/65] Fetching glib-2.80.5_1,2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [60/65] Fetching libvpx-1.15.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [61/65] Fetching jbigkit-2.1_3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [62/65] Fetching libvdpau-1.5.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [63/65] Fetching libXdmcp-1.1.5.pkg: .. done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [64/65] Fetching tiff-4.7.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [65/65] Fetching lerc-4.0.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/65] Installing xorgproto-2024.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/65] Extracting xorgproto-2024.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/65] Installing libXau-1.0.11...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/65] Extracting libXau-1.0.11: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/65] Installing libXdmcp-1.1.5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/65] Extracting libXdmcp-1.1.5: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/65] Installing libxcb-1.17.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/65] Extracting libxcb-1.17.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/65] Installing py311-packaging-24.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/65] Extracting py311-packaging-24.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/65] Installing libX11-1.8.9,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/65] Extracting libX11-1.8.9,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/65] Installing png-1.6.44...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/65] Extracting png-1.6.44: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/65] Installing jpeg-turbo-3.0.4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/65] Extracting jpeg-turbo-3.0.4: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/65] Installing libdeflate-1.22...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/65] Extracting libdeflate-1.22: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/65] Installing libxml2-2.11.9...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/65] Extracting libxml2-2.11.9: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/65] Installing libepoll-shim-0.0.20240608...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/65] Extracting libepoll-shim-0.0.20240608: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/65] Installing libXrender-0.9.11...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/65] Extracting libXrender-0.9.11: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/65] Installing brotli-1.1.0,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/65] Extracting brotli-1.1.0,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/65] Installing libXext-1.3.6,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/65] Extracting libXext-1.3.6,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/65] Installing glib-2.80.5_1,2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/65] Extracting glib-2.80.5_1,2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/65] Installing jbigkit-2.1_3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/65] Extracting jbigkit-2.1_3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/65] Installing lerc-4.0.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/65] Extracting lerc-4.0.0: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/65] Installing freetype2-2.13.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/65] Extracting freetype2-2.13.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/65] Installing libXrandr-1.5.4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/65] Extracting libXrandr-1.5.4: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/65] Installing libtasn1-4.19.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/65] Extracting libtasn1-4.19.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/65] Installing wayland-1.23.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/65] Extracting wayland-1.23.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/65] Installing graphite2-1.3.14...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/65] Extracting graphite2-1.3.14: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/65] Installing shared-mime-info-2.2_3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/65] Extracting shared-mime-info-2.2_3: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/65] Installing libpciaccess-0.18.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/65] Extracting libpciaccess-0.18.1: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/65] Installing gmp-6.3.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/65] Extracting gmp-6.3.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/65] Installing Imath-3.1.12...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/65] Extracting Imath-3.1.12: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/65] Installing tiff-4.7.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/65] Extracting tiff-4.7.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/65] Installing libglvnd-1.7.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/65] Extracting libglvnd-1.7.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/65] Installing nettle-3.10_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/65] Extracting nettle-3.10_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/65] Installing libunibreak-6.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/65] Extracting libunibreak-6.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/65] Installing lcms2-2.16_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/65] Extracting lcms2-2.16_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [32/65] Installing fribidi-1.0.16...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [32/65] Extracting fribidi-1.0.16: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [33/65] Installing vmaf-3.0.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [33/65] Extracting vmaf-3.0.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [34/65] Installing libdrm-2.4.123,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [34/65] Extracting libdrm-2.4.123,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [35/65] Installing libXfixes-6.0.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [35/65] Extracting libXfixes-6.0.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [36/65] Installing gdk-pixbuf2-2.42.10_3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [36/65] Extracting gdk-pixbuf2-2.42.10_3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [37/65] Installing shaderc-2024.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [37/65] Extracting shaderc-2024.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [38/65] Installing giflib-5.2.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [38/65] Extracting giflib-5.2.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [39/65] Installing harfbuzz-10.0.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [39/65] Extracting harfbuzz-10.0.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [40/65] Installing vulkan-loader-1.3.301...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [40/65] Extracting vulkan-loader-1.3.301: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [41/65] Installing highway-1.2.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [41/65] Extracting highway-1.2.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [42/65] Installing libudev-devd-0.6.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [42/65] Extracting libudev-devd-0.6.0: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [43/65] Installing libunwind-20240221_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [43/65] Extracting libunwind-20240221_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [44/65] Installing libogg-1.3.5,4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [44/65] Extracting libogg-1.3.5,4: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [45/65] Installing p11-kit-0.25.5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [45/65] Extracting p11-kit-0.25.5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [46/65] Installing fontconfig-2.15.0_3,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [46/65] Extracting fontconfig-2.15.0_3,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [47/65] Installing openexr-3.3.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [47/65] Extracting openexr-3.3.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [48/65] Installing libx264-0.164.3095...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [48/65] Extracting libx264-0.164.3095: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [49/65] Installing libva-2.22.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [49/65] Extracting libva-2.22.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [50/65] Installing aom-3.10.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [50/65] Extracting aom-3.10.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [51/65] Installing gnutls-3.8.7.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [51/65] Extracting gnutls-3.8.7.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [52/65] Installing libjxl-0.11.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [52/65] Extracting libjxl-0.11.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [53/65] Installing webp-1.4.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [53/65] Extracting webp-1.4.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [54/65] Installing libv4l-1.23.0_5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [54/65] Extracting libv4l-1.23.0_5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [55/65] Installing lame-3.100_5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [55/65] Extracting lame-3.100_5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [56/65] Installing libass-0.17.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [56/65] Extracting libass-0.17.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [57/65] Installing x265-3.6...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [57/65] Extracting x265-3.6: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [58/65] Installing opus-1.5.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [58/65] Extracting opus-1.5.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [59/65] Installing libvorbis-1.3.7_2,3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [59/65] Extracting libvorbis-1.3.7_2,3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [60/65] Installing svt-av1-2.3.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [60/65] Extracting svt-av1-2.3.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [61/65] Installing libplacebo-7.349.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [61/65] Extracting libplacebo-7.349.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [62/65] Installing dav1d-1.5.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [62/65] Extracting dav1d-1.5.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [63/65] Installing libvpx-1.15.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [63/65] Extracting libvpx-1.15.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [64/65] Installing libvdpau-1.5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [64/65] Extracting libvdpau-1.5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [65/65] Installing ffmpeg-6.1.2_5,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [65/65] Extracting ffmpeg-6.1.2_5,1: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: shared-mime-info.ucl
Building the Shared MIME-Info database cache
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
=====
Message from freetype2-2.13.3:
--
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.1:
--
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.11.0_1:
--
Additional packages recommended for new users:
- imlib2-jxl (e.g., feh, scrot)
- kf5-kimageformats (e.g., nomacs, flameshot, skanlite)
- gimp-jxl-plugin
Step 26: 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.34.2
icu: 74.2_1,1
libuv: 1.49.2
node20: 20.18.0
Number of packages to be installed: 4
The process will require 95 MiB more space.
23 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching libuv-1.49.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching icu-74.2_1,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching node20-20.18.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching c-ares-1.34.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Installing libuv-1.49.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting libuv-1.49.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Installing icu-74.2_1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting icu-74.2_1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Installing c-ares-1.34.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting c-ares-1.34.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Installing node20-20.18.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting node20-20.18.0: .......... done
=====
Message from node20-20.18.0:
--
Note: If you need npm (Node Package Manager), please install www/npm.
Step 27: 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_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching yarn-node20-1.22.19.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing yarn-node20-1.22.19...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting yarn-node20-1.22.19: .......... done
Step 28: Install package vips-nox11
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 71 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
ImageMagick7-nox11: 7.1.1.26_6
avahi-app: 0.8_2
binutils: 2.43.1,1
cairo: 1.17.4_2,3
cfitsio: 4.5.0
cgif: 0.4.1
cups: 2.4.11
dbus: 1.14.10_5,1
dbus-glib: 0.112_1
fftw3: 3.3.10_5
gcc13: 13.3.0
gdbm: 1.24
ghostscript10: 10.04.0
gnome_subr: 1.0
gnupg: 2.4.5_1
gobject-introspection: 1.78.1_2,1
gpgme: 1.23.2_1
gpgme-cpp: 1.23.2_1
gsfonts: 8.11_8
hdf5: 1.12.2_2,1
jbig2dec: 0.20_1
libICE: 1.1.1,1
libSM: 1.2.4,1
libXft: 2.3.8
libXt: 1.3.0,1
libaec: 1.1.3
libarchive: 3.7.7,1
libassuan: 3.0.1
libdaemon: 0.14_1
libdatrie: 0.2.13_2
libedit: 3.1.20240808,1
libevent: 2.1.12
libexif: 0.6.24
libfontenc: 1.1.8
libgcrypt: 1.11.0
libgd: 2.3.3_13,1
libgpg-error: 1.50
libheif: 1.19.1
libidn: 1.42
libksba: 1.6.7
liblqr-1: 0.4.2
libltdl: 2.4.7
libpaper: 1.1.28_1
libraw: 0.21.3
librsvg2-rust: 2.58.5
libspng: 0.7.4
libthai: 0.1.29_1
libwmf-nox11: 0.2.13_2
libzip: 1.11.1
matio: 1.5.28
mkfontscale: 1.2.3
mpc: 1.3.1_1
mpfr: 4.2.1,1
npth: 1.7
nspr: 4.36
nss: 3.106
openh264: 2.3.0,2
openjpeg: 2.5.2_1
openjph: 0.17.0
pango: 1.52.2_1
perl5: 5.36.3_2
pinentry: 1.3.1_1
pinentry-curses: 1.3.1
pixman: 0.42.2
pkgconf: 2.3.0,1
poppler: 24.02.0_1
poppler-data: 0.4.12
poppler-glib: 24.02.0_1
sqlite3: 3.46.1,1
urw-base35-fonts: 20200910
vips-nox11: 8.16.0
Number of packages to be installed: 71
The process will require 869 MiB more space.
193 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/71] Fetching libzip-1.11.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/71] Fetching openh264-2.3.0,2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/71] Fetching gobject-introspection-1.78.1_2,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/71] Fetching nss-3.106.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/71] Fetching libthai-0.1.29_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/71] Fetching openjpeg-2.5.2_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/71] Fetching libexif-0.6.24.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/71] Fetching libksba-1.6.7.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/71] Fetching libgd-2.3.3_13,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/71] Fetching pinentry-1.3.1_1.pkg: ... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/71] Fetching urw-base35-fonts-20200910.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/71] Fetching ImageMagick7-nox11-7.1.1.26_6.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/71] Fetching libXft-2.3.8.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/71] Fetching cairo-1.17.4_2,3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/71] Fetching libevent-2.1.12.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/71] Fetching gdbm-1.24.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/71] Fetching avahi-app-0.8_2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/71] Fetching openjph-0.17.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/71] Fetching dbus-1.14.10_5,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/71] Fetching poppler-24.02.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/71] Fetching gnupg-2.4.5_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/71] Fetching dbus-glib-0.112_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/71] Fetching jbig2dec-0.20_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/71] Fetching cgif-0.4.1.pkg: ... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/71] Fetching libltdl-2.4.7.pkg: ....... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/71] Fetching libwmf-nox11-0.2.13_2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/71] Fetching fftw3-3.3.10_5.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/71] Fetching matio-1.5.28.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/71] Fetching perl5-5.36.3_2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/71] Fetching libspng-0.7.4.pkg: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/71] Fetching gcc13-13.3.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [32/71] Fetching libdaemon-0.14_1.pkg: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [33/71] Fetching gpgme-1.23.2_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [34/71] Fetching gsfonts-8.11_8.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [35/71] Fetching poppler-data-0.4.12.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [36/71] Fetching libdatrie-0.2.13_2.pkg: ...... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [37/71] Fetching pinentry-curses-1.3.1.pkg: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [38/71] Fetching gpgme-cpp-1.23.2_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [39/71] Fetching librsvg2-rust-2.58.5.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [40/71] Fetching libXt-1.3.0,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [41/71] Fetching hdf5-1.12.2_2,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [42/71] Fetching cups-2.4.11.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [43/71] Fetching npth-1.7.pkg: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [44/71] Fetching libarchive-3.7.7,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [45/71] Fetching mkfontscale-1.2.3.pkg: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [46/71] Fetching libidn-1.42.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [47/71] Fetching liblqr-1-0.4.2.pkg: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [48/71] Fetching gnome_subr-1.0.pkg: . done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [49/71] Fetching cfitsio-4.5.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [50/71] Fetching poppler-glib-24.02.0_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [51/71] Fetching libpaper-1.1.28_1.pkg: ...... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [52/71] Fetching libraw-0.21.3.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [53/71] Fetching pkgconf-2.3.0,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [54/71] Fetching vips-nox11-8.16.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [55/71] Fetching ghostscript10-10.04.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [56/71] Fetching libassuan-3.0.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [57/71] Fetching libedit-3.1.20240808,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [58/71] Fetching libfontenc-1.1.8.pkg: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [59/71] Fetching libgcrypt-1.11.0.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [60/71] Fetching libaec-1.1.3.pkg: ... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [61/71] Fetching pango-1.52.2_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [62/71] Fetching libgpg-error-1.50.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [63/71] Fetching nspr-4.36.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [64/71] Fetching mpfr-4.2.1,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [65/71] Fetching libICE-1.1.1,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [66/71] Fetching pixman-0.42.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [67/71] Fetching sqlite3-3.46.1,1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [68/71] Fetching mpc-1.3.1_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [69/71] Fetching libSM-1.2.4,1.pkg: ..... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [70/71] Fetching libheif-1.19.1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [71/71] Fetching binutils-2.43.1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/71] Installing libgpg-error-1.50...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/71] Extracting libgpg-error-1.50: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/71] Installing libassuan-3.0.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/71] Extracting libassuan-3.0.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/71] Installing libICE-1.1.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/71] Extracting libICE-1.1.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/71] Installing pinentry-curses-1.3.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/71] Extracting pinentry-curses-1.3.1: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/71] Installing libedit-3.1.20240808,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/71] Extracting libedit-3.1.20240808,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/71] Installing libSM-1.2.4,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/71] Extracting libSM-1.2.4,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/71] Installing libksba-1.6.7...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/71] Extracting libksba-1.6.7: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/71] Installing pinentry-1.3.1_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/71] Extracting pinentry-1.3.1_1: ..... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/71] 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_1.vsf00002.cpt.za.honeyguide.net] [9/71] Extracting dbus-1.14.10_5,1: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/71] Installing npth-1.7...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/71] Extracting npth-1.7: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/71] Installing libgcrypt-1.11.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/71] Extracting libgcrypt-1.11.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/71] Installing sqlite3-3.46.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/71] Extracting sqlite3-3.46.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/71] Installing libevent-2.1.12...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/71] Extracting libevent-2.1.12: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/71] Installing gdbm-1.24...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/71] Extracting gdbm-1.24: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/71] Installing gnupg-2.4.5_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/71] Extracting gnupg-2.4.5_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/71] Installing dbus-glib-0.112_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/71] Extracting dbus-glib-0.112_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/71] Installing libdaemon-0.14_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/71] Extracting libdaemon-0.14_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/71] Installing gnome_subr-1.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/71] Extracting gnome_subr-1.0: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/71] Installing libfontenc-1.1.8...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/71] Extracting libfontenc-1.1.8: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/71] Installing mpfr-4.2.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/71] Extracting mpfr-4.2.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/71] 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_1.vsf00002.cpt.za.honeyguide.net] [21/71] Extracting avahi-app-0.8_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/71] Installing gpgme-1.23.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/71] Extracting gpgme-1.23.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/71] Installing libdatrie-0.2.13_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/71] Extracting libdatrie-0.2.13_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/71] Installing mkfontscale-1.2.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/71] Extracting mkfontscale-1.2.3: ....... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/71] Installing libpaper-1.1.28_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/71] Extracting libpaper-1.1.28_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/71] Installing nspr-4.36...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/71] Extracting nspr-4.36: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/71] Installing pixman-0.42.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/71] Extracting pixman-0.42.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/71] Installing mpc-1.3.1_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/71] Extracting mpc-1.3.1_1: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/71] Installing binutils-2.43.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/71] Extracting binutils-2.43.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/71] Installing openh264-2.3.0,2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [30/71] Extracting openh264-2.3.0,2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/71] Installing nss-3.106...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [31/71] Extracting nss-3.106: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [32/71] Installing libthai-0.1.29_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [32/71] Extracting libthai-0.1.29_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [33/71] Installing openjpeg-2.5.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [33/71] Extracting openjpeg-2.5.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [34/71] Installing libgd-2.3.3_13,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [34/71] Extracting libgd-2.3.3_13,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [35/71] Installing urw-base35-fonts-20200910...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [35/71] Extracting urw-base35-fonts-20200910: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [36/71] Installing libXft-2.3.8...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [36/71] Extracting libXft-2.3.8: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [37/71] Installing cairo-1.17.4_2,3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [37/71] Extracting cairo-1.17.4_2,3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [38/71] Installing openjph-0.17.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [38/71] Extracting openjph-0.17.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [39/71] Installing jbig2dec-0.20_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [39/71] Extracting jbig2dec-0.20_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [40/71] Installing gcc13-13.3.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [40/71] Extracting gcc13-13.3.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [41/71] Installing poppler-data-0.4.12...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [41/71] Extracting poppler-data-0.4.12: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [42/71] Installing gpgme-cpp-1.23.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [42/71] Extracting gpgme-cpp-1.23.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [43/71] Installing libXt-1.3.0,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [43/71] Extracting libXt-1.3.0,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [44/71] Installing cups-2.4.11...
===> Creating groups
Creating group 'cups' with gid '193'
===> Creating users
Creating user 'cups' with uid '193'
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [44/71] Extracting cups-2.4.11: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [45/71] Installing libidn-1.42...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [45/71] Extracting libidn-1.42: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [46/71] Installing libaec-1.1.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [46/71] Extracting libaec-1.1.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [47/71] Installing libzip-1.11.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [47/71] Extracting libzip-1.11.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [48/71] Installing gobject-introspection-1.78.1_2,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [48/71] Extracting gobject-introspection-1.78.1_2,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [49/71] Installing poppler-24.02.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [49/71] Extracting poppler-24.02.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [50/71] Installing libltdl-2.4.7...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [50/71] Extracting libltdl-2.4.7: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [51/71] Installing libwmf-nox11-0.2.13_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [51/71] Extracting libwmf-nox11-0.2.13_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [52/71] Installing fftw3-3.3.10_5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [52/71] Extracting fftw3-3.3.10_5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [53/71] Installing perl5-5.36.3_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [53/71] Extracting perl5-5.36.3_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [54/71] Installing gsfonts-8.11_8...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [54/71] Extracting gsfonts-8.11_8: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [55/71] Installing hdf5-1.12.2_2,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [55/71] Extracting hdf5-1.12.2_2,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [56/71] Installing liblqr-1-0.4.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [56/71] Extracting liblqr-1-0.4.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [57/71] Installing libraw-0.21.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [57/71] Extracting libraw-0.21.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [58/71] Installing pkgconf-2.3.0,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [58/71] Extracting pkgconf-2.3.0,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [59/71] Installing ghostscript10-10.04.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [59/71] Extracting ghostscript10-10.04.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [60/71] Installing pango-1.52.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [60/71] Extracting pango-1.52.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [61/71] Installing libheif-1.19.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [61/71] Extracting libheif-1.19.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [62/71] Installing libexif-0.6.24...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [62/71] Extracting libexif-0.6.24: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [63/71] Installing ImageMagick7-nox11-7.1.1.26_6...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [63/71] Extracting ImageMagick7-nox11-7.1.1.26_6: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [64/71] Installing cgif-0.4.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [64/71] Extracting cgif-0.4.1: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [65/71] Installing matio-1.5.28...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [65/71] Extracting matio-1.5.28: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [66/71] Installing libspng-0.7.4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [66/71] Extracting libspng-0.7.4: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [67/71] Installing librsvg2-rust-2.58.5...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [67/71] Extracting librsvg2-rust-2.58.5: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [68/71] Installing libarchive-3.7.7,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [68/71] Extracting libarchive-3.7.7,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [69/71] Installing cfitsio-4.5.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [69/71] Extracting cfitsio-4.5.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [70/71] Installing poppler-glib-24.02.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [70/71] Extracting poppler-glib-24.02.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [71/71] Installing vips-nox11-8.16.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [71/71] Extracting vips-nox11-8.16.0: .......... done
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from gcc13-13.3.0:
--
To ensure binaries built with this toolchain find appropriate versions
of the necessary run-time libraries, you may want to link using
-Wl,-rpath=/usr/local/lib/gcc13
For ports leveraging USE_GCC, USES=compiler, or USES=fortran this happens
transparently.
=====
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.04.0:
--
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 29: Install package ImageMagick7-nox11
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 30: 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.25
Number of packages to be installed: 2
The process will require 25 MiB more space.
4 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libargon2-20190702_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-8.2.25.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libargon2-20190702_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libargon2-20190702_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-8.2.25: .......... done
Step 31: 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.25
Number of packages to be installed: 1
The process will require 4 MiB more space.
918 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mbstring-8.2.25.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mbstring-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mbstring-8.2.25: .......... done
=====
Message from php82-mbstring-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini.sample
Step 32: 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.25
Number of packages to be installed: 1
22 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-zlib-8.2.25.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-zlib-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-zlib-8.2.25: ........ done
=====
Message from php82-zlib-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini.sample
Step 33: 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.25
Number of packages to be installed: 1
47 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-curl-8.2.25.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-curl-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-curl-8.2.25: .......... done
=====
Message from php82-curl-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini.sample
Step 34: 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.25
Number of packages to be installed: 1
37 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-gd-8.2.25.pkg: ...... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-gd-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-gd-8.2.25: ......... done
=====
Message from php82-gd-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini.sample
Step 35: 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.25
Number of packages to be installed: 1
22 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-bcmath-8.2.25.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-bcmath-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-bcmath-8.2.25: .......... done
=====
Message from php82-bcmath-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bcmath.ini.sample
Step 36: 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.25
Number of packages to be installed: 1
8 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-ctype-8.2.25.pkg: . done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-ctype-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-ctype-8.2.25: ........ done
=====
Message from php82-ctype-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini.sample
Step 37: 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.25
Number of packages to be installed: 1
32 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-exif-8.2.25.pkg: ...... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-exif-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-exif-8.2.25: ........ done
=====
Message from php82-exif-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-exif.ini.sample
Step 38: 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.25
Number of packages to be installed: 1
20 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-iconv-8.2.25.pkg: .... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-iconv-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-iconv-8.2.25: ........ done
=====
Message from php82-iconv-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini.sample
Step 39: 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.25
Number of packages to be installed: 1
149 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-intl-8.2.25.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-intl-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-intl-8.2.25: .......... done
=====
Message from php82-intl-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-intl.ini.sample
Step 40: 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.25
Number of packages to be installed: 2
210 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-pecl-redis-5.3.7_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-session-8.2.25.pkg: ....... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-session-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-session-8.2.25: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-pecl-redis-5.3.7_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-pecl-redis-5.3.7_1: .......... done
=====
Message from php82-session-8.2.25:
--
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 41: 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.25
Number of packages to be installed: 1
15 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-tokenizer-8.2.25.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-tokenizer-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-tokenizer-8.2.25: ......... done
=====
Message from php82-tokenizer-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini.sample
Step 42: 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.25
Number of packages to be installed: 1
26 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-simplexml-8.2.25.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-simplexml-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-simplexml-8.2.25: ......... done
=====
Message from php82-simplexml-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini.sample
Step 43: 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.25
Number of packages to be installed: 1
23 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-xml-8.2.25.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-xml-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-xml-8.2.25: ......... done
=====
Message from php82-xml-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini.sample
Step 44: 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.25
php82-xmlreader: 8.2.25
Number of packages to be installed: 2
90 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-dom-8.2.25.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-xmlreader-8.2.25.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-dom-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-dom-8.2.25: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-xmlreader-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-xmlreader-8.2.25: ........ done
=====
Message from php82-dom-8.2.25:
--
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.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini.sample
Step 45: 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.25
Number of packages to be installed: 1
16 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-xmlwriter-8.2.25.pkg: ... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-xmlwriter-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-xmlwriter-8.2.25: ........ done
=====
Message from php82-xmlwriter-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini.sample
Step 46: 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.25
Number of packages to be installed: 1
The process will require 7 MiB more space.
311 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-fileinfo-8.2.25.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-fileinfo-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-fileinfo-8.2.25: .......... done
=====
Message from php82-fileinfo-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-fileinfo.ini.sample
Step 47: 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.25
Number of packages to be installed: 1
20 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pcntl-8.2.25.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pcntl-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pcntl-8.2.25: ......... done
=====
Message from php82-pcntl-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pcntl.ini.sample
Step 48: 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.25
Number of packages to be installed: 2
The process will require 2 MiB more space.
286 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-sodium-8.2.25.pkg: ...... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libsodium-1.0.19.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libsodium-1.0.19...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libsodium-1.0.19: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-sodium-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-sodium-8.2.25: ........ done
=====
Message from php82-sodium-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sodium.ini.sample
Step 49: 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.25
Number of packages to be installed: 1
15 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-posix-8.2.25.pkg: .... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-posix-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-posix-8.2.25: ........ done
=====
Message from php82-posix-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini.sample
Step 50: 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.25
Number of packages to be installed: 1
34 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-zip-8.2.25.pkg: ....... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-zip-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-zip-8.2.25: ........ done
=====
Message from php82-zip-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini.sample
Step 51: Install package php82-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-pgsql: 8.2.25
postgresql16-client: 16.4
Number of packages to be installed: 2
The process will require 16 MiB more space.
3 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-pgsql-8.2.25.pkg: ........ done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching postgresql16-client-16.4.pkg: .......... done
Checking integrity... done (2 conflicting)
- postgresql16-client-16.4 conflicts with postgresql15-client-15.8 on /usr/local/bin/clusterdb
- postgresql16-client-16.4 conflicts with postgresql15-client-15.8 on /usr/local/bin/clusterdb
Checking integrity... done (0 conflicting)
Conflicts with the existing packages have been found.
One more solver iteration is needed to resolve them.
The following 3 package(s) will be affected (of 0 checked):
Installed packages to be REMOVED:
postgresql15-client: 15.8
New packages to be INSTALLED:
php82-pgsql: 8.2.25
postgresql16-client: 16.4
Number of packages to be removed: 1
Number of packages to be installed: 2
The process will require 2 MiB more space.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Deinstalling postgresql15-client-15.8...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Deleting files for postgresql15-client-15.8: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Installing postgresql16-client-16.4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting postgresql16-client-16.4: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Installing php82-pgsql-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting php82-pgsql-8.2.25: ........ done
=====
Message from postgresql16-client-16.4:
--
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...
=====
Message from php82-pgsql-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pgsql.ini.sample
Step 52: 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.25
php82-pdo_pgsql: 8.2.25
Number of packages to be installed: 2
77 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-pdo-8.2.25.pkg: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-pdo_pgsql-8.2.25.pkg: .... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-pdo-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-pdo-8.2.25: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-pdo_pgsql-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-pdo_pgsql-8.2.25: ......... done
=====
Message from php82-pdo-8.2.25:
--
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.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_pgsql.ini.sample
Step 53: 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.25
Number of packages to be installed: 1
53 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mysqli-8.2.25.pkg: ......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mysqli-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mysqli-8.2.25: .......... done
=====
Message from php82-mysqli-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini.sample
Step 54: 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.25
Number of packages to be installed: 1
19 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pdo_mysql-8.2.25.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pdo_mysql-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pdo_mysql-8.2.25: ......... done
=====
Message from php82-pdo_mysql-8.2.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_mysql.ini.sample
Step 55: 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.8.2
php82-filter: 8.2.25
php82-phar: 8.2.25
Number of packages to be installed: 3
The process will require 3 MiB more space.
705 KiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching php82-composer-2.8.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching php82-phar-8.2.25.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching php82-filter-8.2.25.pkg: ..... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Installing php82-phar-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting php82-phar-8.2.25: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Installing php82-filter-8.2.25...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting php82-filter-8.2.25: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Installing php82-composer-2.8.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting php82-composer-2.8.2: ..... done
=====
Message from php82-phar-8.2.25:
--
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.25:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini.sample
Step 56: Install package php82-pecl-imagick
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:
ImageMagick7: 7.1.1.26_6
libraqm: 0.10.2
libwmf: 0.2.13_2
php82-pecl-imagick: 3.7.0_4
Number of packages to be installed: 4
The process will require 36 MiB more space.
11 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching libwmf-0.2.13_2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching ImageMagick7-7.1.1.26_6.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching libraqm-0.10.2.pkg: ...... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching php82-pecl-imagick-3.7.0_4.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_6 conflicts with ImageMagick7-nox11-7.1.1.26_6 on /usr/local/bin/Magick++-config
- ImageMagick7-7.1.1.26_6 conflicts with ImageMagick7-nox11-7.1.1.26_6 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 7 package(s) will be affected (of 0 checked):
Installed packages to be REMOVED:
ImageMagick7-nox11: 7.1.1.26_6
libwmf-nox11: 0.2.13_2
vips-nox11: 8.16.0
New packages to be INSTALLED:
ImageMagick7: 7.1.1.26_6
libraqm: 0.10.2
libwmf: 0.2.13_2
php82-pecl-imagick: 3.7.0_4
Number of packages to be removed: 3
Number of packages to be installed: 4
The operation will free 5 MiB.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/7] Deinstalling vips-nox11-8.16.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/7] Deleting files for vips-nox11-8.16.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/7] Deinstalling ImageMagick7-nox11-7.1.1.26_6...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/7] Deleting files for ImageMagick7-nox11-7.1.1.26_6: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/7] Deinstalling libwmf-nox11-0.2.13_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/7] Deleting files for libwmf-nox11-0.2.13_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/7] Installing libwmf-0.2.13_2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/7] Extracting libwmf-0.2.13_2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/7] Installing libraqm-0.10.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/7] Extracting libraqm-0.10.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/7] Installing ImageMagick7-7.1.1.26_6...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/7] Extracting ImageMagick7-7.1.1.26_6: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/7] Installing php82-pecl-imagick-3.7.0_4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/7] Extracting php82-pecl-imagick-3.7.0_4: .......... done
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from php82-pecl-imagick-3.7.0_4:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-imagick.ini.sample
Step 57: 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.18
syslog-ng: 4.8.1_1
Number of packages to be installed: 4
The process will require 6 MiB more space.
1 MiB to be downloaded.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching e2fsprogs-libuuid-1.47.1.pkg: ...... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching syslog-ng-4.8.1_1.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching ivykis-0.43.2.pkg: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching json-c-0.18.pkg: .......... done
Checking integrity... done (0 conflicting)
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Installing e2fsprogs-libuuid-1.47.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting e2fsprogs-libuuid-1.47.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Installing ivykis-0.43.2...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting ivykis-0.43.2: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Installing json-c-0.18...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting json-c-0.18: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Installing syslog-ng-4.8.1_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting syslog-ng-4.8.1_1: .......... done
=====
Message from syslog-ng-4.8.1_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 58: Package autoremove
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 29 packages:
Installed packages to be REMOVED:
binutils: 2.43.1,1
cfitsio: 4.5.0
cgif: 0.4.1
gcc13: 13.3.0
gnupg: 2.4.5_1
gobject-introspection: 1.78.1_2,1
gpgme: 1.23.2_1
gpgme-cpp: 1.23.2_1
hdf5: 1.12.2_2,1
libaec: 1.1.3
libarchive: 3.7.7,1
libassuan: 3.0.1
libedit: 3.1.20240808,1
libexif: 0.6.24
libgcrypt: 1.11.0
libgpg-error: 1.50
libksba: 1.6.7
libspng: 0.7.4
matio: 1.5.28
mpc: 1.3.1_1
mpfr: 4.2.1,1
npth: 1.7
nspr: 4.36
nss: 3.106
pinentry: 1.3.1_1
pinentry-curses: 1.3.1
poppler: 24.02.0_1
poppler-glib: 24.02.0_1
sqlite3: 3.46.1,1
Number of packages to be removed: 29
The operation will free 621 MiB.
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/29] Deinstalling poppler-glib-24.02.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [1/29] Deleting files for poppler-glib-24.02.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/29] Deinstalling poppler-24.02.0_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [2/29] Deleting files for poppler-24.02.0_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/29] Deinstalling gpgme-cpp-1.23.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [3/29] Deleting files for gpgme-cpp-1.23.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/29] Deinstalling gpgme-1.23.2_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [4/29] Deleting files for gpgme-1.23.2_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/29] Deinstalling gnupg-2.4.5_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [5/29] Deleting files for gnupg-2.4.5_1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/29] Deinstalling matio-1.5.28...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [6/29] Deleting files for matio-1.5.28: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/29] Deinstalling hdf5-1.12.2_2,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [7/29] Deleting files for hdf5-1.12.2_2,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/29] Deinstalling pinentry-1.3.1_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [8/29] Deleting files for pinentry-1.3.1_1: ..... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/29] Deinstalling pinentry-curses-1.3.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [9/29] Deleting files for pinentry-curses-1.3.1: .... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/29] Deinstalling gcc13-13.3.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [10/29] Deleting files for gcc13-13.3.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/29] Deinstalling nss-3.106...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [11/29] Deleting files for nss-3.106: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/29] Deinstalling libksba-1.6.7...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [12/29] Deleting files for libksba-1.6.7: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/29] Deinstalling libassuan-3.0.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [13/29] Deleting files for libassuan-3.0.1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/29] Deinstalling libgcrypt-1.11.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [14/29] Deleting files for libgcrypt-1.11.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/29] Deinstalling mpc-1.3.1_1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [15/29] Deleting files for mpc-1.3.1_1: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/29] Deinstalling gobject-introspection-1.78.1_2,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [16/29] Deleting files for gobject-introspection-1.78.1_2,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/29] Deinstalling libarchive-3.7.7,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [17/29] Deleting files for libarchive-3.7.7,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/29] Deinstalling libexif-0.6.24...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [18/29] Deleting files for libexif-0.6.24: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/29] Deinstalling libgpg-error-1.50...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [19/29] Deleting files for libgpg-error-1.50: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/29] Deinstalling mpfr-4.2.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [20/29] Deleting files for mpfr-4.2.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/29] Deinstalling sqlite3-3.46.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [21/29] Deleting files for sqlite3-3.46.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/29] Deinstalling binutils-2.43.1,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [22/29] Deleting files for binutils-2.43.1,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/29] Deinstalling npth-1.7...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [23/29] Deleting files for npth-1.7: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/29] Deinstalling cfitsio-4.5.0...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [24/29] Deleting files for cfitsio-4.5.0: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/29] Deinstalling libedit-3.1.20240808,1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [25/29] Deleting files for libedit-3.1.20240808,1: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/29] Deinstalling libaec-1.1.3...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [26/29] Deleting files for libaec-1.1.3: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/29] Deinstalling nspr-4.36...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [27/29] Deleting files for nspr-4.36: .......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/29] Deinstalling cgif-0.4.1...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [28/29] Deleting files for cgif-0.4.1: ......... done
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/29] Deinstalling libspng-0.7.4...
[pixelfed-amd64-14_1.vsf00002.cpt.za.honeyguide.net] [29/29] Deleting files for libspng-0.7.4: .......... done
Step 59: Clean package installation
The following package files will be deleted:
/var/cache/pkg/libheif-1.19.1.pkg
/var/cache/pkg/libwmf-nox11-0.2.13_2.pkg
/var/cache/pkg/fftw3-3.3.10_5~8c3a3a4794.pkg
/var/cache/pkg/libx264-0.164.3095.pkg
/var/cache/pkg/gnome_subr-1.0~6ea92ed56f.pkg
/var/cache/pkg/indexinfo-0.3.1~23193577fa.pkg
/var/cache/pkg/nginx-1.26.2_7,3.pkg
/var/cache/pkg/libltdl-2.4.7~b0c1df4042.pkg
/var/cache/pkg/python311-3.11.10~72d58ad57b.pkg
/var/cache/pkg/libnghttp2-1.64.0.pkg
/var/cache/pkg/libjxl-0.11.0_1~2345a0589d.pkg
/var/cache/pkg/sudo-1.9.16~be0088cec3.pkg
/var/cache/pkg/libvorbis-1.3.7_2,3.pkg
/var/cache/pkg/php82-curl-8.2.25~70569b8056.pkg
/var/cache/pkg/opus-1.5.2.pkg
/var/cache/pkg/jpeg-turbo-3.0.4~3f11ff2acf.pkg
/var/cache/pkg/consul-1.20.1.pkg
/var/cache/pkg/libidn-1.42.pkg
/var/cache/pkg/libXft-2.3.8~bfe25995fc.pkg
/var/cache/pkg/libaec-1.1.3~1db5bf3fce.pkg
/var/cache/pkg/openssl-3.0.15_1,1.pkg
/var/cache/pkg/gnupg-2.4.5_1~325c7a7b63.pkg
/var/cache/pkg/pixman-0.42.2.pkg
/var/cache/pkg/libXrender-0.9.11~787e229a5e.pkg
/var/cache/pkg/libevent-2.1.12.pkg
/var/cache/pkg/php82-exif-8.2.25.pkg
/var/cache/pkg/gsfonts-8.11_8~bd26d2a184.pkg
/var/cache/pkg/hdf5-1.12.2_2,1~6bc20f0053.pkg
/var/cache/pkg/php82-filter-8.2.25~b3bcce9f33.pkg
/var/cache/pkg/php82-gd-8.2.25~5811782def.pkg
/var/cache/pkg/gnutls-3.8.7.1~4976e7fc0f.pkg
/var/cache/pkg/php82-session-8.2.25~7f0d5f5e27.pkg
/var/cache/pkg/webp-1.4.0_1.pkg
/var/cache/pkg/cairo-1.17.4_2,3.pkg
/var/cache/pkg/cups-2.4.11.pkg
/var/cache/pkg/cairo-1.17.4_2,3~c18a332336.pkg
/var/cache/pkg/php82-8.2.25~2800aa7705.pkg
/var/cache/pkg/graphite2-1.3.14.pkg
/var/cache/pkg/zstd-1.5.6~fae1dbd1d1.pkg
/var/cache/pkg/py311-packaging-24.1.pkg
/var/cache/pkg/fontconfig-2.15.0_3,1~1e0831fd03.pkg
/var/cache/pkg/gettext-runtime-0.22.5.pkg
/var/cache/pkg/npth-1.7~de0ae392ef.pkg
/var/cache/pkg/php82-sodium-8.2.25~c51fc7ba05.pkg
/var/cache/pkg/ca_root_nss-3.104~bfe120498c.pkg
/var/cache/pkg/liblqr-1-0.4.2~24da80348c.pkg
/var/cache/pkg/avahi-app-0.8_2.pkg
/var/cache/pkg/postgresql16-client-16.4.pkg
/var/cache/pkg/libunwind-20240221_1.pkg
/var/cache/pkg/libunwind-20240221_1~6f2cd61007.pkg
/var/cache/pkg/php82-iconv-8.2.25~ac67801b85.pkg
/var/cache/pkg/php82-fileinfo-8.2.25.pkg
/var/cache/pkg/openssl-3.0.15_1,1~72ffb105c2.pkg
/var/cache/pkg/sudo-1.9.16.pkg
/var/cache/pkg/lerc-4.0.0~d52ba44f06.pkg
/var/cache/pkg/libidn2-2.3.7~9ce650311e.pkg
/var/cache/pkg/py311-setuptools-63.1.0_1~a11588fba7.pkg
/var/cache/pkg/indexinfo-0.3.1.pkg
/var/cache/pkg/glib-2.80.5_1,2~5acae278be.pkg
/var/cache/pkg/libffi-3.4.6~2e5bcc216e.pkg
/var/cache/pkg/libgcrypt-1.11.0.pkg
/var/cache/pkg/libXau-1.0.11.pkg
/var/cache/pkg/libpaper-1.1.28_1.pkg
/var/cache/pkg/xxhash-0.8.2_1.pkg
/var/cache/pkg/libdaemon-0.14_1.pkg
/var/cache/pkg/ImageMagick7-nox11-7.1.1.26_6.pkg
/var/cache/pkg/dbus-glib-0.112_1.pkg
/var/cache/pkg/libfontenc-1.1.8.pkg
/var/cache/pkg/lcms2-2.16_2.pkg
/var/cache/pkg/gdk-pixbuf2-2.42.10_3.pkg
/var/cache/pkg/ivykis-0.43.2.pkg
/var/cache/pkg/webp-1.4.0_1~89cd37cf88.pkg
/var/cache/pkg/svt-av1-2.3.0~bfbef5653f.pkg
/var/cache/pkg/libogg-1.3.5,4~49819d0808.pkg
/var/cache/pkg/npth-1.7.pkg
/var/cache/pkg/libssh2-1.11.1,3~74db89aaa4.pkg
/var/cache/pkg/libsodium-1.0.19~1403d89c0f.pkg
/var/cache/pkg/libspng-0.7.4~5dd610e0d3.pkg
/var/cache/pkg/ghostscript10-10.04.0~4d3dd59d87.pkg
/var/cache/pkg/mpdecimal-4.0.0.pkg
/var/cache/pkg/jpeg-turbo-3.0.4.pkg
/var/cache/pkg/libzip-1.11.1.pkg
/var/cache/pkg/libass-0.17.3~67fd88facf.pkg
/var/cache/pkg/libogg-1.3.5,4.pkg
/var/cache/pkg/libglvnd-1.7.0~f53ab71c91.pkg
/var/cache/pkg/php82-pcntl-8.2.25.pkg
/var/cache/pkg/gmp-6.3.0~af21c06124.pkg
/var/cache/pkg/ivykis-0.43.2~ec5e220c92.pkg
/var/cache/pkg/gnome_subr-1.0.pkg
/var/cache/pkg/freetype2-2.13.3.pkg
/var/cache/pkg/libgd-2.3.3_13,1.pkg
/var/cache/pkg/libXft-2.3.8.pkg
/var/cache/pkg/libv4l-1.23.0_5~4a6192e593.pkg
/var/cache/pkg/aom-3.10.0_1.pkg
/var/cache/pkg/xorgproto-2024.1.pkg
/var/cache/pkg/mpc-1.3.1_1~8aaa7924f6.pkg
/var/cache/pkg/libglvnd-1.7.0.pkg
/var/cache/pkg/libssh2-1.11.1,3.pkg
/var/cache/pkg/php82-sodium-8.2.25.pkg
/var/cache/pkg/urw-base35-fonts-20200910.pkg
/var/cache/pkg/gsfonts-8.11_8.pkg
/var/cache/pkg/libtasn1-4.19.0_1~cab0af3b3d.pkg
/var/cache/pkg/icu-74.2_1,1.pkg
/var/cache/pkg/php82-pdo_mysql-8.2.25.pkg
/var/cache/pkg/c-ares-1.34.2~b265502bf3.pkg
/var/cache/pkg/libv4l-1.23.0_5.pkg
/var/cache/pkg/php82-pgsql-8.2.25~72eb191460.pkg
/var/cache/pkg/libpaper-1.1.28_1~da12cd51d6.pkg
/var/cache/pkg/php82-tokenizer-8.2.25~2ec4cfbade.pkg
/var/cache/pkg/php82-dom-8.2.25~4e0a9b30b8.pkg
/var/cache/pkg/rsync-3.3.0~a5b297d646.pkg
/var/cache/pkg/libdatrie-0.2.13_2~6744582b4f.pkg
/var/cache/pkg/gdk-pixbuf2-2.42.10_3~b52a8cabe9.pkg
/var/cache/pkg/nano-8.2~d755d2d3ea.pkg
/var/cache/pkg/php82-pecl-redis-5.3.7_1.pkg
/var/cache/pkg/vmaf-3.0.0~becdd207b7.pkg
/var/cache/pkg/nettle-3.10_1~dfddf5db70.pkg
/var/cache/pkg/libedit-3.1.20240808,1.pkg
/var/cache/pkg/sqlite3-3.46.1,1.pkg
/var/cache/pkg/pinentry-1.3.1_1~4bcd8445f1.pkg
/var/cache/pkg/libvdpau-1.5.pkg
/var/cache/pkg/libuv-1.49.2.pkg
/var/cache/pkg/p11-kit-0.25.5.pkg
/var/cache/pkg/mkfontscale-1.2.3~e2d2372a77.pkg
/var/cache/pkg/nss-3.106~e625b38114.pkg
/var/cache/pkg/ImageMagick7-7.1.1.26_6~3bbf49eebf.pkg
/var/cache/pkg/libiconv-1.17_1.pkg
/var/cache/pkg/libwmf-nox11-0.2.13_2~eb5071c2eb.pkg
/var/cache/pkg/libXext-1.3.6,1.pkg
/var/cache/pkg/php82-mbstring-8.2.25.pkg
/var/cache/pkg/php82-intl-8.2.25.pkg
/var/cache/pkg/libX11-1.8.9,1.pkg
/var/cache/pkg/pinentry-1.3.1_1.pkg
/var/cache/pkg/php82-mbstring-8.2.25~81e2aab8a8.pkg
/var/cache/pkg/php82-bcmath-8.2.25~f48c1e73cd.pkg
/var/cache/pkg/libxcb-1.17.0~09e5e3070f.pkg
/var/cache/pkg/curl-8.10.1~ba67cf7e4a.pkg
/var/cache/pkg/oniguruma-6.9.9.pkg
/var/cache/pkg/dbus-glib-0.112_1~2fd2e7b440.pkg
/var/cache/pkg/php82-ctype-8.2.25~1faeb6ee8b.pkg
/var/cache/pkg/py311-setuptools-63.1.0_1.pkg
/var/cache/pkg/jbig2dec-0.20_1~1a41fce976.pkg
/var/cache/pkg/libvdpau-1.5~6ea7f0c851.pkg
/var/cache/pkg/gdbm-1.24.pkg
/var/cache/pkg/mpfr-4.2.1,1.pkg
/var/cache/pkg/matio-1.5.28~4a9ab96ad2.pkg
/var/cache/pkg/ImageMagick7-nox11-7.1.1.26_6~1889a07bb7.pkg
/var/cache/pkg/binutils-2.43.1,1.pkg
/var/cache/pkg/libpciaccess-0.18.1~d152e8ac61.pkg
/var/cache/pkg/vulkan-loader-1.3.301.pkg
/var/cache/pkg/python311-3.11.10.pkg
/var/cache/pkg/libltdl-2.4.7.pkg
/var/cache/pkg/wayland-1.23.1~410eb67f1c.pkg
/var/cache/pkg/libraqm-0.10.2~13a5d301fe.pkg
/var/cache/pkg/json-c-0.18.pkg
/var/cache/pkg/php82-zip-8.2.25.pkg
/var/cache/pkg/vmaf-3.0.0.pkg
/var/cache/pkg/libepoll-shim-0.0.20240608.pkg
/var/cache/pkg/gnutls-3.8.7.1.pkg
/var/cache/pkg/php82-filter-8.2.25.pkg
/var/cache/pkg/cgif-0.4.1~eb0789365e.pkg
/var/cache/pkg/libXau-1.0.11~05612964bb.pkg
/var/cache/pkg/curl-8.10.1.pkg
/var/cache/pkg/libdrm-2.4.123,1.pkg
/var/cache/pkg/php82-xmlwriter-8.2.25.pkg
/var/cache/pkg/libraw-0.21.3~760098c038.pkg
/var/cache/pkg/cfitsio-4.5.0.pkg
/var/cache/pkg/pkgconf-2.3.0,1.pkg
/var/cache/pkg/pcre2-10.43~826ffbb4c9.pkg
/var/cache/pkg/libass-0.17.3.pkg
/var/cache/pkg/pcre2-10.43.pkg
/var/cache/pkg/node20-20.18.0.pkg
/var/cache/pkg/libidn-1.42~fbcb90a615.pkg
/var/cache/pkg/expat-2.6.3.pkg
/var/cache/pkg/aom-3.10.0_1~2a77882a7c.pkg
/var/cache/pkg/php82-xmlwriter-8.2.25~ccd42c615c.pkg
/var/cache/pkg/syslog-ng-4.8.1_1~f3d80c1ab7.pkg
/var/cache/pkg/gmp-6.3.0.pkg
/var/cache/pkg/php82-pdo-8.2.25.pkg
/var/cache/pkg/php82-simplexml-8.2.25~38f6452129.pkg
/var/cache/pkg/yarn-node20-1.22.19~c1d14182db.pkg
/var/cache/pkg/libXrandr-1.5.4.pkg
/var/cache/pkg/poppler-glib-24.02.0_1.pkg
/var/cache/pkg/libffi-3.4.6.pkg
/var/cache/pkg/libx264-0.164.3095~e5d9492fa8.pkg
/var/cache/pkg/libthai-0.1.29_1.pkg
/var/cache/pkg/e2fsprogs-libuuid-1.47.1.pkg
/var/cache/pkg/libpciaccess-0.18.1.pkg
/var/cache/pkg/png-1.6.44~dc982bbe1e.pkg
/var/cache/pkg/lame-3.100_5.pkg
/var/cache/pkg/dbus-1.14.10_5,1~0f644d453a.pkg
/var/cache/pkg/poppler-24.02.0_1.pkg
/var/cache/pkg/php82-bcmath-8.2.25.pkg
/var/cache/pkg/dav1d-1.5.0~c955bfef79.pkg
/var/cache/pkg/Imath-3.1.12.pkg
/var/cache/pkg/pango-1.52.2_1.pkg
/var/cache/pkg/tiff-4.7.0.pkg
/var/cache/pkg/libevent-2.1.12~c5e2e9d55c.pkg
/var/cache/pkg/nss-3.106.pkg
/var/cache/pkg/php82-8.2.25.pkg
/var/cache/pkg/nspr-4.36.pkg
/var/cache/pkg/node_exporter-1.8.2~7db9de62d4.pkg
/var/cache/pkg/postgresql16-client-16.4~1cc015ab5f.pkg
/var/cache/pkg/nginx-1.26.2_7,3~8e92cda773.pkg
/var/cache/pkg/hdf5-1.12.2_2,1.pkg
/var/cache/pkg/mpfr-4.2.1,1~88b26a91d6.pkg
/var/cache/pkg/php82-xmlreader-8.2.25.pkg
/var/cache/pkg/libuv-1.49.2~4aca8606d0.pkg
/var/cache/pkg/readline-8.2.13_2~f7ba600bb9.pkg
/var/cache/pkg/shared-mime-info-2.2_3~fd271eb69a.pkg
/var/cache/pkg/libtasn1-4.19.0_1.pkg
/var/cache/pkg/pango-1.52.2_1~fda0252865.pkg
/var/cache/pkg/avahi-app-0.8_2~ff04c473c2.pkg
/var/cache/pkg/gnupg-2.4.5_1.pkg
/var/cache/pkg/openexr-3.3.1~3e9055bc22.pkg
/var/cache/pkg/libspng-0.7.4.pkg
/var/cache/pkg/libXdmcp-1.1.5~cf62a8c3da.pkg
/var/cache/pkg/php82-pdo_pgsql-8.2.25~386baa0a85.pkg
/var/cache/pkg/shaderc-2024.3~41dac3936b.pkg
/var/cache/pkg/consul-1.20.1~982c0ff56e.pkg
/var/cache/pkg/php82-iconv-8.2.25.pkg
/var/cache/pkg/pkgconf-2.3.0,1~7b62952935.pkg
/var/cache/pkg/jq-1.7.1.pkg
/var/cache/pkg/libksba-1.6.7.pkg
/var/cache/pkg/blackbox_exporter-0.25.0_5.pkg
/var/cache/pkg/libexif-0.6.24.pkg
/var/cache/pkg/xxhash-0.8.2_1~f7fc28bccb.pkg
/var/cache/pkg/libdaemon-0.14_1~4e157eac59.pkg
/var/cache/pkg/libxcb-1.17.0.pkg
/var/cache/pkg/libgpg-error-1.50.pkg
/var/cache/pkg/harfbuzz-10.0.1~405313d42f.pkg
/var/cache/pkg/shaderc-2024.3.pkg
/var/cache/pkg/libjxl-0.11.0_1.pkg
/var/cache/pkg/cfitsio-4.5.0~e09b7575fb.pkg
/var/cache/pkg/libgd-2.3.3_13,1~73a29b7adf.pkg
/var/cache/pkg/php82-mysqli-8.2.25~9508713b93.pkg
/var/cache/pkg/rsync-3.3.0.pkg
/var/cache/pkg/perl5-5.36.3_2.pkg
/var/cache/pkg/giflib-5.2.2.pkg
/var/cache/pkg/libksba-1.6.7~f72944c779.pkg
/var/cache/pkg/gdbm-1.24~a07f9ba02f.pkg
/var/cache/pkg/p11-kit-0.25.5~c7928602c5.pkg
/var/cache/pkg/node20-20.18.0~6ed88a80e0.pkg
/var/cache/pkg/Imath-3.1.12~7f7c0bb200.pkg
/var/cache/pkg/xorgproto-2024.1~e4adc7c788.pkg
/var/cache/pkg/git-lite-2.47.0.pkg
/var/cache/pkg/poppler-24.02.0_1~bcfdf677ca.pkg
/var/cache/pkg/ca_root_nss-3.104.pkg
/var/cache/pkg/vips-nox11-8.16.0~dc57770dd9.pkg
/var/cache/pkg/php82-composer-2.8.2~b8a6596506.pkg
/var/cache/pkg/gobject-introspection-1.78.1_2,1.pkg
/var/cache/pkg/dav1d-1.5.0.pkg
/var/cache/pkg/php82-dom-8.2.25.pkg
/var/cache/pkg/php82-ctype-8.2.25.pkg
/var/cache/pkg/openh264-2.3.0,2~2bcc08b813.pkg
/var/cache/pkg/highway-1.2.0~8493a240ee.pkg
/var/cache/pkg/libudev-devd-0.6.0~cc60634072.pkg
/var/cache/pkg/pinentry-curses-1.3.1~8f8d1780ad.pkg
/var/cache/pkg/urw-base35-fonts-20200910~010ebb3095.pkg
/var/cache/pkg/opus-1.5.2~86b8023686.pkg
/var/cache/pkg/libthai-0.1.29_1~d82f551319.pkg
/var/cache/pkg/py311-supervisor-4.2.5,1~1540399474.pkg
/var/cache/pkg/redis-7.4.1.pkg
/var/cache/pkg/brotli-1.1.0,1.pkg
/var/cache/pkg/glib-2.80.5_1,2.pkg
/var/cache/pkg/libsodium-1.0.19.pkg
/var/cache/pkg/libidn2-2.3.7.pkg
/var/cache/pkg/gcc13-13.3.0~312e4e928a.pkg
/var/cache/pkg/poppler-data-0.4.12.pkg
/var/cache/pkg/e2fsprogs-libuuid-1.47.1~0f90ad4ce5.pkg
/var/cache/pkg/php82-tokenizer-8.2.25.pkg
/var/cache/pkg/highway-1.2.0.pkg
/var/cache/pkg/freetype2-2.13.3~2adda06d7c.pkg
/var/cache/pkg/php82-posix-8.2.25.pkg
/var/cache/pkg/jbig2dec-0.20_1.pkg
/var/cache/pkg/libarchive-3.7.7,1.pkg
/var/cache/pkg/fribidi-1.0.16~ebcf35b0f1.pkg
/var/cache/pkg/gobject-introspection-1.78.1_2,1~415ab8d80b.pkg
/var/cache/pkg/graphite2-1.3.14~f197cfe477.pkg
/var/cache/pkg/lerc-4.0.0.pkg
/var/cache/pkg/libunibreak-6.1,1.pkg
/var/cache/pkg/php82-session-8.2.25.pkg
/var/cache/pkg/yarn-node20-1.22.19.pkg
/var/cache/pkg/node_exporter-1.8.2.pkg
/var/cache/pkg/postgresql15-client-15.8~09ddf8bec4.pkg
/var/cache/pkg/php82-phar-8.2.25.pkg
/var/cache/pkg/redis-7.4.1~e7a5c89995.pkg
/var/cache/pkg/libexif-0.6.24~479a7b0a40.pkg
/var/cache/pkg/gpgme-1.23.2_1.pkg
/var/cache/pkg/libva-2.22.0.pkg
/var/cache/pkg/cups-2.4.11~b3091966fa.pkg
/var/cache/pkg/syslog-ng-4.8.1_1.pkg
/var/cache/pkg/php82-gd-8.2.25.pkg
/var/cache/pkg/libXfixes-6.0.1.pkg
/var/cache/pkg/libICE-1.1.1,1.pkg
/var/cache/pkg/expat-2.6.3~8a7ffd91a6.pkg
/var/cache/pkg/icu-74.2_1,1~6d186bca26.pkg
/var/cache/pkg/php82-phar-8.2.25~38feb78bdf.pkg
/var/cache/pkg/vulkan-loader-1.3.301~06fad2a930.pkg
/var/cache/pkg/svt-av1-2.3.0.pkg
/var/cache/pkg/git-lite-2.47.0~3c7b966e83.pkg
/var/cache/pkg/blackbox_exporter-0.25.0_5~45fdcde29f.pkg
/var/cache/pkg/php82-pecl-imagick-3.7.0_4~9f3fb878e8.pkg
/var/cache/pkg/png-1.6.44.pkg
/var/cache/pkg/php82-pdo-8.2.25~c2ebc8b484.pkg
/var/cache/pkg/libXdmcp-1.1.5.pkg
/var/cache/pkg/php82-pdo_mysql-8.2.25~b2698532be.pkg
/var/cache/pkg/poppler-data-0.4.12~da679ae429.pkg
/var/cache/pkg/libxml2-2.11.9.pkg
/var/cache/pkg/gpgme-1.23.2_1~87c643ecd0.pkg
/var/cache/pkg/php82-exif-8.2.25~7a5176fb7d.pkg
/var/cache/pkg/libpsl-0.21.5_1.pkg
/var/cache/pkg/py311-packaging-24.1~222235cad6.pkg
/var/cache/pkg/perl5-5.36.3_2~9f741362aa.pkg
/var/cache/pkg/php82-curl-8.2.25.pkg
/var/cache/pkg/shared-mime-info-2.2_3.pkg
/var/cache/pkg/lcms2-2.16_2~122e807910.pkg
/var/cache/pkg/libfontenc-1.1.8~5e3aa8df97.pkg
/var/cache/pkg/libva-2.22.0~acf192e538.pkg
/var/cache/pkg/nettle-3.10_1.pkg
/var/cache/pkg/libSM-1.2.4,1~764eaaea2e.pkg
/var/cache/pkg/jq-1.7.1~efed03b5b3.pkg
/var/cache/pkg/giflib-5.2.2~47549cc51b.pkg
/var/cache/pkg/matio-1.5.28.pkg
/var/cache/pkg/libvpx-1.15.0.pkg
/var/cache/pkg/liblz4-1.10.0,1~c99687c877.pkg
/var/cache/pkg/libwmf-0.2.13_2.pkg
/var/cache/pkg/ffmpeg-6.1.2_5,1~d42f95b6b1.pkg
/var/cache/pkg/fribidi-1.0.16.pkg
/var/cache/pkg/libwmf-0.2.13_2~f69a86db8b.pkg
/var/cache/pkg/openexr-3.3.1.pkg
/var/cache/pkg/libheif-1.19.1~21f8cbb2c4.pkg
/var/cache/pkg/pinentry-curses-1.3.1.pkg
/var/cache/pkg/openh264-2.3.0,2.pkg
/var/cache/pkg/nspr-4.36~a708cb2e67.pkg
/var/cache/pkg/php82-zip-8.2.25~b530403c12.pkg
/var/cache/pkg/mpc-1.3.1_1.pkg
/var/cache/pkg/readline-8.2.13_2.pkg
/var/cache/pkg/zstd-1.5.6.pkg
/var/cache/pkg/libzip-1.11.1~cb0b2aae19.pkg
/var/cache/pkg/jbigkit-2.1_3.pkg
/var/cache/pkg/postgresql15-client-15.8.pkg
/var/cache/pkg/php82-composer-2.8.2.pkg
/var/cache/pkg/libdatrie-0.2.13_2.pkg
/var/cache/pkg/libgpg-error-1.50~da8aede938.pkg
/var/cache/pkg/py311-supervisor-4.2.5,1.pkg
/var/cache/pkg/php82-posix-8.2.25~e5aeab4494.pkg
/var/cache/pkg/libepoll-shim-0.0.20240608~0f09b1fafb.pkg
/var/cache/pkg/libgcrypt-1.11.0~f874083e2b.pkg
/var/cache/pkg/libraw-0.21.3.pkg
/var/cache/pkg/brotli-1.1.0,1~a69d754af2.pkg
/var/cache/pkg/sqlite3-3.46.1,1~f2ce5dc41a.pkg
/var/cache/pkg/php82-zlib-8.2.25~3af45cdf01.pkg
/var/cache/pkg/fftw3-3.3.10_5.pkg
/var/cache/pkg/libdeflate-1.22~6b4d3645da.pkg
/var/cache/pkg/libudev-devd-0.6.0.pkg
/var/cache/pkg/openjph-0.17.0.pkg
/var/cache/pkg/libunistring-1.2.pkg
/var/cache/pkg/libedit-3.1.20240808,1~6f7ea75516.pkg
/var/cache/pkg/libdrm-2.4.123,1~43b95519b0.pkg
/var/cache/pkg/php82-mysqli-8.2.25.pkg
/var/cache/pkg/libXt-1.3.0,1.pkg
/var/cache/pkg/oniguruma-6.9.9~fe3b85e491.pkg
/var/cache/pkg/php82-pgsql-8.2.25.pkg
/var/cache/pkg/jbigkit-2.1_3~b9c13e56a0.pkg
/var/cache/pkg/libSM-1.2.4,1.pkg
/var/cache/pkg/libXfixes-6.0.1~44020bfb94.pkg
/var/cache/pkg/libunistring-1.2~5520f06c6b.pkg
/var/cache/pkg/libpsl-0.21.5_1~6df472797e.pkg
/var/cache/pkg/dbus-1.14.10_5,1.pkg
/var/cache/pkg/libvorbis-1.3.7_2,3~c2d3fe7e52.pkg
/var/cache/pkg/openjpeg-2.5.2_1~5a4f83a6ef.pkg
/var/cache/pkg/php82-simplexml-8.2.25.pkg
/var/cache/pkg/nano-8.2.pkg
/var/cache/pkg/libargon2-20190702_1.pkg
/var/cache/pkg/php82-xml-8.2.25.pkg
/var/cache/pkg/libassuan-3.0.1~2a63437c58.pkg
/var/cache/pkg/gcc13-13.3.0.pkg
/var/cache/pkg/libXrender-0.9.11.pkg
/var/cache/pkg/libassuan-3.0.1.pkg
/var/cache/pkg/json-c-0.18~d3b2e325c7.pkg
/var/cache/pkg/bash-5.2.37.pkg
/var/cache/pkg/jo-1.6_1~06d2b226c2.pkg
/var/cache/pkg/libdeflate-1.22.pkg
/var/cache/pkg/gpgme-cpp-1.23.2_1.pkg
/var/cache/pkg/libxml2-2.11.9~f60edafd57.pkg
/var/cache/pkg/libraqm-0.10.2.pkg
/var/cache/pkg/libXrandr-1.5.4~041638949f.pkg
/var/cache/pkg/php82-pecl-redis-5.3.7_1~8dd4f54800.pkg
/var/cache/pkg/libarchive-3.7.7,1~692ea77103.pkg
/var/cache/pkg/php82-fileinfo-8.2.25~60d34469d1.pkg
/var/cache/pkg/tiff-4.7.0~4a3fa84822.pkg
/var/cache/pkg/php82-intl-8.2.25~cf62d9f089.pkg
/var/cache/pkg/liblz4-1.10.0,1.pkg
/var/cache/pkg/libaec-1.1.3.pkg
/var/cache/pkg/php82-pecl-imagick-3.7.0_4.pkg
/var/cache/pkg/php82-xml-8.2.25~0cf55e14f2.pkg
/var/cache/pkg/libvpx-1.15.0~77864788ec.pkg
/var/cache/pkg/librsvg2-rust-2.58.5~fe504c2e83.pkg
/var/cache/pkg/poppler-glib-24.02.0_1~0bf8e3b064.pkg
/var/cache/pkg/fontconfig-2.15.0_3,1.pkg
/var/cache/pkg/openjph-0.17.0~846989fc87.pkg
/var/cache/pkg/wayland-1.23.1.pkg
/var/cache/pkg/binutils-2.43.1,1~4a2be4b39e.pkg
/var/cache/pkg/liblqr-1-0.4.2.pkg
/var/cache/pkg/pixman-0.42.2~431512a439.pkg
/var/cache/pkg/gettext-runtime-0.22.5~caa4c33c9d.pkg
/var/cache/pkg/libplacebo-7.349.0.pkg
/var/cache/pkg/librsvg2-rust-2.58.5.pkg
/var/cache/pkg/lame-3.100_5~382c1e83f2.pkg
/var/cache/pkg/x265-3.6.pkg
/var/cache/pkg/ImageMagick7-7.1.1.26_6.pkg
/var/cache/pkg/gpgme-cpp-1.23.2_1~e55d9ae767.pkg
/var/cache/pkg/libnghttp2-1.64.0~03bfc1ad64.pkg
/var/cache/pkg/ghostscript10-10.04.0.pkg
/var/cache/pkg/openjpeg-2.5.2_1.pkg
/var/cache/pkg/harfbuzz-10.0.1.pkg
/var/cache/pkg/libXext-1.3.6,1~a288ebaf81.pkg
/var/cache/pkg/libICE-1.1.1,1~1001ebd270.pkg
/var/cache/pkg/php82-pdo_pgsql-8.2.25.pkg
/var/cache/pkg/jo-1.6_1.pkg
/var/cache/pkg/bash-5.2.37~565463d051.pkg
/var/cache/pkg/libX11-1.8.9,1~da8bbb9b7f.pkg
/var/cache/pkg/c-ares-1.34.2.pkg
/var/cache/pkg/ffmpeg-6.1.2_5,1.pkg
/var/cache/pkg/mkfontscale-1.2.3.pkg
/var/cache/pkg/libunibreak-6.1,1~df993ba6a3.pkg
/var/cache/pkg/libiconv-1.17_1~1ab8f03c8b.pkg
/var/cache/pkg/mpdecimal-4.0.0~59562c94c2.pkg
/var/cache/pkg/libplacebo-7.349.0~223fd15c31.pkg
/var/cache/pkg/x265-3.6~fcc69e2521.pkg
/var/cache/pkg/php82-zlib-8.2.25.pkg
/var/cache/pkg/libargon2-20190702_1~8da983a4d3.pkg
/var/cache/pkg/php82-xmlreader-8.2.25~caeeacdbd6.pkg
/var/cache/pkg/vips-nox11-8.16.0.pkg
/var/cache/pkg/php82-pcntl-8.2.25~55eef9c8e1.pkg
/var/cache/pkg/libXt-1.3.0,1~4bf41bfa8c.pkg
/var/cache/pkg/cgif-0.4.1.pkg
The cleanup will free 390 MiB
Deleting files: .......... done
Step 60: Make directory for pixelfed
Step 61: Setting www:www owner of /usr/local/www/pixelfed
Step 62: Initiating git repo in /usr/local/www/pixelfed
Initialized empty Git repository in /usr/local/www/pixelfed/.git/
Step 63: Adding remote origin https://github.com/pixelfed/pixelfed.git
Step 64: 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 65: 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 '4c245cf429330d01fcb8ebeb9aa8c84a9574a645'.
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 4c245cf4 Merge pull request #5200 from pixelfed/staging
Step 66: Run composer install
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Package operations: 173 installs, 0 updates, 0 removals
- Downloading aws/aws-crt-php (v1.2.6)
- Downloading dasprid/enum (1.0.5)
- Downloading bacon/bacon-qr-code (2.0.8)
- Downloading voku/portable-ascii (2.0.1)
- Downloading symfony/polyfill-php80 (v1.30.0)
- Downloading symfony/polyfill-mbstring (v1.30.0)
- Downloading symfony/polyfill-ctype (v1.30.0)
- 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.1)
- Downloading tijsverkoyen/css-to-inline-styles (v2.2.7)
- Downloading symfony/var-dumper (v7.1.2)
- Downloading symfony/polyfill-uuid (v1.30.0)
- Downloading symfony/uid (v7.1.1)
- Downloading symfony/deprecation-contracts (v3.5.0)
- Downloading symfony/routing (v7.1.1)
- Downloading symfony/process (v7.1.1)
- Downloading symfony/polyfill-php83 (v1.30.0)
- 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 (v7.1.2)
- Downloading psr/container (2.0.2)
- Downloading symfony/service-contracts (v3.5.0)
- Downloading psr/event-dispatcher (1.0.0)
- Downloading symfony/event-dispatcher-contracts (v3.5.0)
- Downloading symfony/event-dispatcher (v7.1.1)
- Downloading psr/log (3.0.0)
- Downloading doctrine/lexer (3.0.1)
- Downloading egulias/email-validator (4.0.2)
- Downloading symfony/mailer (v7.1.2)
- Downloading symfony/http-foundation (v7.1.1)
- Downloading symfony/error-handler (v7.1.2)
- Downloading symfony/http-kernel (v7.1.2)
- Downloading symfony/finder (v7.1.1)
- Downloading symfony/polyfill-intl-grapheme (v1.30.0)
- Downloading symfony/string (v7.1.2)
- Downloading symfony/console (v7.1.2)
- 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 (v2.0.1)
- Downloading symfony/translation-contracts (v3.5.0)
- Downloading symfony/translation (v7.1.1)
- Downloading psr/clock (1.0.0)
- Downloading symfony/clock (v7.1.1)
- Downloading carbonphp/carbon-doctrine-types (2.1.0)
- Downloading nesbot/carbon (3.6.0)
- Downloading monolog/monolog (3.7.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 (v11.13.0)
- Downloading laravel/prompts (v0.1.24)
- Downloading guzzlehttp/uri-template (v1.0.3)
- Downloading psr/http-message (2.0)
- 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 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 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.6)
- 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.119)
- 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 (8.0.0)
- Downloading laravel/helpers (v1.7.0)
- Downloading laravel/horizon (v5.24.5)
- Downloading symfony/psr-http-message-bridge (v7.1.1)
- 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 paragonie/random_compat (v9.99.100)
- Downloading defuse/php-encryption (v2.4.0)
- Downloading league/oauth2-server (8.5.4)
- Downloading firebase/php-jwt (v6.10.1)
- Downloading laravel/passport (v12.2.0)
- Downloading laravel/pint (v1.16.1)
- Downloading laravel/telescope (v5.1.1)
- Downloading nikic/php-parser (v5.0.2)
- Downloading psy/psysh (v0.12.4)
- 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.315.2)
- 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 (v8.1.1)
- Downloading symfony/var-exporter (v7.1.2)
- Downloading symfony/cache-contracts (v3.5.0)
- Downloading symfony/cache (v7.1.2)
- Downloading spatie/temporary-directory (2.2.1)
- Downloading evenement/evenement (v3.0.2)
- Downloading php-ffmpeg/php-ffmpeg (v1.2.0)
- Downloading pbmedia/laravel-ffmpeg (8.5.0)
- Downloading sebastian/version (5.0.0)
- Downloading sebastian/type (5.0.0)
- Downloading sebastian/recursion-context (6.0.1)
- Downloading sebastian/object-reflector (4.0.0)
- Downloading sebastian/object-enumerator (6.0.0)
- Downloading sebastian/global-state (7.0.1)
- Downloading sebastian/exporter (6.1.2)
- Downloading sebastian/environment (7.1.0)
- Downloading sebastian/diff (6.0.1)
- Downloading sebastian/comparator (6.0.0)
- Downloading sebastian/code-unit (3.0.0)
- Downloading sebastian/cli-parser (3.0.1)
- Downloading phpunit/php-timer (7.0.0)
- Downloading phpunit/php-text-template (4.0.0)
- Downloading phpunit/php-invoker (5.0.0)
- Downloading phpunit/php-file-iterator (5.0.0)
- Downloading theseer/tokenizer (1.2.3)
- Downloading sebastian/lines-of-code (3.0.0)
- Downloading sebastian/complexity (4.0.0)
- Downloading sebastian/code-unit-reverse-lookup (4.0.0)
- Downloading phpunit/php-code-coverage (11.0.4)
- Downloading phar-io/version (3.2.1)
- Downloading phar-io/manifest (2.0.4)
- Downloading myclabs/deep-copy (1.12.0)
- Downloading phpunit/phpunit (11.2.5)
- Downloading pixelfed/fractal (0.18.0)
- Downloading pixelfed/laravel-snowflake (v2.0.0)
- Downloading pragmarx/google2fa (v8.0.1)
- Downloading predis/predis (v2.2.2)
- Downloading paragonie/sodium_compat (v1.21.1)
- Downloading pusher/pusher-php-server (7.2.4)
- Downloading spatie/laravel-package-tools (1.16.4)
- Downloading spatie/laravel-signal-aware-command (2.0.0)
- Downloading spatie/db-dumper (3.6.0)
- Downloading spatie/laravel-backup (8.8.1)
- 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.2.0)
- Downloading symfony/http-client-contracts (v3.5.0)
- Downloading symfony/http-client (v6.4.9)
- Downloading symfony/mailgun-mailer (v6.4.9)
- Installing aws/aws-crt-php (v1.2.6): Extracting archive
- Installing dasprid/enum (1.0.5): Extracting archive
- Installing bacon/bacon-qr-code (2.0.8): Extracting archive
- Installing voku/portable-ascii (2.0.1): Extracting archive
- Installing symfony/polyfill-php80 (v1.30.0): Extracting archive
- Installing symfony/polyfill-mbstring (v1.30.0): Extracting archive
- Installing symfony/polyfill-ctype (v1.30.0): 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.1): Extracting archive
- Installing tijsverkoyen/css-to-inline-styles (v2.2.7): Extracting archive
- Installing symfony/var-dumper (v7.1.2): Extracting archive
- Installing symfony/polyfill-uuid (v1.30.0): Extracting archive
- Installing symfony/uid (v7.1.1): Extracting archive
- Installing symfony/deprecation-contracts (v3.5.0): Extracting archive
- Installing symfony/routing (v7.1.1): Extracting archive
- Installing symfony/process (v7.1.1): Extracting archive
- Installing symfony/polyfill-php83 (v1.30.0): Extracting archive
- Installing symfony/polyfill-php72 (v1.30.0): Extracting archive
- Installing symfony/polyfill-intl-normalizer (v1.30.0): Extracting archive
- Installing symfony/polyfill-intl-idn (v1.30.0): Extracting archive
- Installing symfony/mime (v7.1.2): Extracting archive
- Installing psr/container (2.0.2): Extracting archive
- Installing symfony/service-contracts (v3.5.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.1): Extracting archive
- Installing psr/log (3.0.0): Extracting archive
- Installing doctrine/lexer (3.0.1): Extracting archive
- Installing egulias/email-validator (4.0.2): Extracting archive
- Installing symfony/mailer (v7.1.2): Extracting archive
- Installing symfony/http-foundation (v7.1.1): Extracting archive
- Installing symfony/error-handler (v7.1.2): Extracting archive
- Installing symfony/http-kernel (v7.1.2): Extracting archive
- Installing symfony/finder (v7.1.1): Extracting archive
- Installing symfony/polyfill-intl-grapheme (v1.30.0): Extracting archive
- Installing symfony/string (v7.1.2): Extracting archive
- Installing symfony/console (v7.1.2): 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 (v2.0.1): Extracting archive
- Installing symfony/translation-contracts (v3.5.0): Extracting archive
- Installing symfony/translation (v7.1.1): Extracting archive
- Installing psr/clock (1.0.0): Extracting archive
- Installing symfony/clock (v7.1.1): Extracting archive
- Installing carbonphp/carbon-doctrine-types (2.1.0): Extracting archive
- Installing nesbot/carbon (3.6.0): Extracting archive
- Installing monolog/monolog (3.7.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 (v11.13.0): Extracting archive
- Installing laravel/prompts (v0.1.24): Extracting archive
- Installing guzzlehttp/uri-template (v1.0.3): Extracting archive
- Installing psr/http-message (2.0): 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 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 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.6): 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.119): 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 (8.0.0): Extracting archive
- Installing laravel/helpers (v1.7.0): Extracting archive
- Installing laravel/horizon (v5.24.5): Extracting archive
- Installing symfony/psr-http-message-bridge (v7.1.1): 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 paragonie/random_compat (v9.99.100): 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 (v12.2.0): Extracting archive
- Installing laravel/pint (v1.16.1): Extracting archive
- Installing laravel/telescope (v5.1.1): Extracting archive
- Installing nikic/php-parser (v5.0.2): Extracting archive
- Installing psy/psysh (v0.12.4): 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.315.2): 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 (v8.1.1): Extracting archive
- Installing symfony/var-exporter (v7.1.2): Extracting archive
- Installing symfony/cache-contracts (v3.5.0): Extracting archive
- Installing symfony/cache (v7.1.2): Extracting archive
- Installing spatie/temporary-directory (2.2.1): Extracting archive
- Installing evenement/evenement (v3.0.2): Extracting archive
- Installing php-ffmpeg/php-ffmpeg (v1.2.0): Extracting archive
- Installing pbmedia/laravel-ffmpeg (8.5.0): Extracting archive
- Installing sebastian/version (5.0.0): Extracting archive
- Installing sebastian/type (5.0.0): Extracting archive
- Installing sebastian/recursion-context (6.0.1): Extracting archive
- Installing sebastian/object-reflector (4.0.0): Extracting archive
- Installing sebastian/object-enumerator (6.0.0): Extracting archive
- Installing sebastian/global-state (7.0.1): Extracting archive
- Installing sebastian/exporter (6.1.2): Extracting archive
- Installing sebastian/environment (7.1.0): Extracting archive
- Installing sebastian/diff (6.0.1): Extracting archive
- Installing sebastian/comparator (6.0.0): Extracting archive
- Installing sebastian/code-unit (3.0.0): Extracting archive
- Installing sebastian/cli-parser (3.0.1): Extracting archive
- Installing phpunit/php-timer (7.0.0): Extracting archive
- Installing phpunit/php-text-template (4.0.0): Extracting archive
- Installing phpunit/php-invoker (5.0.0): Extracting archive
- Installing phpunit/php-file-iterator (5.0.0): Extracting archive
- Installing theseer/tokenizer (1.2.3): Extracting archive
- Installing sebastian/lines-of-code (3.0.0): Extracting archive
- Installing sebastian/complexity (4.0.0): Extracting archive
- Installing sebastian/code-unit-reverse-lookup (4.0.0): Extracting archive
- Installing phpunit/php-code-coverage (11.0.4): 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.12.0): Extracting archive
- Installing phpunit/phpunit (11.2.5): Extracting archive
- Installing pixelfed/fractal (0.18.0): Extracting archive
- Installing pixelfed/laravel-snowflake (v2.0.0): Extracting archive
- Installing pragmarx/google2fa (v8.0.1): Extracting archive
- Installing predis/predis (v2.2.2): Extracting archive
- Installing paragonie/sodium_compat (v1.21.1): Extracting archive
- Installing pusher/pusher-php-server (7.2.4): Extracting archive
- Installing spatie/laravel-package-tools (1.16.4): Extracting archive
- Installing spatie/laravel-signal-aware-command (2.0.0): Extracting archive
- Installing spatie/db-dumper (3.6.0): Extracting archive
- Installing spatie/laravel-backup (8.8.1): 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.2.0): Extracting archive
- Installing symfony/http-client-contracts (v3.5.0): Extracting archive
- Installing symfony/http-client (v6.4.9): Extracting archive
- Installing symfony/mailgun-mailer (v6.4.9): Extracting archive
Package fgrosse/phpasn1 is abandoned, you should avoid using it. No replacement was suggested.
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
[37;44m INFO [39;49m Discovering packages.
buzz/laravel-h-captcha [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
intervention/image [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
jenssegers/agent [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel-notification-channels/webpush [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/horizon [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/telescope [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/tinker [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/ui [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
nesbot/carbon [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
nunomaduro/collision [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
nunomaduro/termwind [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
pbmedia/laravel-ffmpeg [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
pixelfed/laravel-snowflake [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
spatie/laravel-backup [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
spatie/laravel-image-optimizer [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
spatie/laravel-signal-aware-command [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
stevebauman/purify [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
112 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Step 67: Run composer update
Loading composer repositories with package information
Updating dependencies
Lock file operations: 0 installs, 98 updates, 1 removal
- Removing symfony/polyfill-php72 (v1.30.0)
- Upgrading aws/aws-crt-php (v1.2.6 => v1.2.7)
- Upgrading aws/aws-sdk-php (3.315.2 => 3.325.2)
- Upgrading dasprid/enum (1.0.5 => 1.0.6)
- Upgrading dflydev/dot-access-data (v3.0.2 => v3.0.3)
- Upgrading doctrine/dbal (3.8.6 => 3.9.3)
- Upgrading dragonmantank/cron-expression (v3.3.3 => v3.4.0)
- Upgrading ezyang/htmlpurifier (v4.17.0 => v4.18.0)
- Upgrading filp/whoops (2.15.4 => 2.16.0)
- Upgrading graham-campbell/result-type (v1.1.2 => v1.1.3)
- Upgrading guzzlehttp/guzzle (7.8.1 => 7.9.2)
- Upgrading guzzlehttp/promises (2.0.2 => 2.0.4)
- Upgrading guzzlehttp/psr7 (2.6.2 => 2.7.0)
- Upgrading jaybizzle/crawler-detect (v1.2.119 => v1.2.121)
- Upgrading laravel/framework (v11.13.0 => v11.30.0)
- Upgrading laravel/horizon (v5.24.5 => v5.29.2)
- Upgrading laravel/passport (v12.2.0 => v12.3.0)
- Upgrading laravel/pint (v1.16.1 => v1.18.1)
- Upgrading laravel/prompts (v0.1.24 => v0.3.1)
- Upgrading laravel/serializable-closure (v1.3.3 => v1.3.5)
- Upgrading laravel/telescope (v5.1.1 => v5.2.4)
- Upgrading laravel/tinker (v2.9.0 => v2.10.0)
- Upgrading lcobucci/clock (3.2.0 => 3.3.1)
- Upgrading lcobucci/jwt (5.3.0 => 5.4.1)
- Upgrading league/commonmark (2.4.2 => 2.5.3)
- Upgrading league/flysystem (3.28.0 => 3.29.1)
- Upgrading league/flysystem-aws-s3-v3 (3.28.0 => 3.29.0)
- Upgrading league/flysystem-local (3.28.0 => 3.29.0)
- Upgrading league/iso3166 (4.3.1 => 4.3.2)
- Upgrading league/mime-type-detection (1.15.0 => 1.16.0)
- Upgrading mtdowling/jmespath.php (2.7.0 => 2.8.0)
- Upgrading nesbot/carbon (3.6.0 => 3.8.1)
- Upgrading nette/schema (v1.3.0 => v1.3.2)
- Upgrading nette/utils (v4.0.4 => v4.0.5)
- Upgrading nikic/php-parser (v5.0.2 => v5.3.1)
- Upgrading nunomaduro/collision (v8.1.1 => v8.5.0)
- Upgrading nunomaduro/termwind (v2.0.1 => v2.2.0)
- Upgrading nyholm/psr7 (1.8.1 => 1.8.2)
- Upgrading paragonie/sodium_compat (v1.21.1 => v2.1.0)
- Upgrading phpoption/phpoption (1.9.2 => 1.9.3)
- Upgrading phpunit/php-code-coverage (11.0.4 => 11.0.7)
- Upgrading phpunit/php-file-iterator (5.0.0 => 5.1.0)
- Upgrading phpunit/php-invoker (5.0.0 => 5.0.1)
- Upgrading phpunit/php-text-template (4.0.0 => 4.0.1)
- Upgrading phpunit/php-timer (7.0.0 => 7.0.1)
- Upgrading phpunit/phpunit (11.2.5 => 11.4.3)
- Upgrading pragmarx/google2fa (v8.0.1 => v8.0.3)
- Upgrading psr/log (3.0.0 => 3.0.2)
- Upgrading pusher/pusher-php-server (7.2.4 => 7.2.6)
- Upgrading sebastian/cli-parser (3.0.1 => 3.0.2)
- Upgrading sebastian/code-unit (3.0.0 => 3.0.1)
- Upgrading sebastian/code-unit-reverse-lookup (4.0.0 => 4.0.1)
- Upgrading sebastian/comparator (6.0.0 => 6.2.1)
- Upgrading sebastian/complexity (4.0.0 => 4.0.1)
- Upgrading sebastian/diff (6.0.1 => 6.0.2)
- Upgrading sebastian/environment (7.1.0 => 7.2.0)
- Upgrading sebastian/exporter (6.1.2 => 6.1.3)
- Upgrading sebastian/global-state (7.0.1 => 7.0.2)
- Upgrading sebastian/lines-of-code (3.0.0 => 3.0.1)
- Upgrading sebastian/object-enumerator (6.0.0 => 6.0.1)
- Upgrading sebastian/object-reflector (4.0.0 => 4.0.1)
- Upgrading sebastian/recursion-context (6.0.1 => 6.0.2)
- Upgrading sebastian/type (5.0.0 => 5.1.0)
- Upgrading sebastian/version (5.0.0 => 5.0.2)
- Upgrading spatie/db-dumper (3.6.0 => 3.7.0)
- Upgrading spatie/image-optimizer (1.7.5 => 1.8.0)
- Upgrading spatie/laravel-backup (8.8.1 => 8.8.2)
- Upgrading spatie/laravel-package-tools (1.16.4 => 1.16.5)
- Upgrading stevebauman/purify (v6.2.0 => v6.2.2)
- Upgrading symfony/cache (v7.1.2 => v7.1.7)
- Upgrading symfony/clock (v7.1.1 => v7.1.6)
- Upgrading symfony/console (v7.1.2 => v7.1.7)
- Upgrading symfony/css-selector (v7.1.1 => v7.1.6)
- Upgrading symfony/error-handler (v7.1.2 => v7.1.7)
- Upgrading symfony/event-dispatcher (v7.1.1 => v7.1.6)
- Upgrading symfony/finder (v7.1.1 => v7.1.6)
- Upgrading symfony/http-client (v6.4.9 => v6.4.14)
- Upgrading symfony/http-foundation (v7.1.1 => v7.1.7)
- Upgrading symfony/http-kernel (v7.1.2 => v7.1.7)
- Upgrading symfony/mailer (v7.1.2 => v7.1.6)
- Upgrading symfony/mailgun-mailer (v6.4.9 => v6.4.13)
- Upgrading symfony/mime (v7.1.2 => v7.1.6)
- Upgrading symfony/polyfill-ctype (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-intl-grapheme (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-intl-idn (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-intl-normalizer (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-mbstring (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-php80 (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-php83 (v1.30.0 => v1.31.0)
- Upgrading symfony/polyfill-uuid (v1.30.0 => v1.31.0)
- Upgrading symfony/process (v7.1.1 => v7.1.7)
- Upgrading symfony/psr-http-message-bridge (v7.1.1 => v7.1.6)
- Upgrading symfony/routing (v7.1.1 => v7.1.6)
- Upgrading symfony/string (v7.1.2 => v7.1.6)
- Upgrading symfony/translation (v7.1.1 => v7.1.6)
- Upgrading symfony/uid (v7.1.1 => v7.1.6)
- Upgrading symfony/var-dumper (v7.1.2 => v7.1.7)
- Upgrading symfony/var-exporter (v7.1.2 => v7.1.6)
- Upgrading vlucas/phpdotenv (v5.6.0 => v5.6.1)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 98 updates, 1 removal
- Downloading aws/aws-crt-php (v1.2.7)
- Downloading dasprid/enum (1.0.6)
- Downloading symfony/polyfill-php80 (v1.31.0)
- Downloading symfony/polyfill-mbstring (v1.31.0)
- Downloading symfony/polyfill-ctype (v1.31.0)
- Downloading phpoption/phpoption (1.9.3)
- Downloading graham-campbell/result-type (v1.1.3)
- Downloading vlucas/phpdotenv (v5.6.1)
- Downloading symfony/css-selector (v7.1.6)
- Downloading symfony/var-dumper (v7.1.7)
- Downloading symfony/polyfill-uuid (v1.31.0)
- Downloading symfony/uid (v7.1.6)
- Downloading symfony/routing (v7.1.6)
- Downloading symfony/process (v7.1.7)
- Downloading symfony/polyfill-php83 (v1.31.0)
- Downloading symfony/polyfill-intl-normalizer (v1.31.0)
- Downloading symfony/polyfill-intl-idn (v1.31.0)
- Downloading symfony/mime (v7.1.6)
- Downloading symfony/event-dispatcher (v7.1.6)
- Downloading psr/log (3.0.2)
- Downloading symfony/mailer (v7.1.6)
- Downloading symfony/http-foundation (v7.1.7)
- Downloading symfony/error-handler (v7.1.7)
- Downloading symfony/http-kernel (v7.1.7)
- Downloading symfony/finder (v7.1.6)
- Downloading symfony/polyfill-intl-grapheme (v1.31.0)
- Downloading symfony/string (v7.1.6)
- Downloading symfony/console (v7.1.7)
- Downloading nunomaduro/termwind (v2.2.0)
- Downloading symfony/translation (v7.1.6)
- Downloading symfony/clock (v7.1.6)
- Downloading nesbot/carbon (3.8.1)
- Downloading league/mime-type-detection (1.16.0)
- Downloading league/flysystem (3.29.1)
- Downloading league/flysystem-local (3.29.0)
- Downloading nette/utils (v4.0.5)
- Downloading nette/schema (v1.3.2)
- Downloading dflydev/dot-access-data (v3.0.3)
- Downloading league/commonmark (2.5.3)
- Downloading laravel/serializable-closure (v1.3.5)
- Downloading laravel/prompts (v0.3.1)
- Downloading guzzlehttp/psr7 (2.7.0)
- Downloading guzzlehttp/promises (2.0.4)
- Downloading guzzlehttp/guzzle (7.9.2)
- Downloading dragonmantank/cron-expression (v3.4.0)
- Downloading laravel/framework (v11.30.0)
- Downloading doctrine/dbal (3.9.3)
- Downloading jaybizzle/crawler-detect (v1.2.121)
- Downloading laravel/horizon (v5.29.2)
- Downloading symfony/psr-http-message-bridge (v7.1.6)
- Downloading nyholm/psr7 (1.8.2)
- Downloading lcobucci/jwt (5.4.1)
- Downloading lcobucci/clock (3.3.1)
- Downloading laravel/passport (v12.3.0)
- Downloading laravel/pint (v1.18.1)
- Downloading laravel/telescope (v5.2.4)
- Downloading nikic/php-parser (v5.3.1)
- Downloading laravel/tinker (v2.10.0)
- Downloading mtdowling/jmespath.php (2.8.0)
- Downloading aws/aws-sdk-php (3.325.2)
- Downloading league/flysystem-aws-s3-v3 (3.29.0)
- Downloading league/iso3166 (4.3.2)
- Downloading filp/whoops (2.16.0)
- Downloading nunomaduro/collision (v8.5.0)
- Downloading symfony/var-exporter (v7.1.6)
- Downloading symfony/cache (v7.1.7)
- Downloading sebastian/version (5.0.2)
- Downloading sebastian/type (5.1.0)
- Downloading sebastian/recursion-context (6.0.2)
- Downloading sebastian/object-reflector (4.0.1)
- Downloading sebastian/object-enumerator (6.0.1)
- Downloading sebastian/global-state (7.0.2)
- Downloading sebastian/exporter (6.1.3)
- Downloading sebastian/environment (7.2.0)
- Downloading sebastian/diff (6.0.2)
- Downloading sebastian/comparator (6.2.1)
- Downloading sebastian/code-unit (3.0.1)
- Downloading sebastian/cli-parser (3.0.2)
- Downloading phpunit/php-timer (7.0.1)
- Downloading phpunit/php-text-template (4.0.1)
- Downloading phpunit/php-invoker (5.0.1)
- Downloading phpunit/php-file-iterator (5.1.0)
- Downloading sebastian/lines-of-code (3.0.1)
- Downloading sebastian/complexity (4.0.1)
- Downloading sebastian/code-unit-reverse-lookup (4.0.1)
- Downloading phpunit/php-code-coverage (11.0.7)
- Downloading phpunit/phpunit (11.4.3)
- Downloading pragmarx/google2fa (v8.0.3)
- Downloading paragonie/sodium_compat (v2.1.0)
- Downloading pusher/pusher-php-server (7.2.6)
- Downloading spatie/laravel-package-tools (1.16.5)
- Downloading spatie/db-dumper (3.7.0)
- Downloading spatie/laravel-backup (8.8.2)
- Downloading spatie/image-optimizer (1.8.0)
- Downloading ezyang/htmlpurifier (v4.18.0)
- Downloading stevebauman/purify (v6.2.2)
- Downloading symfony/http-client (v6.4.14)
- Downloading symfony/mailgun-mailer (v6.4.13)
0/98 [>---------------------------] 0%
9/98 [==>-------------------------] 9%
11/98 [===>------------------------] 11%
21/98 [======>---------------------] 21%
31/98 [========>-------------------] 31%
42/98 [============>---------------] 42%
50/98 [==============>-------------] 51%
61/98 [=================>----------] 62%
69/98 [===================>--------] 70%
79/98 [======================>-----] 80%
90/98 [=========================>--] 91%
98/98 [============================] 100%
- Removing symfony/polyfill-php72 (v1.30.0)
- Upgrading aws/aws-crt-php (v1.2.6 => v1.2.7): Extracting archive
- Upgrading dasprid/enum (1.0.5 => 1.0.6): Extracting archive
- Upgrading symfony/polyfill-php80 (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/polyfill-mbstring (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/polyfill-ctype (v1.30.0 => v1.31.0): Extracting archive
- Upgrading phpoption/phpoption (1.9.2 => 1.9.3): Extracting archive
- Upgrading graham-campbell/result-type (v1.1.2 => v1.1.3): Extracting archive
- Upgrading vlucas/phpdotenv (v5.6.0 => v5.6.1): Extracting archive
- Upgrading symfony/css-selector (v7.1.1 => v7.1.6): Extracting archive
- Upgrading symfony/var-dumper (v7.1.2 => v7.1.7): Extracting archive
- Upgrading symfony/polyfill-uuid (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/uid (v7.1.1 => v7.1.6): Extracting archive
- Upgrading symfony/routing (v7.1.1 => v7.1.6): Extracting archive
- Upgrading symfony/process (v7.1.1 => v7.1.7): Extracting archive
- Upgrading symfony/polyfill-php83 (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/polyfill-intl-normalizer (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/polyfill-intl-idn (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/mime (v7.1.2 => v7.1.6): Extracting archive
- Upgrading symfony/event-dispatcher (v7.1.1 => v7.1.6): Extracting archive
- Upgrading psr/log (3.0.0 => 3.0.2): Extracting archive
- Upgrading symfony/mailer (v7.1.2 => v7.1.6): Extracting archive
- Upgrading symfony/http-foundation (v7.1.1 => v7.1.7): Extracting archive
- Upgrading symfony/error-handler (v7.1.2 => v7.1.7): Extracting archive
- Upgrading symfony/http-kernel (v7.1.2 => v7.1.7): Extracting archive
- Upgrading symfony/finder (v7.1.1 => v7.1.6): Extracting archive
- Upgrading symfony/polyfill-intl-grapheme (v1.30.0 => v1.31.0): Extracting archive
- Upgrading symfony/string (v7.1.2 => v7.1.6): Extracting archive
- Upgrading symfony/console (v7.1.2 => v7.1.7): Extracting archive
- Upgrading nunomaduro/termwind (v2.0.1 => v2.2.0): Extracting archive
- Upgrading symfony/translation (v7.1.1 => v7.1.6): Extracting archive
- Upgrading symfony/clock (v7.1.1 => v7.1.6): Extracting archive
- Upgrading nesbot/carbon (3.6.0 => 3.8.1): Extracting archive
- Upgrading league/mime-type-detection (1.15.0 => 1.16.0): Extracting archive
- Upgrading league/flysystem (3.28.0 => 3.29.1): Extracting archive
- Upgrading league/flysystem-local (3.28.0 => 3.29.0): Extracting archive
- Upgrading nette/utils (v4.0.4 => v4.0.5): Extracting archive
- Upgrading nette/schema (v1.3.0 => v1.3.2): Extracting archive
- Upgrading dflydev/dot-access-data (v3.0.2 => v3.0.3): Extracting archive
- Upgrading league/commonmark (2.4.2 => 2.5.3): Extracting archive
- Upgrading laravel/serializable-closure (v1.3.3 => v1.3.5): Extracting archive
- Upgrading laravel/prompts (v0.1.24 => v0.3.1): Extracting archive
- Upgrading guzzlehttp/psr7 (2.6.2 => 2.7.0): Extracting archive
- Upgrading guzzlehttp/promises (2.0.2 => 2.0.4): Extracting archive
- Upgrading guzzlehttp/guzzle (7.8.1 => 7.9.2): Extracting archive
- Upgrading dragonmantank/cron-expression (v3.3.3 => v3.4.0): Extracting archive
- Upgrading laravel/framework (v11.13.0 => v11.30.0): Extracting archive
- Upgrading doctrine/dbal (3.8.6 => 3.9.3): Extracting archive
- Upgrading jaybizzle/crawler-detect (v1.2.119 => v1.2.121): Extracting archive
- Upgrading laravel/horizon (v5.24.5 => v5.29.2): Extracting archive
- Upgrading symfony/psr-http-message-bridge (v7.1.1 => v7.1.6): Extracting archive
- Upgrading nyholm/psr7 (1.8.1 => 1.8.2): Extracting archive
- Upgrading lcobucci/jwt (5.3.0 => 5.4.1): Extracting archive
- Upgrading lcobucci/clock (3.2.0 => 3.3.1): Extracting archive
- Upgrading laravel/passport (v12.2.0 => v12.3.0): Extracting archive
- Upgrading laravel/pint (v1.16.1 => v1.18.1): Extracting archive
- Upgrading laravel/telescope (v5.1.1 => v5.2.4): Extracting archive
- Upgrading nikic/php-parser (v5.0.2 => v5.3.1): Extracting archive
- Upgrading laravel/tinker (v2.9.0 => v2.10.0): Extracting archive
- Upgrading mtdowling/jmespath.php (2.7.0 => 2.8.0): Extracting archive
- Upgrading aws/aws-sdk-php (3.315.2 => 3.325.2): Extracting archive
- Upgrading league/flysystem-aws-s3-v3 (3.28.0 => 3.29.0): Extracting archive
- Upgrading league/iso3166 (4.3.1 => 4.3.2): Extracting archive
- Upgrading filp/whoops (2.15.4 => 2.16.0): Extracting archive
- Upgrading nunomaduro/collision (v8.1.1 => v8.5.0): Extracting archive
- Upgrading symfony/var-exporter (v7.1.2 => v7.1.6): Extracting archive
- Upgrading symfony/cache (v7.1.2 => v7.1.7): Extracting archive
- Upgrading sebastian/version (5.0.0 => 5.0.2): Extracting archive
- Upgrading sebastian/type (5.0.0 => 5.1.0): Extracting archive
- Upgrading sebastian/recursion-context (6.0.1 => 6.0.2): Extracting archive
- Upgrading sebastian/object-reflector (4.0.0 => 4.0.1): Extracting archive
- Upgrading sebastian/object-enumerator (6.0.0 => 6.0.1): Extracting archive
- Upgrading sebastian/global-state (7.0.1 => 7.0.2): Extracting archive
- Upgrading sebastian/exporter (6.1.2 => 6.1.3): Extracting archive
- Upgrading sebastian/environment (7.1.0 => 7.2.0): Extracting archive
- Upgrading sebastian/diff (6.0.1 => 6.0.2): Extracting archive
- Upgrading sebastian/comparator (6.0.0 => 6.2.1): Extracting archive
- Upgrading sebastian/code-unit (3.0.0 => 3.0.1): Extracting archive
- Upgrading sebastian/cli-parser (3.0.1 => 3.0.2): Extracting archive
- Upgrading phpunit/php-timer (7.0.0 => 7.0.1): Extracting archive
- Upgrading phpunit/php-text-template (4.0.0 => 4.0.1): Extracting archive
- Upgrading phpunit/php-invoker (5.0.0 => 5.0.1): Extracting archive
- Upgrading phpunit/php-file-iterator (5.0.0 => 5.1.0): Extracting archive
- Upgrading sebastian/lines-of-code (3.0.0 => 3.0.1): Extracting archive
- Upgrading sebastian/complexity (4.0.0 => 4.0.1): Extracting archive
- Upgrading sebastian/code-unit-reverse-lookup (4.0.0 => 4.0.1): Extracting archive
- Upgrading phpunit/php-code-coverage (11.0.4 => 11.0.7): Extracting archive
- Upgrading phpunit/phpunit (11.2.5 => 11.4.3): Extracting archive
- Upgrading pragmarx/google2fa (v8.0.1 => v8.0.3): Extracting archive
- Upgrading paragonie/sodium_compat (v1.21.1 => v2.1.0): Extracting archive
- Upgrading pusher/pusher-php-server (7.2.4 => 7.2.6): Extracting archive
- Upgrading spatie/laravel-package-tools (1.16.4 => 1.16.5): Extracting archive
- Upgrading spatie/db-dumper (3.6.0 => 3.7.0): Extracting archive
- Upgrading spatie/laravel-backup (8.8.1 => 8.8.2): Extracting archive
- Upgrading spatie/image-optimizer (1.7.5 => 1.8.0): Extracting archive
- Upgrading ezyang/htmlpurifier (v4.17.0 => v4.18.0): Extracting archive
- Upgrading stevebauman/purify (v6.2.0 => v6.2.2): Extracting archive
- Upgrading symfony/http-client (v6.4.9 => v6.4.14): Extracting archive
- Upgrading symfony/mailgun-mailer (v6.4.9 => v6.4.13): Extracting archive
0/98 [>---------------------------] 0%
10/98 [==>-------------------------] 10%
20/98 [=====>----------------------] 20%
30/98 [========>-------------------] 30%
40/98 [===========>----------------] 40%
50/98 [==============>-------------] 51%
59/98 [================>-----------] 60%
69/98 [===================>--------] 70%
79/98 [======================>-----] 80%
89/98 [=========================>--] 90%
98/98 [============================] 100%
Package fgrosse/phpasn1 is abandoned, you should avoid using it. No replacement was suggested.
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
[37;44m INFO [39;49m Discovering packages.
buzz/laravel-h-captcha [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
intervention/image [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
jenssegers/agent [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel-notification-channels/webpush [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/horizon [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/telescope [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/tinker [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
laravel/ui [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
nesbot/carbon [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
nunomaduro/collision [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
nunomaduro/termwind [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
pbmedia/laravel-ffmpeg [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
pixelfed/laravel-snowflake [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
spatie/laravel-backup [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
spatie/laravel-image-optimizer [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
spatie/laravel-signal-aware-command [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
stevebauman/purify [90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m[90m.[39m [32;1mDONE[39;22m
112 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
> @php artisan vendor:publish --tag=laravel-assets --ansi --force
[37;44m INFO [39;49m Publishing [1m[laravel-assets][22m assets.
Copying directory [1m[vendor/laravel/telescope/public][22m to [1m[public/vendor/telescope][22m [32;1mDONE[39;22m
No security vulnerability advisories found.
Step 68: Clean cook artifacts
Step 69: Install pot local
Step 70: Set file ownership on cook scripts
Step 71: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 72: Create rc.d script to start cook
creating rc.d script to start cook
Step 73: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 74: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====> Stop the pot pixelfed-amd64-14_1
=====> Remove p4672bb478f6db epair network interfaces
=====> unmount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/tmp
=====> unmount /mnt/srv/pot/jails/pixelfed-amd64-14_1/m/dev
===> exporting pixelfed-amd64-14_1 @ 1730917876 to /tmp/pixelfed-amd64-14_1_0.7.3.xz