diff mbox series

[4/6] package/python-twised: added conch and serial support

Message ID 20220403221953.1158787-4-emile.cormier.jr@gmail.com
State Accepted
Headers show
Series [1/6] package/python-snappy: bump version to 0.6.1 | expand

Commit Message

Emile Cormier April 3, 2022, 10:19 p.m. UTC
From: ecorm <ecorm@users.noreply.github.com>

The conch subpackage is required by python-crossbar.
Added the serial subpackage while I was at it (not required by
Crossbar).
Signed-off-by: Emile Cormier <emile.cormier.jr@gmail.com>
---
 package/python-twisted/Config.in | 12 ++++++++++++
 1 file changed, 12 insertions(+)

Comments

Thomas Petazzoni Aug. 7, 2022, 2:56 p.m. UTC | #1
On Sun,  3 Apr 2022 19:19:51 -0300
Emile Cormier <emile.cormier.jr@gmail.com> wrote:

> From: ecorm <ecorm@users.noreply.github.com>
> 
> The conch subpackage is required by python-crossbar.
> Added the serial subpackage while I was at it (not required by
> Crossbar).
> Signed-off-by: Emile Cormier <emile.cormier.jr@gmail.com>
> ---
>  package/python-twisted/Config.in | 12 ++++++++++++
>  1 file changed, 12 insertions(+)

Applied to master with fixed From: field and slightly improved commit
log. Thanks!

Thomas
diff mbox series

Patch

diff --git a/package/python-twisted/Config.in b/package/python-twisted/Config.in
index 8596025e9c..c0acf35560 100644
--- a/package/python-twisted/Config.in
+++ b/package/python-twisted/Config.in
@@ -29,4 +29,16 @@  config BR2_PACKAGE_PYTHON_TWISTED_TLS
 	select BR2_PACKAGE_PYTHON_PYOPENSSL # runtime
 	select BR2_PACKAGE_PYTHON_SERVICE_IDENTITY # runtime
 
+config BR2_PACKAGE_PYTHON_TWISTED_CONCH
+	bool "Conch support"
+	depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-cryptography
+	select BR2_PACKAGE_PYTHON_APPDIRS # runtime
+	select BR2_PACKAGE_PYTHON_BCRYPT # runtime
+	select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
+	select BR2_PACKAGE_PYTHON_PYASN1 # runtime
+
+config BR2_PACKAGE_PYTHON_TWISTED_SERIAL
+	bool "Serial support"
+	select BR2_PACKAGE_PYTHON_SERIAL # runtime
+
 endif