Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
maddingue committed Aug 10, 2011
0 parents commit 06c5360
Show file tree
Hide file tree
Showing 13 changed files with 562 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
blib*
Makefile
Makefile.old
Build
Build.bat
_build*
pm_to_blib*
*.tar.gz
.lwpcookies
cover_db
pod2htm*.tmp
SNMP-ToolBox-*
33 changes: 33 additions & 0 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'SNMP::ToolBox',
license => 'perl',
dist_author => q{Sebastien Aperghis-Tramoni <sebastien@aperghis.net>},
dist_version_from => 'lib/SNMP/ToolBox.pm',
requires => {
'Carp' => 0,
},
build_requires => {
'Test::More' => 0,
},
configure_requires => {
'Module::Build' => 0.38,
},
meta_merge => {
resources => {
repository => "https://github.com/maddingue/SNMP-ToolBox",
#{
# type => "git",
# url => "git://github.com/maddingue/SNMP-ToolBox.git",
# web => "https://github.com/maddingue/SNMP-ToolBox",
#}
}
},
add_to_cleanup => [ 'SNMP-ToolBox-*' ],
);

$builder->create_build_script();
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for SNMP-ToolBox

0.01 Date/time
First version, released on an unsuspecting world.

12 changes: 12 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
MANIFEST
Build.PL
Makefile.PL
README
Changes
lib/SNMP/ToolBox.pm
t/00-load.t
t/01-api.t
t/30-oid_encode.t
t/90-pod.t
t/91-pod-coverage.t
t/95-manifest.t
32 changes: 32 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/perl
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'SNMP::ToolBox',
LICENSE => 'perl',
AUTHOR => q{Sebastien Aperghis-Tramoni <sebastien@aperghis.net>},
VERSION_FROM => 'lib/SNMP/ToolBox.pm',
ABSTRACT_FROM => 'lib/SNMP/ToolBox.pm',
PREREQ_PM => {
# prereqs
'Carp' => 0,

# build/test prereqs
'Test::More' => 0,
},
META_MERGE => {
resources => {
repository => "https://github.com/maddingue/SNMP-ToolBox",
#{
# type => "git",
# url => "git://github.com/maddingue/SNMP-ToolBox.git",
# web => "https://github.com/maddingue/SNMP-ToolBox",
#}
}
},
PL_FILES => {},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'SNMP-ToolBox-*' },
);
62 changes: 62 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
NAME

SNMP::ToolBox - Set of SNMP-related utilities


DESCRIPTION

This module contains a set of functions useful for writing SNMP-related
programs and modules.


INSTALLATION

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install

Alternatively, to install with Module::Build, you can use the
following commands:

perl Build.PL
./Build
./Build test
./Build install


SUPPORT
You can find documentation for this module with the perldoc command.

perldoc SNMP::ToolBox

You can also look for information at:

* Search CPAN
http://search.cpan.org/dist/SNMP-ToolBox/

* Meta CPAN
https://metacpan.org/release/SNMP-ToolBox

* RT: CPAN's request tracker (report bugs here)
https://rt.cpan.org/Public/Dist/Display.html?Name=SNMP-ToolBox

* AnnoCPAN: Annotated CPAN documentation
http://annocpan.org/dist/SNMP-ToolBox

* CPAN Ratings
http://cpanratings.perl.org/d/SNMP-ToolBox


LICENSE AND COPYRIGHT

Copyright 2011 Sebastien Aperghis-Tramoni.

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

Loading

0 comments on commit 06c5360

Please sign in to comment.