Skip to content

Commit

Permalink
enter dist::zilla
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Jun 12, 2010
1 parent e2a4323 commit 624600b
Show file tree
Hide file tree
Showing 16 changed files with 78 additions and 297 deletions.
21 changes: 0 additions & 21 deletions Build.PL

This file was deleted.

207 changes: 0 additions & 207 deletions LICENSE

This file was deleted.

26 changes: 13 additions & 13 deletions MANIFEST
@@ -1,26 +1,26 @@
README
MANIFEST
Makefile.PL
Build.PL
Changes
LICENSE
MANIFEST
META.yml
README
dist.ini
lib/NetPacket.pm
lib/NetPacket/Ethernet.pm
lib/NetPacket/ARP.pm
lib/NetPacket/Ethernet.pm
lib/NetPacket/ICMP.pm
lib/NetPacket/ICMPv6.pm
lib/NetPacket/IGMP.pm
lib/NetPacket/IP.pm
lib/NetPacket/UDP.pm
lib/NetPacket/TCP.pm
lib/NetPacket/IPv6.pm
lib/NetPacket/ICMPv6.pm
lib/NetPacket/PFLog.pm
t/ip_encode.t
Changes
t/ip_trailing.t
META.yml
lib/NetPacket/TCP.pm
lib/NetPacket/UDP.pm
t/bug-37931.t
t/general.t
t/checksum.t
t/general.t
t/icmp.t
t/ip_encode.t
t/ip_trailing.t
t/tcp.t
t/udp-checksum.t
LICENSE
2 changes: 1 addition & 1 deletion MANIFEST.SKIP
Expand Up @@ -10,4 +10,4 @@ NetPacket.*tar
pm_to_blib
^MYMETA.yml$
contrib
^NetPacket-v.*
^NetPacket-.*
51 changes: 51 additions & 0 deletions dist.ini
@@ -0,0 +1,51 @@
name = NetPacket
version = 0.43.1
author = Yanick Champoux <yanick@cpan.org>
license = Artistic_2_0
copyright_holder = Yanick Champoux

[ModuleBuild]

[License]

[Bugtracker]

[Homepage]

;[Repository]

[NextRelease]
time_zone = America/Montreal

[MetaYAML]

[MatchManifest]
[ManifestSkip]

[GatherDir]

[PkgVersion]
[PodVersion]


; Build
[Git::CommitBuild]

; Release
;[TestRelease]

[ConfirmRelease]

[Git::Check]

[Git::Commit]

;[Git::Push]
;push_to = github
[ Git::Tag]
tag_format = code/v%v

[UploadToCPAN]

;[Twitter]
;hash_tags = #perl #cpan #git
7 changes: 4 additions & 3 deletions lib/NetPacket.pm
Expand Up @@ -5,12 +5,12 @@
#

package NetPacket;
# ABSTRACT: assemble/disassemble network packets at the protocol level


use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

our $VERSION = '0.43.0';

BEGIN {
@ISA = qw(Exporter);
Expand Down Expand Up @@ -105,10 +105,11 @@ sub ntohs

__END__
=pod
=head1 NAME
C<NetPacket> - modules to assemble/disassemble network packets at the
protocol level.
NetPacket - modules to assemble/disassemble network packets at the protocol level.
=head1 SYNOPSIS
Expand Down
4 changes: 1 addition & 3 deletions lib/NetPacket/ARP.pm
Expand Up @@ -7,7 +7,6 @@ package NetPacket::ARP;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

our $VERSION = '0.43.0';

BEGIN {
@ISA = qw(Exporter NetPacket);
Expand Down Expand Up @@ -108,8 +107,7 @@ __END__
=head1 NAME
C<NetPacket::ARP> - Assemble and disassemble ARP (Address Resolution
Protocol) packets.
C<NetPacket::ARP> - Assemble and disassemble ARP (Address Resolution Protocol) packets.
=head1 SYNOPSIS
Expand Down
2 changes: 0 additions & 2 deletions lib/NetPacket/Ethernet.pm
Expand Up @@ -6,8 +6,6 @@ package NetPacket::Ethernet;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

our $VERSION = '0.43.0';

BEGIN {
@ISA = qw(Exporter NetPacket);

Expand Down

0 comments on commit 624600b

Please sign in to comment.