Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Seiderer via buildroot <buildroot@buildroot.org>
To: Peter Seiderer via buildroot <buildroot@buildroot.org>
Cc: James Hilliard <james.hilliard1@gmail.com>,
	Peter Seiderer <ps.report@gmx.net>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Subject: Re: [Buildroot] pkg-meson.mk: support for the host python packages
Date: Mon, 22 Apr 2024 15:26:17 +0200	[thread overview]
Message-ID: <20240422152617.7c201eb0@gmx.net> (raw)
In-Reply-To: <20240422151155.28acd5df@gmx.net>

On Mon, 22 Apr 2024 15:11:55 +0200, Peter Seiderer via buildroot <buildroot@buildroot.org> wrote:

> On Mon, 22 Apr 2024 14:29:42 +0200, Yegor Yefremov <yegorslists@googlemail.com> wrote:
> 
> > On Mon, Apr 22, 2024 at 2:28 PM Yegor Yefremov
> > <yegorslists@googlemail.com> wrote:  
> > >
> > > On Mon, Apr 22, 2024 at 2:19 PM Peter Seiderer <ps.report@gmx.net> wrote:    
> > > >
> > > > On Mon, 22 Apr 2024 12:46:04 +0200, Yegor Yefremov <yegorslists@googlemail.com> wrote:
> > > >    
> > > > > libglib2 2.80.0 requires host-python-packaging to build the library [1].
> > > > >
> > > > > What is the best way to tell meson/ninja where to look for our host
> > > > > python packages?
> > > > >
> > > > > [1] https://gitlab.gnome.org/GNOME/glib/-/commit/fc6f06127cff9fe3e464b5be8c92ea08a679b620    
> > > >
> > > > diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
> > > > index c06ded2a5b..819282910a 100644
> > > > --- a/package/libglib2/libglib2.mk
> > > > +++ b/package/libglib2/libglib2.mk
> > > > @@ -34,9 +34,11 @@ HOST_LIBGLIB2_CONF_OPTS = \
> > > >
> > > >  LIBGLIB2_DEPENDENCIES = \
> > > >         host-pkgconf host-libglib2 \
> > > > +       host-python3 host-python-packaging \
> > > >         libffi pcre2 zlib $(TARGET_NLS_DEPENDENCIES)
> > > >
> > > >  HOST_LIBGLIB2_DEPENDENCIES = \
> > > > +       host-python3 host-python-packaging \
> > > >         host-gettext \
> > > >         host-libffi \
> > > >         host-pcre2 \    
> > >
> > > This just builds the package but meson won't look in
> > > host/lib/python3.11/site-packages/ for regex.    
> 
> Sorry, works for me (and additional removed the local python311-packaging on the
> build system, but works otherwise too):
> 
> 	$ rm -rf build/host-libglib2-2.80.0 && rm -rf build/libglib2-2.80.0 && strace -fo out.log make libglib2
> 
> 	$ grep packaging build/libglib2-2.80.0/build/meson-logs/meson-log.txt 
> 	Program python3 (packaging) found: YES (<my_local_build_path>/host/bin/python3) modules: packaging
> 
> 	$ grep packaging out.log
> 	[...]
> 	21929 newfstatat(AT_FDCWD, "<my_local_build_path>/host/lib/python3.11/site-packages/packaging/__init__.py", {st_mode=S_IFREG|0644, st_size=496, ...}, 0) = 0
> 	21929 newfstatat(AT_FDCWD, "<my_local_build_path>/host/lib/python3.11/site-packages/packaging/__init__.py", {st_mode=S_IFREG|0644, st_size=496, ...}, 0) = 0
> 	21929 openat(AT_FDCWD, "<my_local_build_path>/host/lib/python3.11/site-packages/packaging/__pycache__/__init__.cpython-311.pyc", O_RDONLY|O_CLOEXEC) = 3

And host-python-packaging is already an (indirect) dependency of
host-libglib2/libglib2 (make graph-depends):

	libglib2 --> host-libglib2 --> host-meson --> host-python-setuptools -->
		host-python-wheel --> host-python-pypa-build --> host-python-packaging

Regards,
Peter


> 
> Regards,
> Peter
> 
> > 
> > s/regex/package
> >   
> > >
> > > Should one just add a PYTHONPATH pointing to
> > > host/lib/python3.11/site-packages before invoking meson/ninja as we do
> > > with PYTHONNOUSERSITE?
> > >
> > > Yegor    
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2024-04-22 13:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-22 10:46 [Buildroot] pkg-meson.mk: support for the host python packages Yegor Yefremov
2024-04-22 12:14 ` Peter Seiderer via buildroot
2024-04-22 12:28   ` Yegor Yefremov
2024-04-22 12:29     ` Yegor Yefremov
2024-04-22 13:11       ` Peter Seiderer via buildroot
2024-04-22 13:26         ` Peter Seiderer via buildroot [this message]
2024-04-22 14:22           ` Yegor Yefremov

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=20240422152617.7c201eb0@gmx.net \
    --to=buildroot@buildroot.org \
    --cc=james.hilliard1@gmail.com \
    --cc=ps.report@gmx.net \
    --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