* [meta-python][PATCH 0/4] python-snimpy: add new recipe and required packages
@ 2017-04-21 9:08 jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 1/4] python-ply: add new recipe jackie.huang
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: jackie.huang @ 2017-04-21 9:08 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
---
The following changes since commit 2cdea6c5bb09aa90184c17c9157f4fed0e10b3c2:
opencv: do not depend on swig. (2017-04-06 13:00:31 +0200)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib.git jhuang0/r_upstream-python-snimpy_170421_0
http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/r_upstream-python-snimpy_170421_0
Jackie Huang (4):
python-ply: add new recipe
python-pysmi: add new recipe
python-pysnmp: add new recipe
python-snimpy: add new recipe
.../recipes-devtools/python/python-ply_3.10.bb | 17 ++++++++++++++
.../recipes-devtools/python/python-pysmi_0.1.2.bb | 22 ++++++++++++++++++
.../recipes-devtools/python/python-pysnmp_4.3.5.bb | 25 +++++++++++++++++++++
.../python/python-snimpy_0.8.11.bb | 26 ++++++++++++++++++++++
4 files changed, 90 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-ply_3.10.bb
create mode 100644 meta-python/recipes-devtools/python/python-pysmi_0.1.2.bb
create mode 100644 meta-python/recipes-devtools/python/python-pysnmp_4.3.5.bb
create mode 100644 meta-python/recipes-devtools/python/python-snimpy_0.8.11.bb
--
2.11.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-python][PATCH 1/4] python-ply: add new recipe
2017-04-21 9:08 [meta-python][PATCH 0/4] python-snimpy: add new recipe and required packages jackie.huang
@ 2017-04-21 9:08 ` jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 2/4] python-pysmi: " jackie.huang
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: jackie.huang @ 2017-04-21 9:08 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
python-ply: PLY is yet another implementation
of lex and yacc for Python.
It's required by python-pysmi.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
meta-python/recipes-devtools/python/python-ply_3.10.bb | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-ply_3.10.bb
diff --git a/meta-python/recipes-devtools/python/python-ply_3.10.bb b/meta-python/recipes-devtools/python/python-ply_3.10.bb
new file mode 100644
index 000000000..8e61efa79
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-ply_3.10.bb
@@ -0,0 +1,17 @@
+SUMMARY = "Python Lex and Yacc"
+DESCRIPTION = "Python ply: PLY is yet another implementation of lex and yacc for Python"
+HOMEPAGE = "https://pypi.python.org/pypi/ply"
+SECTION = "devel/python"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://README.md;beginline=3;endline=30;md5=fcb04bc2f765e46ab7084d6ab6e452bb"
+
+SRCNAME = "ply"
+
+SRC_URI = "https://files.pythonhosted.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "1d63c166ab250bab87d8dcc42dcca70e"
+SRC_URI[sha256sum] = "96e94af7dd7031d8d6dd6e2a8e0de593b511c211a86e28a9c9621c275ac8bacb"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-python][PATCH 2/4] python-pysmi: add new recipe
2017-04-21 9:08 [meta-python][PATCH 0/4] python-snimpy: add new recipe and required packages jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 1/4] python-ply: add new recipe jackie.huang
@ 2017-04-21 9:08 ` jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 3/4] python-pysnmp: " jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 4/4] python-snimpy: " jackie.huang
3 siblings, 0 replies; 5+ messages in thread
From: jackie.huang @ 2017-04-21 9:08 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
python-pysmi is a pure-Python implementation of SNMP/SMI
MIB parsing and conversion library.
It's required by python-pysnmp.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
.../recipes-devtools/python/python-pysmi_0.1.2.bb | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-pysmi_0.1.2.bb
diff --git a/meta-python/recipes-devtools/python/python-pysmi_0.1.2.bb b/meta-python/recipes-devtools/python/python-pysmi_0.1.2.bb
new file mode 100644
index 000000000..aa234dd70
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pysmi_0.1.2.bb
@@ -0,0 +1,22 @@
+SUMMARY = "SNMP SMI/MIB Parser"
+DESCRIPTION = "A pure-Python implementation of SNMP/SMI MIB \
+ parsing and conversion library. Can produce PySNMP MIB modules. \
+"
+HOMEPAGE = "https://pypi.python.org/pypi/pysmi"
+SECTION = "devel/python"
+
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=d8b1bbadd635f187dee74d999a8c67b8"
+
+SRCNAME = "pysmi"
+
+SRC_URI = "https://files.pythonhosted.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "f8754e9ed75698cc16b40f125df85b12"
+SRC_URI[sha256sum] = "e0912180fc6faa9c264df78f97e7c451f77f84f5bd840098d2ce7b1bf70082bc"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+RDEPENDS_${PN} = "python-ply"
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-python][PATCH 3/4] python-pysnmp: add new recipe
2017-04-21 9:08 [meta-python][PATCH 0/4] python-snimpy: add new recipe and required packages jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 1/4] python-ply: add new recipe jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 2/4] python-pysmi: " jackie.huang
@ 2017-04-21 9:08 ` jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 4/4] python-snimpy: " jackie.huang
3 siblings, 0 replies; 5+ messages in thread
From: jackie.huang @ 2017-04-21 9:08 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
python-pysnmp is a pure-Python SNMPv1/v2c/v3 library,
it's required by python-snimpy.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
.../recipes-devtools/python/python-pysnmp_4.3.5.bb | 25 ++++++++++++++++++++++
1 file changed, 25 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-pysnmp_4.3.5.bb
diff --git a/meta-python/recipes-devtools/python/python-pysnmp_4.3.5.bb b/meta-python/recipes-devtools/python/python-pysnmp_4.3.5.bb
new file mode 100644
index 000000000..0b38d58e4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pysnmp_4.3.5.bb
@@ -0,0 +1,25 @@
+SUMMARY = "A pure-Python SNMPv1/v2c/v3 library"
+DESCRIPTION = "SNMP v1/v2c/v3 engine and apps written in pure-Python. \
+ Supports Manager/Agent/Proxy roles, scriptable MIBs, asynchronous \
+ operation (asyncio, twisted, asyncore) and multiple transports.\
+"
+HOMEPAGE = "https://pypi.python.org/pypi/pysnmp"
+SECTION = "devel/python"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=280606d9c18f200e03e0c247ac61475a"
+
+SRCNAME = "pysnmp"
+
+SRC_URI = "https://files.pythonhosted.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "387aaa23c168ccc0b59775cfdf519fc0"
+SRC_URI[sha256sum] = "38253fe95cea33f352fb36e85f3c2874043401724300c4888df74835161169d2"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+RDEPENDS_${PN} += "python-pycrypto \
+ python-pyasn1 \
+ python-pysmi \
+"
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-python][PATCH 4/4] python-snimpy: add new recipe
2017-04-21 9:08 [meta-python][PATCH 0/4] python-snimpy: add new recipe and required packages jackie.huang
` (2 preceding siblings ...)
2017-04-21 9:08 ` [meta-python][PATCH 3/4] python-pysnmp: " jackie.huang
@ 2017-04-21 9:08 ` jackie.huang
3 siblings, 0 replies; 5+ messages in thread
From: jackie.huang @ 2017-04-21 9:08 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
Snimpy is a Python-based tool providing a simple
interface to build SNMP query.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
.../python/python-snimpy_0.8.11.bb | 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-snimpy_0.8.11.bb
diff --git a/meta-python/recipes-devtools/python/python-snimpy_0.8.11.bb b/meta-python/recipes-devtools/python/python-snimpy_0.8.11.bb
new file mode 100644
index 000000000..cbdc6bd86
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-snimpy_0.8.11.bb
@@ -0,0 +1,26 @@
+SUMMARY = "Interactive SNMP tool"
+DESCRIPTION = "Snimpy is a Python-based tool providing a simple interface to build SNMP query"
+HOMEPAGE = "https://pypi.python.org/pypi/snimpy"
+SECTION = "devel/python"
+
+DEPENDS = "libsmi python-cffi-native python-vcversioner-native"
+
+LICENSE = "ISC"
+LIC_FILES_CHKSUM = "file://docs/license.rst;md5=7c53ab2d1240828625c3e093d049d4f4"
+
+SRCNAME = "snimpy"
+
+SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "7f6270ce2e7206df165602e66d5ceb96"
+SRC_URI[sha256sum] = "10410614c7bff1053ca65bd760ce919f1a074f4988b857df4c57cf35847922b0"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+RDEPENDS_${PN} = "python-cffi \
+ python-pycparser \
+ python-pysnmp \
+ python-setuptools \
+"
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-04-21 9:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-21 9:08 [meta-python][PATCH 0/4] python-snimpy: add new recipe and required packages jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 1/4] python-ply: add new recipe jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 2/4] python-pysmi: " jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 3/4] python-pysnmp: " jackie.huang
2017-04-21 9:08 ` [meta-python][PATCH 4/4] python-snimpy: " jackie.huang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.