public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
From: Thomas Perale via buildroot <buildroot@buildroot.org>
To: Shubham Chakraborty <chakrabortyshubham66@gmail.com>
Cc: Thomas Perale <thomas.perale@mind.be>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH] package/python3: remove nis and ossaudiodev modules
Date: Sat, 14 Mar 2026 08:53:22 +0100	[thread overview]
Message-ID: <20260314075322.14664-1-thomas.perale@mind.be> (raw)
In-Reply-To: <20260304074234.15910-1-chakrabortyshubham66@gmail.com>

In reply of:
> These modules were dropped in Python 3.13 as per PEP 594.
> The current version in Buildroot is 3.14.3.
> 
> - Remove the TODO and related config overrides in python3.mk.
> - Remove BR2_PACKAGE_PYTHON3_OSSAUDIODEV from Config.in.
> - Add BR2_PACKAGE_PYTHON3_OSSAUDIODEV to Config.in.legacy.
> 
> Signed-off-by: Shubham Chakraborty <chakrabortyshubham66@gmail.com>

Applied to 2025.11.x & 2026.02.x. Thanks

> ---
>  Config.in.legacy           |  6 ++++++
>  package/python3/Config.in  |  5 -----
>  package/python3/python3.mk | 12 ++----------
>  3 files changed, 8 insertions(+), 15 deletions(-)
> 
> diff --git a/Config.in.legacy b/Config.in.legacy
> index a2a7b06a6d..9a9f83eb36 100644
> --- a/Config.in.legacy
> +++ b/Config.in.legacy
> @@ -146,6 +146,12 @@ endif
>  
>  comment "Legacy options removed in 2026.02"
>  
> +config BR2_PACKAGE_PYTHON3_OSSAUDIODEV
> +	bool "python3 ossaudiodev module removed"
> +	select BR2_LEGACY
> +	help
> +	  The ossaudiodev module was removed in Python 3.13.
> +
>  config BR2_PACKAGE_QEMU_TARGET_CRIS
>  	bool "qemu cris support has been removed"
>  	select BR2_LEGACY
> diff --git a/package/python3/Config.in b/package/python3/Config.in
> index 423e5daabb..f9d3d3aaa2 100644
> --- a/package/python3/Config.in
> +++ b/package/python3/Config.in
> @@ -76,11 +76,6 @@ config BR2_PACKAGE_PYTHON3_DECIMAL
>  	help
>  	  decimal module for Python3.
>  
> -config BR2_PACKAGE_PYTHON3_OSSAUDIODEV
> -	bool "ossaudiodev module"
> -	help
> -	  ossaudiodev module for Python3.
> -
>  config BR2_PACKAGE_PYTHON3_READLINE
>  	bool "readline"
>  	select BR2_PACKAGE_READLINE
> diff --git a/package/python3/python3.mk b/package/python3/python3.mk
> index a240349d3e..07cba7c02d 100644
> --- a/package/python3/python3.mk
> +++ b/package/python3/python3.mk
> @@ -28,7 +28,6 @@ HOST_PYTHON3_CONF_OPTS += \
>  # Make sure that LD_LIBRARY_PATH overrides -rpath.
>  # This is needed because libpython may be installed at the same time that
>  # python is called.
> -# TODO: nis and ossaudiodev modules will be dropped in 3.13: https://peps.python.org/pep-0594/
>  HOST_PYTHON3_CONF_ENV += \
>  	LDFLAGS="$(HOST_LDFLAGS) -Wl,--enable-new-dtags" \
>  	py_cv_module_unicodedata=yes \
> @@ -38,9 +37,7 @@ HOST_PYTHON3_CONF_ENV += \
>  	py_cv_module__codecs_jp=n/a \
>  	py_cv_module__codecs_kr=n/a \
>  	py_cv_module__codecs_tw=n/a \
> -	py_cv_module__uuid=n/a \
> -	py_cv_module_nis=n/a \
> -	py_cv_module_ossaudiodev=n/a
> +	py_cv_module__uuid=n/a
>  
>  PYTHON3_DEPENDENCIES = host-python3 libffi
>  
> @@ -176,17 +173,12 @@ else
>  PYTHON3_CONF_ENV += py_cv_module__zstd=n/a
>  endif
>  
> -ifneq ($(BR2_PACKAGE_PYTHON3_OSSAUDIODEV),y)
> -PYTHON3_CONF_ENV += py_cv_module_ossaudiodev=n/a
> -endif
> -
>  PYTHON3_CONF_ENV += \
>  	ac_cv_have_long_long_format=yes \
>  	ac_cv_buggy_getaddrinfo=no \
>  	ac_cv_file__dev_ptmx=yes \
>  	ac_cv_file__dev_ptc=yes \
> -	ac_cv_working_tzset=yes \
> -	py_cv_module_nis=n/a
> +	ac_cv_working_tzset=yes
>  
>  # GCC is always compliant with IEEE754
>  ifeq ($(BR2_ENDIAN),"LITTLE")
> -- 
> 2.53.0
> 
> _______________________________________________
> 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

      parent reply	other threads:[~2026-03-14  7:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-04  7:42 [Buildroot] [PATCH] package/python3: remove nis and ossaudiodev modules Shubham Chakraborty
2026-03-07 15:57 ` Julien Olivain via buildroot
2026-03-14  7:53 ` Thomas Perale via buildroot [this message]

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=20260314075322.14664-1-thomas.perale@mind.be \
    --to=buildroot@buildroot.org \
    --cc=chakrabortyshubham66@gmail.com \
    --cc=thomas.perale@mind.be \
    /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