Poudriere does not list updated ports using svn+https method

Hello,

I have poudriere installed and working well and absolutely love it.

Last week I decided to change the method for updating the poudriere ports tree to "svn+https". Now when I update the ports tree, I do not see a listing of the ports that have been modified.

Code:
rasaki@noora:~ % doas poudriere ports -u
[00:00:00] Updating portstree "default" with svn+https... done

Am I missing an option? Is there some log where I should be looking to determine what ports have been updated?
 
Since you use SVN, you can check the directory itself; svnlite info /usr/local/poudriere/ports/default (assuming you're using the default directories).
 
Thanks for the responses.

Using the -v option worked well dlegrand.

Code:
rasaki@noora:~ % doas poudriere ports -v -u
[00:00:00] Updating portstree "default" with svn+https...Updating '/poudriere/ports/default':
A    /poudriere/ports/default/devel/clixon/files
U    /poudriere/ports/default/net/rtg/Makefile
U    /poudriere/ports/default/net/slurm/Makefile
...


SirDirce, your svnlite option also gave great top level info.

Code:
rasaki@noora:~ % /usr/bin/svnlite info /poudriere/ports/default
Path: /poudriere/ports/default
Working Copy Root Path: /poudriere/ports/default
URL: https://svn.freebsd.org/ports/head
Relative URL: ^/head
Repository Root: https://svn.freebsd.org/ports
Repository UUID: 35697150-7ecd-e111-bb59-0022644237b5
Revision: 484408
Node Kind: directory
Schedule: normal
Last Changed Author: mat
Last Changed Rev: 484408
Last Changed Date: 2018-11-07 12:24:10 -0800 (Wed, 07 Nov 2018)
 
Back
Top