From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Adam Duskett <adam.duskett@amarulasolutions.com>
Cc: James Hilliard <james.hilliard1@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH v2 22/24] package/kmod: drop python support
Date: Thu, 9 Nov 2023 22:28:51 +0100 [thread overview]
Message-ID: <20231109212851.GC996011@scaer> (raw)
In-Reply-To: <20231105202555.359391-22-adam.duskett@amarulasolutions.com>
Adam, All,
On 2023-11-05 13:25 -0700, Adam Duskett spake thusly:
> The python bindings provided by kmod were last updated 9 years ago.
> - They are not compatible with Python 3.12.
> - No major distribution uses this option.
>
> Remove the option.
>
> Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> v1 -> v2: Add this patch to the series
>
> package/kmod/kmod.mk | 5 -----
> 1 file changed, 5 deletions(-)
>
> diff --git a/package/kmod/kmod.mk b/package/kmod/kmod.mk
> index dae84611fe..d83fb85a3e 100644
> --- a/package/kmod/kmod.mk
> +++ b/package/kmod/kmod.mk
> @@ -62,11 +62,6 @@ else
> KMOD_CONF_OPTS += --without-openssl
> endif
>
> -ifeq ($(BR2_PACKAGE_PYTHON3),y)
> -KMOD_DEPENDENCIES += python3
> -KMOD_CONF_OPTS += --enable-python
> -endif
> -
> ifeq ($(BR2_PACKAGE_KMOD_TOOLS),y)
>
> # add license info for kmod tools
> --
> 2.41.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| 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:[~2023-11-09 21:29 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-05 20:25 [Buildroot] [PATCH v2 01/24] package/python3: use upstream build system to disable berkeleydb module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 02/24] package/python3: use upstream build system to disable uuid module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 03/24] package/python3: use upstream build system to disable bzip2/zlib/xz modules Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 04/24] package/python3: use upstream build system to disable curses/readline modules Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 05/24] package/python3: use upstream build system to disable ssl module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 06/24] package/python3: use upstream build system to disable ossaudiodev module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 07/24] package/python3: use upstream build system to disable unicodedata module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 08/24] package/python3: use upstream build system to disable nis module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 09/24] package/python3: use upstream build system to disable decimal module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 10/24] package/python3: use upstream build system to disable CJK codecs Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 11/24] package/python3: use upstream build system to disable pyexpat module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 12/24] package/python3: use upstream build system to disable sqlite3 module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 13/24] package/python3: update patch and partly use upstream build system to disable tk module Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 14/24] package/python3: Remove infrastructure to disable the build of certain extensions Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 15/24] package/python-systemd: bump version to 235 Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 16/24] package/python-versioneer: new package Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 17/24] package/python-constantly: bump version to 23.10.4 Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 18/24] package/python-pyxb: Drop package Adam Duskett
2023-11-10 20:58 ` Arnout Vandecappelle via buildroot
2023-11-05 20:25 ` [Buildroot] [PATCH v2 19/24] package/python-pygame: drop package Adam Duskett
2023-11-09 21:52 ` Yann E. MORIN
2023-11-09 22:51 ` Adam Duskett
2023-11-10 7:19 ` Yann E. MORIN
2023-11-05 20:25 ` [Buildroot] [PATCH v2 20/24] package/python-crossbar: " Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 21/24] package/scons: bump version to 4.5.2 Adam Duskett
2023-11-05 20:25 ` [Buildroot] [PATCH v2 22/24] package/kmod: drop python support Adam Duskett
2023-11-09 21:28 ` Yann E. MORIN [this message]
2023-11-05 20:25 ` [Buildroot] [PATCH v2 23/24] package/python-kmod: new package Adam Duskett
2023-11-09 21:35 ` Yann E. MORIN
2023-11-05 20:25 ` [Buildroot] [PATCH v2 24/24] package/python3: bump version to 3.12.0 Adam Duskett
2023-11-05 21:15 ` [Buildroot] [PATCH v2 01/24] package/python3: use upstream build system to disable berkeleydb module Arnout Vandecappelle via buildroot
2023-11-06 20:20 ` Adam Duskett
2023-11-07 8:50 ` Arnout Vandecappelle via buildroot
2023-11-07 10:16 ` Yann E. MORIN
2023-11-07 15:43 ` Adam Duskett
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=20231109212851.GC996011@scaer \
--to=yann.morin.1998@free.fr \
--cc=adam.duskett@amarulasolutions.com \
--cc=buildroot@buildroot.org \
--cc=james.hilliard1@gmail.com \
--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