PHP 8.0 have a lot of new things and a lot of deprecated features was removed ... so it's natural... Please for future read question first. I know what difference is between 7.x and 8.0 and 8.1. I just wondering when 8.1 will be available in ports, not what kind of problems U have with 8.0 and legacy software.There are still alot of errors when i use php80 for applications which rely on previous versions.
Thans for reply, could U please, give an URL where i can track PHP port?That very much depends on the port maintainer. php ports appear to be managed by tz@; glancing at the port statistics, he's reasonably active.
...
If you feel, that it takes too long, you're obviously welcome to lend a hand and create a port patch yourself and submit it - though, admittedly that may not be an option for you. After all, I don't know whether your skills/time/etc. permit it. If you're interested, I'd be happy to share further pointers.
#!/bin/sh
cd /usr/ports
git pull
if [ -e /usr/ports/lang/php81 ]; then
mail myself@company.com << EOF
PHP 8.1 is available now!
EOF
fi
Maybe check the mailing lists. https://www.freebsd.org/community/mailinglists/give an URL where i can track PHP port?
Freshports is a good start - unfortunately, it only lets you track ports which already exist.
You could subscribe to Freshports RSS feed. The RSS feed can be limited to show only new ports (PHP 8.1 port would be a new port, lang/php81 for example). For details see "flavor=new" in,,, an URL where i can track PHP port?
Code:#!/bin/sh cd /usr/ports git pull if [ -e /usr/ports/lang/php81 ]; then mail myself@company.com << EOF PHP 8.1 is available now! EOF fi
#!/usr/bin/env bash
portsnap --interactive fetch update && [[ -e /usr/ports/lang/php81 ]] && ( echo "PHP 8.1 is available" | mail user@domain )
No, because I wrote an email to the maintainer. But bug 260774 and its attachment / patch 230515 may solve my problems (won't start the compiler today again - was a long day).Can you post the link for the bug report?