On 2020-05-31 19:13, Christoph Moench-Tegeder wrote:
## Lev Serebryakov (l...@freebsd.org):

svn: E165001: Commit failed (details follow):
svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output:
Adding new py3- ports is forbidden.
The Python ports have flavors and do not need the py3- ports.
https://svnweb.freebsd.org/ports/svnadmin/hooks/scripts/detect-filename.sh?revision=455211&view=markup#l20

There it is. That grep seems overly broad, it needs a -.
Ping mat and/or portmgr.

I just saw the same thing, probably this

if $SVNLOOK changed -t "$TXN" "$REPO" | grep -q -E '^A.*/py3'; then

should be

if $SVNLOOK changed -t "$TXN" "$REPO" | grep -q -E '^A .*/py3[0-9]?-'; then

And for the case in question, if py3c is a C library, not a python package, py- prefix does not seem to be appropriate.

Theron
_______________________________________________
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to