Who do I reach out to about broken/neglected ports?

I just compiled soundtouch and it succeeded.
Then i cleaned my distfiles&compilation was succes.
Try 2021Q4 , if that fails try main branch. It should work. Can you post your make log ?
 
Contact the freebsd-ports@ mailing list.

The time limit for a maintainer to respond to a PR is two weeks. After that period, if it is a minor change, any ports committer can commit the change. If it is a major change (e.g., would require a regression run), please contact portmgr first.
A maintainer who does not respond to any port issues for 3 months may be reset by any ports committer.
 
I found 3 problems in the port which can all be solved following procedure below:

Problem 1.
The size is not ok.
To solve add the following at the end of /etc/make.conf
Code:
.if ${.CURDIR:M*/audio/soundtouch}
DISABLE_SIZE=yes
.endif

Problem 2.
The checksum is not ok.
To solve, go to /usr/ports/audio/soundtouch.

Use the following as distfile:
Code:
TIMESTAMP = 1617884272
SHA256 (soundtouch-soundtouch-762f56024b7ade81f6565903161dffec0ad4741e_GL0.tar.gz) = e4c54cb6088e1d483eeb16d1fd6fc2236d2c7cd86e7141411d150099fb8a1da6
SIZE   (soundtouch-soundtouch-762f56024b7ade81f6565903161dffec0ad4741e_GL0.tar.gz) = 0

Problem 3.
The path is not ok.
Go to /usr/ports/audio/soundtouch
make a directory work
mkdir work
goto work
cd work
create a softlink :
Code:
ln -s ./soundtouch-762f56024b7ade81f6565903161dffec0ad4741e-762f56024b7ade81f6565903161dffec0ad4741e ./soundtouch-762f56024b7ade81f6565903161dffec0ad4741e

Now make should finish succesfully.
 
Addendum , my procedure works manually, when you go to the directory and do a make ,make install.
It fails for poudriere , as you cannot intervene.
 
Cross-reference:




Also:

Poudriere doesn't apply patches. It uses the ports infrastructure to apply patches through the patch target. Put your patches into the files/ directory of whatever port you want to patch.

Overlays might help in some cases.

<https://github.com/freebsd/poudriere/wiki/poudriere-bulk.8-devel#synopsis>

<https://github.com/freebsd/poudriere/wiki/poudriere-testport.8-devel>
 
Back
Top