[libsnmp-session-perl] 03/24: Import Debian changes 1.07-1

Roland Rosenfeld roland at moszumanska.debian.org
Tue Aug 22 22:34:47 UTC 2017


This is an automated email from the git hooks/post-receive script.

roland pushed a commit to branch master
in repository libsnmp-session-perl.

commit 84859ef31ca1c074aa93109e8ea7f5ce47148a68
Merge: 912098b 7e48656
Author: Jochen Friedrich <jochen at scram.de>
Date:   Sat Oct 30 13:49:35 2004 +0200

    Import Debian changes 1.07-1
    
    libsnmp-session-perl (1.07-1) unstable; urgency=low
    
      * New upstream release
       o  SNMP_Session.pm:
        - Fixed strict subs error with newer versions of Perl.
          Thanks to Gerry Dalton for spotting this.
      * Really updated watch file.
    
    libsnmp-session-perl (1.06-1) unstable; urgency=low
    
      * New upstream release
       o  SNMP_Session.pm:
        - Decode_trap_request now understands SNMPv2 inform requests in addition to
          SNMPv1 traps and SNMPv2 traps. Contributed by Andrew Cornford-Matheson.
      * Updated watch file.
    
    libsnmp-session-perl (1.05-1) unstable; urgency=low
    
      * New upstream release
       o SNMP_util.pm:
        - The subroutines snmpget, snmpgetnext and snmpset will now detect when
          they are called in scalar context, and return only the first (and
          typically the only) of the retrieved values in this case.
       o  BER.pm:
        - Internal restructuring: The new (BER.pm 1.02) pretty-printer
          registration method is now used for most standard SNMP types, too.
    
    libsnmp-session-perl (1.03-1) unstable; urgency=low
    
      * New upstream release
       o SNMP_util.pm:
        - Added a missing part of Mike Mitchell pretty-printer
          registration patch.
        - snmpwalkhash now takes an additional optional argument that should be a
          reference to a hash. If used, snmpwalkhash will insert the retrieved
          values into that hash.
       o BER.pm:
        - Additional decoders (``pretty printers'') can now be registered
          and unregistered for type codes using the register_pretty_printer and
          unregister_pretty_printer subroutines. Implemented by Mike Mitchell.
        - Corrected encoding of large integer-like values.
        - Properly parse the variant length format in integers. Thanks to Milen
          Pavlov for pointing out this bug. Also, decoding should be slightly
          more efficient in general, because one substr() operation per (sub-)
          object has been eliminated.
    
    libsnmp-session-perl (1.00-1) unstable; urgency=low
    
      * New upstream release
       o Added Luc Pauwels' implementation of the use_16bit_request_ids option.i
         Some SMC devices seem to require this.
       o Improved request ID generation so that avoid_negative_request_ids
         is always obeyed.
       o Added Gauge32 support to snmpset. Thanks to Christopher J. Tengi for
         the idea. Mike Mitchell provided new code that supports all known types.
       o Portability fix in IPv6 support.
       o Support encoding of OIDs containing multiple quoted strings.
      * Added debian/watch file
    
    libsnmp-session-perl (0.97-2) unstable; urgency=low
    
      * Removed unnecessary extra files.
      * Removed debian/dirs.
      * Fixed section according to perl policy.
    
    libsnmp-session-perl (0.97-1) unstable; urgency=low
    
      * New upstream release
        - Added support for TimeTicks values in snmpset.
        - Exported $SNMP_Session::default_avoid_negative_request_ids.
        - IPv6 support.
      * New maintainer (Closes: #201362)
      * Bumped policy up to 3.6.1
      * Set debhelper compat level to 4. Set Build-Depends to >=4.
      * Included changes of Non Maintainer Upload. Thanks to
        Paul Slootman <paul at debian.org>.
    
    libsnmp-session-perl (0.95-0.1) unstable; urgency=low
    
      * NMU
      * New upstream release, needed for latest mrtg.
      * Install into /usr/share/perl5 instead of /usr/lib/perl5.
      * Updated copyright file.
      * Removed explicit depends on perl 5.00xx
      * Changed Build-Depends into Build-Depends-Indep.

 MANIFEST                       |  35 +--
 META.yml                       |  10 +
 README                         |  35 ++-
 README.SNMP_util               |  77 ++++--
 debian/changelog               | 102 ++++++++
 debian/compat                  |   1 +
 debian/control                 |  11 +-
 debian/copyright               |   8 +-
 debian/dirs                    |   2 -
 debian/rules                   |  11 +-
 debian/watch                   |   6 +
 index.html                     |  73 +++---
 lib/BER.pm                     | 280 +++++++++++++++++-----
 lib/SNMP_Session.pm            | 275 ++++++++++++++++++----
 lib/SNMP_util.pm               | 514 ++++++++++++++++++++++++++++-------------
 test/README                    |   6 +
 test/ber-test.pl               | 108 +++++----
 test/capturetest.pl            |  60 +++++
 test/if-counters.pl            | 415 +++++++++++++++++++++++++--------
 test/{if-counters.pl => iftop} | 187 +++++++++++++--
 test/test.pl                   |  54 ++++-
 test/trap-listener             |  74 ++++--
 test/trap-send                 |   4 +
 test/walk-intf.pl              |   3 +
 test/wwwtest                   | 186 +++++++--------
 25 files changed, 1905 insertions(+), 632 deletions(-)

diff --cc debian/changelog
index 8c42e57,0000000..8d36117
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,39 -1,0 +1,141 @@@
++libsnmp-session-perl (1.07-1) unstable; urgency=low
++
++  * New upstream release
++   o  SNMP_Session.pm: 
++    - Fixed strict subs error with newer versions of Perl. 
++      Thanks to Gerry Dalton for spotting this.
++  * Really updated watch file.
++
++ -- Jochen Friedrich <jochen at scram.de>  Sat, 30 Oct 2004 13:49:35 +0200
++
++libsnmp-session-perl (1.06-1) unstable; urgency=low
++
++  * New upstream release
++   o  SNMP_Session.pm:
++    - Decode_trap_request now understands SNMPv2 inform requests in addition to 
++      SNMPv1 traps and SNMPv2 traps. Contributed by Andrew Cornford-Matheson.
++  * Updated watch file.
++
++ -- Jochen Friedrich <jochen at scram.de>  Thu,  9 Sep 2004 23:57:54 +0200
++
++libsnmp-session-perl (1.05-1) unstable; urgency=low
++
++  * New upstream release
++   o SNMP_util.pm:
++    - The subroutines snmpget, snmpgetnext and snmpset will now detect when 
++      they are called in scalar context, and return only the first (and 
++      typically the only) of the retrieved values in this case.
++   o  BER.pm:
++    - Internal restructuring: The new (BER.pm 1.02) pretty-printer 
++      registration method is now used for most standard SNMP types, too.
++
++ -- Jochen Friedrich <jochen at scram.de>  Sat, 31 Jul 2004 09:27:08 +0200
++
++libsnmp-session-perl (1.03-1) unstable; urgency=low
++
++  * New upstream release
++   o SNMP_util.pm:
++    - Added a missing part of Mike Mitchell pretty-printer
++      registration patch.
++    - snmpwalkhash now takes an additional optional argument that should be a
++      reference to a hash. If used, snmpwalkhash will insert the retrieved
++      values into that hash.
++   o BER.pm:
++    - Additional decoders (``pretty printers'') can now be registered
++      and unregistered for type codes using the register_pretty_printer and
++      unregister_pretty_printer subroutines. Implemented by Mike Mitchell.
++    - Corrected encoding of large integer-like values.
++    - Properly parse the variant length format in integers. Thanks to Milen
++      Pavlov for pointing out this bug. Also, decoding should be slightly
++      more efficient in general, because one substr() operation per (sub-)
++      object has been eliminated.
++
++ -- Jochen Friedrich <jochen at scram.de>  Sat,  3 Jul 2004 17:59:44 +0200
++
++libsnmp-session-perl (1.00-1) unstable; urgency=low
++
++  * New upstream release
++   o Added Luc Pauwels' implementation of the use_16bit_request_ids option.i
++     Some SMC devices seem to require this.
++   o Improved request ID generation so that avoid_negative_request_ids
++     is always obeyed.
++   o Added Gauge32 support to snmpset. Thanks to Christopher J. Tengi for
++     the idea. Mike Mitchell provided new code that supports all known types.
++   o Portability fix in IPv6 support.
++   o Support encoding of OIDs containing multiple quoted strings.
++  * Added debian/watch file
++
++ -- Jochen Friedrich <jochen at scram.de>  Wed, 25 Feb 2004 23:40:18 +0100
++
++libsnmp-session-perl (0.97-2) unstable; urgency=low
++
++  * Removed unnecessary extra files.
++  * Removed debian/dirs.
++  * Fixed section according to perl policy.
++
++ -- Jochen Friedrich <jochen at scram.de>  Wed, 10 Sep 2003 17:26:15 +0200
++
++libsnmp-session-perl (0.97-1) unstable; urgency=low
++
++  * New upstream release
++    - Added support for TimeTicks values in snmpset.
++    - Exported $SNMP_Session::default_avoid_negative_request_ids.
++    - IPv6 support.
++  * New maintainer (Closes: #201362)
++  * Bumped policy up to 3.6.1
++  * Set debhelper compat level to 4. Set Build-Depends to >=4.
++  * Included changes of Non Maintainer Upload. Thanks to
++    Paul Slootman <paul at debian.org>.
++
++ -- Jochen Friedrich <jochen at scram.de>  Sun,  7 Sep 2003 09:57:38 +0200
++
++libsnmp-session-perl (0.95-0.1) unstable; urgency=low
++
++  * NMU
++  * New upstream release, needed for latest mrtg.
++  * Install into /usr/share/perl5 instead of /usr/lib/perl5.
++  * Updated copyright file.
++  * Removed explicit depends on perl 5.00xx
++  * Changed Build-Depends into Build-Depends-Indep.
++
++ -- Paul Slootman <paul at debian.org>  Fri, 16 May 2003 11:14:02 +0200
++
 +libsnmp-session-perl (0.90-1) unstable; urgency=low
 +
 +  * New upstream release (Closes: #127414).
 +
 + -- Michael-John Turner <mj at debian.org>  Sat,  5 Jan 2002 17:18:59 +0200
 +
 +libsnmp-session-perl (0.86-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Michael-John Turner <mj at debian.org>  Sat,  9 Jun 2001 20:51:07 +0200
 +
 +libsnmp-session-perl (0.83-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Michael-John Turner <mj at debian.org>  Sun, 14 Jan 2001 15:27:02 +0200
 +
 +libsnmp-session-perl (0.80-1) unstable; urgency=low
 +
 +  * New upstream release (Closes: #76531).
 +
 + -- Michael-John Turner <mj at debian.org>  Thu,  9 Nov 2000 20:56:07 +0200
 +
 +libsnmp-session-perl (0.79-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Michael-John Turner <mj at debian.org>  Fri, 20 Oct 2000 23:21:39 +0200
 +
 +libsnmp-session-perl (0.75-1) unstable; urgency=low
 +
 +  * Initial Release.
 +
 + -- Michael-John Turner <mj at debian.org>  Wed, 15 Sep 1999 14:27:09 +0200
 +
 +Local variables:
 +mode: debian-changelog
 +End:
diff --cc debian/compat
index 0000000,0000000..b8626c4
new file mode 100644
--- /dev/null
+++ b/debian/compat
@@@ -1,0 -1,0 +1,1 @@@
++4
diff --cc debian/control
index 34a1e05,0000000..d86f12d
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,17 -1,0 +1,18 @@@
 +Source: libsnmp-session-perl
- Section: devel
++Section: perl
 +Priority: extra
- Maintainer: Michael-John Turner <mj at debian.org>
- Standards-Version: 3.2.1
- Build-Depends: debhelper
++Maintainer: Jochen Friedrich <jochen at scram.de>
++Standards-Version: 3.6.1
++Build-Depends-Indep: debhelper (>= 4)
 +
 +Package: libsnmp-session-perl
 +Architecture: all
- Depends: ${perl:Depends} | perl (>= 5.002)
++Depends: ${perl:Depends}
 +Conflicts: mrtg (<= 2.8.7)
++Recommends: libsocket6-perl, libio-socket-inet6-perl
 +Description: Perl support for accessing SNMP-aware devices
 + SNMP_Session contains support for accessing SNMP-aware devices (routers,
 + network interfaces of machines running an SNMP daemon, Squid, etc) from 
 + within Perl applications.
 + .
 + For more information, see http://www.switch.ch/misc/leinen/snmp/perl/.
diff --cc debian/copyright
index 3eb0303,0000000..9a54a23
mode 100644,000000..100644
--- a/debian/copyright
+++ b/debian/copyright
@@@ -1,12 -1,0 +1,18 @@@
 +This package was debianized by Michael-John Turner <mj at debian.org> on
 +Wed, 15 Sep 1999 14:27:09 +0200.
 +
++It is now maintained by Jochen Friedrich <jochen at scram.de> on
++Sun,  7 Sep 2003 01:43:18 +0200
++
 +It was downloaded from http://www.switch.ch/misc/leinen/snmp/perl/index.html
 +
- Upstream Author(s): Simon Leinen <simon at switch.ch>
++Upstream author: Simon Leinen <simon at switch.ch>
 +
 +Copyright: 
++		Copyright (c) 1995-2002, Simon Leinen
++			 All rights reserved
++
 +This program is free software; you can redistribute it under the
 +"Artistic License". On Debian GNU/Linux systems, a copy of the
 +Artistic License can be found in /usr/share/common-licenses/Artistic
 +
diff --cc debian/rules
index 7a8c9e1,0000000..18f677e
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,100 -1,0 +1,95 @@@
 +#!/usr/bin/make -f
 +#-*- makefile -*-
 +# Made with the aid of dh_make, by Craig Small
 +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
 +# Some lines taken from debmake, by Christoph Lameter.
 +
- # This is the debhelper compatability version to use.
- export DH_COMPAT=1
- 
 +PACKAGE=libsnmp-session-perl
 +
 +ifndef PERL
 +        PERL=/usr/bin/perl
 +endif
 +
- TMP=`pwd`/debian/tmp
++TMP=`pwd`/debian/$(PACKAGE)
 +archlib=`$(PERL) -MConfig -e 'print $$Config{installarchlib}'`
- config=INSTALLDIRS=perl INSTALLMAN1DIR=$(TMP)/usr/share/man/man1 INSTALLMAN3DIR=$(TMP)/usr/share/man/man3 INSTALLPRIVLIB=$(TMP)/usr/lib/perl5 INSTALLARCHLIB=$(TMP)$(archlib)
++config=INSTALLDIRS=perl INSTALLMAN1DIR=$(TMP)/usr/share/man/man1 INSTALLMAN3DIR=$(TMP)/usr/share/man/man3 INSTALLPRIVLIB=$(TMP)/usr/share/perl5 INSTALLARCHLIB=$(TMP)$(archlib)
 +
 +
 +build: build-stamp
 +build-stamp:
 +	dh_testdir
 +
 +	$(PERL) Makefile.PL $(config)
 +	$(MAKE)
 +
 +	touch build-stamp
 +
 +clean:
 +	dh_testdir
 +	dh_testroot
 +	rm -f build-stamp install-stamp
 +
 +	-$(MAKE) clean
 +	-rm -f Makefile.old
 +
 +	dh_clean
 +
 +install: install-stamp
 +install-stamp: build-stamp
 +	dh_testdir
 +	dh_testroot
 +	dh_clean -k
 +	dh_installdirs
 +
 +	$(MAKE) pure_install
 +	mkdir -p $(TMP)/usr/share/doc/$(PACKAGE)
 +	cp -a index.html $(TMP)/usr/share/doc/$(PACKAGE)/snmp-session.html
 +
 +	# Clean up
 +	-find $(TMP) -type f -name .packlist | xargs -r rm -f
 +	-find $(TMP) -type d -empty | xargs -r rmdir -p 
 +
 +	# Now we do the examples
 +	cp -a test $(TMP)/usr/share/doc/$(PACKAGE)/examples
 +	# Now we fix up the path to perl in the examples        
 +	-$(PERL) -i -p -e "s%/usr/local/bin/perl%/usr/bin/perl%;" $(TMP)/usr/share/doc/$(PACKAGE)/examples/*
 +	-chmod 755 $(TMP)/usr/share/doc/$(PACKAGE)/examples/*.pl 
 +	-chmod 755 $(TMP)/usr/share/doc/$(PACKAGE)/examples/sun-find-process
 +
 +	touch install-stamp
 +
 +# Build architecture-independent files here.
 +binary-indep: build install
- #	dh_testversion 
 +	dh_testdir
 +	dh_testroot
 +	dh_installdocs
 +	dh_installexamples
 +	dh_installmenu
 +#	dh_installemacsen
 +#	dh_installpam
 +#	dh_installinit
 +	dh_installcron
- 	dh_installmanpages
++#	dh_installman
 +	dh_installinfo
- #	dh_undocumented
 +	dh_installchangelogs 
 +	dh_link
 +	dh_strip
 +	dh_compress -Xexamples/
 +	dh_fixperms
 +	dh_installdeb
 +	dh_perl 
 +	dh_shlibdeps
 +	dh_gencontrol
 +	dh_md5sums
 +	dh_builddeb
 +
 +
 +# Build architecture-dependent files here.
 +binary-arch: build install
 +# We do nothing here
 +
 +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 install
diff --cc debian/watch
index 0000000,0000000..4787586
new file mode 100644
--- /dev/null
+++ b/debian/watch
@@@ -1,0 -1,0 +1,6 @@@
++# Example watch control file for uscan
++# Rename this file to "watch" and then you can run the "uscan" command
++# to check for upstream updates and more.
++# Site Version Action
++version=2
++http://www.switch.ch/misc/leinen/snmp/perl/dist/ SNMP_Session-(.*)\.tar\.gz debian uupdate

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libsnmp-session-perl.git



More information about the Pkg-perl-cvs-commits mailing list