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: net/cjdns/files/patch-node__build_builder.js

Number of commits found: 1

Tuesday, 26 Oct 2021
18:46 Piotr Kubaj (pkubaj) search for other commits by this committer
net/cjdns: fix build on powerpc64*

On powerpc64 and powerpc64le systems, os.cpus(), gets defined to []:
> cpus = os.cpus()
[]

It has type object:
> typeof cpus
'object'

This causes jobs to be 0:
> Math.floor((typeof cpus === 'undefined' ? 1 : cpus.length) * 1.25);
0

Change it so that instead of comparing type to undefined, we compare to 0:
> Math.floor((os.cpus() == 0 ? 1 : cpus.length) * 1.25);
1
commit hash: 9815645834977fe2ada5052d3c81881b7624bed7 commit hash: 9815645834977fe2ada5052d3c81881b7624bed7 commit hash: 9815645834977fe2ada5052d3c81881b7624bed7 commit hash: 9815645834977fe2ada5052d3c81881b7624bed7 9815645

Number of commits found: 1