diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-01-12 09:21:34 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-01-12 09:35:18 -0800 |
commit | 1d2da22e770c8952248ddd0ff9a18207916a17fc (patch) | |
tree | bf87b72f9256ea540ed3903624572b926c5b0e6e | |
parent | 1bdbdf3a7e09b387fa25a3fa0dc0f15188cb5331 (diff) | |
download | meta-openembedded-1d2da22e770c8952248ddd0ff9a18207916a17fc.tar.gz |
meta-oe: Use setuptools3-base
Signed-off-by: Khem Raj <raj.khem@gmail.com>
7 files changed, 7 insertions, 7 deletions
diff --git a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb index e0f52ea62b..5263aaef30 100644 --- a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb +++ b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb | |||
@@ -9,7 +9,7 @@ PV = "1.3" | |||
9 | 9 | ||
10 | SRC_URI:append:class-target = " file://oe-remote.repo.sample" | 10 | SRC_URI:append:class-target = " file://oe-remote.repo.sample" |
11 | 11 | ||
12 | inherit distutils3-base | 12 | inherit setuptools3-base |
13 | 13 | ||
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
15 | 15 | ||
diff --git a/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.4.bb b/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.4.bb index 7ff0725a20..ec427a9a73 100644 --- a/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.4.bb +++ b/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.4.bb | |||
@@ -18,7 +18,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
18 | 18 | ||
19 | DEPENDS = "cracklib virtual/gettext" | 19 | DEPENDS = "cracklib virtual/gettext" |
20 | 20 | ||
21 | inherit autotools distutils3-base gettext | 21 | inherit autotools setuptools3-base gettext |
22 | 22 | ||
23 | B = "${S}" | 23 | B = "${S}" |
24 | 24 | ||
diff --git a/meta-oe/recipes-extended/mraa/mraa_git.bb b/meta-oe/recipes-extended/mraa/mraa_git.bb index 7ab03eccf2..2a50550a0e 100644 --- a/meta-oe/recipes-extended/mraa/mraa_git.bb +++ b/meta-oe/recipes-extended/mraa/mraa_git.bb | |||
@@ -18,7 +18,7 @@ S = "${WORKDIR}/git" | |||
18 | # CMakeLists.txt checks the architecture, only x86 and ARM supported for now | 18 | # CMakeLists.txt checks the architecture, only x86 and ARM supported for now |
19 | COMPATIBLE_HOST = "(x86_64.*|i.86.*|aarch64.*|arm.*)-linux" | 19 | COMPATIBLE_HOST = "(x86_64.*|i.86.*|aarch64.*|arm.*)-linux" |
20 | 20 | ||
21 | inherit cmake distutils3-base | 21 | inherit cmake setuptools3-base |
22 | 22 | ||
23 | DEPENDS += "json-c" | 23 | DEPENDS += "json-c" |
24 | 24 | ||
diff --git a/meta-oe/recipes-extended/upm/upm_git.bb b/meta-oe/recipes-extended/upm/upm_git.bb index 78a45ab4e0..61e2e38b05 100644 --- a/meta-oe/recipes-extended/upm/upm_git.bb +++ b/meta-oe/recipes-extended/upm/upm_git.bb | |||
@@ -25,7 +25,7 @@ S = "${WORKDIR}/git" | |||
25 | # Depends on mraa which only supports x86 and ARM for now | 25 | # Depends on mraa which only supports x86 and ARM for now |
26 | COMPATIBLE_HOST = "(x86_64.*|i.86.*|aarch64.*|arm.*)-linux" | 26 | COMPATIBLE_HOST = "(x86_64.*|i.86.*|aarch64.*|arm.*)-linux" |
27 | 27 | ||
28 | inherit distutils3-base cmake pkgconfig | 28 | inherit setuptools3-base cmake pkgconfig |
29 | 29 | ||
30 | EXTRA_OECMAKE += "-UPYTHON_EXECUTABLE -DWERROR=off" | 30 | EXTRA_OECMAKE += "-UPYTHON_EXECUTABLE -DWERROR=off" |
31 | 31 | ||
diff --git a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_2.1.2.bb b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_2.1.2.bb index c32165150a..eea231a2ea 100644 --- a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_2.1.2.bb +++ b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_2.1.2.bb | |||
@@ -13,7 +13,7 @@ SRCREV = "5cbbc07c9d015af284a424a172a379b385f05b6f" | |||
13 | 13 | ||
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
15 | 15 | ||
16 | inherit cmake gettext pkgconfig python3-dir python3native distutils3-base mime-xdg | 16 | inherit cmake gettext pkgconfig python3-dir python3native setuptools3-base mime-xdg |
17 | 17 | ||
18 | DEPENDS += "dnf python3 " | 18 | DEPENDS += "dnf python3 " |
19 | #DEPENDS:class-nativesdk += "nativesdk-python3" | 19 | #DEPENDS:class-nativesdk += "nativesdk-python3" |
diff --git a/meta-oe/recipes-support/opencv/opencv_4.5.2.bb b/meta-oe/recipes-support/opencv/opencv_4.5.2.bb index da1c72f298..2f2a505ed3 100644 --- a/meta-oe/recipes-support/opencv/opencv_4.5.2.bb +++ b/meta-oe/recipes-support/opencv/opencv_4.5.2.bb | |||
@@ -141,7 +141,7 @@ PACKAGECONFIG[v4l] = "-DWITH_V4L=ON,-DWITH_V4L=OFF,v4l-utils," | |||
141 | 141 | ||
142 | inherit pkgconfig cmake | 142 | inherit pkgconfig cmake |
143 | 143 | ||
144 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'python3', 'distutils3-base', '', d)} | 144 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'python3', 'setuptools3-base', '', d)} |
145 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'python2', 'distutils-base', '', d)} | 145 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'python2', 'distutils-base', '', d)} |
146 | 146 | ||
147 | export PYTHON_CSPEC="-I${STAGING_INCDIR}/${PYTHON_DIR}" | 147 | export PYTHON_CSPEC="-I${STAGING_INCDIR}/${PYTHON_DIR}" |
diff --git a/meta-oe/recipes-support/pcp/pcp.inc b/meta-oe/recipes-support/pcp/pcp.inc index d50e7b0910..37b6c45f18 100644 --- a/meta-oe/recipes-support/pcp/pcp.inc +++ b/meta-oe/recipes-support/pcp/pcp.inc | |||
@@ -13,7 +13,7 @@ SRC_URI = "https://performancecopilot.jfrog.io/artifactory/pcp-source-release/pc | |||
13 | 13 | ||
14 | SRC_URI[sha256sum] = "589a610f753a49af6d2015cede87e9d469bd07880ebef26fe1607b6ded375e97" | 14 | SRC_URI[sha256sum] = "589a610f753a49af6d2015cede87e9d469bd07880ebef26fe1607b6ded375e97" |
15 | 15 | ||
16 | inherit distutils3-base pkgconfig autotools | 16 | inherit setuptools3-base pkgconfig autotools |
17 | 17 | ||
18 | B = "${S}" | 18 | B = "${S}" |
19 | 19 | ||