Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
14 Nov 2019 22:48:31
0.6.0

|
truckman  |
Upgrade devel/fstrm to version 0.6.0:
* fstrm_capture: Perform output file rotation when a SIGUSR1 signal
is received. This allows fstrm_capture's output file to be rotated
by logrotate or a similar external utility. (Output rotation is
suppressed if fstrm_capture is writing to stdout.)
PR: 241256
Reviewed by: swills (tested build)
Approved by: freebsd@dns.company (maintainer timeout, 4 weeks)
Sponsored by: Farsight Security, Inc. |
02 Aug 2019 13:30:40
0.5.0_1

|
jbeich  |
devel/libevent2: update to 2.1.11
Changes: https://github.com/libevent/libevent/releases/tag/release-2.1.11-stable
ABI: https://abi-laboratory.pro/tracker/timeline/libevent/
PR: 239599
Reported by: GitHub (watch releases)
Approved by: zeising (maintainer)
MFH: 2019Q3 (maybe security, partially restores 2.1.8 ABI)
Differential Revision: https://reviews.freebsd.org/D21133 |
08 May 2019 20:52:58
0.5.0

|
swills  |
devel/fstrm: upgrade to 0.5.0
PR: 237799
Submitted by: Leo Vandewoestijne <freebsd@dns.company> (maintainer) |
10 Sep 2018 13:14:52
0.4.0

|
mat  |
Add DOCS options to ports that should have one.
Also various fixes related to said option.
PR: 230864
Submitted by: mat
exp-runs by: antoine |
16 May 2018 17:04:09
0.4.0

|
truckman  |
Upgrade the devel/fstrm port from version 0.3.2 to 0.4.0:
* Added manual pages for fstrm_capture and fstrm_dump.
* Added new tool, fstrm_replay, for replaying saved Frame Streams data
to a socket connection.
* Adds TCP support. Add tcp_writer to the core library which
implements a bi-directional Frame Streams writer as a TCP socket
client. Introduces new developer API: fstrm_tcp_writer_init,
fstrm_tcp_writer_options_init, fstrm_tcp_writer_options_destroy,
fstrm_tcp_writer_options_set_socket_address, and
fstrm_tcp_writer_options_set_socket_port.
* fstrm_capture: new options for reading from TCP socket. (Only the first 15 lines of the commit message are shown above ) |
24 Apr 2018 00:49:56
0.3.2

|
dbaio  |
Update maintainer email address
Ownership of the former email address confirmed by email
PR: 227620
Submitted by: Leo Vandewoestijne |
28 Apr 2017 21:01:28
0.3.2

|
truckman  |
Upgrade fstrm to version 0.3.2:
* Accomodate systems without pthread_condattr_setclock (Issue #34)
PR: 218554
Approved by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer)
Sponsored by: Farsight Security, Inc. |
24 Feb 2017 23:24:28
0.3.1

|
truckman  |
Upgrade devel/fstrm to version 0.3.1:
* Add support for '-' as a filename for stdin/stdout (PR #28)
* destroy condition variable and mutexes in fstrm_iothr_destroy() (PR #25)
Set INSTALL_TARGET=install-strip to pacify stage Q/A.
PR: 217184
Approved by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer)
Sponsored by: Farsight Security, Inc. |
20 Feb 2017 02:57:04
0.3.0_2

|
jbeich  |
devel/libevent2: drop historical suffix after r362796
PR: 216777
Approved by: mm (maintainer) |
04 Feb 2017 07:56:59
0.3.0_1

|
jbeich  |
devel/libevent2: update to 2.1.8 and cleanup
- DEFAULT_VERSIONS += ssl=openssl-devel is now supported
- devel/py-event and devel/p5-Event-Lib are marked BROKEN
Changes: https://github.com/libevent/libevent/raw/release-2.1.8-stable/whatsnew-2.1.txt
Changes: https://github.com/libevent/libevent/raw/release-2.1.8-stable/ChangeLog
PR: 216527
Exp-run by: antoine
Approved by: mm (maintainer) |
27 Oct 2016 11:17:55
0.3.0

|
jbeich  |
devel/fstrm: update to 0.3.0
Changes: https://github.com/farsightsec/fstrm/releases/tag/v0.3.0
PR: 213829
Submitted by: Leo Vandewoestijne (maintainer) |
01 Apr 2016 14:00:57
0.2.0

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
28 Apr 2015 18:44:05
0.2.0

|
bdrewery  |
USE_GITHUB: For the new support, fix DISTNAME to be more consistent.
When using GH_TAGNAME the DISTNAME would have GH_PROJECT and GH_ACCOUNT in
it. When not using GH_TAGNAME it would not have this. Now both cases
will add in the GH_PROJECT and GH_ACCOUNT.
Add special care to ensure that the DISTVERSION is not added in twice. If
a port does GH_TAGNAME=v${PORTVERSION} it will be added in twice though. For
that case DISTVERSIONPREFIX=v should be set and no GH_TAGNAME should be used.
empty() is used rather than (!defined || !${}) to support fmake.
The purpose of setting DISTNAME at all in these cases is to make it more clear
that the distfile is from *GITHUB* and to avoid collisions if a project were
to be renamed or moved. Without adding in GH_PROJECT and GH_ACCOUNT then there
are real risks that collisions on filenames would happen on renamed or moved
projects, which is fairly common. A GITHUB-generated file may not match
a custom-rolled or git-archive-rolled distfile.
PR: 199069
With hat: portmgr
Testing done: All USE_GITHUB ports without GH_COMMIT were
checksum/fetch/extract/WRKSRC tested. |
18 Apr 2015 19:09:04
0.2.0

|
tijl  |
Convert to USES=autoreconf |
09 Apr 2015 14:45:13
0.2.0

|
robak  |
devel/fstrm: NEW PORT - Implementation of the Frame Streams data transport
protocol in C
fstrm is an optimized C implementation of Frame Streams that
includes a fast, lockless circular queue implementation
and exposes library interfaces for setting up a dedicated
Frame Streams I/O thread and asynchronously submitting data
frames for transport from worker threads. It was originally
written to facilitate the addition of high speed binary
logging to DNS servers written in C using the dnstap
log format.
WWW: https://github.com/farsightsec/fstrm
PR: 199292
Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> |