Summary: | ports-mgmt/portscout: not finding new distfiles | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Don Lewis <truckman> |
Component: | Individual Port(s) | Assignee: | Ryan Steinmetz <zi> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | --- | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Don Lewis
![]() ![]() I changed the definition of PORTSCOUT to this; PORTSCOUT= ${MASTER_SITES:N*FreeBSD*:S/^https/site:http/} which evaluates to: %make -V PORTSCOUT site:http://dl.farsightsecurity.com/dist/sie-nmsg/ Still no joy. My best guess is that portscount can't parse the nginx-generated index page. Actually, it does appear to be an https issue after all. When this site is accessed with an http URL, it returns a 301 redirect to the corresponding https URL. I installed portscount locally and added some debug printfs. When I printed $response->status_line after the $ua->get($site) call, I observed the following: 501 Protocol scheme 'https' is not supported (LWP::Protocol::https not installed ) The solution seems to be as simple as installing the p5-LWP-Protocol-https package. # portscout showupdates portscout v0.8.1, by Shaun Amott SQLite is currently only supported in non-forking mode! --> Forcing num_children => 0... truckman@freebsd.org's ports: net/sie-nmsg 1.1.0 -> 1.2.0 I also needed to install p5-DBD-SQLite to get portscout to run at all. |