From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: James Hilliard <james.hilliard1@gmail.com>
Cc: Asaf Kahlon <asafka7@gmail.com>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 12/20 v2] package/python-bcrypt: use post-process opts to pass Cargo manifest path
Date: Sat, 8 Jun 2024 10:49:41 +0200 [thread overview]
Message-ID: <ZmQbJSzd1F1sNSKc@landeda> (raw)
In-Reply-To: <CADvTj4rcjwuSj_A-OQH7UCDu3u1OoUn1qA-dXaeYXJVaYiPOPA@mail.gmail.com>
James, All,
On 2024-06-07 16:04 -0600, James Hilliard spake thusly:
> On Fri, Jun 7, 2024 at 11:06 AM Yann E. MORIN <yann.morin.1998@free.fr> wrote:
[--SNIP--]
> > diff --git a/package/python-bcrypt/python-bcrypt.mk b/package/python-bcrypt/python-bcrypt.mk
> > index f3137401d7..f09c67441e 100644
> > --- a/package/python-bcrypt/python-bcrypt.mk
> > +++ b/package/python-bcrypt/python-bcrypt.mk
> > @@ -19,9 +19,8 @@ PYTHON_BCRYPT_ENV = \
> > PYO3_CROSS_LIB_DIR="$(STAGING_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)"
> > # We need to vendor the Cargo crates at download time
> > PYTHON_BCRYPT_DOWNLOAD_POST_PROCESS = cargo
> > +PYTHON_BCRYPT_DOWNLOAD_POST_PROCESS_OPTS = -m src/_bcrypt/Cargo.toml
> > PYTHON_BCRYPT_DOWNLOAD_DEPENDENCIES = host-rustc
> > -PYTHON_BCRYPT_DL_ENV = \
> > - $(PKG_CARGO_ENV) \
> > - BR_CARGO_MANIFEST_PATH=src/_bcrypt/Cargo.toml
> > +PYTHON_BCRYPT_DL_ENV = $(PKG_CARGO_ENV)
>
> There's a pending patch which converts this package to use setuptools-rust
> infrastructure:
> https://patchwork.ozlabs.org/project/buildroot/patch/20240602213333.2597981-1-james.hilliard1@gmail.com/
Yep, I've already seen it, but it is a good test-case for my changes as
well, so I did not incorporate it in my series. Thanks for the heads-up!
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| 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 prev parent reply other threads:[~2024-06-08 8:49 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-07 17:05 [Buildroot] [PATCH 00/20 v2] support/download: allow downloading unlocked cargo packages (branch yem/cargo-unchained) Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 01/20 v2] package/pkg-download: symplify calling parameters Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 02/20 v2] package/pkg-generic: split long, unreadable DOWNLOAD line Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 03/20 v2] utils/check-package: add option to run the test-suite Yann E. MORIN
2024-07-14 7:37 ` Arnout Vandecappelle via buildroot
2024-06-07 17:05 ` [Buildroot] [PATCH 04/20 v2] utils/checkpackagelib: instruct shellcheck to follow included files Yann E. MORIN
2024-07-14 7:41 ` Arnout Vandecappelle via buildroot
2024-06-07 17:05 ` [Buildroot] [PATCH 05/20 v2] support/download/dl-wrapper: fix shellcheck errors Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 06/20 v2] support/download/cargo-post-process: fix shellcheck Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 07/20 v2] support/download: move tracing functions to helpers Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 08/20 v2] support/download: pass post-process options to post-process helper Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 09/20 v2] support/download: accept manifest path as a post-process option Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 10/20 v2] pakcage/pkg-cargo: use post-process opts to pass manifest path Yann E. MORIN
2024-07-14 8:29 ` Arnout Vandecappelle via buildroot
2024-06-07 17:05 ` [Buildroot] [PATCH 11/20 v2] package/pkg-python: use post-process opts to pass Cargo " Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 12/20 v2] package/python-bcrypt: " Yann E. MORIN
2024-06-07 22:04 ` James Hilliard
2024-06-08 8:49 ` Yann E. MORIN [this message]
2024-07-14 8:32 ` Arnout Vandecappelle via buildroot
2024-06-07 17:05 ` [Buildroot] [PATCH 13/20 v2] support/download: no longer support BR_CARGO_MANIFEST_PATH in cargo post-process Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 14/20 v2] docs/manual: rephrase end of vendoring section Yann E. MORIN
2024-07-14 8:45 ` Arnout Vandecappelle via buildroot
2024-06-07 17:05 ` [Buildroot] [PATCH 15/20 v2] package/pkg-cargo: add support for unlocked packages Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 16/20 v2] utils/checkpackagelib: add test for default _CARGO_LOCKED Yann E. MORIN
2024-06-07 17:05 ` [Buildroot] [PATCH 17/20 v2] RFC: package/anvil: new package Yann E. MORIN
2024-07-14 9:01 ` Arnout Vandecappelle via buildroot
2024-06-07 17:05 ` [Buildroot] [PATCH 18/20 v2] package/pkg-utils: accept pacakge-specific archive format version Yann E. MORIN
2024-06-07 17:06 ` [Buildroot] [PATCH 19/20 v2] package/pkg-cargo: allow unlocked packages to provide local Cargo.lock Yann E. MORIN
2024-06-07 19:49 ` Yann E. MORIN
2024-07-14 9:11 ` Arnout Vandecappelle via buildroot
2024-06-07 17:06 ` [Buildroot] [PATCH 20/20 v2] RFC: package/anvil: add " Yann E. MORIN
2024-07-14 9:13 ` Arnout Vandecappelle via buildroot
2024-07-14 8:59 ` [Buildroot] [PATCH 00/20 v2] support/download: allow downloading unlocked cargo packages (branch yem/cargo-unchained) Arnout Vandecappelle via buildroot
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=ZmQbJSzd1F1sNSKc@landeda \
--to=yann.morin.1998@free.fr \
--cc=asafka7@gmail.com \
--cc=buildroot@buildroot.org \
--cc=james.hilliard1@gmail.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