--- libsnmp-multi-perl-2.1.orig/debian/changelog +++ libsnmp-multi-perl-2.1/debian/changelog @@ -0,0 +1,28 @@ +libsnmp-multi-perl (2.1-4) unstable; urgency=low + + * debian/rules: replace the unconditional rmdir on /usr/lib/perl5 + with a conditional one. (Thanks: Niko Tyni) (Closes: #467960) + * debian/control: bumped up Standard to 3.7.3 + * debian/control: added Homepage field + * debian/control: updated Maintainer e-mail address + + -- Arne Goetje Thu, 28 Feb 2008 12:58:15 +0800 + +libsnmp-multi-perl (2.1-3) unstable; urgency=low + + * added libsnmp-perl to Build-Depends-Indep (closes #386978) + + -- Arne Goetje Tue, 12 Sep 2006 09:12:17 +0800 + +libsnmp-multi-perl (2.1-2) unstable; urgency=low + + * updated control and copyright files + + -- Arne Goetje Wed, 6 Sep 2006 08:49:15 +0800 + +libsnmp-multi-perl (2.1-1) unstable; urgency=low + + * Initial Release. + + -- Arne Goetje Tue, 5 Sep 2006 12:00:35 +0800 + --- libsnmp-multi-perl-2.1.orig/debian/compat +++ libsnmp-multi-perl-2.1/debian/compat @@ -0,0 +1 @@ +5 --- libsnmp-multi-perl-2.1.orig/debian/rules +++ libsnmp-multi-perl-2.1/debian/rules @@ -0,0 +1,89 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-Wall -O2 -g" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + + dh_clean build-stamp install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into debian/$PACKAGE_NAME here + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + # As this is a architecture independent package, we are not + # supposed to install stuff to /usr/lib. MakeMaker creates + # the dirs, we delete them from the deb: + #rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty \ + --parents --verbose $(TMP)/usr/lib/perl5 + + + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot +# dh_installcron +# dh_installmenu + dh_installdocs + dh_installexamples examples/. + $(PERL) -pi -e 's!/usr/local/bin/perl!/usr/bin/perl!g;' \ + $(TMP)/usr/share/doc/$(PACKAGE)/examples/* + dh_installchangelogs ChangeLog + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libsnmp-multi-perl-2.1.orig/debian/control +++ libsnmp-multi-perl-2.1/debian/control @@ -0,0 +1,25 @@ +Source: libsnmp-multi-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.6.1), libsnmp-perl +Maintainer: Arne Goetje +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/~tpg/SNMP-Multi-2.1/Multi.pm + +Package: libsnmp-multi-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libsnmp-perl +Description: Perform SNMP operations on multiple hosts simultaneously + The SNMP::Multi package provides a mechanism to perform SNMP operations + on several hosts simultaneously. SNMP::Multi builds on G. Marzot's SNMP + Perl interface to the UC-Davis SNMP libraries, using asynchronous SNMP + operations to send queries/sets to multiple hosts simultaneously. + . + Results from all hosts are compiled into a single object, which offers + methods to access the data in aggregate, or broken down by host or the + individual request. + . + SNMP::Multi supports SNMP GET, SET, GETNEXT, GETBULK and BULKWALK requests. + It also performs PDU packing in order to improve network efficiency, when + packing is possible. --- libsnmp-multi-perl-2.1.orig/debian/copyright +++ libsnmp-multi-perl-2.1/debian/copyright @@ -0,0 +1,24 @@ +This is the debian package for the SNMP-Multi module. +It was created by Arne Goetje using dh-make-perl. + +The upstream author is: + +Karl ("Terminator rAT") Schilke . + + +Developed by Karl "Terminator rAT" Schilke for Electric Lightwave, Inc. +Copyright (c) 2000-2002 Electric Lightwave, Inc. All rights reserved. + +Co-maintained by Toni Prug. + +This software is provided ``as is'' and without any express or implied +warranties, including, without limitation, the implied warranties of +merchantibility and/or fitness for a particular purpose. + +This program is free software; you may redistribute it and/or modify it +under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libsnmp-multi-perl-2.1.orig/debian/watch +++ libsnmp-multi-perl-2.1/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 2; this line is compulsory! +version=2 +http://www.cpan.org/modules/by-module/SNMP/SNMP-Multi-(.*).(tar.gz|tar|tgz)