This patch adds support for installing via distutils to PySNMP-1.6.4 see http://pysnmp.sourceforge.net/ http://c0re.jp/c0de/misc/ This patch is included in pysnmp 1.6.5 --drt@un.bewaff.net diff -rNu pysnmp-1.6.4-orig/CHANGES pysnmp-1.6.4/CHANGES --- pysnmp-1.6.4-orig/CHANGES Tue Jan 22 08:44:59 2002 +++ pysnmp-1.6.4/CHANGES Tue Jan 22 09:11:02 2002 @@ -1,3 +1,8 @@ +Changes to xxx +-------------- + +- distutils support by drt@un.bewaff.net + Tue Sep 25 18:34:56 MSK 2001 Changes to version 1.6.4 diff -rNu pysnmp-1.6.4-orig/MANIFEST.in pysnmp-1.6.4/MANIFEST.in --- pysnmp-1.6.4-orig/MANIFEST.in Thu Jan 1 01:00:00 1970 +++ pysnmp-1.6.4/MANIFEST.in Tue Jan 22 09:06:35 2002 @@ -0,0 +1,6 @@ +include CHANGES LICENSE +recursive-include examples * +recursive-include contribution * +recursive-include html * + + diff -rNu pysnmp-1.6.4-orig/README pysnmp-1.6.4/README --- pysnmp-1.6.4-orig/README Tue Jan 22 08:44:59 2002 +++ pysnmp-1.6.4/README Tue Jan 22 09:10:04 2002 @@ -31,6 +31,13 @@ INSTALLATION ------------ +You might try distutils to install PySNMP ty just typing: + +$ python setup.py install + +This shoult work on Unix and Microsoft Windows. Alternatively you can +install PySNMP by hand: + On UNIX, the pysnmp package can be put into the python/site-packages/ directory in the following way (assuming your Python distribution resides under /usr/local/lib/python): diff -rNu pysnmp-1.6.4-orig/setup.py pysnmp-1.6.4/setup.py --- pysnmp-1.6.4-orig/setup.py Thu Jan 1 01:00:00 1970 +++ pysnmp-1.6.4/setup.py Tue Jan 22 08:57:27 2002 @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name="PySNMP", + version="1.6.4", + description="Python SNMP Toolkit", + author="Ilya Etingof", + author_email="ilya@glas.net ", + url="http://sourceforge.net/projects/pysnmp/", + packages=['pysnmp'], + ) +