Message ID | 20241107172404.4017047-4-ross.burton@arm.com |
---|---|
State | New |
Headers | show |
Series | [v2,1/8] python3-setuptools: add more comments to a patch | expand |
diff --git a/meta/recipes-devtools/python/python3-babel_2.16.0.bb b/meta/recipes-devtools/python/python3-babel_2.16.0.bb index 929d7e99831..34aa7c9a750 100644 --- a/meta/recipes-devtools/python/python3-babel_2.16.0.bb +++ b/meta/recipes-devtools/python/python3-babel_2.16.0.bb @@ -9,8 +9,6 @@ inherit pypi setuptools3 S = "${WORKDIR}/babel-${PV}" -CLEANBROKEN = "1" - RDEPENDS:${PN} += " \ python3-codecs \ python3-difflib \ diff --git a/meta/recipes-devtools/python/python3-click_8.1.7.bb b/meta/recipes-devtools/python/python3-click_8.1.7.bb index 7d91e1af838..3998d0864f5 100644 --- a/meta/recipes-devtools/python/python3-click_8.1.7.bb +++ b/meta/recipes-devtools/python/python3-click_8.1.7.bb @@ -29,8 +29,6 @@ do_install_ptest() { UPSTREAM_CHECK_REGEX = "click/(?P<pver>\d+(\.\d+)+)/" -CLEANBROKEN = "1" - RDEPENDS:${PN} += "\ python3-io \ python3-threading \ diff --git a/meta/recipes-devtools/python/python3-jinja2_3.1.4.bb b/meta/recipes-devtools/python/python3-jinja2_3.1.4.bb index a11878496c6..98968ffaec4 100644 --- a/meta/recipes-devtools/python/python3-jinja2_3.1.4.bb +++ b/meta/recipes-devtools/python/python3-jinja2_3.1.4.bb @@ -10,8 +10,6 @@ PYPI_PACKAGE = "jinja2" CVE_PRODUCT = "jinja2 jinja" -CLEANBROKEN = "1" - inherit pypi python_flit_core ptest UPSTREAM_CHECK_PYPI_PACKAGE = "Jinja2" diff --git a/meta/recipes-devtools/python/python3-lxml_5.3.0.bb b/meta/recipes-devtools/python/python3-lxml_5.3.0.bb index 4c9c22e5c40..f130b567225 100644 --- a/meta/recipes-devtools/python/python3-lxml_5.3.0.bb +++ b/meta/recipes-devtools/python/python3-lxml_5.3.0.bb @@ -40,5 +40,3 @@ BBCLASSEXTEND = "native nativesdk" RDEPENDS:${PN} += "libxml2 libxslt python3-compression" CVE_PRODUCT = "lxml" - -CLEANBROKEN = "1" diff --git a/meta/recipes-devtools/python/python3-numpy_1.26.4.bb b/meta/recipes-devtools/python/python3-numpy_1.26.4.bb index 4ffbe0d3708..95614361be0 100644 --- a/meta/recipes-devtools/python/python3-numpy_1.26.4.bb +++ b/meta/recipes-devtools/python/python3-numpy_1.26.4.bb @@ -27,8 +27,6 @@ S = "${WORKDIR}/numpy-${PV}" # until we switch to mesonpy we need this. B = "${S}/build" -CLEANBROKEN = "1" - do_compile:prepend() { export NPY_DISABLE_SVML=1 }
These CLEANBROKENs are obsolete: the classes involved set their own do_configure so the clean in base_do_configure doesn't get ran. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta/recipes-devtools/python/python3-babel_2.16.0.bb | 2 -- meta/recipes-devtools/python/python3-click_8.1.7.bb | 2 -- meta/recipes-devtools/python/python3-jinja2_3.1.4.bb | 2 -- meta/recipes-devtools/python/python3-lxml_5.3.0.bb | 2 -- meta/recipes-devtools/python/python3-numpy_1.26.4.bb | 2 -- 5 files changed, 10 deletions(-)