diff mbox series

[meta-python,2/2] python3-robotframework-seriallibrary: Switch to PEP-517 poetry build backend

Message ID 20250412041717.4076589-2-raj.khem@gmail.com
State New
Headers show
Series [meta-python,1/2] python3-colorclass: Switch to PEP-517 build backend | expand

Commit Message

Khem Raj April 12, 2025, 4:17 a.m. UTC
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 ...roject.toml-Replace-install_requires.patch | 31 +++++++++++++++++++
 ...hon3-robotframework-seriallibrary_0.4.3.bb |  3 +-
 2 files changed, 33 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python3-robotframework-seriallibrary/0001-pyproject.toml-Replace-install_requires.patch
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary/0001-pyproject.toml-Replace-install_requires.patch b/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary/0001-pyproject.toml-Replace-install_requires.patch
new file mode 100644
index 0000000000..b4a58ca607
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary/0001-pyproject.toml-Replace-install_requires.patch
@@ -0,0 +1,31 @@ 
+From 29ca728481a275cc46fdf4f32b3aac5706aa0904 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 11 Apr 2025 21:03:43 -0700
+Subject: [PATCH] pyproject.toml: Replace install_requires
+
+install_requires is used with setuptools, with poetry it needs
+to use poetry.dependencies
+
+Fixes
+poetry.core.constraints.version.exceptions.ParseConstraintError: Could not parse version constraint: robotframework
+
+Upstream-Status: Submitted [https://github.com/whosaysni/robotframework-seriallibrary/pull/25]
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ pyproject.toml | 6 ++----
+ 1 file changed, 2 insertions(+), 4 deletions(-)
+
+diff --git a/pyproject.toml b/pyproject.toml
+index be9f51a..0ade7ee 100644
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -24,7 +24,5 @@ packages = [
+   ]
+ 
+ [tool.poetry.dependencies]
+-install_requires=["robotframework", "pyserial"]
+-
+-
+-
++robotframework = ">=4.0"
++pyserial = ">=3.0"
diff --git a/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary_0.4.3.bb b/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary_0.4.3.bb
index c48c3e2cec..7f282c0fbe 100644
--- a/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary_0.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-robotframework-seriallibrary_0.4.3.bb
@@ -3,11 +3,12 @@  HOMEPAGE = "https://github.com/whosaysni/robotframework-seriallibrary"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ad407cda031a6aaf51a1fecaaa6e7d29"
 
+SRC_URI += "file://0001-pyproject.toml-Replace-install_requires.patch"
 SRC_URI[sha256sum] = "f20befe5c1106dd8ddca9f60a2f18bf5ec7d5f06f6f09a03fa66bae54777e6bb"
 
 PYPI_PACKAGE = "robotframework-seriallibrary"
 
-inherit pypi setuptools3
+inherit pypi python_poetry_core
 
 RDEPENDS:${PN} += " \
     python3-pyserial \