From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-python/pysnmp-mibs/Manifest | 2 ++ dev-python/pysnmp-mibs/metadata.xml | 26 ++++++++++++++++++++++ dev-python/pysnmp-mibs/pysnmp-mibs-0.1.3-r1.ebuild | 21 +++++++++++++++++ dev-python/pysnmp-mibs/pysnmp-mibs-0.1.4.ebuild | 21 +++++++++++++++++ 4 files changed, 70 insertions(+) create mode 100644 dev-python/pysnmp-mibs/Manifest create mode 100644 dev-python/pysnmp-mibs/metadata.xml create mode 100644 dev-python/pysnmp-mibs/pysnmp-mibs-0.1.3-r1.ebuild create mode 100644 dev-python/pysnmp-mibs/pysnmp-mibs-0.1.4.ebuild (limited to 'dev-python/pysnmp-mibs') diff --git a/dev-python/pysnmp-mibs/Manifest b/dev-python/pysnmp-mibs/Manifest new file mode 100644 index 000000000000..cda281830570 --- /dev/null +++ b/dev-python/pysnmp-mibs/Manifest @@ -0,0 +1,2 @@ +DIST pysnmp-mibs-0.1.3.tar.gz 1961708 SHA256 fa78171d63a91df29d18641516c02f5f9628fda35c2986a09a1a6fc9c9032753 SHA512 7879775f2b339f30db1bf0322c036deb7f97744630f6207efdafe6178d90e264cfa18398ed8628b07b53ed9d62ce8317a7ac8f109a4a57ee1a24d01ae32eaaf3 WHIRLPOOL a89b724d0fb36348616541f204a6a8b98207aab8c9ad557d6dff333002c39dbf369da996995f697f251d65428f10226551c4dcb5c2636cba55324b556f8c61b0 +DIST pysnmp-mibs-0.1.4.tar.gz 1982745 SHA256 a499ef45d942f42ab9e922c7da93efa084a7ec490ba6cad576b64a7d573ec043 SHA512 12e285d1adb3d2f6d1f300b3ad56a5f9dcb359b840e51c4599cb3ed406cd5b34b189ec6eba94fc72e57703a3c374995b60176940eba0478f6cc2f8eb96fffaca WHIRLPOOL 3d7079397aa1312abc30bc75aba9aab46d1286cd95dc7bf8d5c8470a8ea75857004ee597ceb33c0bac2e9fe21f61cdf65c3911491651ab9ec693a687907ca6a0 diff --git a/dev-python/pysnmp-mibs/metadata.xml b/dev-python/pysnmp-mibs/metadata.xml new file mode 100644 index 000000000000..0ddc38fed961 --- /dev/null +++ b/dev-python/pysnmp-mibs/metadata.xml @@ -0,0 +1,26 @@ + + + + python + +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!). + + +これは SNMP v.1/v.2 エンジンのPython言語での実装です。関連値に沿ったSNMPオブジェ +クトIDから/へSNMPメッセージをアセンブル/ディスアセンブルするのが一般的な機能です +。PySNMPは幾つかのTCP/IPネットワーキングを特定するトランスポート・メソッドも提供 +します。 + +PySNMPは全体をPython言語で記述され、どのサードパーティ製ツールも信用しない立場で +自給自足します。(これはラッパー・ツールではありません。) + + + pysnmp-mibs + + diff --git a/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.3-r1.ebuild b/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.3-r1.ebuild new file mode 100644 index 000000000000..d910ff9f6633 --- /dev/null +++ b/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.3-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="SNMP framework in Python - MIBs" +HOMEPAGE="http://pysnmp.sf.net/ http://pypi.python.org/pypi/pysnmp-mibs" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-python/pysnmp-4.2.2[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.4.ebuild b/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.4.ebuild new file mode 100644 index 000000000000..9e1c36d9c2ee --- /dev/null +++ b/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="SNMP framework in Python - MIBs" +HOMEPAGE="http://pysnmp.sf.net/ http://pypi.python.org/pypi/pysnmp-mibs" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-python/pysnmp-4.2.3[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" -- cgit v1.2.3-65-gdbad