[libsnmp-session-perl] 02/24: Import Debian changes 0.90-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 912098b27bcfc0c74aaed39db8a65d7292a5fcec
Merge: 99d79ec 8680739
Author: Michael-John Turner <mj at debian.org>
Date:   Sat Jan 5 17:18:59 2002 +0200

    Import Debian changes 0.90-1
    
    libsnmp-session-perl (0.90-1) unstable; urgency=low
    
      * New upstream release (Closes: #127414).
    
    libsnmp-session-perl (0.86-1) unstable; urgency=low
    
      * New upstream release.
    
    libsnmp-session-perl (0.83-1) unstable; urgency=low
    
      * New upstream release.
    
    libsnmp-session-perl (0.80-1) unstable; urgency=low
    
      * New upstream release (Closes: #76531).
    
    libsnmp-session-perl (0.79-1) unstable; urgency=low
    
      * New upstream release.

 MANIFEST              |    5 +-
 README                |   84 +++--
 README.SNMP_util      |  183 ++++++---
 debian/changelog      |   30 ++
 debian/control        |    7 +-
 debian/rules          |    3 +-
 index.html            |  396 ++++---------------
 lib/BER.pm            |   83 ++--
 lib/SNMP_Session.pm   |  405 +++++++++++---------
 lib/SNMP_util.pm      | 1003 ++++++++++++++++++++++++++++---------------------
 test/README           |   76 ++--
 test/asn1-test.pl     |   32 --
 test/ber-test.pl      |   27 +-
 test/cisco-cpus       |   52 +++
 test/cisco-memory     |   53 +++
 test/if-counters.pl   |  285 +++++++++++---
 test/if-status.pl     |   82 ++--
 test/map-table.pl     |    2 +-
 test/snmpwalkh.pl     |   88 +++++
 test/sun-find-process |   41 ++
 test/trap-listener    |    8 +-
 test/walk-test.pl     |  104 ++++-
 22 files changed, 1853 insertions(+), 1196 deletions(-)

diff --cc debian/changelog
index 9b866a4,0000000..8c42e57
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,0 +1,39 @@@
++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/control
index b0cd20c,0000000..34a1e05
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,14 -1,0 +1,17 @@@
 +Source: libsnmp-session-perl
 +Section: devel
 +Priority: extra
 +Maintainer: Michael-John Turner <mj at debian.org>
- Standards-Version: 3.0.1
++Standards-Version: 3.2.1
++Build-Depends: debhelper
 +
 +Package: libsnmp-session-perl
 +Architecture: all
 +Depends: ${perl:Depends} | perl (>= 5.002)
 +Conflicts: mrtg (<= 2.8.7)
 +Description: Perl support for accessing SNMP-aware devices
 + SNMP_Session contains support for accessing SNMP-aware devices (routers,
-  network interfaces in machines running an SNMP daemon, Squid, etc) from 
++ 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/rules
index e41f75c,0000000..7a8c9e1
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,99 -1,0 +1,100 @@@
 +#!/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
 +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)
 +
 +
 +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/*.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_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

-- 
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