aboutsummaryrefslogtreecommitdiff
path: root/net/p5-Net-Nmsg
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Fix spelling mistakes, typos, poor wording, hyphenation, jargonisms,Alexey Dokuchaev2021-03-221-1/+1
| | | | | | | | contractions, "<portname> is ..." cases, missing Oxford commas, and other miscellaneous style bugs in the COMMENT line. Notes: svn path=/head/; revision=568947
* Upgrade net/p5-Net-Nmsg to version 0.17:Don Lewis2017-03-022-3/+4
| | | | | | | | | | | | | - JSON input/output support - support for randomized interval beginnings - proper output set_rate() support (rate objects garbage collected) Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=435213
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Nuke inclusion of bsd.port.options.mk since it is no longer necessary.Don Lewis2015-08-221-2/+0
| | | | | | | | Submitted by: adamw Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=395005
* Upgrade to version 0.15:Don Lewis2015-08-222-6/+5
| | | | | | | | | | | | | | | | 0.15 Thu Mar 12 10:28:04 EDT 2015 - moved to Math::Int64 v0.51 0.14 Thu Mar 5 15:18:39 EST 2015 - initialization of int64 module - fixed calls to add_output_sock() and add_input_channel() - fixed fetch for repeated field values - fixed some input option settings Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=395002
* Add LICENSE_FILE and bump PORTREVISION.Don Lewis2015-04-071-0/+2
| | | | | | | | | Differential Revision: https://reviews.freebsd.org/D2247 Approved by: mat (mentor) Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=383545
* Upgrade to version 0.13:Don Lewis2015-02-222-4/+3
| | | | | | | | | | | | | | 0.13 Fri Feb 20 16:11:02 EST 2015 - fully integrated Math::Int64 and hex parsing - added some exceptions for certain failure modes - enabled environment variable control of debug (NET_NMSG_DEBUG) Differential Revision: https://reviews.freebsd.org/D1933 Approved by: mat (mentor) Sponsored by: Farsight Security Inc. Notes: svn path=/head/; revision=379626
* dd CPAN as a backup http/ftp MASTER_SITE. az@ requested thatDon Lewis2015-01-101-1/+2
| | | | | | | | | | | | CPAN be used as the MASTER_SITE, and mat@ suggested making it just be the backup site Differential Revision: https://reviews.freebsd.org/D1486 Approved by: mat (mentor) Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=376728
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Add new port net/p5-Net-NmsgJohn Marino2014-11-044-0/+69
PR: 194276 Submitted by: Don Lewis Net::Nmsg is a perl binding to libnmsg, the reference implementation of the NMSG binary structured message interchange format. The NMSG documentation describes the format as: The NMSG format is an efficient encoding of typed, structured data into payloads which are packed into containers which can be transmitted over the network or stored to disk. Each payload is associated with a specific message schema. Modules implementing a certain message schema along with functionality to convert between binary and presentation formats can be loaded at runtime by libnmsg. nmsgtool provides a command line interface to control the transmission, storage, creation, and conversion of NMSG payloads. Notes: svn path=/head/; revision=372158