Port changes:
* Change to DISTVERSION
* Remove unused MAILDIR_DESC
* Add the new NTLM option to support Windows NT Lan Manager authentication
* Replace WWW with the real homepage
PR: 227002
Submitted by: Marco Beishuizen <mbeis@xs4all.nl> (maintainer)
remove an undocumented hard dependency on curl: having curl installed
now enables additional functionality but is not required anymore for
the basic functionality.
- Add BASH option for completion installation
- ports_env: set UID=0 to avoid id -u lookups.
- Remove USE_PTSORT=no support and only use ptsort.
- Remove POOL_BUCKETS option
- Only set POOL_BUCKET_DIRS from load_priorities()
- SIGINFO: Reverse phase and total times to: phase / total
The original change order was confusing but so is the change. It may
ultimately be reverted.
- USE_CACHED=yes: Block using this as it does not work.
- Fix '3: Bad file descriptor' on crashed build
- Format crashed build with JOB_ID if possible
- MUTABLE_BASE=schg: Exclude immutable paths from mtree comparisons
- markfs: No need to rewrite the mtree file every time, just share it from
MASTERMNT
- Always null-mount ro /usr/lib32
- Remove references to INDEX - support removed in 0bef52955606412ac64aceddde6
- MUTABLE_BASE=schg: Need to track flags for mtree
- MUTABLE_BASE=schg mtree: Don't ignore changes to schg files with testport
or bulk -t
- Remove some shash buckets once no longer needed.
- Fix some error spam in bulk.
- Exclude /root from build_fs_violation.
- MUTABLE_BASE=schg: Allow writing new files to /boot.
- Move ALLOW_MAKE_JOBS_PACKAGES handle to remove misleading DISABLE_MAKE_JOBS
in buildlog make.conf
- bulk: Spawn builds in their own process group.
Block SIGTTOU/SIGTTIN to avoid stopping on tty access.
- kill_job: Don't show jobid warning.
- Close stdin at exit in case an interrupted redirection is referencing the
jail which results in umount warnings.
- processonelog: Detect pkg's conflict line
- processonelog: Try to detect immutable base failures
- Create /home and /usr/home paths in port build startup
- MUTABLE_BASE=schg: Allow writing to /usr/home
- poudriere: Default -e to /usr/local/etc for non-install executions
- options: Don't pass FLAVOR as a make arg - which may break downstream ports
- testport -c: Don't pass FLAVOR as a make argument
- testport: Show log summary at the end
- Support PKG_NOCOMPRESS in make.conf
- CCACHE_STATIC_PREFIX: Add CCACHE_JAIL_PREFIX for overriding /ccache in jail
- MUTABLE_BASE=schg + CCACHE_STATIC_PREFIX: Allow ccache-update-links to work
properly
- Add bash completion script
- Don't consider /var/crash/*.core as build_fs_violations
The error is:
cc -shared -L/usr/local/lib/perl5/5.26/mach/CORE -lperl
-L/usr/local/lib -fstack-protector-strong Geometry/Geometry.o
Global/Global.o Local/Local.o Misc/Misc.o Morphology/Morphology.o
Point/Point.o IPA.o Geometry/Geometry2.o Global/fft.o Global/Global2.o
Global/gsclose.o Global/hough.o Local/Local2.o Misc/Misc2.o
Morphology/Morphology2.o Point/Point2.o -o blib/arch/auto/IPA/IPA.so
cc: error: no such file or directory: 'Geometry/Geometry.o'
cc: error: no such file or directory: 'Global/Global.o'
cc: error: no such file or directory: 'Local/Local.o'
cc: error: no such file or directory: 'Misc/Misc.o'
[...]
For some reason, the object files are not created where they should and,
obviously, cc cannot find them. I compared the Makefile from Perl 5.24
which works and Perl 5.26 which does not, I cannot see any obviously
wrong bit.
PR: 226817
Sponsored by: Absolight
Unescaped left brace in regex is illegal in regex when not used as a
quantifier.
- /foo{3}/ will match foofoofoo.
- /\\new{bar}/ is illegal and should be written as /\\new\{bar}/.
PR: 226817
Sponsored by: Absolight
"use encoding" was removed (deprecated since 5.18), and set STDOUT to
utf8 so that it does not warn about wide characters.
PR: 226817
Sponsored by: Absolight