Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Adrian Schollmeyer
admindb-vendored
Commits
f7dbe2b3
Verified
Commit
f7dbe2b3
authored
Apr 15, 2022
by
Adrian Schollmeyer
Browse files
Import perl ProCurve-SNMP-Wrapper
parent
d44bef3c
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
perl/ProCurve-SNMP-Wrapper-2.00.01/.gitignore
0 → 100644
View file @
f7dbe2b3
debian
*.yml
Makefile
blib
pm_to_blib
perl/ProCurve-SNMP-Wrapper-2.00.01/Changes
0 → 100644
View file @
f7dbe2b3
Revision history for Perl extension ProCurve::SNMP::Wrapper.
2.00 Sun Nov 30 18:52:44 2008
- original version; created by h2xs 1.23 with options
-AX ProCurve::SNMP::Wrapper
fork HPSNMPv2
2.00.01 Sun Oct 03 13:03:00 2010
- Bugfix in concatenation of error messages
perl/ProCurve-SNMP-Wrapper-2.00.01/MANIFEST
0 → 100644
View file @
f7dbe2b3
Changes
Makefile.PL
MANIFEST
README
t/ProCurve-SNMP-Wrapper.t
lib/ProCurve/SNMP/Wrapper.pm
perl/ProCurve-SNMP-Wrapper-2.00.01/Makefile.PL
0 → 100644
View file @
f7dbe2b3
use
5.008008;
use ExtUtils
::
MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME
=>
'ProCurve::SNMP::Wrapper'
,
VERSION_FROM
=>
'lib/ProCurve/SNMP/Wrapper.pm'
,
# finds $VERSION
PREREQ_PM
=>
{}
,
# e.g., Module::Name => 1.1
($]
>=
5.005
?
## Add these new keywords supported since 5.005
(ABSTRACT_FROM
=>
'lib/ProCurve/SNMP/Wrapper.pm'
,
# retrieve abstract from module
AUTHOR
=>
'Volker Michael Henze <volker.henze@fem.tu-ilmenau.de>'
)
:
())
,
);
perl/ProCurve-SNMP-Wrapper-2.00.01/README
0 → 100644
View file @
f7dbe2b3
ProCurve-SNMP-Wrapper version 2.00.01
=====================================
The README is used to introduce the module and provide instructions on
how to install the module, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be provided before the module is installed.
A README file is required for CPAN modules since CPAN extracts the
README file from a module distribution so that people browsing the
archive can use it get an idea of the modules uses. It is usually a
good idea to provide version information here so that people can
decide whether fixes for the module are worth downloading.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
Net::SNMP
some other Perl-Modules
COPYRIGHT AND LICENCE
Put the correct copyright and licence information here.
Copyright (C) 2010 by Volker Michael Henze
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.
perl/ProCurve-SNMP-Wrapper-2.00.01/TODO
0 → 100644
View file @
f7dbe2b3
http://www.oidview.com/mibs/0/IEEE8023-LAG-MIB.html für LACP Trunks (Port aggregation)
perl/ProCurve-SNMP-Wrapper-2.00.01/build.sh
0 → 100755
View file @
f7dbe2b3
#! /bin/bash
perl Makefile.PL
make
# version is extracted from Wrapper.pm
mv
MYMETA.yml META.yml
DEBFULLNAME
=
"Michael Braun"
DEBEMAIL
=
"michael-dev@fami-braun.de"
dh-make-perl
--requiredeps
--intrusive
# debian/control: Depends: ${misc:Depends}, ${perl:Depends}, libsnmp-perl
# debian/source/format: 3.0 (native)
# dpkg-buildpackage -F
perl/ProCurve-SNMP-Wrapper-2.00.01/lib/ProCurve/SNMP/Wrapper.pm
0 → 100644
View file @
f7dbe2b3
This diff is collapsed.
Click to expand it.
perl/ProCurve-SNMP-Wrapper-2.00.01/t/ProCurve-SNMP-Wrapper.t
0 → 100644
View file @
f7dbe2b3
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl ProCurve-SNMP-Wrapper.t'
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use
Test::
More
tests
=>
1
;
BEGIN
{
use_ok
('
ProCurve::SNMP::Wrapper
')
};
#########################
# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment