aboutsummaryrefslogtreecommitdiffstats
path: root/net/p5-Net-AMQP
Commit message (Collapse)AuthorAgeFilesLines
* Fix license information for portgs that use "the same license as Perl".mat2017-09-151-1/+1
| | | | Sponsored by: Absolight
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.mat2016-04-011-5/+5
| | | | | With hat: portmgr Sponsored by: Absolight
* Fixup some whitespace at the beginning of lines problems.mat2016-04-011-3/+3
| | | | | With hat: portmgr Sponsored by: Absolight
* Change the way Perl modules are installed, update the default Perl to 5.18.mat2014-11-262-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Support STAGEDIR.vanilla2013-11-062-17/+15
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | net)
* - Use single space after WWW:sunpoet2013-08-291-1/+1
|
* - Convert to new perl frameworkmat2013-08-031-1/+2
| | | | | - Trim Makefile header - Remove MAKE_JOBS_SAFE=yes, it's the default.
* Update to 0.06.tobez2013-05-023-4/+6
| | | | Changes: http://search.cpan.org/dist/Net-AMQP/CHANGES
* Update to 0.05.tobez2013-01-302-8/+4
| | | | Changes: http://search.cpan.org/dist/Net-AMQP/CHANGES
* Use PERL_MODBUILD to unbreak build with Perl 5.14+.skv2012-06-212-4/+1
|
* - Update to 0.04sunpoet2012-05-243-7/+9
| | | | | | | - Add BUILD_DEPENDS - Sort PLIST Changes: http://search.cpan.org/dist/Net-AMQP/CHANGES
* - Update to 0.03swills2012-05-012-3/+3
| | | | PR: ports/167366
* - Assign clsung's p5- ports to perl@swills2012-05-011-1/+1
| | | | Approved by: clsung via IRC
* - Add TEST_DEPENDS to enable testingswills2012-03-071-0/+1
| | | | Approved by: portmgr (blanket)
* - Update to 0.02clsung2011-11-123-3/+4
| | | | Feature safe: yes
* This module implements the frame (de)serialization and representationclsung2011-10-304-0/+72
of the Advanced Message Queue Protocol (http://www.amqp.org/). It is to be used in conjunction with client or server software that does the actual TCP/IP communication. While it's being written with AMQP version 0-8 in mind, as the spec is defined by an external xml file, support for 0-9, 0-9-1 and eventually 0-10 is hoped for. WWW: http://search.cpan.org/dist/Net-AMQP/