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.

Sanity Test Failure
Monday, 9 Jul 2018
08:40 mat search for other commits by this committer
  • audio/p5-Filesys-Virtual-DAAP 0.04_2 Present a DAAP share as a VFS
    • audio/p5-Net-DAAP-Client 0.42_3 Client for Apple iTunes DAAP service
      • benchmarks/p5-Benchmark-Stopwatch 0.05_1 Simple timing of stages of your code
        • cad/pcb 20140316_2 X11 interactive printed circuit board layout system
          • chinese/p5-Text-Greeking-zh_TW 1.0_1 Generate meaningless Chinese text that creates the illusion of the document
            • chinese/scim-fcitx 3.1.1_8 SCIM IMEngine module for fcitx
              • comms/p5-SMS-Send-TW-PChome 0.03_1 SMS::Send driver for sms.pchome.com.tw
                • comms/p5-SMS-Send-TW-Qma 0.01_1 SMS::Send driver for http://www.qma.com/ Deleted Broken Deprecated Expired Ignore
                  • comms/p5-SMS-Send-TW-Socket2Air 0.01_1 SMS::Send driver for Socket2Air
                    • comms/p5-SMS-Send-TW-chtsns 0.03_1 SMS::Send driver for SNS service of CHT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          (Only the first 10 of 429 items in this commit are shown above. View all ports for this commit)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Remove all := from BUILD_DEPENDS, here are never needed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          While there, cleanup, and sort depends.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When build and run dependencies are the same, there are three ways to
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          avoid duplicating the list while not adding the framework added
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BUILD_DEPENDS to the RUN_DEPENDS.  In order of preference, they are:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1) use RUN_DEPENDS to set BUILD_DEPENDS:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BUILD_DEPENDS=	${RUN_DEPENDS}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RUN_DEPENDS=	foo:bar/baz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2) create another variable and use it:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MY_DEPENDS= foo:bar/baz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BUILD_DEPENDS=	${MY_DEPENDS}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RUN_DEPENDS=	${MY_DEPENDS}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BUILD_DEPENDS=	foo:bar/baz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RUN_DEPENDS:=	${BUILD_DEPENDS}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sponsored by:	Absolight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Original commitRevision:474242 

Sanity Test Results

www/p5-WebService-CIA:

This command (FreshPorts code 1):

/usr/local/bin/sudo /usr/sbin/chroot -u freshports
/var/db/freshports/ports-jail /make-port.sh /var/db/repos/PORTS-head
www/p5-WebService-CIA
2>/tmp/FreshPorts.www.p5-WebService-CIA.make-error.2018.7.9.8.45.11.12410

produced this error:

Error message is: Variable BUILD_DEPENDS is recursive.
Make results are : 
make: stopped in /var/db/repos/PORTS-head/www/p5-WebService-CIA