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/sie-nmsg/Makefile

Number of commits found: 17

Sunday, 10 Sep 2023
05:35 Don Lewis (truckman) search for other commits by this committer
net/nmsg: 1.1.0

1.1.0:
 * Multiple performance improvements to JSON formatting.

 * Multiple performance and concurrency improvements in nmsg_io loop.

 * Add new dnsobs message type for raw passive DNS observations.

 * Format DNS messages as JSON in base:dnsqr, base:dnstap, and
   base:dnsobs.

 * Format base:encode payload in human readable form in JSON output.

 * Replace yajl with json-c for JSON parsing.

 * nmsgtool: exit with nonzero status when interrupted by signal.

 * Correct container size calculation when sequencing.

 * Address doxygen deprecations.

Build fails with JSON_C option turned off, mark BROKEN.  Reported
upstream.

Bump PORTREVISION of dependent ports

MFH:		2023Q3
Sponsored by:	DomainTools LLC
commit hash: c08c8db7796ec3ca70573a363ff34a909cee5105 commit hash: c08c8db7796ec3ca70573a363ff34a909cee5105 commit hash: c08c8db7796ec3ca70573a363ff34a909cee5105 commit hash: c08c8db7796ec3ca70573a363ff34a909cee5105 c08c8db
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Tuesday, 12 Apr 2022
05:31 Don Lewis (truckman) search for other commits by this committer
dns/wdns: Upgrade to version 0.11.0

  * Improve support for CAA records. (CAA was previously rendered as a
    "generic" rdata type.)

  * Bug fix for NSEC/NSEC3/CSYNC: do not output empty rrtype bitmaps
    per RFC6840 section 6.4.

  * Fix parsing of A6 records that ommit and address portion. Correct
    parsing of A6 records with prefix length 0. Correct handling of
    A6 address bytes. The address bytes of an A6 record are an address
    suffix relative to the prefix represented by the domain name, and
    so must be copied to and from the lower order bytes of the internal
    address representation. These A6 code updates were for the purposes
    of clearing "round trip" test errors in the existing code base.
    (A6 is deprecated and was moved to historic status.)

  * Fix bug in IPv6 prefix length processing in
    _wdns_str_to_rdata_ubuf().

  * Add support for SVCB and HTTPS resource record types. This is based
    on an Internet-Draft but is widely used in the real world.
    https://datatracker.ietf.org/doc/html/draft-ietf-dnsop-svcb-https-08

Bump PORTREVISION of dependent ports due to shared library version
change.

Sponsored by:	DomainTools
commit hash: 9c3e1c57db67d38cf0d4f2cb840a29f855a025e9 commit hash: 9c3e1c57db67d38cf0d4f2cb840a29f855a025e9 commit hash: 9c3e1c57db67d38cf0d4f2cb840a29f855a025e9 commit hash: 9c3e1c57db67d38cf0d4f2cb840a29f855a025e9 9c3e1c5
Friday, 17 Sep 2021
19:49 Don Lewis (truckman) search for other commits by this committer
net/nmsg: upgrade to version 1.0.0

  The network encapsulation library, nmsg, version 1.0.0 is released.
  This release deprecates Crossroads I/O (libxs) support in favor of
  ZeroMQ (libzmq). Note command-line updates enabling ZeroMQ socket
  connections for nmsgtool, as described in its man page. In addition
  the treatment of unknown rrtypes was amended for nmsgtool JSON
  output. In detail:

    Replace libXS with ZeroMQ and associated calls.

    Developer API functions nmsg_input_open_xs(),
    nmsg_input_open_xs_endpoint(), nmsg_io_add_input_xs_channel(),
    nmsg_output_open_xs(), and nmsg_output_open_xs_endpoint() are
    deprecated and replaced with respectively: nmsg_input_open_zmq(),
    nmsg_input_open_zmq_endpoint(), nmsg_io_add_input_zmq_channel(),
    nmsg_output_open_zmq(), and nmsg_output_open_zmq_endpoint().

    Update nmsgtool command-line options: --readzchan replaces --readzsock,
    --writezsock replaces --writexsock, --readzsock replaces --readxsock.

    Change format of unknown rrtypes in nmsgtool JSON output to "TYPE"
    followed by number.

Expose --without-yajl and --without-libzmq configure flags as port options.

This upgrade changes the libnmsg.so version number, bump PORTREVISION
of the dependent ports.

Sponsored by:	Farsight Security, Inc.
commit hash: 05a46907db0a6f062a31d58f1ef07e9eabca953e commit hash: 05a46907db0a6f062a31d58f1ef07e9eabca953e commit hash: 05a46907db0a6f062a31d58f1ef07e9eabca953e commit hash: 05a46907db0a6f062a31d58f1ef07e9eabca953e 05a4690
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Thursday, 30 Jan 2020
04:56 truckman search for other commits by this committer
Upgrade net/sie-nmsg to version 1.2.1:

  * Add several new unit tests.

Sponsored by:	Farsight Security, Inc.
Original commitRevision:524627 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Thursday, 5 Nov 2015
05:17 truckman search for other commits by this committer
Upgrade to vision 1.2.0

  * json io: add stubs for formatters and printers

  * dnsdedupe: implement formatters and parsers

  * json io: dnsdedupe don't downcase names when parsing

  * Merge pull request #11 from farsightsec/jsonio
    Implement format and parse functions for all custom print fields.

Nuke PORTSCOUNT= since it doesn't help.  See PR 204135 for the
details about why portscount isn't currently working for this port's
MASTER_SITE.

Sponsored by:	Farsight Security, Inc.
Original commitRevision:400826 
Tuesday, 3 Nov 2015
05:22 truckman search for other commits by this committer
Test to see if portscout is happier with http instead of https.
Original commitRevision:400685 
Thursday, 29 Oct 2015
00:13 truckman search for other commits by this committer
Restrict portscout to "master" MASTER_SITES because LOCAL is not indexed.
Original commitRevision:400425 
Saturday, 22 Aug 2015
00:07 truckman search for other commits by this committer
Upgrade to version 1.1.0

Sponsored by:	Farsight Security, Inc.
Original commitRevision:395001 
Monday, 6 Apr 2015
12:42 truckman search for other commits by this committer
Add LICENSE_FILE (and bump PORTREVISION).

Convert to use MASTER_SIGHTS_FARSIGHT.

Differential Revision:	https://reviews.freebsd.org/D2236
Approved by:	mat (mentor)
Sponsored by:	Farsight Security, Inc.
Original commitRevision:383421 
Saturday, 10 Jan 2015
21:42 truckman search for other commits by this committer
MASTER_SITE dl.farsightsecurity.com only allows https downloads.
Mirror the distfile on LOCAL as a http backup for clients that
can't use https. (Suggested by mat@)

Differential Revision:	https://reviews.freebsd.org/D1485
Approved by:	mat (mentor)
Sponsored by:	Farsight Security, Inc.
Original commitRevision:376727 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
Original commitRevision:367888 
Monday, 18 Aug 2014
12:57 wg search for other commits by this committer
net/sie-nmsg: update to 0.17.0

- Use install-strip make target

PR:		192758
Submitted by:	maintainer
Original commitRevision:365307 
Thursday, 7 Aug 2014
11:17 marino search for other commits by this committer
Add new port net/sie-nmsg

PR:		190731
Submitted by:	Don Lewis (truckman@)

     ================================================================

This package extends the libnmsg runtime <net/nmsg> to support the
following message types:

SIE/dnsdedupe
SIE/newdomain
SIE/qr
SIE/reputation
SIE/delay
Original commitRevision:364264 

Number of commits found: 17