notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: graphics/gource/files/patch-src_dirnode.cpp

Number of commits found: 1

Saturday, 16 Apr 2016
21:30 dim search for other commits by this committer
During the exp-run in bug 208158, it was found that graphics/gource
gives errors with libc++ 3.8.0:

src/dirnode.cpp:585:27: error: no matching function for call to 'max'
    this->parent_radius = std::max(1.0, sqrt(total_file_area) *
gGourceDirPadding);
                          ^~~~~~~~

This is because max() is being called with two arguments of different
type (double and float).  Fix this by using 0.0f instead (and casting
the result of sqrt to float like two lines above, though this should
strictly not be necessary).

Approved by:	demon (maintainer)
PR:		208844
MFH:		2016Q2
Original commitRevision:413481 

Number of commits found: 1