From: Lars Pedersen <lapeddk@gmail.com> To: Lars Pedersen <lapeddk@gmail.com>, ptxdist@pengutronix.de Subject: Re: [ptxdist] [PATCH v2 3/4] python3-pysnmp: new package Date: Fri, 16 Jul 2021 14:53:42 +0200 [thread overview] Message-ID: <CAKd8=GsNK0C1svz4n5LH7dM-bO9f5Pvuf9rHmt-+uAR6qMCg8w@mail.gmail.com> (raw) In-Reply-To: <20210716124116.GB15288@pengutronix.de> Hi. Thanks for the reply On Fri, 16 Jul 2021 at 14:41, Michael Olbrich <m.olbrich@pengutronix.de> wrote: > > On Mon, Jul 12, 2021 at 01:09:09PM +0200, Lars Pedersen wrote: > > Signed-off-by: Lars Pedersen <lapeddk@gmail.com> > > --- > > Changes since v1: > > - Updated LICENSE field to BSD-2-Clause > > > > rules/python3-pysnmp.in | 13 ++++++++++ > > rules/python3-pysnmp.make | 54 +++++++++++++++++++++++++++++++++++++++ > > 2 files changed, 67 insertions(+) > > create mode 100644 rules/python3-pysnmp.in > > create mode 100644 rules/python3-pysnmp.make > > > > diff --git a/rules/python3-pysnmp.in b/rules/python3-pysnmp.in > > new file mode 100644 > > index 000000000..09e9b2b0a > > --- /dev/null > > +++ b/rules/python3-pysnmp.in > > @@ -0,0 +1,13 @@ > > +## SECTION=python3 > > + > > +config PYTHON3_PYSNMP > > + bool > > + prompt "pysnmp" > > + select PYTHON3 > > + select HOST_PYTHON3_SETUPTOOLS > > + select PYTHON3_PLY > > + select PYTHON3_PYASN1 > > + select PYTHON3_PYCRYPTODOMEX > > + select PYTHON3_PYSMI > > + help > > + pySNMP is a cross-platform, pure-Python SNMP engine implementation. > > diff --git a/rules/python3-pysnmp.make b/rules/python3-pysnmp.make > > new file mode 100644 > > index 000000000..9eb101b9f > > --- /dev/null > > +++ b/rules/python3-pysnmp.make > > @@ -0,0 +1,54 @@ > > +# -*-makefile-*- > > +# > > +# Copyright (C) 2021 by Lars Pedersen <lapeddk@gmail.com> > > +# > > +# For further information about the PTXdist project and license conditions > > +# see the README file. > > +# > > + > > +# > > +# We provide this package > > +# > > +PACKAGES-$(PTXCONF_PYTHON3_PYSNMP) += python3-pysnmp > > + > > +# > > +# Paths and names > > +# > > +PYTHON3_PYSNMP_VERSION := 4.4.12 > > +PYTHON3_PYSNMP_MD5 := 2222880259daf6e2cb322e938c818276 > > +PYTHON3_PYSNMP := pysnmp-$(PYTHON3_PYSNMP_VERSION) > > +PYTHON3_PYSNMP_SUFFIX := tar.gz > > +PYTHON3_PYSNMP_URL := $(call ptx/mirror-pypi, pysnmp, $(PYTHON3_PYSNMP).$(PYTHON3_PYSNMP_SUFFIX)) > > +PYTHON3_PYSNMP_SOURCE := $(SRCDIR)/$(PYTHON3_PYSNMP).$(PYTHON3_PYSNMP_SUFFIX) > > +PYTHON3_PYSNMP_DIR := $(BUILDDIR)/$(PYTHON3_PYSNMP) > > +PYTHON3_PYSNMP_LICENSE := BSD-2-Clause > > +PYTHON3_PYSNMP_LICENSE_FILES := \ > > + file://LICENSE.rst;md5=b15d29f500f748d1c2a15709769090a8 > > + > > +# ---------------------------------------------------------------------------- > > +# Prepare > > +# ---------------------------------------------------------------------------- > > + > > +PYTHON3_PYSNMP_CONF_TOOL := python3 > > + > > +# ---------------------------------------------------------------------------- > > +# Target-Install > > +# ---------------------------------------------------------------------------- > > + > > +$(STATEDIR)/python3-pysnmp.targetinstall: > > + @$(call targetinfo) > > + > > + @$(call install_init, python3-pysnmp) > > + @$(call install_fixup, python3-pysnmp,PRIORITY,optional) > > + @$(call install_fixup, python3-pysnmp,SECTION,base) > > + @$(call install_fixup, python3-pysnmp,AUTHOR,"Lars Pedersen <lapeddk@gmail.com>") > > + @$(call install_fixup, python3-pysnmp,DESCRIPTION,missing) > > + > > + @$(call install_glob,python3-pysnmp, 0, 0, -, \ > > + /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages,, *.pyc) > > That's the strange one. Why skip all *.pyc? I can do a fixup if this > should just be *.py instead. Yes now I remember. I couldn't get the pyc files to work on the device and somehow the py files did. After a few hours of debugging I gave up. \Lars Pedersen > > Michael > > > + > > + @$(call install_finish, python3-pysnmp) > > + > > + @$(call touch) > > + > > +# vim: syntax=make > > -- > > 2.31.1 > > > > > > _______________________________________________ > > ptxdist mailing list > > ptxdist@pengutronix.de > > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > > > > -- > Pengutronix e.K. | | > Steuerwalder Str. 21 | http://www.pengutronix.de/ | > 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
next prev parent reply other threads:[~2021-07-16 12:54 UTC|newest] Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-07-12 11:09 [ptxdist] [PATCH v2 1/4] python3-pyasn1: " Lars Pedersen 2021-07-12 11:09 ` [ptxdist] [PATCH v2 2/4] python3-pysmi: " Lars Pedersen 2021-07-16 10:23 ` Michael Olbrich 2021-07-16 12:24 ` Lars Pedersen 2021-07-16 12:40 ` Michael Olbrich 2021-07-22 12:12 ` [ptxdist] [APPLIED] " Michael Olbrich 2021-07-12 11:09 ` [ptxdist] [PATCH v2 3/4] python3-pysnmp: " Lars Pedersen 2021-07-16 12:41 ` Michael Olbrich 2021-07-16 12:53 ` Lars Pedersen [this message] 2021-07-16 13:02 ` Michael Olbrich 2021-07-18 19:03 ` Lars Pedersen 2021-07-19 6:48 ` Michael Olbrich 2021-07-19 7:47 ` [ptxdist] [PATCH v3] " Lars Pedersen 2021-07-22 12:12 ` [ptxdist] [APPLIED] " Michael Olbrich 2021-07-12 11:09 ` [ptxdist] [PATCH v2 4/4] python3-snmpclitools: " Lars Pedersen 2021-07-22 12:12 ` [ptxdist] [APPLIED] " Michael Olbrich 2021-07-22 12:12 ` [ptxdist] [APPLIED] python3-pyasn1: " Michael Olbrich
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to='CAKd8=GsNK0C1svz4n5LH7dM-bO9f5Pvuf9rHmt-+uAR6qMCg8w@mail.gmail.com' \ --to=lapeddk@gmail.com \ --cc=ptxdist@pengutronix.de \ --subject='Re: [ptxdist] [PATCH v2 3/4] python3-pysnmp: new package' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox