diff options
author | Lukasz Strzygowski <lucass@gentoo.org> | 2004-06-23 11:03:47 +0000 |
---|---|---|
committer | Lukasz Strzygowski <lucass@gentoo.org> | 2004-06-23 11:03:47 +0000 |
commit | a1d220fc4a99195d3c1393d8d0df74ab690dffd5 (patch) | |
tree | 78c1965b9adeb1e95fce1c88cf343141aba0e28f /dev-python/pysnmp | |
parent | Stable on x86. (Manifest recommit) (diff) | |
download | gentoo-2-a1d220fc4a99195d3c1393d8d0df74ab690dffd5.tar.gz gentoo-2-a1d220fc4a99195d3c1393d8d0df74ab690dffd5.tar.bz2 gentoo-2-a1d220fc4a99195d3c1393d8d0df74ab690dffd5.zip |
version bump. marked tesing on x86, sparc, ppc. added commands to install whole documentation and examples. closing #54869.
Diffstat (limited to 'dev-python/pysnmp')
-rw-r--r-- | dev-python/pysnmp/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/pysnmp/Manifest | 4 | ||||
-rw-r--r-- | dev-python/pysnmp/files/digest-pysnmp-3.4.2 | 1 | ||||
-rw-r--r-- | dev-python/pysnmp/metadata.xml | 9 | ||||
-rw-r--r-- | dev-python/pysnmp/pysnmp-3.4.2.ebuild | 22 |
5 files changed, 43 insertions, 2 deletions
diff --git a/dev-python/pysnmp/ChangeLog b/dev-python/pysnmp/ChangeLog index b53e1134bb53..da54a72fff55 100644 --- a/dev-python/pysnmp/ChangeLog +++ b/dev-python/pysnmp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-python/pysnmp # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/ChangeLog,v 1.4 2004/06/19 13:12:10 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/ChangeLog,v 1.5 2004/06/23 11:03:47 lucass Exp $ + +*pysnmp-3.4.2 (23 Jun 2004) + + 23 Jun 2004; Lukasz Strzygowski <lucass@gentoo.org> pysnmp-3.4.2.ebuild, metadata.xml: + Version bump. Thanks for info to Mike C. Fletcher in bug #54869. + Marked testing on x86, sparc and ppc. Added commands to install + whole documentation and examples. Added longdescription to metadata.xml. 19 Jun 2004; David Holm <dholm@gentoo.org> pysnmp-2.0.8.ebuild: Added to ~ppc. diff --git a/dev-python/pysnmp/Manifest b/dev-python/pysnmp/Manifest index 657f223fb41e..4d9bd506e45a 100644 --- a/dev-python/pysnmp/Manifest +++ b/dev-python/pysnmp/Manifest @@ -1,4 +1,6 @@ +MD5 74a11be80175042a91b8eb6aa81e99f0 pysnmp-2.0.8.ebuild 442 MD5 5b8eebaa12e61189c7d8e637978d2c48 ChangeLog 657 MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159 -MD5 74a11be80175042a91b8eb6aa81e99f0 pysnmp-2.0.8.ebuild 442 +MD5 74a11be80175042a91b8eb6aa81e99f0 pysnmp-3.4.2.ebuild 442 MD5 b30937ff6795e9c21197fb0f017b65ce files/digest-pysnmp-2.0.8 63 +MD5 f1302fe6c3ae374b76578a63ed08b9ba files/digest-pysnmp-3.4.2 63 diff --git a/dev-python/pysnmp/files/digest-pysnmp-3.4.2 b/dev-python/pysnmp/files/digest-pysnmp-3.4.2 new file mode 100644 index 000000000000..1fcb260f2bb6 --- /dev/null +++ b/dev-python/pysnmp/files/digest-pysnmp-3.4.2 @@ -0,0 +1 @@ +MD5 a570c2c15904d4c27e846617a462600f pysnmp-3.4.2.tar.gz 90872 diff --git a/dev-python/pysnmp/metadata.xml b/dev-python/pysnmp/metadata.xml index de483c53568f..c5c24b9e198d 100644 --- a/dev-python/pysnmp/metadata.xml +++ b/dev-python/pysnmp/metadata.xml @@ -2,4 +2,13 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>python</herd> +<longdescription> +This is a Python implementation of SNMP v.1/v.2c engine. Its general +functionality is to assemble/disassemble SNMP messages from/into +given SNMP Object IDs along with associated values. PySNMP also provides +a few transport methods specific to TCP/IP networking. + +PySNMP is written entirely in Python and is self-sufficient in terms +that it does not rely on any third party tool (it is not a wrapper!). +</longdescription> </pkgmetadata> diff --git a/dev-python/pysnmp/pysnmp-3.4.2.ebuild b/dev-python/pysnmp/pysnmp-3.4.2.ebuild new file mode 100644 index 000000000000..f7e273aba4dc --- /dev/null +++ b/dev-python/pysnmp/pysnmp-3.4.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-3.4.2.ebuild,v 1.1 2004/06/23 11:03:47 lucass Exp $ + +inherit distutils + +DESCRIPTION="SNMP framework in Python. Not a wrapper." +HOMEPAGE="http://pysnmp.sf.net/" +SRC_URI="mirror://sourceforge/pysnmp/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~sparc ~ppc" +IUSE="" + +src_install(){ + distutils_src_install + + dodoc CHANGES COMPATIBILITY + dohtml -r docs/ + cp -r examples ${D}/usr/share/doc/${PF} +} + |