Page MenuHomeFreeBSD

www/groupoffice: Add Portscout
ClosedPublic

Authored by joneum on Feb 12 2018, 9:10 AM.
Tags
None
Referenced Files
Unknown Object (File)
Dec 20 2023, 6:42 AM
Unknown Object (File)
Nov 6 2023, 7:07 PM
Unknown Object (File)
Oct 24 2023, 2:38 AM
Unknown Object (File)
Aug 28 2023, 4:53 PM
Unknown Object (File)
Aug 22 2023, 5:01 AM
Unknown Object (File)
Jun 2 2023, 9:06 PM
Unknown Object (File)
Dec 9 2022, 10:48 AM
Unknown Object (File)
Dec 9 2022, 10:22 AM
Subscribers
None

Details

Summary

Add Portscout

Test Plan

I am not sure about portscout.
In portscout [1] i see: 6.2.82-php-7.1.

I search on other Ports with PORTSCOUT and found security/john.
Is this the right entry, to ignore the "-php-7.1" part?

[1] https://portscout.freebsd.org/joneum@freebsd.org.html

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 14975
Build 15086: arc lint + arc unit

Event Timeline

What exactly do you want to achieve?

groupoffice-com-6.2.82-php-7.1.tar.gz 			
groupoffice-com-6.2.82.tar.gz

Ah, I see

But no. With this regex you tell portscout to only inform you about the php71 dust files, which is the opposite of what you want. So you need to modify the regex to 'not contain php71'.

I am not sure, but i think, "limitw:6,even" is the right syntax for PORTSCOUT= now, if I understand the link correctly: https://github.com/freebsd/portscout/blob/master/docs/portscout-portconfig.txt#L28

I am not sure, but i think, "limitw:6,even" is the right syntax for PORTSCOUT= now, if I understand the link correctly: https://github.com/freebsd/portscout/blob/master/docs/portscout-portconfig.txt#L28

No, that will tell portscout that the number after the fifth '.' should be even.

limitw:0,even matches 0.x.y.... 2.x.y... and so on
limitw1,even matches x.0.y..., x.2.y.... and so on

I've look with "find ~/dev/ports/ -name Makefile | xargs grep PORTSCOUT | more" into the Porttree, but found nothing, that could help me. Is there any possibility for the problem?

You could maybe use something like

6\.2.\d+([^ph]{3}).*

note that [^ph]{3} is a shorthand for I don't know how to negative match words in perl regex.

You could also maybe even get away with

6\.2.\d+$$

Moin Tobias and mat,

what is better?

PORTSCOUT= 6\.2.\d+([^ph]{3}).*

or

PORTSCOUT= 6\.2.\d+$$

If the second one works I would prefer that :)

This revision is now accepted and ready to land.May 12 2018, 9:11 AM