summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2022-07-13 17:28:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-14 23:22:10 +0100
commit0144cb5ae006e70036c7daee3b133ca2276c23db (patch)
tree164985d0e357320d8c0c797348e1beb225b3a0c8 /meta
parentc4b75fe913553bfa0c923e2cfea107d788c31b2b (diff)
downloadpoky-0144cb5ae006e70036c7daee3b133ca2276c23db.tar.gz
classes: remove obsolete PEP517_BUILD_API
This variable is no longer used, so remove it from the python_* classes. (From OE-Core rev: 49b6c5a656eecbc51489823e37bc07918173e8d2) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/python_flit_core.bbclass2
-rw-r--r--meta/classes/python_hatchling.bbclass2
-rw-r--r--meta/classes/python_poetry_core.bbclass2
-rw-r--r--meta/classes/python_setuptools_build_meta.bbclass2
4 files changed, 0 insertions, 8 deletions
diff --git a/meta/classes/python_flit_core.bbclass b/meta/classes/python_flit_core.bbclass
index a900f7b557..7109307de5 100644
--- a/meta/classes/python_flit_core.bbclass
+++ b/meta/classes/python_flit_core.bbclass
@@ -2,8 +2,6 @@ inherit python_pep517 python3native python3-dir setuptools3-base
2 2
3DEPENDS += "python3 python3-flit-core-native" 3DEPENDS += "python3 python3-flit-core-native"
4 4
5PEP517_BUILD_API = "flit_core.buildapi"
6
7python_flit_core_do_manual_build () { 5python_flit_core_do_manual_build () {
8 cd ${PEP517_SOURCE_PATH} 6 cd ${PEP517_SOURCE_PATH}
9 nativepython3 -m flit_core.wheel --outdir ${PEP517_WHEEL_PATH} . 7 nativepython3 -m flit_core.wheel --outdir ${PEP517_WHEEL_PATH} .
diff --git a/meta/classes/python_hatchling.bbclass b/meta/classes/python_hatchling.bbclass
index b3cbe23601..984eb6bb5d 100644
--- a/meta/classes/python_hatchling.bbclass
+++ b/meta/classes/python_hatchling.bbclass
@@ -1,5 +1,3 @@
1inherit python_pep517 python3native python3-dir setuptools3-base 1inherit python_pep517 python3native python3-dir setuptools3-base
2 2
3DEPENDS += "python3-hatchling-native" 3DEPENDS += "python3-hatchling-native"
4
5PEP517_BUILD_API = "hatchling.build"
diff --git a/meta/classes/python_poetry_core.bbclass b/meta/classes/python_poetry_core.bbclass
index 577663b8f1..0aaf66b194 100644
--- a/meta/classes/python_poetry_core.bbclass
+++ b/meta/classes/python_poetry_core.bbclass
@@ -1,5 +1,3 @@
1inherit python_pep517 python3native setuptools3-base 1inherit python_pep517 python3native setuptools3-base
2 2
3DEPENDS += "python3-poetry-core-native" 3DEPENDS += "python3-poetry-core-native"
4
5PEP517_BUILD_API = "poetry.core.masonry.api"
diff --git a/meta/classes/python_setuptools_build_meta.bbclass b/meta/classes/python_setuptools_build_meta.bbclass
index b2bba35a0b..974054fe5a 100644
--- a/meta/classes/python_setuptools_build_meta.bbclass
+++ b/meta/classes/python_setuptools_build_meta.bbclass
@@ -1,5 +1,3 @@
1inherit setuptools3-base python_pep517 1inherit setuptools3-base python_pep517
2 2
3DEPENDS += "python3-setuptools-native python3-wheel-native" 3DEPENDS += "python3-setuptools-native python3-wheel-native"
4
5PEP517_BUILD_API = "setuptools.build_meta"