* [PATCH 1/2] python3-rdflib: drop python3-isodate from RDEPENDS
@ 2024-11-26 18:31 Guðni Már Gilbert
2024-11-26 18:31 ` [PATCH 2/2] python3-isodate: move to meta-python Guðni Már Gilbert
0 siblings, 1 reply; 3+ messages in thread
From: Guðni Már Gilbert @ 2024-11-26 18:31 UTC (permalink / raw)
To: openembedded-core; +Cc: Guðni Már Gilbert
On Python 3.11+, the built-in datetime module is used instead.
This change was made in v7.1.0 release.
See PR 2929: https://github.com/RDFLib/rdflib/blob/main/CHANGELOG.md#2024-10-17-release-710
Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
---
meta/recipes-devtools/python/python3-rdflib_7.1.1.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/python/python3-rdflib_7.1.1.bb b/meta/recipes-devtools/python/python3-rdflib_7.1.1.bb
index 133c92ed4d..da4b777ff5 100644
--- a/meta/recipes-devtools/python/python3-rdflib_7.1.1.bb
+++ b/meta/recipes-devtools/python/python3-rdflib_7.1.1.bb
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "164de86bd3564558802ca983d84f6616a4a1a420c7a17a8152f5016076
inherit pypi python_poetry_core
RDEPENDS:${PN} += " \
- python3-isodate \
+ python3-datetime \
python3-pyparsing \
python3-logging \
python3-numbers \
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] python3-isodate: move to meta-python
2024-11-26 18:31 [PATCH 1/2] python3-rdflib: drop python3-isodate from RDEPENDS Guðni Már Gilbert
@ 2024-11-26 18:31 ` Guðni Már Gilbert
2024-11-26 18:36 ` Guðni Már Gilbert
0 siblings, 1 reply; 3+ messages in thread
From: Guðni Már Gilbert @ 2024-11-26 18:31 UTC (permalink / raw)
To: openembedded-core; +Cc: Guðni Már Gilbert
python3-rdflib was the last consumer of this recipe in oe-core.
Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
---
meta/conf/distro/include/maintainers.inc | 1 -
.../python/python3-isodate_0.6.1.bb | 16 ----------------
2 files changed, 17 deletions(-)
delete mode 100644 meta/recipes-devtools/python/python3-isodate_0.6.1.bb
diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc
index d61b88f7de..8648f8caa8 100644
--- a/meta/conf/distro/include/maintainers.inc
+++ b/meta/conf/distro/include/maintainers.inc
@@ -644,7 +644,6 @@ RECIPE_MAINTAINER:pn-python3-imagesize = "Tim Orling <tim.orling@konsulko.com>"
RECIPE_MAINTAINER:pn-python3-iniconfig = "Tim Orling <tim.orling@konsulko.com>"
RECIPE_MAINTAINER:pn-python3-iniparse = "Trevor Gamblin <tgamblin@baylibre.com>"
RECIPE_MAINTAINER:pn-python3-iso8601 = "Tim Orling <tim.orling@konsulko.com>"
-RECIPE_MAINTAINER:pn-python3-isodate = "Leon Anavi <leon.anavi@konsulko.com>"
RECIPE_MAINTAINER:pn-python3-installer = "Ross Burton <ross.burton@arm.com>"
RECIPE_MAINTAINER:pn-python3-jinja2 = "Richard Purdie <richard.purdie@linuxfoundation.org>"
RECIPE_MAINTAINER:pn-python3-jsonpointer = "Bruce Ashfield <bruce.ashfield@gmail.com>"
diff --git a/meta/recipes-devtools/python/python3-isodate_0.6.1.bb b/meta/recipes-devtools/python/python3-isodate_0.6.1.bb
deleted file mode 100644
index 293fb08277..0000000000
--- a/meta/recipes-devtools/python/python3-isodate_0.6.1.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "ISO 8601 date/time parser"
-HOMEPAGE = "https://github.com/gweis/isodate/"
-SECTION = "devel/python"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
-
-SRC_URI[sha256sum] = "48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"
-
-inherit pypi setuptools3
-
-RDEPENDS:${PN} += " \
- python3-numbers \
- python3-six \
-"
-
-BBCLASSEXTEND = "native nativesdk"
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/2] python3-isodate: move to meta-python
2024-11-26 18:31 ` [PATCH 2/2] python3-isodate: move to meta-python Guðni Már Gilbert
@ 2024-11-26 18:36 ` Guðni Már Gilbert
0 siblings, 0 replies; 3+ messages in thread
From: Guðni Már Gilbert @ 2024-11-26 18:36 UTC (permalink / raw)
To: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 213 bytes --]
Note: These two recipes can also be moved:
1) python3-ndg-httpsclient
2) python3-pyasn1
There may be more, but those I've known about for some time. I can submit patches to move them over the next few days.
[-- Attachment #2: Type: text/html, Size: 274 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-26 18:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-26 18:31 [PATCH 1/2] python3-rdflib: drop python3-isodate from RDEPENDS Guðni Már Gilbert
2024-11-26 18:31 ` [PATCH 2/2] python3-isodate: move to meta-python Guðni Már Gilbert
2024-11-26 18:36 ` Guðni Már Gilbert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox