On Tue, Feb 11, 2025 at 9:29 AM Peter Robinson <pbrobin...@gmail.com> wrote:
>
> Hi python folks,
>
> I have a package [1] (you can toggle the with_python var at the top) that now 
> builds the python bindings in an isolated venv+pip environment, and hence 
> fails, [2].
>
> It seems, at least in the way upstream currently configures it, you can't 
> seem to use the distro provided python deps to provide the requirements for 
> building the bindings and it tries to retrieve them from pypi which obviously 
> fails in the constrained environment of koji. Is there a way to tell venv+pip 
> to use the distro packaging?
>
> I had a quick search in the packaging docs but nothing looked particularly 
> relevant, does anyone have any suggestions as the best way to use distro 
> packages for this?
>

From what I can see in the upstream git[1], it uses pyproject.toml to
define how to build it, so it might work with the %pyproject_wheel and
%pyproject_install macros?

e.g. in %build phase

pushd bindings/python
<export cflags to allow finding the build base libraries>
%pyproject_wheel
popd

[1]: 
https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python


-- 
真実はいつも一つ!/ Always, there's only one truth!
-- 
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to