From: Thomas Petazzoni via buildroot <buildroot@buildroot.org>
To: Emile Cormier <emile.cormier.jr@gmail.com>
Cc: James Hilliard <james.hilliard1@gmail.com>,
Mauro Condarelli <mc5686@mclink.it>,
Asaf Kahlon <asafka7@gmail.com>,
buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 5/6] package/python-autobahn: add missing subpackages
Date: Sun, 7 Aug 2022 18:12:20 +0200 [thread overview]
Message-ID: <20220807181220.7688111e@windsurf> (raw)
In-Reply-To: <20220403221953.1158787-5-emile.cormier.jr@gmail.com>
Hello Emile,
I have applied, with a few changes, see below.
On Sun, 3 Apr 2022 19:19:52 -0300
Emile Cormier <emile.cormier.jr@gmail.com> wrote:
> From: ecorm <ecorm@users.noreply.github.com>
>
> Added missing python-autobahn subpackages required by python-crossbar.
> Signed-off-by: Emile Cormier <emile.cormier.jr@gmail.com>
Fixed up the From: and missing empty line, as usual.
> +if BR2_PACKAGE_PYTHON_AUTOBAHN
> +
> +config BR2_PACKAGE_PYTHON_AUTOBAHN_TWISTED
> + bool "Twisted support"
> + select BR2_PACKAGE_PYTHON_ATTRS # runtime
> + select BR2_PACKAGE_PYTHON_TWISTED # runtime
> + select BR2_PACKAGE_PYTHON_ZOPE_INTERFACE # runtime
> +
> +config BR2_PACKAGE_PYTHON_AUTOBAHN_ACCELERATE
> + bool "C-based WebSocket acceleration"
> + select BR2_PACKAGE_PYTHON_WSACCEL # runtime
> +
> +config BR2_PACKAGE_PYTHON_AUTOBAHN_COMPRESS
> + bool "Non-standard WebSocket compression support"
> + select BR2_PACKAGE_PYTHON_SNAPPY # runtime
> +
> +config BR2_PACKAGE_PYTHON_AUTOBAHN_SERIALIZATION
> + bool "Accelerated JSON, MessagePack, CBOR, UBJSON, and FlatBuffers serialization support"
> + select BR2_PACKAGE_PYTHON_CBOR # runtime
I do see the cbor2 dependency being expressed in setup.py, but not the
cbor dependency. Also, I only cbor2 being imported in the autobahn code
base, so I dropped this line. Of course, if there is something I
missed, let me know.
> + select BR2_PACKAGE_PYTHON_CBOR2 # runtime
> + select BR2_PACKAGE_PYTHON_FLATBUFFERS # runtime
> + select BR2_PACKAGE_PYTHON_MSGPACK # runtime
> + select BR2_PACKAGE_PYTHON_UBJSON # runtime
> + select BR2_PACKAGE_PYTHON_UJSON # runtime
> +
> +config BR2_PACKAGE_PYTHON_AUTOBAHN_ENCRYPTION
> + bool "TLS and WAMP-cryptosign encryption/authentication support"
> + select BR2_PACKAGE_PYTHON_PYNACL # runtime
> + select BR2_PACKAGE_PYTHON_PYOPENSSL # runtime
> + select BR2_PACKAGE_PYTHON_PYQRCODE # runtime
> + select BR2_PACKAGE_PYTHON_PYTRIE # runtime
> + select BR2_PACKAGE_PYTHON_SERVICE_IDENTITY # runtime
> +
> +config BR2_PACKAGE_PYTHON_AUTOBAHN_SCRAM
> + bool "WAMP-SCRAM authentication support"
> + select BR2_PACKAGE_PYTHON_ARGON2_CFFI # runtime
> + select BR2_PACKAGE_PYTHON_PASSLIB # runtime
The other thing I changed is to sort those sub-options alphabetically
by their option name.
Applied with those changes!
Thanks,
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2022-08-07 16:12 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-03 22:19 [Buildroot] [PATCH 1/6] package/python-snappy: bump version to 0.6.1 Emile Cormier
2022-04-03 22:19 ` [Buildroot] [PATCH 2/6] package/python-appdirs: add new package Emile Cormier
2022-08-07 14:50 ` Thomas Petazzoni via buildroot
2022-04-03 22:19 ` [Buildroot] [PATCH 3/6] package/python-zlmdb: " Emile Cormier
2022-08-07 14:53 ` Thomas Petazzoni via buildroot
2022-08-07 15:37 ` Emile Cormier
2022-08-07 16:10 ` Thomas Petazzoni via buildroot
2022-08-07 16:50 ` Emile Cormier
2022-04-03 22:19 ` [Buildroot] [PATCH 4/6] package/python-twised: added conch and serial support Emile Cormier
2022-08-07 14:56 ` Thomas Petazzoni via buildroot
2022-04-03 22:19 ` [Buildroot] [PATCH 5/6] package/python-autobahn: add missing subpackages Emile Cormier
2022-08-07 16:12 ` Thomas Petazzoni via buildroot [this message]
2022-08-07 16:46 ` Emile Cormier
2022-08-07 17:18 ` Thomas Petazzoni via buildroot
2022-08-07 17:37 ` Emile Cormier
2022-08-09 8:15 ` Thomas Petazzoni via buildroot
2022-08-08 20:43 ` Thomas Petazzoni via buildroot
2022-04-03 22:19 ` [Buildroot] [PATCH 6/6] package/python-crossbar: fix configuration Emile Cormier
2022-08-08 20:45 ` Thomas Petazzoni via buildroot
2022-08-08 21:39 ` Emile Cormier
2022-04-04 19:47 ` [Buildroot] [PATCH 1/6] package/python-snappy: bump version to 0.6.1 Arnout Vandecappelle
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=20220807181220.7688111e@windsurf \
--to=buildroot@buildroot.org \
--cc=asafka7@gmail.com \
--cc=emile.cormier.jr@gmail.com \
--cc=james.hilliard1@gmail.com \
--cc=mc5686@mclink.it \
--cc=thomas.petazzoni@bootlin.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.