Created attachment 257149 [details] update patch There is new version of net/self-service-password. I've made a patch. It was tested with poudriere - a testport logfile is attached
Created attachment 257150 [details] poudriere testport log
Hello, Is there a reason for '+=' in: SUB_LIST+= and PLIST_SUB+= since this vars are being defined here, i.e., outside an if condition that might change an existing var? My tests shows that pkg-message is ok with: ```diff -SUB_LIST+= PKGNAME=${PKGNAME} +SUB_LIST= PKGNAME=${PKGNAME} -PLIST_SUB+= SSP_GRP=${WWWGRP} \ +PLIST_SUB= SSP_GRP=${WWWGRP} \ SSP_OWN=${WWWOWN} ``` Cheers
I'm still learning ports framework :-))) I think that was my mistake. Propably I've made a Makefile looking at another one. So it is good idea to change these declarations of variables.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=fef30a5455c1b73a6de60cd6330fa39b2cc87853 commit fef30a5455c1b73a6de60cd6330fa39b2cc87853 Author: Krzysztof <ports@bsdserwis.com> AuthorDate: 2025-02-09 15:29:22 +0000 Commit: Nuno Teixeira <eduardo@FreeBSD.org> CommitDate: 2025-02-09 15:30:44 +0000 net/self-service-password: Update to 1.7.2 ChangeLog: https://github.com/ltb-project/self-service-password/releases/tag/v1.7.2 PR: 284494 net/self-service-password/Makefile | 6 +- net/self-service-password/distinfo | 6 +- net/self-service-password/pkg-plist | 1530 +++++++++++++++++++++++++++-------- 3 files changed, 1215 insertions(+), 327 deletions(-)
(In reply to Krzysztof from comment #3) Committed with minor fixes, thanks!