summaryrefslogtreecommitdiff
path: root/net/p5-Net-Write
AgeCommit message (Collapse)AuthorFilesLines
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2009-07-17Give up MAINTAINERadrianp1-2/+2
2009-07-08Updating package for p5 module Net::Write from 1.03nb1 to 1.05sno2-7/+7
Setting license to artistic according to META.yml Upstream changes: 1.05 Wed Jun 10 20:37:44 CEST 2009 - bugfix: removed a warning on AF_INET6 constant declaration - update: copyright notice 1.04 Sun Oct 19 17:47:11 CEST 2008 - bugfix: IP_HDRINCL with IPv6 under Linux 2.6.x
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-08-24Update from version 1.00 to 1.03, discussed in general terms with maintainer.he2-8/+8
Pkgsrc changes: o Canonicalize MASTER_SITES and HOMEPAGE Upstream changes: 1.03 Fri Mar 21 17:20:00 CET 2008 - added support for IP_HDRINCL with IPv6 raw sockets (Linux only) => in fact, it should have worked before, but it appears to be a regression 1.02 Tue Feb 19 12:11:21 CET 2008 - bugfix: due to Socket6 update, AF_INET6 definition has changed 1.01 Sun Feb 17 19:08:15 CET 2008 - update: portability patches for other Unix systems (untested), concerning IP_HDRINCL constants and the like - update: license string (lc(Artistic)), to make CPANTS happy
2008-06-12Add DESTDIR support.joerg1-1/+3
2007-10-25Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mkjlam1-1/+0
can handle packages having no PLIST files.
2007-01-03Net::Write provides a portable interface to open a network interface, and beadrianp4-0/+38
able to write raw data directly to the network. It juste provides three methods when a Net::Write object has been created for an interface: open, send, close. It is possible to open a network interface to send frames at layer 2 (you craft a frame from link layer), or at layer 3 (you craft a frame from network layer), or at layer 4 (you craft a frame from transport layer). NOTE: not all operating systems support all layer opening. Currently, Windows only supports opening and sending at layer 2. Other Unix systems should be able to open and send at all layers.