From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Julien Olivain <ju.o@free.fr>
Cc: Asaf Kahlon <asafka7@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH next v2 5/7] package/python-magic-wormhole-mailbox-server: new package
Date: Sat, 11 Feb 2023 16:10:34 +0100 [thread overview]
Message-ID: <20230211151034.GH2796@scaer> (raw)
Julien, All,
On 2022-11-22 21:31 +0100, Julien Olivain spake thusly:
> This package is the main server that Magic-Wormhole clients connect to.
> The server performs store-and-forward delivery for small key-exchange
> and control messages. Bulk data is sent over a direct TCP connection,
> or through a transit-relay.
>
> https://github.com/magic-wormhole/magic-wormhole-mailbox-server
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
[--SNIP--]
> diff --git a/package/python-magic-wormhole-mailbox-server/Config.in b/package/python-magic-wormhole-mailbox-server/Config.in
> new file mode 100644
> index 0000000000..db20d3e7b6
> --- /dev/null
> +++ b/package/python-magic-wormhole-mailbox-server/Config.in
> @@ -0,0 +1,15 @@
> +config BR2_PACKAGE_PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER
> + bool "python-magic-wormhole-mailbox-server"
> + select BR2_PACKAGE_PYTHON3_SQLITE # runtime
> + select BR2_PACKAGE_PYTHON_ATTRS # runtime
> + select BR2_PACKAGE_PYTHON_AUTOBAHN # runtime
python-autobahn depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS,
so this should have been propagated. It's relatively easy to reproduce
on current master as of commit 451672e890b5:
$ KCONFIG_SEED=0x1D15B9D4 make randconfig
[...]
WARNING: unmet direct dependencies detected for BR2_PACKAGE_PYTHON_AUTOBAHN
Depends on [n]: BR2_PACKAGE_PYTHON3 [=y] && BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS [=n]
Selected by [y]:
- BR2_PACKAGE_PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER [=y] && BR2_PACKAGE_PYTHON3 [=y]
Care to send a fix, and check the other packages that were added in this
series, please?
Regards,
Yann E. MORIN.
> + select BR2_PACKAGE_PYTHON_SIX # runtime
> + select BR2_PACKAGE_PYTHON_TWISTED # runtime
> + help
> + This package is the main server that Magic-Wormhole clients
> + connect to. The server performs store-and-forward delivery
> + for small key-exchange and control messages. Bulk data is
> + sent over a direct TCP connection, or through a
> + transit-relay.
> +
> + https://github.com/magic-wormhole/magic-wormhole-mailbox-server
> diff --git a/package/python-magic-wormhole-mailbox-server/python-magic-wormhole-mailbox-server.hash b/package/python-magic-wormhole-mailbox-server/python-magic-wormhole-mailbox-server.hash
> new file mode 100644
> index 0000000000..c714712641
> --- /dev/null
> +++ b/package/python-magic-wormhole-mailbox-server/python-magic-wormhole-mailbox-server.hash
> @@ -0,0 +1,5 @@
> +# md5, sha256 from https://pypi.org/pypi/magic-wormhole-mailbox-server/json
> +md5 3da441df1f354a8399a728da3421ac8f magic-wormhole-mailbox-server-0.4.1.tar.gz
> +sha256 1af10592909caaf519c00e706eac842c5e77f8d4356215fe9c61c7b2258a88fb magic-wormhole-mailbox-server-0.4.1.tar.gz
> +# Locally computed sha256 checksums
> +sha256 4a9cc2415c52cef591b6822eee68fed36d7e6d80284b09638cff61d762d99060 LICENSE
> diff --git a/package/python-magic-wormhole-mailbox-server/python-magic-wormhole-mailbox-server.mk b/package/python-magic-wormhole-mailbox-server/python-magic-wormhole-mailbox-server.mk
> new file mode 100644
> index 0000000000..a3394c7dcd
> --- /dev/null
> +++ b/package/python-magic-wormhole-mailbox-server/python-magic-wormhole-mailbox-server.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# python-magic-wormhole-mailbox-server
> +#
> +################################################################################
> +
> +PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_VERSION = 0.4.1
> +PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_SOURCE = magic-wormhole-mailbox-server-$(PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_VERSION).tar.gz
> +PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_SITE = https://files.pythonhosted.org/packages/5b/ba/cbb211bc8f8bfdf7fb620d33331f07bcd889c7a28e7fd8a0de9029bb5a2f
> +PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_SETUP_TYPE = setuptools
> +PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_LICENSE = MIT
> +PYTHON_MAGIC_WORMHOLE_MAILBOX_SERVER_LICENSE_FILES = LICENSE
> +
> +$(eval $(python-package))
> --
> 2.38.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next reply other threads:[~2023-02-11 15:10 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-11 15:10 Yann E. MORIN [this message]
2023-02-11 18:00 ` [Buildroot] [PATCH next v2 5/7] package/python-magic-wormhole-mailbox-server: new package Julien Olivain
-- strict thread matches above, loose matches on Subject: below --
2022-11-22 20:31 [Buildroot] [PATCH next v2 1/7] package/python-idna: set _SETUP_TYPE = flit Julien Olivain
2022-11-22 20:31 ` [Buildroot] [PATCH next v2 5/7] package/python-magic-wormhole-mailbox-server: new package Julien Olivain
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=20230211151034.GH2796@scaer \
--to=yann.morin.1998@free.fr \
--cc=asafka7@gmail.com \
--cc=buildroot@buildroot.org \
--cc=ju.o@free.fr \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox