From: David Gibson <david@gibson.dropbear.id.au>
To: Eli Schwartz <eschwartz@gentoo.org>
Cc: devicetree-compiler@vger.kernel.org
Subject: Re: [PATCH] meson: port python bindings to build natively via meson and meson-python
Date: Wed, 19 Mar 2025 16:55:16 +1100 [thread overview]
Message-ID: <Z9pcREBBRThiamcB@zatzit> (raw)
In-Reply-To: <20250317004056.14564-1-eschwartz@gentoo.org>
[-- Attachment #1: Type: text/plain, Size: 10361 bytes --]
I find the setuptools / distutils stuff immensely confusing, so I
really like this idea. However, there are a few issues in this draft.
On Sun, Mar 16, 2025 at 08:40:56PM -0400, Eli Schwartz wrote:
> We get full build parallelism and fewer confusing ancient distutils
> paths. The python wheels build fully standalone, including linking
> libfdt as a static library.
First, this description assumes that you're at least broadly familiar
with the distinction between distutils and meson-python. As it
happens, I am, but the commit message is for posterity, so it would
really help to give a bit more background here.
> For convenience, when running pip install a meson option is passed that
> prevents building tools or installing headers/pkgconfig files.
> meson-python would otherwise include them in the wheel itself, in case
> they are needed, but this is essentially a bit useless so don't bother.
>
> Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
> ---
> MANIFEST.in | 12 ------
> libfdt/meson.build | 32 ++++++++-------
> meson.build | 3 +-
> meson_options.txt | 2 +
> pylibfdt/meson.build | 28 ++++++++-----
> pyproject.toml | 25 ++++++++++++
> setup.py | 97 --------------------------------------------
> 7 files changed, 64 insertions(+), 135 deletions(-)
> delete mode 100644 MANIFEST.in
> create mode 100644 pyproject.toml
> delete mode 100755 setup.py
>
> diff --git a/MANIFEST.in b/MANIFEST.in
> deleted file mode 100644
> index 904d124..0000000
> --- a/MANIFEST.in
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -# SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
> -
> -global-exclude *
> -include README.md
> -include GPL
> -include BSD-2-Clause
> -include setup.py
> -include pylibfdt/libfdt.i
> -include libfdt/libfdt.h
> -include libfdt/fdt.h
> -include libfdt/libfdt_env.h
> -include VERSION.txt
We can't just delete the MANIFEST.in and setup.py, for now, because
they're still needed for the Makefile build. I'm certainly
considering dropping support for make, but we're not there yet.
> diff --git a/libfdt/meson.build b/libfdt/meson.build
> index c2f4bd6..9c6ef54 100644
> --- a/libfdt/meson.build
> +++ b/libfdt/meson.build
> @@ -31,7 +31,7 @@ libfdt = library(
> version: meson.project_version(),
> link_args: link_args,
> link_depends: 'version.lds',
> - install: true,
> + install: get_option('default_library') != 'static' or not wheel_only,
The first clause doesn't quite make sense to me. Why would we not
install a static library?
> )
>
> libfdt_inc = include_directories('.')
> @@ -41,20 +41,22 @@ libfdt_dep = declare_dependency(
> link_with: libfdt,
> )
>
> -install_headers(
> - files(
> - 'fdt.h',
> - 'libfdt.h',
> - 'libfdt_env.h',
> +if not wheel_only
> + install_headers(
> + files(
> + 'fdt.h',
> + 'libfdt.h',
> + 'libfdt_env.h',
> + )
> )
> -)
>
> -pkgconfig = import('pkgconfig')
> + pkgconfig = import('pkgconfig')
>
> -pkgconfig.generate(
> - libraries: libfdt,
> - version: meson.project_version(),
> - filebase: 'libfdt',
> - name: 'libfdt',
> - description: 'Flat Device Tree manipulation',
> -)
> + pkgconfig.generate(
> + libraries: libfdt,
> + version: meson.project_version(),
> + filebase: 'libfdt',
> + name: 'libfdt',
> + description: 'Flat Device Tree manipulation',
> + )
> +endif
> diff --git a/meson.build b/meson.build
> index 3026f88..ed4a39d 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -43,6 +43,7 @@ py = import('python')
> py = py.find_installation(required: get_option('python'))
> swig = find_program('swig', required: get_option('python'))
> pylibfdt_enabled = not meson.is_cross_build() and py.found() and swig.found() ? true : false
> +wheel_only = get_option('wheel-only')
>
> version_gen_h = vcs_tag(
> command: ['git', 'describe', '--dirty=+'],
> @@ -59,7 +60,7 @@ util_dep = declare_dependency(
> dependencies: libfdt_dep
> )
>
> -if get_option('tools')
> +if get_option('tools') and not wheel_only
> flex = find_program('flex', required: true)
> bison = find_program('bison', required: true)
>
> diff --git a/meson_options.txt b/meson_options.txt
> index 62b31b3..a866b17 100644
> --- a/meson_options.txt
> +++ b/meson_options.txt
> @@ -10,3 +10,5 @@ option('python', type: 'feature', value: 'auto',
> description: 'Build pylibfdt Python library')
> option('tests', type: 'boolean', value: true,
> description: 'Build tests')
> +option('wheel-only', type: 'boolean', value: false,
> + description: 'building from meson-python')
> diff --git a/pylibfdt/meson.build b/pylibfdt/meson.build
> index 6157f8d..b13d802 100644
> --- a/pylibfdt/meson.build
> +++ b/pylibfdt/meson.build
> @@ -1,13 +1,21 @@
> -setup_py = find_program('../setup.py')
> -setup_py = [setup_py, '--quiet', '--top-builddir', meson.project_build_root()]
> -
> -pylibfdt = custom_target(
> - 'pylibfdt',
> +libfdt_c = custom_target(
> + 'swig',
> input: 'libfdt.i',
> - depends: libfdt,
> - output: '_libfdt.so',
> - command: [setup_py, 'build_ext'],
> - build_by_default: true,
> + output: ['libfdt.c', 'libfdt.py'],
> + install: true,
> + install_dir: [false, py.get_install_dir(pure: false)],
> + command: [swig, '-python', '-I'+meson.current_source_dir() / '../libfdt', '-o', '@OUTPUT0@', '@INPUT@']
> )
>
> -meson.add_install_script(setup_py, 'install', '--prefix=' + get_option('prefix'), '--root=$DESTDIR')
> +nowarn_gen = cc.get_supported_arguments(
> + '-Wno-cast-qual',
> + '-Wno-missing-prototypes',
> + '-Wno-redundant-decls',
> +)
> +pylibfdt = py.extension_module(
> + '_libfdt',
> + libfdt_c,
> + c_args: ['-DPY_SSIZE_T_CLEAN'] + nowarn_gen,
> + dependencies: [libfdt_dep, py.dependency()],
> + install: true,
> +)
> diff --git a/pyproject.toml b/pyproject.toml
> new file mode 100644
> index 0000000..0929bd0
> --- /dev/null
> +++ b/pyproject.toml
> @@ -0,0 +1,25 @@
> +[build-system]
> +build-backend = 'mesonpy'
> +requires = ['meson-python']
> +
> +[project]
> +name = 'libfdt'
> +authors = [
> + {name = 'Simon Glass', email = 'sjg@chromium.org'},
> +]
> +classifiers = [
> + 'Programming Language :: Python :: 3',
> + 'License :: OSI Approved :: BSD License',
> + 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
> + 'Operating System :: OS Independent',
> +]
> +description = 'Pthon binding for libfdt'
> +readme = 'README.md'
> +requires-python = '>=3.8'
> +dynamic = ['version']
> +
> +[project.urls]
> +'homepage' = 'https://git.kernel.org/pub/scm/utils/dtc/dtc.git'
> +
> +[tool.meson-python.args]
> +'setup' = ['-Ddefault_library=static', '-Dwheel-only=true']
Shouldn't the python library use the shared library, at least by
default?
> diff --git a/setup.py b/setup.py
> deleted file mode 100755
> index 52844ce..0000000
> --- a/setup.py
> +++ /dev/null
> @@ -1,97 +0,0 @@
> -#!/usr/bin/env python3
> -# SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
> -
> -"""
> -setup.py file for SWIG libfdt
> -Copyright (C) 2017 Google, Inc.
> -Written by Simon Glass <sjg@chromium.org>
> -"""
> -
> -import os
> -import sys
> -
> -from setuptools import setup, Extension
> -from setuptools.command.build_py import build_py as _build_py
> -
> -
> -def scan_for_info(srcdir):
> - """Scan for the version and long_description fields
> -
> - Args:
> - srcdir (str): Source-directory path
> -
> - Returns: tuple
> - str: Full description (contents of README.md)
> - str: Version string
> - """
> - with open(os.path.join(srcdir, "VERSION.txt"), "r", encoding='utf-8') as fh:
> - version = fh.readline().strip()
> -
> - with open(os.path.join(srcdir, "README.md"), "r", encoding='utf-8') as fh:
> - long_description = fh.read()
> -
> - return version, long_description
> -
> -
> -def get_top_builddir(srcdir):
> - """Figure out the top-level directory containing the source code
> -
> - Args:
> - srcdir (str): Source-directory path
> -
> - Returns:
> - str: Directory to build in
> - """
> - if '--top-builddir' in sys.argv:
> - index = sys.argv.index('--top-builddir')
> - sys.argv.pop(index)
> - return sys.argv.pop(index)
> - return srcdir
> -
> -
> -class BuildPy(_build_py):
> - """Small class to run the build_ext command"""
> - def run(self):
> - self.run_command("build_ext")
> - return super().run()
> -
> -
> -srcdir = os.path.dirname(__file__)
> -version, long_description = scan_for_info(srcdir)
> -
> -libfdt_module = Extension(
> - '_libfdt',
> - sources=[os.path.join(srcdir, 'pylibfdt/libfdt.i')],
> - define_macros=[('PY_SSIZE_T_CLEAN', None)],
> - include_dirs=[os.path.join(srcdir, 'libfdt')],
> - libraries=['fdt'],
> - library_dirs=[os.path.join(get_top_builddir(srcdir), 'libfdt')],
> - swig_opts=['-I' + os.path.join(srcdir, 'libfdt')],
> -)
> -
> -
> -setup(
> - name='libfdt',
> - version=version,
> - cmdclass = {'build_py' : BuildPy},
> - author='Simon Glass',
> - author_email='sjg@chromium.org',
> - description='Python binding for libfdt',
> - ext_modules=[libfdt_module],
> - package_dir={'': os.path.join(srcdir, 'pylibfdt')},
> - py_modules=['libfdt'],
> - python_requires=">=3.8",
> -
> - long_description=long_description,
> - long_description_content_type="text/plain",
> - url="https://git.kernel.org/pub/scm/utils/dtc/dtc.git",
> - license="BSD",
> - license_files=["GPL", "BSD-2-Clause"],
> -
> - classifiers=[
> - "Programming Language :: Python :: 3",
> - "License :: OSI Approved :: BSD License",
> - "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
> - "Operating System :: OS Independent",
> - ],
> -)
--
David Gibson (he or they) | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you, not the other way
| around.
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2025-03-19 5:55 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-17 0:40 [PATCH] meson: port python bindings to build natively via meson and meson-python Eli Schwartz
2025-03-18 14:15 ` Rob Herring
2025-03-18 14:36 ` Eli Schwartz
2025-03-18 17:02 ` Rob Herring
2025-03-19 6:51 ` Eli Schwartz
2025-03-19 5:55 ` David Gibson [this message]
2025-03-19 6:30 ` Eli Schwartz
2025-04-25 7:56 ` David Gibson
2025-04-29 1:34 ` Eli Schwartz
2025-04-29 1:41 ` [PATCH v2 0/2] port python bindings to native Meson Eli Schwartz
2025-04-29 1:41 ` [PATCH v2 1/2] Makefile: deprecate in favor of Meson Eli Schwartz
2025-04-30 14:56 ` David Gibson
2025-04-30 15:10 ` Eli Schwartz
2025-04-30 15:20 ` David Gibson
2025-04-30 15:25 ` [PATCH v3 0/2] port python bindings to native Meson Eli Schwartz
2025-04-30 15:25 ` [PATCH v3 1/2] Makefile: deprecate in favor of Meson Eli Schwartz
2025-04-30 15:25 ` [PATCH v3 2/2] meson: port python bindings to build natively via meson and meson-python Eli Schwartz
2025-05-01 12:33 ` [PATCH v3 0/2] port python bindings to native Meson David Gibson
2025-04-29 1:41 ` [PATCH v2 2/2] meson: port python bindings to build natively via meson and meson-python Eli Schwartz
2025-04-30 14:59 ` David Gibson
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=Z9pcREBBRThiamcB@zatzit \
--to=david@gibson.dropbear.id.au \
--cc=devicetree-compiler@vger.kernel.org \
--cc=eschwartz@gentoo.org \
/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;
as well as URLs for NNTP newsgroup(s).