* [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools
@ 2023-08-05 17:37 Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 02/20] package/python-backcall: " Bernd Kuhls
` (19 more replies)
0 siblings, 20 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-aiologstash/python-aiologstash.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-aiologstash/python-aiologstash.mk b/package/python-aiologstash/python-aiologstash.mk
index be1c40b714..de0ed820a0 100644
--- a/package/python-aiologstash/python-aiologstash.mk
+++ b/package/python-aiologstash/python-aiologstash.mk
@@ -7,7 +7,7 @@
PYTHON_AIOLOGSTASH_VERSION = 2.0.0
PYTHON_AIOLOGSTASH_SOURCE = aiologstash-$(PYTHON_AIOLOGSTASH_VERSION).tar.gz
PYTHON_AIOLOGSTASH_SITE = https://files.pythonhosted.org/packages/1c/dc/382861d5d25ccc976d02118922598fc4547f74f3287793e270ed614d8176
-PYTHON_AIOLOGSTASH_SETUP_TYPE = distutils
+PYTHON_AIOLOGSTASH_SETUP_TYPE = setuptools
PYTHON_AIOLOGSTASH_LICENSE = MIT
PYTHON_AIOLOGSTASH_LICENSE_FILES = LICENSE
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 02/20] package/python-backcall: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 03/20] package/python-crc16: " Bernd Kuhls
` (18 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-backcall/python-backcall.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-backcall/python-backcall.mk b/package/python-backcall/python-backcall.mk
index 2ead3421a8..ea9ffb863c 100644
--- a/package/python-backcall/python-backcall.mk
+++ b/package/python-backcall/python-backcall.mk
@@ -7,7 +7,7 @@
PYTHON_BACKCALL_VERSION = 0.2.0
PYTHON_BACKCALL_SOURCE = backcall-$(PYTHON_BACKCALL_VERSION).tar.gz
PYTHON_BACKCALL_SITE = https://files.pythonhosted.org/packages/a2/40/764a663805d84deee23043e1426a9175567db89c8b3287b5c2ad9f71aa93
-PYTHON_BACKCALL_SETUP_TYPE = distutils
+PYTHON_BACKCALL_SETUP_TYPE = setuptools
PYTHON_BACKCALL_LICENSE = BSD-3-Clause
PYTHON_BACKCALL_LICENSE_FILES = LICENSE
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 03/20] package/python-crc16: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 02/20] package/python-backcall: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 04/20] package/python-crcmod: " Bernd Kuhls
` (17 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-crc16/python-crc16.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-crc16/python-crc16.mk b/package/python-crc16/python-crc16.mk
index 9809f1ed84..86e6f2ecf2 100644
--- a/package/python-crc16/python-crc16.mk
+++ b/package/python-crc16/python-crc16.mk
@@ -8,6 +8,6 @@ PYTHON_CRC16_VERSION = 0.1.1
PYTHON_CRC16_SITE = $(call github,gennady,pycrc16,v$(PYTHON_CRC16_VERSION))
PYTHON_CRC16_LICENSE = LGPL-3.0+
PYTHON_CRC16_LICENSE_FILES = COPYING.txt
-PYTHON_CRC16_SETUP_TYPE = distutils
+PYTHON_CRC16_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 04/20] package/python-crcmod: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 02/20] package/python-backcall: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 03/20] package/python-crc16: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 05/20] package/python-dicttoxml: " Bernd Kuhls
` (16 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-crcmod/python-crcmod.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-crcmod/python-crcmod.mk b/package/python-crcmod/python-crcmod.mk
index 1aab7f5084..c97f8808c1 100644
--- a/package/python-crcmod/python-crcmod.mk
+++ b/package/python-crcmod/python-crcmod.mk
@@ -7,7 +7,7 @@
PYTHON_CRCMOD_VERSION = 1.7
PYTHON_CRCMOD_SOURCE = crcmod-$(PYTHON_CRCMOD_VERSION).tar.gz
PYTHON_CRCMOD_SITE = https://pypi.python.org/packages/6b/b0/e595ce2a2527e169c3bcd6c33d2473c1918e0b7f6826a043ca1245dd4e5b
-PYTHON_CRCMOD_SETUP_TYPE = distutils
+PYTHON_CRCMOD_SETUP_TYPE = setuptools
PYTHON_CRCMOD_LICENSE = MIT
PYTHON_CRCMOD_LICENSE_FILES = LICENSE
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 05/20] package/python-dicttoxml: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (2 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 04/20] package/python-crcmod: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 06/20] package/python-hwdata: " Bernd Kuhls
` (15 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-dicttoxml/python-dicttoxml.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-dicttoxml/python-dicttoxml.mk b/package/python-dicttoxml/python-dicttoxml.mk
index c26c16b72a..eb0049fd03 100644
--- a/package/python-dicttoxml/python-dicttoxml.mk
+++ b/package/python-dicttoxml/python-dicttoxml.mk
@@ -7,7 +7,7 @@
PYTHON_DICTTOXML_VERSION = 1.7.16
PYTHON_DICTTOXML_SOURCE = dicttoxml-$(PYTHON_DICTTOXML_VERSION).tar.gz
PYTHON_DICTTOXML_SITE = https://files.pythonhosted.org/packages/ee/c9/3132427f9e64d572688e6a1cbe3d542d1a03f676b81fb600f3d1fd7d2ec5
-PYTHON_DICTTOXML_SETUP_TYPE = distutils
+PYTHON_DICTTOXML_SETUP_TYPE = setuptools
PYTHON_DICTTOXML_LICENSE = GPL-2.0
PYTHON_DICTTOXML_LICENSE_FILES = LICENCE.txt
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 06/20] package/python-hwdata: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (3 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 05/20] package/python-dicttoxml: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 07/20] package/python-iowait: " Bernd Kuhls
` (14 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-hwdata/python-hwdata.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-hwdata/python-hwdata.mk b/package/python-hwdata/python-hwdata.mk
index 8eeec6efa8..5e968ce847 100644
--- a/package/python-hwdata/python-hwdata.mk
+++ b/package/python-hwdata/python-hwdata.mk
@@ -7,7 +7,7 @@
PYTHON_HWDATA_VERSION = 2.3.7
PYTHON_HWDATA_SOURCE = hwdata-$(PYTHON_HWDATA_VERSION).tar.gz
PYTHON_HWDATA_SITE = https://files.pythonhosted.org/packages/15/26/f5bc1b42129fbcbd1c99c29714af1685fc89e2cf37680a9930d4fcac1808
-PYTHON_HWDATA_SETUP_TYPE = distutils
+PYTHON_HWDATA_SETUP_TYPE = setuptools
PYTHON_HWDATA_LICENSE = GPL-2.0+
PYTHON_HWDATA_LICENSE_FILES = LICENSE
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 07/20] package/python-iowait: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (4 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 06/20] package/python-hwdata: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 08/20] package/python-ipy: " Bernd Kuhls
` (13 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-iowait/python-iowait.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-iowait/python-iowait.mk b/package/python-iowait/python-iowait.mk
index e327053e8e..028001d7f3 100644
--- a/package/python-iowait/python-iowait.mk
+++ b/package/python-iowait/python-iowait.mk
@@ -7,7 +7,7 @@
PYTHON_IOWAIT_VERSION = 0.2
PYTHON_IOWAIT_SOURCE = iowait-$(PYTHON_IOWAIT_VERSION).tar.gz
PYTHON_IOWAIT_SITE = https://pypi.python.org/packages/65/30/e953673fe9619938e9c74408401cf865f37716da89f61f6e5d9328c0f71e
-PYTHON_IOWAIT_SETUP_TYPE = distutils
+PYTHON_IOWAIT_SETUP_TYPE = setuptools
PYTHON_IOWAIT_LICENSE = LGPL-3.0+
PYTHON_IOWAIT_LICENSE_FILES = COPYING.LESSER
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 08/20] package/python-ipy: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (5 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 07/20] package/python-iowait: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 09/20] package/python-ipython-genutils: " Bernd Kuhls
` (12 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-ipy/python-ipy.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-ipy/python-ipy.mk b/package/python-ipy/python-ipy.mk
index 2a01daf4ca..ec03adcb60 100644
--- a/package/python-ipy/python-ipy.mk
+++ b/package/python-ipy/python-ipy.mk
@@ -9,6 +9,6 @@ PYTHON_IPY_SOURCE = IPy-$(PYTHON_IPY_VERSION).tar.gz
PYTHON_IPY_SITE = https://files.pythonhosted.org/packages/64/a4/9c0d88d95666ff1571d7baec6c5e26abc08051801feb6e6ddf40f6027e22
PYTHON_IPY_LICENSE = BSD-3-Clause
PYTHON_IPY_LICENSE_FILES = COPYING
-PYTHON_IPY_SETUP_TYPE = distutils
+PYTHON_IPY_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 09/20] package/python-ipython-genutils: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (6 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 08/20] package/python-ipy: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 10/20] package/python-logstash: " Bernd Kuhls
` (11 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-ipython-genutils/python-ipython-genutils.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-ipython-genutils/python-ipython-genutils.mk b/package/python-ipython-genutils/python-ipython-genutils.mk
index 4e8cc287fe..08a0b8ba9a 100644
--- a/package/python-ipython-genutils/python-ipython-genutils.mk
+++ b/package/python-ipython-genutils/python-ipython-genutils.mk
@@ -9,6 +9,6 @@ PYTHON_IPYTHON_GENUTILS_SOURCE = ipython_genutils-$(PYTHON_IPYTHON_GENUTILS_VERS
PYTHON_IPYTHON_GENUTILS_SITE = https://pypi.python.org/packages/e8/69/fbeffffc05236398ebfcfb512b6d2511c622871dca1746361006da310399
PYTHON_IPYTHON_GENUTILS_LICENSE = BSD-3-Clause
PYTHON_IPYTHON_GENUTILS_LICENSE_FILES = COPYING.md
-PYTHON_IPYTHON_GENUTILS_SETUP_TYPE = distutils
+PYTHON_IPYTHON_GENUTILS_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 10/20] package/python-logstash: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (7 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 09/20] package/python-ipython-genutils: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 11/20] package/python-mwscrape: " Bernd Kuhls
` (10 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-logstash/python-logstash.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-logstash/python-logstash.mk b/package/python-logstash/python-logstash.mk
index a78b6e6590..6cdbe2009b 100644
--- a/package/python-logstash/python-logstash.mk
+++ b/package/python-logstash/python-logstash.mk
@@ -6,7 +6,7 @@
PYTHON_LOGSTASH_VERSION = 0.4.8
PYTHON_LOGSTASH_SITE = https://files.pythonhosted.org/packages/f7/3b/c3a957bbdd23859f07905fc3d1adfe89957217a347478c58409f0315cf1d
-PYTHON_LOGSTASH_SETUP_TYPE = distutils
+PYTHON_LOGSTASH_SETUP_TYPE = setuptools
PYTHON_LOGSTASH_LICENSE = MIT
PYTHON_LOGSTASH_LICENSE_FILES = LICENSE
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 11/20] package/python-mwscrape: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (8 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 10/20] package/python-logstash: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 12/20] package/python-mwscrape2slob: " Bernd Kuhls
` (9 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-mwscrape/python-mwscrape.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-mwscrape/python-mwscrape.mk b/package/python-mwscrape/python-mwscrape.mk
index 3ffe9d6880..8b6c718c56 100644
--- a/package/python-mwscrape/python-mwscrape.mk
+++ b/package/python-mwscrape/python-mwscrape.mk
@@ -8,6 +8,6 @@ PYTHON_MWSCRAPE_VERSION = 568ccbe6e12dd6391277df02adf724ba0e5f9197
PYTHON_MWSCRAPE_SITE = $(call github,itkach,mwscrape,$(PYTHON_MWSCRAPE_VERSION))
PYTHON_MWSCRAPE_LICENSE = MPL-2.0
PYTHON_MWSCRAPE_LICENSE_FILES = LICENSE.txt
-PYTHON_MWSCRAPE_SETUP_TYPE = distutils
+PYTHON_MWSCRAPE_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 12/20] package/python-mwscrape2slob: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (9 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 11/20] package/python-mwscrape: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 13/20] package/python-pexpect: " Bernd Kuhls
` (8 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-mwscrape2slob/python-mwscrape2slob.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-mwscrape2slob/python-mwscrape2slob.mk b/package/python-mwscrape2slob/python-mwscrape2slob.mk
index cd8ae35234..a99005ba7c 100644
--- a/package/python-mwscrape2slob/python-mwscrape2slob.mk
+++ b/package/python-mwscrape2slob/python-mwscrape2slob.mk
@@ -7,6 +7,6 @@
PYTHON_MWSCRAPE2SLOB_VERSION = e01d3e92f0a372ebd0f57390e437a28f9d3c0438
PYTHON_MWSCRAPE2SLOB_SITE = $(call github,itkach,mwscrape2slob,$(PYTHON_MWSCRAPE2SLOB_VERSION))
PYTHON_MWSCRAPE2SLOB_LICENSE = GPL-3.0, Apache-2.0 (MathJax), GPL (MediaWiki monobook style sheet)
-PYTHON_MWSCRAPE2SLOB_SETUP_TYPE = distutils
+PYTHON_MWSCRAPE2SLOB_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 13/20] package/python-pexpect: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (10 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 12/20] package/python-mwscrape2slob: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 14/20] package/python-ptyprocess: " Bernd Kuhls
` (7 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-pexpect/python-pexpect.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-pexpect/python-pexpect.mk b/package/python-pexpect/python-pexpect.mk
index 3efda26825..d230b11338 100644
--- a/package/python-pexpect/python-pexpect.mk
+++ b/package/python-pexpect/python-pexpect.mk
@@ -9,6 +9,6 @@ PYTHON_PEXPECT_SOURCE = pexpect-$(PYTHON_PEXPECT_VERSION).tar.gz
PYTHON_PEXPECT_SITE = https://files.pythonhosted.org/packages/e5/9b/ff402e0e930e70467a7178abb7c128709a30dfb22d8777c043e501bc1b10
PYTHON_PEXPECT_LICENSE = ISC
PYTHON_PEXPECT_LICENSE_FILES = LICENSE
-PYTHON_PEXPECT_SETUP_TYPE = distutils
+PYTHON_PEXPECT_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 14/20] package/python-ptyprocess: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (11 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 13/20] package/python-pexpect: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 15/20] package/python-pyaes: " Bernd Kuhls
` (6 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-ptyprocess/python-ptyprocess.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-ptyprocess/python-ptyprocess.mk b/package/python-ptyprocess/python-ptyprocess.mk
index d077fbb779..5266019562 100644
--- a/package/python-ptyprocess/python-ptyprocess.mk
+++ b/package/python-ptyprocess/python-ptyprocess.mk
@@ -9,6 +9,6 @@ PYTHON_PTYPROCESS_SITE = https://files.pythonhosted.org/packages/20/e5/16ff212c1
PYTHON_PTYPROCESS_SOURCE = ptyprocess-$(PYTHON_PTYPROCESS_VERSION).tar.gz
PYTHON_PTYPROCESS_LICENSE = ISC
PYTHON_PTYPROCESS_LICENSE_FILES = LICENSE
-PYTHON_PTYPROCESS_SETUP_TYPE = distutils
+PYTHON_PTYPROCESS_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 15/20] package/python-pyaes: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (12 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 14/20] package/python-ptyprocess: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 16/20] package/python-pyalsa: " Bernd Kuhls
` (5 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-pyaes/python-pyaes.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-pyaes/python-pyaes.mk b/package/python-pyaes/python-pyaes.mk
index a738d3c76a..77ec100058 100644
--- a/package/python-pyaes/python-pyaes.mk
+++ b/package/python-pyaes/python-pyaes.mk
@@ -7,7 +7,7 @@
PYTHON_PYAES_VERSION = 1.6.1
PYTHON_PYAES_SOURCE = pyaes-$(PYTHON_PYAES_VERSION).tar.gz
PYTHON_PYAES_SITE = https://files.pythonhosted.org/packages/44/66/2c17bae31c906613795711fc78045c285048168919ace2220daa372c7d72
-PYTHON_PYAES_SETUP_TYPE = distutils
+PYTHON_PYAES_SETUP_TYPE = setuptools
PYTHON_PYAES_LICENSE = MIT
PYTHON_PYAES_LICENSE_FILES = LICENSE.txt
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 16/20] package/python-pyalsa: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (13 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 15/20] package/python-pyaes: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 17/20] package/python-pyratemp: " Bernd Kuhls
` (4 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-pyalsa/python-pyalsa.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-pyalsa/python-pyalsa.mk b/package/python-pyalsa/python-pyalsa.mk
index cc5e2ec9a0..1661fe47b4 100644
--- a/package/python-pyalsa/python-pyalsa.mk
+++ b/package/python-pyalsa/python-pyalsa.mk
@@ -7,7 +7,7 @@
PYTHON_PYALSA_VERSION = 1.2.7
PYTHON_PYALSA_SOURCE = pyalsa-$(PYTHON_PYALSA_VERSION).tar.bz2
PYTHON_PYALSA_SITE = https://www.alsa-project.org/files/pub/pyalsa
-PYTHON_PYALSA_SETUP_TYPE = distutils
+PYTHON_PYALSA_SETUP_TYPE = setuptools
PYTHON_PYALSA_LICENSE = LGPL-2.1+
PYTHON_PYALSA_DEPENDENCIES = alsa-lib
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 17/20] package/python-pyratemp: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (14 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 16/20] package/python-pyalsa: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 18/20] package/python-sdnotify: " Bernd Kuhls
` (3 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-pyratemp/python-pyratemp.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-pyratemp/python-pyratemp.mk b/package/python-pyratemp/python-pyratemp.mk
index 055fb3049c..6429729a7b 100644
--- a/package/python-pyratemp/python-pyratemp.mk
+++ b/package/python-pyratemp/python-pyratemp.mk
@@ -9,6 +9,6 @@ PYTHON_PYRATEMP_SOURCE = pyratemp-$(PYTHON_PYRATEMP_VERSION).tgz
PYTHON_PYRATEMP_SITE = https://pypi.python.org/packages/source/p/pyratemp
PYTHON_PYRATEMP_LICENSE = MIT
PYTHON_PYRATEMP_LICENSE_FILES = LICENSE
-PYTHON_PYRATEMP_SETUP_TYPE = distutils
+PYTHON_PYRATEMP_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 18/20] package/python-sdnotify: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (15 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 17/20] package/python-pyratemp: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 19/20] package/python-slob: " Bernd Kuhls
` (2 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-sdnotify/python-sdnotify.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-sdnotify/python-sdnotify.mk b/package/python-sdnotify/python-sdnotify.mk
index 1b0f2276dc..4e250eee95 100644
--- a/package/python-sdnotify/python-sdnotify.mk
+++ b/package/python-sdnotify/python-sdnotify.mk
@@ -7,7 +7,7 @@
PYTHON_SDNOTIFY_VERSION = 0.3.2
PYTHON_SDNOTIFY_SOURCE = sdnotify-$(PYTHON_SDNOTIFY_VERSION).tar.gz
PYTHON_SDNOTIFY_SITE = https://files.pythonhosted.org/packages/ce/d8/9fdc36b2a912bf78106de4b3f0de3891ff8f369e7a6f80be842b8b0b6bd5
-PYTHON_SDNOTIFY_SETUP_TYPE = distutils
+PYTHON_SDNOTIFY_SETUP_TYPE = setuptools
PYTHON_SDNOTIFY_LICENSE = MIT
PYTHON_SDNOTIFY_LICENSE_FILES = LICENSE.txt
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 19/20] package/python-slob: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (16 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 18/20] package/python-sdnotify: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 20/20] package/python-stack-data: switch from setuptools to pep517 Bernd Kuhls
2023-08-06 17:24 ` [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Thomas Petazzoni via buildroot
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
distutils will be dropped with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-slob/python-slob.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python-slob/python-slob.mk b/package/python-slob/python-slob.mk
index 2db3932216..4a0d1a7e1c 100644
--- a/package/python-slob/python-slob.mk
+++ b/package/python-slob/python-slob.mk
@@ -8,6 +8,6 @@ PYTHON_SLOB_VERSION = 31ad0e769360a5b10a4893f686587bb8e48c3895
PYTHON_SLOB_SITE = $(call github,itkach,slob,$(PYTHON_SLOB_VERSION))
PYTHON_SLOB_LICENSE = GPL-3.0
PYTHON_SLOB_LICENSE_FILES = LICENSE
-PYTHON_SLOB_SETUP_TYPE = distutils
+PYTHON_SLOB_SETUP_TYPE = setuptools
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [Buildroot] [PATCH 20/20] package/python-stack-data: switch from setuptools to pep517
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (17 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 19/20] package/python-slob: " Bernd Kuhls
@ 2023-08-05 17:37 ` Bernd Kuhls
2023-08-06 17:24 ` [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Thomas Petazzoni via buildroot
19 siblings, 0 replies; 21+ messages in thread
From: Bernd Kuhls @ 2023-08-05 17:37 UTC (permalink / raw)
To: buildroot
Cc: Andrey Smirnov, Julien Olivain, Bartosz Bilas, Asaf Kahlon,
James Hilliard, Steve Calfee, Fabrice Fontaine
Needed for building with python 3.12.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/python-stack-data/python-stack-data.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/package/python-stack-data/python-stack-data.mk b/package/python-stack-data/python-stack-data.mk
index 494ce8f454..1a85938311 100644
--- a/package/python-stack-data/python-stack-data.mk
+++ b/package/python-stack-data/python-stack-data.mk
@@ -7,8 +7,9 @@
PYTHON_STACK_DATA_VERSION = 0.6.2
PYTHON_STACK_DATA_SOURCE = stack_data-$(PYTHON_STACK_DATA_VERSION).tar.gz
PYTHON_STACK_DATA_SITE = https://files.pythonhosted.org/packages/db/18/aa7f2b111aeba2cd83503254d9133a912d7f61f459a0c8561858f0d72a56
-PYTHON_STACK_DATA_SETUP_TYPE = setuptools
+PYTHON_STACK_DATA_SETUP_TYPE = pep517
PYTHON_STACK_DATA_LICENSE = MIT
PYTHON_STACK_DATA_LICENSE_FILES = LICENSE.txt
+PYTHON_STACK_DATA_DEPENDENCIES = host-python-setuptools-scm
$(eval $(python-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 21+ messages in thread
* Re: [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
` (18 preceding siblings ...)
2023-08-05 17:37 ` [Buildroot] [PATCH 20/20] package/python-stack-data: switch from setuptools to pep517 Bernd Kuhls
@ 2023-08-06 17:24 ` Thomas Petazzoni via buildroot
19 siblings, 0 replies; 21+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-08-06 17:24 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Bartosz Bilas, Andrey Smirnov, Julien Olivain, Asaf Kahlon,
James Hilliard, Steve Calfee, buildroot, Fabrice Fontaine
On Sat, 5 Aug 2023 19:37:30 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> distutils will be dropped with python 3.12.
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> package/python-aiologstash/python-aiologstash.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Entire series applied to next. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2023-08-06 17:26 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-05 17:37 [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 02/20] package/python-backcall: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 03/20] package/python-crc16: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 04/20] package/python-crcmod: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 05/20] package/python-dicttoxml: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 06/20] package/python-hwdata: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 07/20] package/python-iowait: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 08/20] package/python-ipy: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 09/20] package/python-ipython-genutils: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 10/20] package/python-logstash: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 11/20] package/python-mwscrape: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 12/20] package/python-mwscrape2slob: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 13/20] package/python-pexpect: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 14/20] package/python-ptyprocess: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 15/20] package/python-pyaes: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 16/20] package/python-pyalsa: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 17/20] package/python-pyratemp: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 18/20] package/python-sdnotify: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 19/20] package/python-slob: " Bernd Kuhls
2023-08-05 17:37 ` [Buildroot] [PATCH 20/20] package/python-stack-data: switch from setuptools to pep517 Bernd Kuhls
2023-08-06 17:24 ` [Buildroot] [PATCH 01/20] package/python-aiologstash: switch from distutils to setuptools Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox