Hi. Thanks for the feedback.
On Wed, 7 Jul 2021 at 16:00, Roland Hieber <[email protected]> wrote: > > Hi, > > On Mon, Jul 05, 2021 at 11:33:47AM +0200, Lars Pedersen wrote: > > Pure-Python implementation of ASN.1 types and DER/BER/CER codecs > > (X.208). New package used by python3-pysnmp > > > > Signed-off-by: Lars Pedersen <[email protected]> > > --- > > rules/python3-pyasn1.in | 9 +++++++ > > rules/python3-pyasn1.make | 53 +++++++++++++++++++++++++++++++++++++++ > > 2 files changed, 62 insertions(+) > > create mode 100644 rules/python3-pyasn1.in > > create mode 100644 rules/python3-pyasn1.make > > > > diff --git a/rules/python3-pyasn1.in b/rules/python3-pyasn1.in > > new file mode 100644 > > index 000000000..a28e4e355 > > --- /dev/null > > +++ b/rules/python3-pyasn1.in > > @@ -0,0 +1,9 @@ > > +## SECTION=python3 > > + > > +config PYTHON3_PYASN1 > > + bool > > + prompt "pyasn1" > > + select PYTHON3 > > + select HOST_PYTHON3_SETUPTOOLS > > + help > > + Pure-Python implementation of ASN.1 types and DER/BER/CER codecs > > (X.208) > > diff --git a/rules/python3-pyasn1.make b/rules/python3-pyasn1.make > > new file mode 100644 > > index 000000000..9280856f4 > > --- /dev/null > > +++ b/rules/python3-pyasn1.make > > @@ -0,0 +1,53 @@ > > +# -*-makefile-*- > > +# > > +# Copyright (C) 2021 by Lars Pedersen <[email protected]> > > +# > > +# For further information about the PTXdist project and license conditions > > +# see the README file. > > +# > > + > > +# > > +# We provide this package > > +# > > +PACKAGES-$(PTXCONF_PYTHON3_PYASN1) += python3-pyasn1 > > + > > +# > > +# Paths and names > > +# > > +PYTHON3_PYASN1_VERSION := 0.4.8 > > +PYTHON3_PYASN1_MD5 := dffae4ff9f997a83324b3f33fe62be54 > > +PYTHON3_PYASN1 := pyasn1-$(PYTHON3_PYASN1_VERSION) > > +PYTHON3_PYASN1_SUFFIX := tar.gz > > +PYTHON3_PYASN1_URL := $(call ptx/mirror-pypi, pyasn1, > > $(PYTHON3_PYASN1).$(PYTHON3_PYASN1_SUFFIX)) > > +PYTHON3_PYASN1_SOURCE := > > $(SRCDIR)/$(PYTHON3_PYASN1).$(PYTHON3_PYASN1_SUFFIX) > > +PYTHON3_PYASN1_DIR := $(BUILDDIR)/$(PYTHON3_PYASN1) > > +PYTHON3_PYASN1_LICENSE := BSD-2 > > The correct identifier is BSD-2-Clause here. Thanks. I'll fix this license in a v2 patch. I can see that pyasn1, pysmi and pysnmp all needs to be fixed too. /Lars Pedersen. _______________________________________________ ptxdist mailing list [email protected] To unsubscribe, send a mail with subject "unsubscribe" to [email protected]
