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: devel/py-unittest2/distinfo

Number of commits found: 3

Thursday, 22 Dec 2016
23:05 feld search for other commits by this committer
devel/py-unittest2: Revive deleted port

This port is still of value. The built-in unittest in Python 2.7 is
missing features provided by unittest2 which backports from Python 3.x.

Example code which produces a failure with 2.7's built-in unittest:

import unittest2
import unittest

class ExampleUT(unittest.TestCase):

    def test_unittest(self):
        for i in [1, 2, 3]:
            with self.subTest(i=i):
                self.assertEqual(i, i)

class ExampleUT2(unittest2.TestCase):

    def test_unittest2(self):
        for i in [1, 2, 3]:
            with self.subTest(i=i):
                self.assertEqual(i, i)

if __name__ == '__main__':
    unittest2.main()
Original commitRevision:429200 
Saturday, 17 Jan 2015
23:16 rm search for other commits by this committer
devel/py-unittest2: update to 0.8.0
Original commitRevision:377274 
Wednesday, 9 Nov 2011
06:55 wen search for other commits by this committer
unittest2 is a backport of the new features added to the
unittest testing framework in Python 2.7. It is tested to
on Python 2.4 - 2.7.

WWW: http://pypi.python.org/pypi/unittest2

Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via GitHub)
Original commit

Number of commits found: 3